aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 31806a7ce40e..7c1f1756e482 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -957,6 +957,11 @@ static inline void skb_reserve(struct sk_buff *skb, int len)
957 skb->tail += len; 957 skb->tail += len;
958} 958}
959 959
960static inline void skb_reset_transport_header(struct sk_buff *skb)
961{
962 skb->h.raw = skb->data;
963}
964
960static inline unsigned char *skb_network_header(const struct sk_buff *skb) 965static inline unsigned char *skb_network_header(const struct sk_buff *skb)
961{ 966{
962 return skb->nh.raw; 967 return skb->nh.raw;