Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d27e7c3f authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Jeff Garzik
Browse files

ixp2000: use netdev_alloc_skb



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

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 3f7a3535
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -108,14 +108,14 @@ static int ixpdev_rx(struct net_device *dev, int processed, int budget)
		if (unlikely(!netif_running(nds[desc->channel])))
			goto err;

		skb = dev_alloc_skb(desc->pkt_length + 2);
		skb = netdev_alloc_skb(dev, desc->pkt_length + 2);
		if (likely(skb != NULL)) {
			skb_reserve(skb, 2);
			skb_copy_to_linear_data(skb, buf, desc->pkt_length);
			skb_put(skb, desc->pkt_length);
			skb->protocol = eth_type_trans(skb, nds[desc->channel]);

			skb->dev->last_rx = jiffies;
			dev->last_rx = jiffies;

			netif_receive_skb(skb);
		}