patch 'net/ice: re-enable strict priority on non-root levels' has been queued to stable release 25.11.1
Kevin Traynor
ktraynor at redhat.com
Thu Feb 26 14:09:09 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/02/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/0a4b16e48a82319beea531c14ba4287edf0e1fe4
Thanks.
Kevin
---
>From 0a4b16e48a82319beea531c14ba4287edf0e1fe4 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/intel/ice/ice_tm.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/intel/ice/ice_tm.c b/drivers/net/intel/ice/ice_tm.c
index db895613cc..ff53f2acfd 100644
--- a/drivers/net/intel/ice/ice_tm.c
+++ b/drivers/net/intel/ice/ice_tm.c
@@ -523,5 +523,6 @@ ice_tm_node_add(struct rte_eth_dev *dev, uint32_t node_id,
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);
--
2.53.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-02-26 10:16:49.753355145 +0000
+++ 0067-net-ice-re-enable-strict-priority-on-non-root-levels.patch 2026-02-26 10:16:46.994099690 +0000
@@ -1 +1 @@
-From 45f435ddf758edb74cee2b36bb8d2c9054e824f6 Mon Sep 17 00:00:00 2001
+From 0a4b16e48a82319beea531c14ba4287edf0e1fe4 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 45f435ddf758edb74cee2b36bb8d2c9054e824f6 ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org
More information about the stable
mailing list