소스 검색

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>
Stephen Hemminger 17 년 전
부모
커밋
2723b01921
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      drivers/net/sc92031.c

+ 1 - 1
drivers/net/sc92031.c

@@ -796,7 +796,7 @@ static void _sc92031_rx_tasklet(struct net_device *dev)
 
 
 		rx_len -= rx_size_align + 4;
 		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 (unlikely(!skb)) {
 			if (printk_ratelimit())
 			if (printk_ratelimit())
 				printk(KERN_ERR "%s: Couldn't allocate a skb_buff for a packet of size %u\n",
 				printk(KERN_ERR "%s: Couldn't allocate a skb_buff for a packet of size %u\n",