mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
net: lpc_eth: no need to reserve 8 extra bytes in rx skb
Probably a leftover from ancient code... Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Cc: Roland Stigge <stigge@antcom.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bd966e4713
commit
e7f8c1fe17
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user