patch 'net/idpf: fix typo in CQ scan threshold macro name' has been queued to stable release 25.11.1

Kevin Traynor ktraynor at redhat.com
Thu Mar 19 11:02:13 CET 2026


Hi,

FYI, your patch has been queued to stable release 25.11.1

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/23/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/kevintraynor/dpdk-stable

This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/afa2ea9b00eda17b01d32d6215eb9567dc4d1de8

Thanks.

Kevin

---
>From afa2ea9b00eda17b01d32d6215eb9567dc4d1de8 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/net/intel/idpf/idpf_common_rxtx.h        | 2 +-
 drivers/net/intel/idpf/idpf_common_rxtx_avx512.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/intel/idpf/idpf_common_rxtx.h b/drivers/net/intel/idpf/idpf_common_rxtx.h
index 3bc3323af4..79476804f0 100644
--- a/drivers/net/intel/idpf/idpf_common_rxtx.h
+++ b/drivers/net/intel/idpf/idpf_common_rxtx.h
@@ -58,5 +58,5 @@
 #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
 
 /* MTS */
diff --git a/drivers/net/intel/idpf/idpf_common_rxtx_avx512.c b/drivers/net/intel/idpf/idpf_common_rxtx_avx512.c
index 1d0516c755..e9c5aa8cf6 100644
--- a/drivers/net/intel/idpf/idpf_common_rxtx_avx512.c
+++ b/drivers/net/intel/idpf/idpf_common_rxtx_avx512.c
@@ -1178,5 +1178,5 @@ idpf_splitq_scan_cq_ring(struct ci_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;
-- 
2.53.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-03-19 10:01:07.563296728 +0000
+++ 0015-net-idpf-fix-typo-in-CQ-scan-threshold-macro-name.patch	2026-03-19 10:01:07.068710673 +0000
@@ -1 +1 @@
-From aecba37874e9292ef63d8f3b46f08b3f53e68463 Mon Sep 17 00:00:00 2001
+From afa2ea9b00eda17b01d32d6215eb9567dc4d1de8 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit aecba37874e9292ef63d8f3b46f08b3f53e68463 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -21 +22 @@
-index cc11ea43b9..e0e53f5d84 100644
+index 3bc3323af4..79476804f0 100644
@@ -24 +25 @@
-@@ -53,5 +53,5 @@
+@@ -58,5 +58,5 @@
@@ -32 +33 @@
-index bcf8fec14c..ad026e6525 100644
+index 1d0516c755..e9c5aa8cf6 100644
@@ -35 +36 @@
-@@ -1167,5 +1167,5 @@ idpf_splitq_scan_cq_ring(struct ci_tx_queue *cq)
+@@ -1178,5 +1178,5 @@ idpf_splitq_scan_cq_ring(struct ci_tx_queue *cq)



More information about the stable mailing list