patch 'net/idpf: fix typo in CQ scan threshold macro name' has been queued to stable release 23.11.7
Shani Peretz
shperetz at nvidia.com
Wed Apr 15 11:59:11 CEST 2026
Hi,
FYI, your patch has been queued to stable release 23.11.7
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 04/19/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/shanipr/dpdk-stable
This queued commit can be viewed at:
https://github.com/shanipr/dpdk-stable/commit/c6d5b081bf9cc5792e4865d3e60191585cb033f9
Thanks.
Shani
---
>From c6d5b081bf9cc5792e4865d3e60191585cb033f9 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 b49b1ed737..c6944314d3 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 09dd6f00e8..30e0806424 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.43.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-04-14 14:44:29.872929165 +0300
+++ 0010-net-idpf-fix-typo-in-CQ-scan-threshold-macro-name.patch 2026-04-14 14:44:28.408527000 +0300
@@ -1 +1 @@
-From aecba37874e9292ef63d8f3b46f08b3f53e68463 Mon Sep 17 00:00:00 2001
+From c6d5b081bf9cc5792e4865d3e60191585cb033f9 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 b49b1ed737..c6944314d3 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 09dd6f00e8..30e0806424 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