diff options
Diffstat (limited to 'net/ipv6/ip6_tunnel.c')
-rw-r--r-- | net/ipv6/ip6_tunnel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c index d8c84d8d7cf8..30df8e6c42cc 100644 --- a/net/ipv6/ip6_tunnel.c +++ b/net/ipv6/ip6_tunnel.c | |||
@@ -525,7 +525,7 @@ ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | |||
525 | dst_release(skb2->dst); | 525 | dst_release(skb2->dst); |
526 | skb2->dst = NULL; | 526 | skb2->dst = NULL; |
527 | skb_pull(skb2, offset); | 527 | skb_pull(skb2, offset); |
528 | skb2->nh.raw = skb2->data; | 528 | skb_reset_network_header(skb2); |
529 | eiph = skb2->nh.iph; | 529 | eiph = skb2->nh.iph; |
530 | 530 | ||
531 | /* Try to guess incoming interface */ | 531 | /* Try to guess incoming interface */ |
@@ -599,7 +599,7 @@ ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | |||
599 | dst_release(skb2->dst); | 599 | dst_release(skb2->dst); |
600 | skb2->dst = NULL; | 600 | skb2->dst = NULL; |
601 | skb_pull(skb2, offset); | 601 | skb_pull(skb2, offset); |
602 | skb2->nh.raw = skb2->data; | 602 | skb_reset_network_header(skb2); |
603 | 603 | ||
604 | /* Try to guess incoming interface */ | 604 | /* Try to guess incoming interface */ |
605 | rt = rt6_lookup(&skb2->nh.ipv6h->saddr, NULL, 0, 0); | 605 | rt = rt6_lookup(&skb2->nh.ipv6h->saddr, NULL, 0, 0); |
@@ -704,7 +704,7 @@ static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol, | |||
704 | } | 704 | } |
705 | secpath_reset(skb); | 705 | secpath_reset(skb); |
706 | skb->mac.raw = skb->nh.raw; | 706 | skb->mac.raw = skb->nh.raw; |
707 | skb->nh.raw = skb->data; | 707 | skb_reset_network_header(skb); |
708 | skb->protocol = htons(protocol); | 708 | skb->protocol = htons(protocol); |
709 | skb->pkt_type = PACKET_HOST; | 709 | skb->pkt_type = PACKET_HOST; |
710 | memset(skb->cb, 0, sizeof(struct inet6_skb_parm)); | 710 | memset(skb->cb, 0, sizeof(struct inet6_skb_parm)); |