diff options
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; |
