patch 'net/ice: support VXLAN-GPE tunnel offload' has been queued to stable release 21.11.3

Kevin Traynor ktraynor at redhat.com
Fri Nov 11 11:33:20 CET 2022


Hi,

FYI, your patch has been queued to stable release 21.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 11/14/22. 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/5daff7df21c31b4f7f3c8e95ea45c38964c76065

Thanks.

Kevin

---
>From 5daff7df21c31b4f7f3c8e95ea45c38964c76065 Mon Sep 17 00:00:00 2001
From: Mingjin Ye <mingjinx.ye at intel.com>
Date: Fri, 21 Oct 2022 12:59:31 +0000
Subject: [PATCH] net/ice: support VXLAN-GPE tunnel offload

[ upstream commit e91659806abbe9a3f1b9a59c0f68ef51af4c3cd5 ]

PMD tx path does not support VXLAN_GPE tunnel offload. Because it does not
process RTE_MBUF_F_TX_TUNNEL_VXLAN_GPE flag in mbuf, and then the "L4TUNT"
field will not be set in Tx context descriptor.

This patch is to add the RTE_MBUF_F_TX_TUNNEL_VXLAN_GPE flag to
support Tx VXLAN_GPE offload under the scenario if the offload tso
and VXLAN_GPE tunnel are both required, so that it would avoid
tx queue overflowing.

Fixes: daa02b5cddbb ("mbuf: add namespace to offload flags")

Signed-off-by: Mingjin Ye <mingjinx.ye at intel.com>
Tested-by: Ke Xu <ke1.xu at intel.com>
---
 drivers/net/ice/ice_rxtx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ice/ice_rxtx.c b/drivers/net/ice/ice_rxtx.c
index f7455c7726..7675f8c405 100644
--- a/drivers/net/ice/ice_rxtx.c
+++ b/drivers/net/ice/ice_rxtx.c
@@ -2507,4 +2507,5 @@ ice_parse_tunneling_params(uint64_t ol_flags,
 		break;
 	case RTE_MBUF_F_TX_TUNNEL_VXLAN:
+	case RTE_MBUF_F_TX_TUNNEL_VXLAN_GPE:
 	case RTE_MBUF_F_TX_TUNNEL_GTP:
 	case RTE_MBUF_F_TX_TUNNEL_GENEVE:
-- 
2.38.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2022-11-11 10:32:17.793714637 +0000
+++ 0030-net-ice-support-VXLAN-GPE-tunnel-offload.patch	2022-11-11 10:32:17.089300829 +0000
@@ -1 +1 @@
-From e91659806abbe9a3f1b9a59c0f68ef51af4c3cd5 Mon Sep 17 00:00:00 2001
+From 5daff7df21c31b4f7f3c8e95ea45c38964c76065 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit e91659806abbe9a3f1b9a59c0f68ef51af4c3cd5 ]
+
@@ -16 +17,0 @@
-Cc: stable at dpdk.org
@@ -25 +26 @@
-index 7a2d5829c0..cd046a3432 100644
+index f7455c7726..7675f8c405 100644
@@ -28 +29 @@
-@@ -2693,4 +2693,5 @@ ice_parse_tunneling_params(uint64_t ol_flags,
+@@ -2507,4 +2507,5 @@ ice_parse_tunneling_params(uint64_t ol_flags,



More information about the stable mailing list