patch 'net/idpf: fix typo in CQ scan threshold macro name' has been queued to stable release 24.11.5
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Thu Mar 19 23:02:01 CET 2026
Hi,
FYI, your patch has been queued to stable release 24.11.5
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 03/21/26. So please
shout if anyone has objections.
Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.
Queued patches are on a temporary branch at:
https://github.com/bluca/dpdk-stable
This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/aae123ec5acc1a9398ba2feba3a0c30e199e69b8
Thanks.
Luca Boccassi
---
>From aae123ec5acc1a9398ba2feba3a0c30e199e69b8 Mon Sep 17 00:00:00 2001
From: Shaiq Wani <shaiq.wani at intel.com>
Date: Wed, 25 Feb 2026 14:23:33 +0530
Subject: [PATCH] net/idpf: fix typo in CQ scan threshold macro name
[ upstream commit aecba37874e9292ef63d8f3b46f08b3f53e68463 ]
Fix the misspelled macro IDPD_TXQ_SCAN_CQ_THRESH to
IDPF_TXQ_SCAN_CQ_THRESH in the header and its usage
in the AVX512 split queue Tx path.
Fixes: e528d7c74819 ("common/idpf: add AVX512 data path for split queue model")
Signed-off-by: Shaiq Wani <shaiq.wani at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
drivers/common/idpf/idpf_common_rxtx.h | 2 +-
drivers/common/idpf/idpf_common_rxtx_avx512.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/common/idpf/idpf_common_rxtx.h b/drivers/common/idpf/idpf_common_rxtx.h
index eeeeed12e2..ad29d0ef00 100644
--- a/drivers/common/idpf/idpf_common_rxtx.h
+++ b/drivers/common/idpf/idpf_common_rxtx.h
@@ -55,7 +55,7 @@
#define IDPF_VPMD_TX_MAX_BURST 32
#define IDPF_VPMD_DESCS_PER_LOOP 4
#define IDPF_RXQ_REARM_THRESH 64
-#define IDPD_TXQ_SCAN_CQ_THRESH 64
+#define IDPF_TXQ_SCAN_CQ_THRESH 64
#define IDPF_TX_CTYPE_NUM 8
/* MTS */
diff --git a/drivers/common/idpf/idpf_common_rxtx_avx512.c b/drivers/common/idpf/idpf_common_rxtx_avx512.c
index b37702163a..928478c7ff 100644
--- a/drivers/common/idpf/idpf_common_rxtx_avx512.c
+++ b/drivers/common/idpf/idpf_common_rxtx_avx512.c
@@ -1301,7 +1301,7 @@ idpf_splitq_scan_cq_ring(struct idpf_tx_queue *cq)
cq_qid = cq->tx_tail;
- for (i = 0; i < IDPD_TXQ_SCAN_CQ_THRESH; i++) {
+ for (i = 0; i < IDPF_TXQ_SCAN_CQ_THRESH; i++) {
if (cq_qid == cq->nb_tx_desc) {
cq_qid = 0;
cq->expected_gen_id ^= 1;
--
2.47.3
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-03-19 22:00:48.149668260 +0000
+++ 0009-net-idpf-fix-typo-in-CQ-scan-threshold-macro-name.patch 2026-03-19 22:00:47.766359371 +0000
@@ -1 +1 @@
-From aecba37874e9292ef63d8f3b46f08b3f53e68463 Mon Sep 17 00:00:00 2001
+From aae123ec5acc1a9398ba2feba3a0c30e199e69b8 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit aecba37874e9292ef63d8f3b46f08b3f53e68463 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -16,2 +17,2 @@
- drivers/net/intel/idpf/idpf_common_rxtx.h | 2 +-
- drivers/net/intel/idpf/idpf_common_rxtx_avx512.c | 2 +-
+ drivers/common/idpf/idpf_common_rxtx.h | 2 +-
+ drivers/common/idpf/idpf_common_rxtx_avx512.c | 2 +-
@@ -20,5 +21,5 @@
-diff --git a/drivers/net/intel/idpf/idpf_common_rxtx.h b/drivers/net/intel/idpf/idpf_common_rxtx.h
-index cc11ea43b9..e0e53f5d84 100644
---- a/drivers/net/intel/idpf/idpf_common_rxtx.h
-+++ b/drivers/net/intel/idpf/idpf_common_rxtx.h
-@@ -52,7 +52,7 @@
+diff --git a/drivers/common/idpf/idpf_common_rxtx.h b/drivers/common/idpf/idpf_common_rxtx.h
+index eeeeed12e2..ad29d0ef00 100644
+--- a/drivers/common/idpf/idpf_common_rxtx.h
++++ b/drivers/common/idpf/idpf_common_rxtx.h
+@@ -55,7 +55,7 @@
@@ -29,0 +31 @@
+ #define IDPF_TX_CTYPE_NUM 8
@@ -32,6 +34,5 @@
- #define GLTSYN_CMD_SYNC_0_0 (PF_TIMESYNC_BASE + 0x0)
-diff --git a/drivers/net/intel/idpf/idpf_common_rxtx_avx512.c b/drivers/net/intel/idpf/idpf_common_rxtx_avx512.c
-index bcf8fec14c..ad026e6525 100644
---- a/drivers/net/intel/idpf/idpf_common_rxtx_avx512.c
-+++ b/drivers/net/intel/idpf/idpf_common_rxtx_avx512.c
-@@ -1166,7 +1166,7 @@ idpf_splitq_scan_cq_ring(struct ci_tx_queue *cq)
+diff --git a/drivers/common/idpf/idpf_common_rxtx_avx512.c b/drivers/common/idpf/idpf_common_rxtx_avx512.c
+index b37702163a..928478c7ff 100644
+--- a/drivers/common/idpf/idpf_common_rxtx_avx512.c
++++ b/drivers/common/idpf/idpf_common_rxtx_avx512.c
+@@ -1301,7 +1301,7 @@ idpf_splitq_scan_cq_ring(struct idpf_tx_queue *cq)
More information about the stable
mailing list