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
1 changed files with 3 additions and 3 deletions
|
@ -990,10 +990,10 @@ static int __lpc_handle_recv(struct net_device *ndev, int budget)
|
||||||
ndev->stats.rx_errors++;
|
ndev->stats.rx_errors++;
|
||||||
} else {
|
} else {
|
||||||
/* Packet is good */
|
/* Packet is good */
|
||||||
skb = dev_alloc_skb(len + 8);
|
skb = dev_alloc_skb(len);
|
||||||
if (!skb)
|
if (!skb) {
|
||||||
ndev->stats.rx_dropped++;
|
ndev->stats.rx_dropped++;
|
||||||
else {
|
} else {
|
||||||
prdbuf = skb_put(skb, len);
|
prdbuf = skb_put(skb, len);
|
||||||
|
|
||||||
/* Copy packet from buffer */
|
/* Copy packet from buffer */
|
||||||
|
|
Loading…
Reference in a new issue