patch 'net/iavf: 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:10 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/29100027f254baf8a646a6db90a693417eee9313

Thanks.

Kevin

---
>From 29100027f254baf8a646a6db90a693417eee9313 Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Wed, 18 Feb 2026 09:49:29 +0000
Subject: [PATCH] net/iavf: fix secondary process Rx path selection

[ upstream commit 7d0126bc830280a0e73c7c9429177e5d0d9090bf ]

Commit 3f59c3d97a89 ("net/iavf: 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: 3f59c3d97a89 ("net/iavf: 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/iavf/iavf_rxtx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/intel/iavf/iavf_rxtx.c b/drivers/net/intel/iavf/iavf_rxtx.c
index d8662fd815..5790180e89 100644
--- a/drivers/net/intel/iavf/iavf_rxtx.c
+++ b/drivers/net/intel/iavf/iavf_rxtx.c
@@ -4179,6 +4179,6 @@ iavf_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.481892402 +0000
+++ 0012-net-iavf-fix-secondary-process-Rx-path-selection.patch	2026-03-19 10:01:07.065331263 +0000
@@ -1 +1 @@
-From 7d0126bc830280a0e73c7c9429177e5d0d9090bf Mon Sep 17 00:00:00 2001
+From 29100027f254baf8a646a6db90a693417eee9313 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 7d0126bc830280a0e73c7c9429177e5d0d9090bf ]
+
@@ -19 +20,0 @@
-Cc: stable at dpdk.org
@@ -28 +29 @@
-index e621d4bf47..a47d2547dd 100644
+index d8662fd815..5790180e89 100644
@@ -31 +32 @@
-@@ -3816,6 +3816,6 @@ iavf_set_rx_function(struct rte_eth_dev *dev)
+@@ -4179,6 +4179,6 @@ iavf_set_rx_function(struct rte_eth_dev *dev)



More information about the stable mailing list