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:
Eric Dumazet 2012-04-03 12:02:11 +00:00 committed by David S. Miller
parent bd966e4713
commit e7f8c1fe17
1 changed files with 3 additions and 3 deletions

View File

@ -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 */