patch 'app/testpmd: include IP fields in UDP RSS option' has been queued to stable release 25.11.3
Kevin Traynor
ktraynor at redhat.com
Tue Jul 28 17:57:01 CEST 2026
Hi,
FYI, your patch has been queued to stable release 25.11.3
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 08/01/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/236fe24e637c1b1c55ffee48a28014304ba087fb
Thanks.
Kevin
---
>From 236fe24e637c1b1c55ffee48a28014304ba087fb Mon Sep 17 00:00:00 2001
From: Maxime Leroy <maxime at leroys.fr>
Date: Tue, 16 Jun 2026 11:39:12 +0200
Subject: [PATCH] app/testpmd: include IP fields in UDP RSS option
[ upstream commit 4984ad2f6e60a3f1126a1ca7b9bf8f5bd9aea276 ]
The --rss-udp option is documented as enabling IPv4/IPv6 + UDP RSS, but it
currently sets the RSS hash functions to RTE_ETH_RSS_UDP only.
On PMDs that translate this directly to L4 port extracts, this can build a
L4-only RSS key. Add RTE_ETH_RSS_IP when --rss-udp is selected so the
configured key matches the documented IPv4/IPv6 + UDP behavior.
Make --rss-ip additive as well, so combining --rss-ip and --rss-udp is
order-independent.
Fixes: 8a387fa85f02 ("ethdev: more RSS flags")
Signed-off-by: Maxime Leroy <maxime at leroys.fr>
---
app/test-pmd/parameters.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/test-pmd/parameters.c b/app/test-pmd/parameters.c
index f2037925c2..54f0ad01a7 100644
--- a/app/test-pmd/parameters.c
+++ b/app/test-pmd/parameters.c
@@ -1283,8 +1283,8 @@ launch_args_parse(int argc, char** argv)
break;
case TESTPMD_OPT_RSS_IP_NUM:
- rss_hf = RTE_ETH_RSS_IP;
+ rss_hf |= RTE_ETH_RSS_IP;
break;
case TESTPMD_OPT_RSS_UDP_NUM:
- rss_hf = RTE_ETH_RSS_UDP;
+ rss_hf |= RTE_ETH_RSS_IP | RTE_ETH_RSS_UDP;
break;
case TESTPMD_OPT_RSS_LEVEL_INNER_NUM:
--
2.55.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-07-28 16:54:53.443571628 +0100
+++ 0091-app-testpmd-include-IP-fields-in-UDP-RSS-option.patch 2026-07-28 16:54:50.848267059 +0100
@@ -1 +1 @@
-From 4984ad2f6e60a3f1126a1ca7b9bf8f5bd9aea276 Mon Sep 17 00:00:00 2001
+From 236fe24e637c1b1c55ffee48a28014304ba087fb Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 4984ad2f6e60a3f1126a1ca7b9bf8f5bd9aea276 ]
+
@@ -17 +18,0 @@
-Cc: stable at dpdk.org
@@ -25 +26 @@
-index 337d8fc8ac..0032ea4e25 100644
+index f2037925c2..54f0ad01a7 100644
@@ -28 +29 @@
-@@ -1287,8 +1287,8 @@ launch_args_parse(int argc, char** argv)
+@@ -1283,8 +1283,8 @@ launch_args_parse(int argc, char** argv)
More information about the stable
mailing list