Commit e83728c7 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Jeff Garzik

ns8320: use netdev_alloc_skb

Use netdev_alloc_skb. This sets skb->dev and allows arch specific
allocation.

Compile tested only.
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent c7d6b7d2
...@@ -585,16 +585,13 @@ static inline int rx_refill(struct net_device *ndev, gfp_t gfp) ...@@ -585,16 +585,13 @@ static inline int rx_refill(struct net_device *ndev, gfp_t gfp)
for (i=0; i<NR_RX_DESC; i++) { for (i=0; i<NR_RX_DESC; i++) {
struct sk_buff *skb; struct sk_buff *skb;
long res; long res;
/* extra 16 bytes for alignment */ /* extra 16 bytes for alignment */
skb = __dev_alloc_skb(REAL_RX_BUF_SIZE+16, gfp); skb = __netdev_alloc_skb(ndev, REAL_RX_BUF_SIZE+16, gfp);
if (unlikely(!skb)) if (unlikely(!skb))
break; break;
res = (long)skb->data & 0xf; skb_reserve(skb, skb->data - PTR_ALIGN(skb->data, 16));
res = 0x10 - res;
res &= 0xf;
skb_reserve(skb, res);
if (gfp != GFP_ATOMIC) if (gfp != GFP_ATOMIC)
spin_lock_irqsave(&dev->rx_info.lock, flags); spin_lock_irqsave(&dev->rx_info.lock, flags);
res = ns83820_add_rx_skb(dev, skb); res = ns83820_add_rx_skb(dev, skb);
......
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