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

Commit 7c565c33 authored by Eric W. Biederman's avatar Eric W. Biederman
Browse files

stmmac: Call dev_consume_skb_any instead of dev_kfree_skb.



Replace dev_kfree_skb with dev_consume_skb_any in stmmac_tx_clean that can
be called in hard irq and other contexts.  stmmac_tx_clean handles
freeing successfully transmitted packets.

Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
parent 89a9eb63
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1303,7 +1303,7 @@ static void stmmac_tx_clean(struct stmmac_priv *priv)
		priv->hw->mode->clean_desc3(priv, p);

		if (likely(skb != NULL)) {
			dev_kfree_skb(skb);
			dev_consume_skb_any(skb);
			priv->tx_skbuff[entry] = NULL;
		}