Commit 0f6e8761 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller

net: arc_emac: use dev_kfree_skb_any instead of dev_kfree_skb

Replace dev_kfree_skb with dev_kfree_skb_any in arc_emac_tx()
which can be called from hard irq context (netpoll) and from
other contexts. arc_emac_tx() only frees skbs that it has
dropped.

This is detected by Coccinelle semantic patch.
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e215701f
...@@ -633,7 +633,7 @@ static int arc_emac_tx(struct sk_buff *skb, struct net_device *ndev) ...@@ -633,7 +633,7 @@ static int arc_emac_tx(struct sk_buff *skb, struct net_device *ndev)
if (unlikely(dma_mapping_error(&ndev->dev, addr))) { if (unlikely(dma_mapping_error(&ndev->dev, addr))) {
stats->tx_dropped++; stats->tx_dropped++;
stats->tx_errors++; stats->tx_errors++;
dev_kfree_skb(skb); dev_kfree_skb_any(skb);
return NETDEV_TX_OK; return NETDEV_TX_OK;
} }
dma_unmap_addr_set(&priv->tx_buff[*txbd_curr], addr, addr); dma_unmap_addr_set(&priv->tx_buff[*txbd_curr], addr, addr);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment