patch 'net/ice: fix secondary process Rx path selection' has been queued to stable release 25.11.1
Kevin Traynor
ktraynor at redhat.com
Thu Mar 19 11:02:11 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/95a24a2c9e3d6c234ad6901535e699c45f37142b
Thanks.
Kevin
---
>From 95a24a2c9e3d6c234ad6901535e699c45f37142b Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Wed, 18 Feb 2026 09:49:30 +0000
Subject: [PATCH] net/ice: fix secondary process Rx path selection
[ upstream commit 04a766bf7cbc3d614ad39f19e83269b049d121e2 ]
Commit 197e70fb8961 ("net/ice: use same Rx path across processes")
changed the way that secondary processes selected their Rx burst
function. Instead of letting secondary processes select their own
function, they now used the function selected by the primary process.
However, the primary process only selects the function at device start,
so if the primary process hadn't started the device by the time the
secondary process was selecting its Rx burst function, the secondary
process would not select the correct function.
This commit addresses this issue by allowing the secondary process to
select the path if the device has not been started yet.
Fixes: 197e70fb8961 ("net/ice: use same Rx path across processes")
Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
drivers/net/intel/ice/ice_rxtx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c
index 74db0fbec9..6d718a4af2 100644
--- a/drivers/net/intel/ice/ice_rxtx.c
+++ b/drivers/net/intel/ice/ice_rxtx.c
@@ -3823,6 +3823,6 @@ ice_set_rx_function(struct rte_eth_dev *dev)
};
- /* The primary process selects the rx path for all processes. */
- if (rte_eal_process_type() != RTE_PROC_PRIMARY)
+ /* If the device has started the function has already been selected. */
+ if (dev->data->dev_started)
goto out;
--
2.53.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-03-19 10:01:07.511229109 +0000
+++ 0013-net-ice-fix-secondary-process-Rx-path-selection.patch 2026-03-19 10:01:07.066331263 +0000
@@ -1 +1 @@
-From 04a766bf7cbc3d614ad39f19e83269b049d121e2 Mon Sep 17 00:00:00 2001
+From 95a24a2c9e3d6c234ad6901535e699c45f37142b Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 04a766bf7cbc3d614ad39f19e83269b049d121e2 ]
+
@@ -19 +20,0 @@
-Cc: stable at dpdk.org
@@ -28 +29 @@
-index 321415d839..637c57b209 100644
+index 74db0fbec9..6d718a4af2 100644
@@ -31 +32 @@
-@@ -3372,6 +3372,6 @@ ice_set_rx_function(struct rte_eth_dev *dev)
+@@ -3823,6 +3823,6 @@ ice_set_rx_function(struct rte_eth_dev *dev)
More information about the stable
mailing list