patch 'net/ice: fix priority mode printing in Tx scheduler dump' has been queued to stable release 24.11.5

luca.boccassi at gmail.com luca.boccassi at gmail.com
Fri Feb 20 15:55:58 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 02/22/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/96711460802edd1dae47b6eba73a6130ebdf0a3e

Thanks.

Luca Boccassi

---
>From 96711460802edd1dae47b6eba73a6130ebdf0a3e Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Thu, 15 Jan 2026 10:38:22 +0000
Subject: [PATCH] net/ice: fix priority mode printing in Tx scheduler dump

[ upstream commit e648984c2811203697492d0af4d9904f4e574166 ]

A value of zero in bit 4 of the generic data means that strict priority
is enabled. Prior to this commit it was being interpreted as WFQ being
enabled. Fix this.

Fixes: ab4eaf9a8a31 ("net/ice: dump Tx scheduling tree")

Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
 drivers/net/ice/ice_diagnose.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ice/ice_diagnose.c b/drivers/net/ice/ice_diagnose.c
index 5bec9d00ad..c05b895971 100644
--- a/drivers/net/ice/ice_diagnose.c
+++ b/drivers/net/ice/ice_diagnose.c
@@ -638,7 +638,7 @@ void print_node(const struct rte_eth_dev_data *ethdata,
 	fprintf(stream, "\t\t\t\t<tr>\n");
 	fprintf(stream, "\t\t\t\t\t<td> priority mode</td>\n");
 	fprintf(stream, "\t\t\t\t\t<td>");
-	print_priority_mode(stream, ((data->data.generic >> 4) & 0x1) != 0);
+	print_priority_mode(stream, ((data->data.generic >> 4) & 0x1) == 0);
 	fprintf(stream,	"</td>\n");
 	fprintf(stream, "\t\t\t\t</tr>\n");
 
-- 
2.47.3

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-02-20 14:55:45.430982697 +0000
+++ 0056-net-ice-fix-priority-mode-printing-in-Tx-scheduler-d.patch	2026-02-20 14:55:43.244191751 +0000
@@ -1 +1 @@
-From e648984c2811203697492d0af4d9904f4e574166 Mon Sep 17 00:00:00 2001
+From 96711460802edd1dae47b6eba73a6130ebdf0a3e Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit e648984c2811203697492d0af4d9904f4e574166 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -16 +17 @@
- drivers/net/intel/ice/ice_diagnose.c | 2 +-
+ drivers/net/ice/ice_diagnose.c | 2 +-
@@ -19,5 +20,5 @@
-diff --git a/drivers/net/intel/ice/ice_diagnose.c b/drivers/net/intel/ice/ice_diagnose.c
-index 298d1eda5c..a58279a116 100644
---- a/drivers/net/intel/ice/ice_diagnose.c
-+++ b/drivers/net/intel/ice/ice_diagnose.c
-@@ -641,7 +641,7 @@ void print_node(const struct rte_eth_dev_data *ethdata,
+diff --git a/drivers/net/ice/ice_diagnose.c b/drivers/net/ice/ice_diagnose.c
+index 5bec9d00ad..c05b895971 100644
+--- a/drivers/net/ice/ice_diagnose.c
++++ b/drivers/net/ice/ice_diagnose.c
+@@ -638,7 +638,7 @@ void print_node(const struct rte_eth_dev_data *ethdata,


More information about the stable mailing list