[ovs-dev] [PATCH V2 2/6] datapath: Remove all references to SKB_GSO_UDP.

Greg Rose gvrose8192 at gmail.com
Thu Aug 24 15:10:22 UTC 2017


Upstream commit:
    commit 880388aa3c07fdea4f9b85e35641753017b1852f
    Author: David S. Miller <davem at davemloft.net>
    Date:   Mon Jul 3 07:29:12 2017 -0700

    net: Remove all references to SKB_GSO_UDP.

    Such packets are no longer possible.

    Signed-off-by: David S. Miller <davem at davemloft.net>

SKB_GSO_UDP is removed in the upstream kernel.  Use HAVE_SKB_GSO_UDP
define from acinclude to detect if SKB_GSO_UDP exists and if so apply
openvswitch section of this upstream patch.

Signed-off-by: Greg Rose <gvrose8192 at gmail.com>
---
 datapath/flow.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/datapath/flow.c b/datapath/flow.c
index c4f63b0..599b4e5 100644
--- a/datapath/flow.c
+++ b/datapath/flow.c
@@ -589,8 +589,12 @@ static int key_extract(struct sk_buff *skb, struct sw_flow_key *key)
 			key->ip.frag = OVS_FRAG_TYPE_LATER;
 			return 0;
 		}
+#ifdef HAVE_SKB_GSO_UDP
 		if (nh->frag_off & htons(IP_MF) ||
 			skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
+#else
+		if (nh->frag_off & htons(IP_MF))
+#endif
 			key->ip.frag = OVS_FRAG_TYPE_FIRST;
 		else
 			key->ip.frag = OVS_FRAG_TYPE_NONE;
@@ -707,9 +711,11 @@ static int key_extract(struct sk_buff *skb, struct sw_flow_key *key)
 
 		if (key->ip.frag == OVS_FRAG_TYPE_LATER)
 			return 0;
+#ifdef HAVE_SKB_GSO_UDP
 		if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
 			key->ip.frag = OVS_FRAG_TYPE_FIRST;
 
+#endif
 		/* Transport layer. */
 		if (key->ip.proto == NEXTHDR_TCP) {
 			if (tcphdr_ok(skb)) {
-- 
1.8.3.1



More information about the dev mailing list