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 /drivers/net/bonding/bond_alb.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 'drivers/net/bonding/bond_alb.c')
-rw-r--r-- | drivers/net/bonding/bond_alb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c index 217a2eedee0a..916162ca0c98 100644 --- a/drivers/net/bonding/bond_alb.c +++ b/drivers/net/bonding/bond_alb.c | |||
@@ -890,7 +890,7 @@ static void alb_send_learning_packets(struct slave *slave, u8 mac_addr[]) | |||
890 | data = skb_put(skb, size); | 890 | data = skb_put(skb, size); |
891 | memcpy(data, &pkt, size); | 891 | memcpy(data, &pkt, size); |
892 | 892 | ||
893 | skb->mac.raw = data; | 893 | skb_reset_mac_header(skb); |
894 | skb->nh.raw = data + ETH_HLEN; | 894 | skb->nh.raw = data + ETH_HLEN; |
895 | skb->protocol = pkt.type; | 895 | skb->protocol = pkt.type; |
896 | skb->priority = TC_PRIO_CONTROL; | 896 | skb->priority = TC_PRIO_CONTROL; |
@@ -1266,7 +1266,7 @@ int bond_alb_xmit(struct sk_buff *skb, struct net_device *bond_dev) | |||
1266 | u8 *hash_start = NULL; | 1266 | u8 *hash_start = NULL; |
1267 | int res = 1; | 1267 | int res = 1; |
1268 | 1268 | ||
1269 | skb->mac.raw = (unsigned char *)skb->data; | 1269 | skb_reset_mac_header(skb); |
1270 | eth_data = eth_hdr(skb); | 1270 | eth_data = eth_hdr(skb); |
1271 | 1271 | ||
1272 | /* make sure that the curr_active_slave and the slaves list do | 1272 | /* make sure that the curr_active_slave and the slaves list do |