Commit 82586340 authored by YOSHIFUJI Hideaki / 吉藤英明's avatar YOSHIFUJI Hideaki / 吉藤英明 Committed by David S. Miller

firewire net: Use LL_RESERVED_SPACE(), HH_DATA_OFF().

Signed-off-by: default avatarYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b577d7e2
...@@ -270,7 +270,7 @@ static int fwnet_header_cache(const struct neighbour *neigh, ...@@ -270,7 +270,7 @@ static int fwnet_header_cache(const struct neighbour *neigh,
if (type == cpu_to_be16(ETH_P_802_3)) if (type == cpu_to_be16(ETH_P_802_3))
return -1; return -1;
net = neigh->dev; net = neigh->dev;
h = (struct fwnet_header *)((u8 *)hh->hh_data + 16 - sizeof(*h)); h = (struct fwnet_header *)((u8 *)hh->hh_data + HH_DATA_OFF(sizeof(*h)));
h->h_proto = type; h->h_proto = type;
memcpy(h->h_dest, neigh->ha, net->addr_len); memcpy(h->h_dest, neigh->ha, net->addr_len);
hh->hh_len = FWNET_HLEN; hh->hh_len = FWNET_HLEN;
...@@ -282,7 +282,7 @@ static int fwnet_header_cache(const struct neighbour *neigh, ...@@ -282,7 +282,7 @@ static int fwnet_header_cache(const struct neighbour *neigh,
static void fwnet_header_cache_update(struct hh_cache *hh, static void fwnet_header_cache_update(struct hh_cache *hh,
const struct net_device *net, const unsigned char *haddr) const struct net_device *net, const unsigned char *haddr)
{ {
memcpy((u8 *)hh->hh_data + 16 - FWNET_HLEN, haddr, net->addr_len); memcpy((u8 *)hh->hh_data + HH_DATA_OFF(FWNET_HLEN), haddr, net->addr_len);
} }
static int fwnet_header_parse(const struct sk_buff *skb, unsigned char *haddr) static int fwnet_header_parse(const struct sk_buff *skb, unsigned char *haddr)
...@@ -398,11 +398,11 @@ static struct fwnet_partial_datagram *fwnet_pd_new(struct net_device *net, ...@@ -398,11 +398,11 @@ static struct fwnet_partial_datagram *fwnet_pd_new(struct net_device *net,
new->datagram_label = datagram_label; new->datagram_label = datagram_label;
new->datagram_size = dg_size; new->datagram_size = dg_size;
new->skb = dev_alloc_skb(dg_size + net->hard_header_len + 15); new->skb = dev_alloc_skb(dg_size + LL_RESERVED_SPACE(net));
if (new->skb == NULL) if (new->skb == NULL)
goto fail_w_fi; goto fail_w_fi;
skb_reserve(new->skb, (net->hard_header_len + 15) & ~15); skb_reserve(new->skb, LL_RESERVED_SPACE(net));
new->pbuf = skb_put(new->skb, dg_size); new->pbuf = skb_put(new->skb, dg_size);
memcpy(new->pbuf + frag_off, frag_buf, frag_len); memcpy(new->pbuf + frag_off, frag_buf, frag_len);
list_add_tail(&new->pd_link, &peer->pd_list); list_add_tail(&new->pd_link, &peer->pd_list);
...@@ -690,14 +690,14 @@ static int fwnet_incoming_packet(struct fwnet_device *dev, __be32 *buf, int len, ...@@ -690,14 +690,14 @@ static int fwnet_incoming_packet(struct fwnet_device *dev, __be32 *buf, int len,
buf++; buf++;
len -= RFC2374_UNFRAG_HDR_SIZE; len -= RFC2374_UNFRAG_HDR_SIZE;
skb = dev_alloc_skb(len + net->hard_header_len + 15); skb = dev_alloc_skb(len + LL_RESERVED_SPACE(net));
if (unlikely(!skb)) { if (unlikely(!skb)) {
dev_err(&net->dev, "out of memory\n"); dev_err(&net->dev, "out of memory\n");
net->stats.rx_dropped++; net->stats.rx_dropped++;
return -ENOMEM; return -ENOMEM;
} }
skb_reserve(skb, (net->hard_header_len + 15) & ~15); skb_reserve(skb, LL_RESERVED_SPACE(net));
memcpy(skb_put(skb, len), buf, len); memcpy(skb_put(skb, len), buf, len);
return fwnet_finish_incoming_packet(net, skb, source_node_id, return fwnet_finish_incoming_packet(net, skb, source_node_id,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment