diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-02-24 21:12:42 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-02-26 14:43:01 -0500 |
commit | e4396b544fa5c85e3c263e0bc92b0743a24ba818 (patch) | |
tree | 834bc9f7a8e6f741654a61ecdea60ec08759334f /net/ipv4/xfrm4_mode_tunnel.c | |
parent | 4c3ae4d7e727eac6f6eb23587cef0413734d4ae1 (diff) |
[XFRM_TUNNEL]: Reload header pointer after pskb_may_pull/pskb_expand_head
Please consider applying, this was found on your latest
net-2.6 tree while playing around with that ip_hdr() + turn
skb->nh/h/mac pointers as offsets on 64 bits idea :-)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/xfrm4_mode_tunnel.c')
-rw-r--r-- | net/ipv4/xfrm4_mode_tunnel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/xfrm4_mode_tunnel.c b/net/ipv4/xfrm4_mode_tunnel.c index e1cab33fdad1..ceb4376f572a 100644 --- a/net/ipv4/xfrm4_mode_tunnel.c +++ b/net/ipv4/xfrm4_mode_tunnel.c | |||
@@ -111,6 +111,7 @@ static int xfrm4_tunnel_input(struct xfrm_state *x, struct sk_buff *skb) | |||
111 | (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))) | 111 | (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))) |
112 | goto out; | 112 | goto out; |
113 | 113 | ||
114 | iph = skb->nh.iph; | ||
114 | if (iph->protocol == IPPROTO_IPIP) { | 115 | if (iph->protocol == IPPROTO_IPIP) { |
115 | if (x->props.flags & XFRM_STATE_DECAP_DSCP) | 116 | if (x->props.flags & XFRM_STATE_DECAP_DSCP) |
116 | ipv4_copy_dscp(iph, skb->h.ipiph); | 117 | ipv4_copy_dscp(iph, skb->h.ipiph); |