net:ethernet:cadence: Replace dev_kfree_skb_any by dev_consume_skb_any

The skb should be freed by dev_consume_skb_any() in macb_pad_and_fcs()
when *skb is still used. The *skb is be replaced by nskb, so the
original *skb should be consumed(not drop).

Signed-off-by: Huang Zijiang <huang.zijiang@zte.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Huang Zijiang 2019-02-14 14:41:18 +08:00 committed by David S. Miller
parent 62f2589883
commit f3e5c07002
1 changed files with 1 additions and 1 deletions

View File

@ -1734,7 +1734,7 @@ static int macb_pad_and_fcs(struct sk_buff **skb, struct net_device *ndev)
if (!nskb)
return -ENOMEM;
dev_kfree_skb_any(*skb);
dev_consume_skb_any(*skb);
*skb = nskb;
}