Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 508f81d5 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by David S. Miller
Browse files

8139cp: Call dev_kfree_skby_any instead of kfree_skb.



Replace kfree_skb with dev_kfree_skb_any in cp_start_xmit
as it can be called in both hard irq and other contexts.

Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d52afde9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -899,7 +899,7 @@ static netdev_tx_t cp_start_xmit (struct sk_buff *skb,

	return NETDEV_TX_OK;
out_dma_error:
	kfree_skb(skb);
	dev_kfree_skb_any(skb);
	cp->dev->stats.tx_dropped++;
	goto out_unlock;
}