diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-04-10 23:45:18 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:24:46 -0400 |
commit | c1d2bbe1cd6c7bbdc6d532cefebb66c7efb789ce (patch) | |
tree | 03a715961ba576a11cbc0e91c5d465e4c4d95d82 /net/ipv6/ip6_tunnel.c | |
parent | 57effc70a5be9f7804e9a99964eb7265367effca (diff) |
[SK_BUFF]: Introduce skb_reset_network_header(skb)
For the common, open coded 'skb->nh.raw = skb->data' operation, so that we can
later turn skb->nh.raw into a offset, reducing the size of struct sk_buff in
64bit land while possibly keeping it as a pointer on 32bit.
This one touches just the most simple case, next will handle the slightly more
"complex" cases.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
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)); |