diff options
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 64c3c1687e49..684292efa823 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -962,6 +962,12 @@ static inline void skb_reset_transport_header(struct sk_buff *skb) | |||
962 | skb->h.raw = skb->data; | 962 | skb->h.raw = skb->data; |
963 | } | 963 | } |
964 | 964 | ||
965 | static inline void skb_set_transport_header(struct sk_buff *skb, | ||
966 | const int offset) | ||
967 | { | ||
968 | skb->h.raw = skb->data + offset; | ||
969 | } | ||
970 | |||
965 | static inline int skb_transport_offset(const struct sk_buff *skb) | 971 | static inline int skb_transport_offset(const struct sk_buff *skb) |
966 | { | 972 | { |
967 | return skb->h.raw - skb->data; | 973 | return skb->h.raw - skb->data; |