diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-04-10 23:50:43 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:24:59 -0400 |
commit | d56f90a7c96da5187f0cdf07ee7434fe6aa78bbc (patch) | |
tree | 3b9073cecfbb3b6a1e25ab2b5dd2a22a43aef238 /include/linux | |
parent | bbe735e4247dba32568a305553b010081c8dea99 (diff) |
[SK_BUFF]: Introduce skb_network_header()
For the places where we need a pointer to the network header, it is still legal
to touch skb->nh.raw directly if just adding to, subtracting from or setting it
to another layer header.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/if_pppox.h | 2 | ||||
-rw-r--r-- | include/linux/skbuff.h | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/if_pppox.h b/include/linux/if_pppox.h index 7044f8ab30a0..29d6579ff1a0 100644 --- a/include/linux/if_pppox.h +++ b/include/linux/if_pppox.h | |||
@@ -116,7 +116,7 @@ struct pppoe_hdr { | |||
116 | 116 | ||
117 | static inline struct pppoe_hdr *pppoe_hdr(const struct sk_buff *skb) | 117 | static inline struct pppoe_hdr *pppoe_hdr(const struct sk_buff *skb) |
118 | { | 118 | { |
119 | return (struct pppoe_hdr *)skb->nh.raw; | 119 | return (struct pppoe_hdr *)skb_network_header(skb); |
120 | } | 120 | } |
121 | 121 | ||
122 | struct pppoe_opt { | 122 | struct pppoe_opt { |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 47cc8b07c2b4..76d30f34b986 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -960,6 +960,11 @@ static inline void skb_reserve(struct sk_buff *skb, int len) | |||
960 | skb->tail += len; | 960 | skb->tail += len; |
961 | } | 961 | } |
962 | 962 | ||
963 | static inline unsigned char *skb_network_header(const struct sk_buff *skb) | ||
964 | { | ||
965 | return skb->nh.raw; | ||
966 | } | ||
967 | |||
963 | static inline void skb_reset_network_header(struct sk_buff *skb) | 968 | static inline void skb_reset_network_header(struct sk_buff *skb) |
964 | { | 969 | { |
965 | skb->nh.raw = skb->data; | 970 | skb->nh.raw = skb->data; |