diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-03-11 21:39:41 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:25:01 -0400 |
commit | c14d2450cb7fe1786e2ec325172baf66922bf597 (patch) | |
tree | 1186bfb1ed197e81a1ff816a513ad69503d5d786 /include | |
parent | 878c814500b123dd61a5e211879a32e5fd932713 (diff) |
[SK_BUFF]: Introduce skb_set_network_header
For the cases where the network header is being set to a offset from skb->data.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-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 76d30f34b986..870438fba93f 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -970,6 +970,11 @@ static inline void skb_reset_network_header(struct sk_buff *skb) | |||
970 | skb->nh.raw = skb->data; | 970 | skb->nh.raw = skb->data; |
971 | } | 971 | } |
972 | 972 | ||
973 | static inline void skb_set_network_header(struct sk_buff *skb, const int offset) | ||
974 | { | ||
975 | skb->nh.raw = skb->data + offset; | ||
976 | } | ||
977 | |||
973 | static inline int skb_network_offset(const struct sk_buff *skb) | 978 | static inline int skb_network_offset(const struct sk_buff *skb) |
974 | { | 979 | { |
975 | return skb->nh.raw - skb->data; | 980 | return skb->nh.raw - skb->data; |