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

Commit e7f8c1fe authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

net: lpc_eth: no need to reserve 8 extra bytes in rx skb



Probably a leftover from ancient code...

Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Cc: Roland Stigge <stigge@antcom.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bd966e47
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -990,10 +990,10 @@ static int __lpc_handle_recv(struct net_device *ndev, int budget)
			ndev->stats.rx_errors++;
		} else {
			/* Packet is good */
			skb = dev_alloc_skb(len + 8);
			if (!skb)
			skb = dev_alloc_skb(len);
			if (!skb) {
				ndev->stats.rx_dropped++;
			else {
			} else {
				prdbuf = skb_put(skb, len);

				/* Copy packet from buffer */