All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gso: fix VxLAN/GRE tunnel checks
@ 2019-01-18 13:28 Andrew Rybchenko
  2019-01-19 13:31 ` Hu, Jiayu
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Andrew Rybchenko @ 2019-01-18 13:28 UTC (permalink / raw)
  To: Jiayu Hu; +Cc: dev, stable

Tunnel type is an enum in PKT_TX_TUNNEL_MASK bits.

Fixes: b058d92ea95d ("gso: support VxLAN GSO")
Fixes: 70e737e448c7 ("gso: support GRE GSO")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 lib/librte_gso/gso_common.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/librte_gso/gso_common.h b/lib/librte_gso/gso_common.h
index 6cd764ff5..b6ff1b886 100644
--- a/lib/librte_gso/gso_common.h
+++ b/lib/librte_gso/gso_common.h
@@ -22,12 +22,12 @@
 		(PKT_TX_TCP_SEG | PKT_TX_IPV4))
 
 #define IS_IPV4_VXLAN_TCP4(flag) (((flag) & (PKT_TX_TCP_SEG | PKT_TX_IPV4 | \
-				PKT_TX_OUTER_IPV4 | PKT_TX_TUNNEL_VXLAN)) == \
+				PKT_TX_OUTER_IPV4 | PKT_TX_TUNNEL_MASK)) == \
 		(PKT_TX_TCP_SEG | PKT_TX_IPV4 | PKT_TX_OUTER_IPV4 | \
 		 PKT_TX_TUNNEL_VXLAN))
 
 #define IS_IPV4_GRE_TCP4(flag) (((flag) & (PKT_TX_TCP_SEG | PKT_TX_IPV4 | \
-				PKT_TX_OUTER_IPV4 | PKT_TX_TUNNEL_GRE)) == \
+				PKT_TX_OUTER_IPV4 | PKT_TX_TUNNEL_MASK)) == \
 		(PKT_TX_TCP_SEG | PKT_TX_IPV4 | PKT_TX_OUTER_IPV4 | \
 		 PKT_TX_TUNNEL_GRE))
 
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-01-22 16:09 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-18 13:28 [PATCH] gso: fix VxLAN/GRE tunnel checks Andrew Rybchenko
2019-01-19 13:31 ` Hu, Jiayu
2019-01-20  9:58   ` Andrew Rybchenko
2019-01-20 13:27     ` Hu, Jiayu
2019-01-21  6:27 ` [PATCH v2] " Andrew Rybchenko
2019-01-21  6:40   ` Hu, Jiayu
2019-01-21  6:42 ` [PATCH v3] " Andrew Rybchenko
2019-01-21  6:45   ` Hu, Jiayu
2019-01-22 16:09     ` [dpdk-stable] " Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.