Add skb_is_gso_v6
authorBrice Goglin <brice@myri.com>
Sat, 13 Oct 2007 10:33:32 +0000 (12:33 +0200)
committerJeff Garzik <jeff@garzik.org>
Mon, 15 Oct 2007 18:24:07 +0000 (14:24 -0400)
Add skb_is_gso_v6().

Signed-off-by: Brice Goglin <brice@myri.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
include/linux/skbuff.h

index a656cec..8101e8b 100644 (file)
@@ -1781,6 +1781,11 @@ static inline int skb_is_gso(const struct sk_buff *skb)
        return skb_shinfo(skb)->gso_size;
 }
 
+static inline int skb_is_gso_v6(const struct sk_buff *skb)
+{
+       return skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6;
+}
+
 static inline void skb_forward_csum(struct sk_buff *skb)
 {
        /* Unfortunately we don't support this one.  Any brave souls? */