sc92031: use netdev_alloc_skb
Use netdev_alloc_skb since it handles any NUMA node memory localtion issues and sets skb->dev. Since device driver was not setting skb->dev, I bet filter rules based on device would not work. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
parent
26a17b7bbb
commit
2723b01921
1 changed files with 1 additions and 1 deletions
|
@ -796,7 +796,7 @@ static void _sc92031_rx_tasklet(struct net_device *dev)
|
|||
|
||||
rx_len -= rx_size_align + 4;
|
||||
|
||||
skb = dev_alloc_skb(pkt_size + NET_IP_ALIGN);
|
||||
skb = netdev_alloc_skb(dev, pkt_size + NET_IP_ALIGN);
|
||||
if (unlikely(!skb)) {
|
||||
if (printk_ratelimit())
|
||||
printk(KERN_ERR "%s: Couldn't allocate a skb_buff for a packet of size %u\n",
|
||||
|
|
Loading…
Reference in a new issue