diff options
author | David S. Miller <davem@davemloft.net> | 2014-11-06 16:33:13 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-06 16:33:13 -0500 |
commit | 6b798d70d07a38e9ba0a32316f76495f9dcfc343 (patch) | |
tree | f1c6e7acc61511454ab27e8ecdb00dfdcc8766e8 /net/ipv6 | |
parent | 271d70f4b7f2990c84138be267f8e42c33506cc7 (diff) | |
parent | a85311bf1f9f8185682990cafdd4e0572c0ed373 (diff) |
Merge branch 'net_next_ovs' of git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch
Pravin B Shelar says:
====================
Open vSwitch
First two patches are related to OVS MPLS support. Rest of patches
are mostly refactoring and minor improvements to openvswitch.
v1-v2:
- Fix conflicts due to "gue: Remote checksum offload"
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ip6_offload.c | 1 | ||||
-rw-r--r-- | net/ipv6/udp_offload.c | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/net/ipv6/ip6_offload.c b/net/ipv6/ip6_offload.c index e9767079a360..fd76ce938c32 100644 --- a/net/ipv6/ip6_offload.c +++ b/net/ipv6/ip6_offload.c | |||
@@ -79,7 +79,6 @@ static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, | |||
79 | SKB_GSO_UDP_TUNNEL | | 79 | SKB_GSO_UDP_TUNNEL | |
80 | SKB_GSO_UDP_TUNNEL_CSUM | | 80 | SKB_GSO_UDP_TUNNEL_CSUM | |
81 | SKB_GSO_TUNNEL_REMCSUM | | 81 | SKB_GSO_TUNNEL_REMCSUM | |
82 | SKB_GSO_MPLS | | ||
83 | SKB_GSO_TCPV6 | | 82 | SKB_GSO_TCPV6 | |
84 | 0))) | 83 | 0))) |
85 | goto out; | 84 | goto out; |
diff --git a/net/ipv6/udp_offload.c b/net/ipv6/udp_offload.c index 637ba2e438b7..b6aa8ed18257 100644 --- a/net/ipv6/udp_offload.c +++ b/net/ipv6/udp_offload.c | |||
@@ -46,8 +46,7 @@ static struct sk_buff *udp6_ufo_fragment(struct sk_buff *skb, | |||
46 | SKB_GSO_GRE | | 46 | SKB_GSO_GRE | |
47 | SKB_GSO_GRE_CSUM | | 47 | SKB_GSO_GRE_CSUM | |
48 | SKB_GSO_IPIP | | 48 | SKB_GSO_IPIP | |
49 | SKB_GSO_SIT | | 49 | SKB_GSO_SIT) || |
50 | SKB_GSO_MPLS) || | ||
51 | !(type & (SKB_GSO_UDP)))) | 50 | !(type & (SKB_GSO_UDP)))) |
52 | goto out; | 51 | goto out; |
53 | 52 | ||