patch 'app/testpmd: include IP fields in UDP RSS option' has been queued to stable release 24.11.7

luca.boccassi at gmail.com luca.boccassi at gmail.com
Mon Jul 6 12:20:44 CEST 2026


Hi,

FYI, your patch has been queued to stable release 24.11.7

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 07/05/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/bluca/dpdk-stable

This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/86c10e32b536e12d343a974112c8857d26e1238f

Thanks.

Luca Boccassi

---
>From 86c10e32b536e12d343a974112c8857d26e1238f 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 2cb0825b97..b073d11704 100644
--- a/app/test-pmd/parameters.c
+++ b/app/test-pmd/parameters.c
@@ -1254,10 +1254,10 @@ launch_args_parse(int argc, char** argv)
 			set_pkt_forwarding_mode(optarg);
 			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:
 			rss_hf |= RTE_ETH_RSS_LEVEL_INNERMOST;
-- 
2.47.3

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-07-03 12:55:48.655049951 +0100
+++ 0052-app-testpmd-include-IP-fields-in-UDP-RSS-option.patch	2026-07-03 12:55:46.694574611 +0100
@@ -1 +1 @@
-From 4984ad2f6e60a3f1126a1ca7b9bf8f5bd9aea276 Mon Sep 17 00:00:00 2001
+From 86c10e32b536e12d343a974112c8857d26e1238f 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 2cb0825b97..b073d11704 100644
@@ -28 +29 @@
-@@ -1286,10 +1286,10 @@ launch_args_parse(int argc, char** argv)
+@@ -1254,10 +1254,10 @@ launch_args_parse(int argc, char** argv)


More information about the stable mailing list