diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2014-11-06 00:27:48 +0100 |
---|---|---|
committer | Pravin B Shelar <pshelar@nicira.com> | 2014-11-06 08:52:33 +0100 |
commit | 59b93b41e7fa71138734a911b11b044340dd16bd (patch) | |
tree | 7d5680f8c3eba5ce40a04b6115b41550c9d140f5 /net/ipv4/udp_offload.c | |
parent | fou: Fix typo in returning flags in netlink (diff) | |
download | linux-59b93b41e7fa71138734a911b11b044340dd16bd.tar.xz linux-59b93b41e7fa71138734a911b11b044340dd16bd.zip |
net: Remove MPLS GSO feature.
Device can export MPLS GSO support in dev->mpls_features same way
it export vlan features in dev->vlan_features. So it is safe to
remove NETIF_F_GSO_MPLS redundant flag.
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Diffstat (limited to 'net/ipv4/udp_offload.c')
-rw-r--r-- | net/ipv4/udp_offload.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/udp_offload.c b/net/ipv4/udp_offload.c index 0a5a70d0e84c..d3e537ef6b7f 100644 --- a/net/ipv4/udp_offload.c +++ b/net/ipv4/udp_offload.c @@ -207,8 +207,7 @@ static struct sk_buff *udp4_ufo_fragment(struct sk_buff *skb, SKB_GSO_UDP_TUNNEL_CSUM | SKB_GSO_TUNNEL_REMCSUM | SKB_GSO_IPIP | - SKB_GSO_GRE | SKB_GSO_GRE_CSUM | - SKB_GSO_MPLS) || + SKB_GSO_GRE | SKB_GSO_GRE_CSUM) || !(type & (SKB_GSO_UDP)))) goto out; |