patch 'net/intel: prevent selection of a null Rx burst function' has been queued to stable release 25.11.1
Kevin Traynor
ktraynor at redhat.com
Thu Feb 26 14:09:02 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/d026945e38f800912359d0724532f040f545b5e8
Thanks.
Kevin
---
>From d026945e38f800912359d0724532f040f545b5e8 Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Tue, 16 Dec 2025 10:35:03 +0000
Subject: [PATCH] net/intel: prevent selection of a null Rx burst function
[ upstream commit 2e97d51b5572a58de348cf3524012aa7391c70bf ]
Depending on the underlying architecture and CPU flags available, a
different set of Rx paths may be defined by a driver using the common
path selection infrastructure. However the Rx path selection function
iterates through the entire array of potential Rx paths, regardless of
whether they are available for selection by that platform. This could
result in a null Rx burst function being selected. Fix this by
discarding paths with a null Rx burst function from selection.
Fixes: 9d99641d80a0 ("net/intel: introduce infrastructure for Rx path selection")
Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
drivers/net/intel/common/rx.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/net/intel/common/rx.h b/drivers/net/intel/common/rx.h
index ea7fb98b47..83259f2737 100644
--- a/drivers/net/intel/common/rx.h
+++ b/drivers/net/intel/common/rx.h
@@ -267,4 +267,8 @@ ci_rx_path_select(struct ci_rx_path_features req_features,
const struct ci_rx_path_features *path_features = &infos[i].features;
+ /* Do not select a path with a NULL pkt_burst function. */
+ if (infos[i].pkt_burst == NULL)
+ continue;
+
/* Do not select a disabled rx path. */
if (path_features->extra.disabled)
--
2.53.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-02-26 10:16:49.471755157 +0000
+++ 0060-net-intel-prevent-selection-of-a-null-Rx-burst-funct.patch 2026-02-26 10:16:46.976300046 +0000
@@ -1 +1 @@
-From 2e97d51b5572a58de348cf3524012aa7391c70bf Mon Sep 17 00:00:00 2001
+From d026945e38f800912359d0724532f040f545b5e8 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 2e97d51b5572a58de348cf3524012aa7391c70bf ]
+
@@ -15 +16,0 @@
-Cc: stable at dpdk.org
@@ -24 +25 @@
-index 463d1eb834..cb64753110 100644
+index ea7fb98b47..83259f2737 100644
More information about the stable
mailing list