patch 'app/testpmd: mask VLAN inner type in flow rule' has been queued to stable release 25.11.3
Kevin Traynor
ktraynor at redhat.com
Tue Jul 28 17:56:58 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/315546f14aa0f484d4f4e70b3229dd8d9f64a32d
Thanks.
Kevin
---
>From 315546f14aa0f484d4f4e70b3229dd8d9f64a32d Mon Sep 17 00:00:00 2001
From: Anatoly Burakov <anatoly.burakov at intel.com>
Date: Tue, 16 Jun 2026 11:27:39 +0100
Subject: [PATCH] app/testpmd: mask VLAN inner type in flow rule
[ upstream commit de72ac890b6345e5dd3cb2563d3899ed7bccb0b7 ]
Currently, when testpmd command `...vlan inner_type is 0x1234`, the VLAN
inner type field is being specified in spec, but is not masked in mask.
Add full mask to VLAN inner type when specified.
Fixes: e58638c32411 ("ethdev: fix TPID handling in flow API")
Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
---
app/test-pmd/cmdline_flow.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c
index 72a15741a2..2ae72a3dec 100644
--- a/app/test-pmd/cmdline_flow.c
+++ b/app/test-pmd/cmdline_flow.c
@@ -4619,6 +4619,6 @@ static const struct token token_list[] = {
.next = NEXT(item_vlan, NEXT_ENTRY(COMMON_UNSIGNED),
item_param),
- .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_vlan,
- hdr.eth_proto)),
+ .args = ARGS(ARGS_ENTRY_MASK_HTON(struct rte_flow_item_vlan,
+ hdr.eth_proto, "\xff\xff")),
},
[ITEM_VLAN_HAS_MORE_VLAN] = {
--
2.55.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-07-28 16:54:53.361409537 +0100
+++ 0088-app-testpmd-mask-VLAN-inner-type-in-flow-rule.patch 2026-07-28 16:54:50.846729124 +0100
@@ -1 +1 @@
-From de72ac890b6345e5dd3cb2563d3899ed7bccb0b7 Mon Sep 17 00:00:00 2001
+From 315546f14aa0f484d4f4e70b3229dd8d9f64a32d Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit de72ac890b6345e5dd3cb2563d3899ed7bccb0b7 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -19 +20 @@
-index 0b7d268535..e41ab0ef9b 100644
+index 72a15741a2..2ae72a3dec 100644
@@ -22 +23 @@
-@@ -4643,6 +4643,6 @@ static const struct token token_list[] = {
+@@ -4619,6 +4619,6 @@ static const struct token token_list[] = {
More information about the stable
mailing list