diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-04-21 01:47:35 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:25:10 -0400 |
commit | eddc9ec53be2ecdbf4efe0efd4a83052594f0ac0 (patch) | |
tree | 4a38ab4dbd9d61fdf5a5ea6ed61463e0b9e33ba7 /include/net/ip.h | |
parent | e023dd643798c4f06c16466af90b4d250e4b8bd7 (diff) |
[SK_BUFF]: Introduce ip_hdr(), remove skb->nh.iph
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip.h')
-rw-r--r-- | include/net/ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip.h b/include/net/ip.h index 6f7ba32b199d..75f226d26e0d 100644 --- a/include/net/ip.h +++ b/include/net/ip.h | |||
@@ -46,7 +46,7 @@ struct inet_skb_parm | |||
46 | 46 | ||
47 | static inline unsigned int ip_hdrlen(const struct sk_buff *skb) | 47 | static inline unsigned int ip_hdrlen(const struct sk_buff *skb) |
48 | { | 48 | { |
49 | return skb->nh.iph->ihl * 4; | 49 | return ip_hdr(skb)->ihl * 4; |
50 | } | 50 | } |
51 | 51 | ||
52 | struct ipcm_cookie | 52 | struct ipcm_cookie |