diff options
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 2a801380b502..9ea8d6dfe540 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -1904,7 +1904,7 @@ static inline int net_gso_ok(int features, int gso_type) | |||
1904 | static inline int skb_gso_ok(struct sk_buff *skb, int features) | 1904 | static inline int skb_gso_ok(struct sk_buff *skb, int features) |
1905 | { | 1905 | { |
1906 | return net_gso_ok(features, skb_shinfo(skb)->gso_type) && | 1906 | return net_gso_ok(features, skb_shinfo(skb)->gso_type) && |
1907 | (!skb_shinfo(skb)->frag_list || (features & NETIF_F_FRAGLIST)); | 1907 | (!skb_has_frags(skb) || (features & NETIF_F_FRAGLIST)); |
1908 | } | 1908 | } |
1909 | 1909 | ||
1910 | static inline int netif_needs_gso(struct net_device *dev, struct sk_buff *skb) | 1910 | static inline int netif_needs_gso(struct net_device *dev, struct sk_buff *skb) |