patch 'net/i40e: fix IPv6 GTPU handling' has been queued to stable release 23.11.7
Shani Peretz
shperetz at nvidia.com
Tue Mar 31 08:24:54 CEST 2026
Hi,
FYI, your patch has been queued to stable release 23.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 04/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/shanipr/dpdk-stable
This queued commit can be viewed at:
https://github.com/shanipr/dpdk-stable/commit/586cdb5f3767e037e09efdf231d63c132e007519
Thanks.
Shani
---
>From 586cdb5f3767e037e09efdf231d63c132e007519 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/i40e/i40e_flow.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/net/i40e/i40e_flow.c b/drivers/net/i40e/i40e_flow.c
index 2bc4b136c4..358f351b2f 100644
--- a/drivers/net/i40e/i40e_flow.c
+++ b/drivers/net/i40e/i40e_flow.c
@@ -3581,6 +3581,19 @@ i40e_flow_parse_gtp_pattern(struct rte_eth_dev *dev,
return -rte_errno;
}
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) {
rte_flow_error_set(error, EINVAL,
--
2.43.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-03-31 00:32:37.228314677 +0300
+++ 0095-net-i40e-fix-IPv6-GTPU-handling.patch 2026-03-31 00:32:29.740378000 +0300
@@ -1 +1 @@
-From 089e093ee9e6d3bea5721dc17c79091aa59114b2 Mon Sep 17 00:00:00 2001
+From 586cdb5f3767e037e09efdf231d63c132e007519 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 089e093ee9e6d3bea5721dc17c79091aa59114b2 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -16 +17 @@
- drivers/net/intel/i40e/i40e_flow.c | 13 +++++++++++++
+ drivers/net/i40e/i40e_flow.c | 13 +++++++++++++
@@ -19,5 +20,5 @@
-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
-@@ -3580,6 +3580,19 @@ i40e_flow_parse_gtp_pattern(struct rte_eth_dev *dev,
+diff --git a/drivers/net/i40e/i40e_flow.c b/drivers/net/i40e/i40e_flow.c
+index 2bc4b136c4..358f351b2f 100644
+--- a/drivers/net/i40e/i40e_flow.c
++++ b/drivers/net/i40e/i40e_flow.c
+@@ -3581,6 +3581,19 @@ i40e_flow_parse_gtp_pattern(struct rte_eth_dev *dev,
More information about the stable
mailing list