patch 'net/i40e: fix IPv6 GTPU handling' has been queued to stable release 25.11.1

Kevin Traynor ktraynor at redhat.com
Thu Feb 26 14:10:11 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/531d7168c2f549fcd2d62ce118938f8998f5d499

Thanks.

Kevin

---
>From 531d7168c2f549fcd2d62ce118938f8998f5d499 Mon Sep 17 00:00:00 2001
From: Anatoly Burakov <anatoly.burakov at intel.com>
Date: Fri, 13 Feb 2026 09:10:09 +0000
Subject: [PATCH] net/i40e: fix IPv6 GTPU handling

[ upstream commit 089e093ee9e6d3bea5721dc17c79091aa59114b2 ]

GTP tunnel code declares support for IPv6 GTPU flows but does not
actually handle IPv6 flow pattern item, resulting in incorrect parsing
for IPv6 GTPU flows. Add IPv6 flow item handling.

Fixes: 47ba0398da3f ("net/i40e: add cloud filter parsing function for GTP")

Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
Acked-by: Vladimir Medvedkin <vladimir.medvedkin at intel.com>
---
 drivers/net/intel/i40e/i40e_flow.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/drivers/net/intel/i40e/i40e_flow.c b/drivers/net/intel/i40e/i40e_flow.c
index 193b1b6725..2374b9bbca 100644
--- a/drivers/net/intel/i40e/i40e_flow.c
+++ b/drivers/net/intel/i40e/i40e_flow.c
@@ -3581,4 +3581,17 @@ i40e_flow_parse_gtp_pattern(struct rte_eth_dev *dev,
 			}
 			break;
+		case RTE_FLOW_ITEM_TYPE_IPV6:
+			filter->ip_type = I40E_TUNNEL_IPTYPE_IPV6;
+			/* IPv6 is used to describe protocol,
+			 * spec and mask should be NULL.
+			 */
+			if (item->spec || item->mask) {
+				rte_flow_error_set(error, EINVAL,
+						   RTE_FLOW_ERROR_TYPE_ITEM,
+						   item,
+						   "Invalid IPv6 item");
+				return -rte_errno;
+			}
+			break;
 		case RTE_FLOW_ITEM_TYPE_UDP:
 			if (item->spec || item->mask) {
-- 
2.53.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-02-26 10:16:52.092966899 +0000
+++ 0129-net-i40e-fix-IPv6-GTPU-handling.patch	2026-02-26 10:16:47.187460269 +0000
@@ -1 +1 @@
-From 089e093ee9e6d3bea5721dc17c79091aa59114b2 Mon Sep 17 00:00:00 2001
+From 531d7168c2f549fcd2d62ce118938f8998f5d499 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 089e093ee9e6d3bea5721dc17c79091aa59114b2 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org



More information about the stable mailing list