diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-03-19 18:30:44 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:24:32 -0400 |
commit | 459a98ed881802dee55897441bc7f77af614368e (patch) | |
tree | b81f76632d8f2e21eb91ec3d885091a98398d93e /net/core/skbuff.c | |
parent | 4c13eb6657fe9ef7b4dc8f1a405c902e9e5234e0 (diff) |
[SK_BUFF]: Introduce skb_reset_mac_header(skb)
For the common, open coded 'skb->mac.raw = skb->data' operation, so that we can
later turn skb->mac.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/core/skbuff.c')
-rw-r--r-- | net/core/skbuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 336958fbbcb2..8f6ebd0d3693 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c | |||
@@ -1928,7 +1928,7 @@ struct sk_buff *skb_segment(struct sk_buff *skb, int features) | |||
1928 | nskb->mac_len = skb->mac_len; | 1928 | nskb->mac_len = skb->mac_len; |
1929 | 1929 | ||
1930 | skb_reserve(nskb, headroom); | 1930 | skb_reserve(nskb, headroom); |
1931 | nskb->mac.raw = nskb->data; | 1931 | skb_reset_mac_header(nskb); |
1932 | nskb->nh.raw = nskb->data + skb->mac_len; | 1932 | nskb->nh.raw = nskb->data + skb->mac_len; |
1933 | nskb->h.raw = nskb->nh.raw + (skb->h.raw - skb->nh.raw); | 1933 | nskb->h.raw = nskb->nh.raw + (skb->h.raw - skb->nh.raw); |
1934 | memcpy(skb_put(nskb, doffset), skb->data, doffset); | 1934 | memcpy(skb_put(nskb, doffset), skb->data, doffset); |