patch 'net/ice: re-enable strict priority on non-root levels' has been queued to stable release 24.11.5
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Fri Feb 20 15:55:59 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/17abf46c7d85b3392945657bfaca57d3e2ed9261
Thanks.
Luca Boccassi
---
>From 17abf46c7d85b3392945657bfaca57d3e2ed9261 Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Thu, 15 Jan 2026 10:38:23 +0000
Subject: [PATCH] net/ice: re-enable strict priority on non-root levels
[ upstream commit 45f435ddf758edb74cee2b36bb8d2c9054e824f6 ]
Commit 715d449a965b ("net/ice: enhance Tx scheduler hierarchy support")
disabled strict priority on all levels however it will work on all
levels except for the root level. This commit re-enables configurability
of priority on non-root levels.
Fixes: 715d449a965b ("net/ice: enhance Tx scheduler hierarchy support")
Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
drivers/net/ice/ice_tm.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ice/ice_tm.c b/drivers/net/ice/ice_tm.c
index db895613cc..ff53f2acfd 100644
--- a/drivers/net/ice/ice_tm.c
+++ b/drivers/net/ice/ice_tm.c
@@ -522,7 +522,8 @@ ice_tm_node_add(struct rte_eth_dev *dev, uint32_t node_id,
tm_node->parent->children[tm_node->parent->reference_count++] = tm_node;
tm_node->params = *params;
- if (tm_node->priority != 0)
+ /* Priority cannot be configured for the root level */
+ if (tm_node->priority != 0 && level_id == 0)
PMD_DRV_LOG(WARNING, "priority != 0 not supported in level %d", level_id);
if (tm_node->weight != 1 && level_id == 0)
--
2.47.3
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-02-20 14:55:45.462539751 +0000
+++ 0057-net-ice-re-enable-strict-priority-on-non-root-levels.patch 2026-02-20 14:55:43.244191751 +0000
@@ -1 +1 @@
-From 45f435ddf758edb74cee2b36bb8d2c9054e824f6 Mon Sep 17 00:00:00 2001
+From 17abf46c7d85b3392945657bfaca57d3e2ed9261 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 45f435ddf758edb74cee2b36bb8d2c9054e824f6 ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org
@@ -17 +18 @@
- drivers/net/intel/ice/ice_tm.c | 3 ++-
+ drivers/net/ice/ice_tm.c | 3 ++-
@@ -20 +21 @@
-diff --git a/drivers/net/intel/ice/ice_tm.c b/drivers/net/intel/ice/ice_tm.c
+diff --git a/drivers/net/ice/ice_tm.c b/drivers/net/ice/ice_tm.c
@@ -22,2 +23,2 @@
---- a/drivers/net/intel/ice/ice_tm.c
-+++ b/drivers/net/intel/ice/ice_tm.c
+--- a/drivers/net/ice/ice_tm.c
++++ b/drivers/net/ice/ice_tm.c
More information about the stable
mailing list