diff options
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 47c57be97d43..230dd43fc9b3 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -992,6 +992,11 @@ static inline int skb_network_offset(const struct sk_buff *skb) | |||
992 | return skb->nh.raw - skb->data; | 992 | return skb->nh.raw - skb->data; |
993 | } | 993 | } |
994 | 994 | ||
995 | static inline u32 skb_network_header_len(const struct sk_buff *skb) | ||
996 | { | ||
997 | return skb->h.raw - skb->nh.raw; | ||
998 | } | ||
999 | |||
995 | static inline unsigned char *skb_mac_header(const struct sk_buff *skb) | 1000 | static inline unsigned char *skb_mac_header(const struct sk_buff *skb) |
996 | { | 1001 | { |
997 | return skb->mac.raw; | 1002 | return skb->mac.raw; |