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: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
parent
89a9eb6318
commit
7c565c3346
1 changed files with 1 additions and 1 deletions
|
@ -1303,7 +1303,7 @@ static void stmmac_tx_clean(struct stmmac_priv *priv)
|
||||||
priv->hw->mode->clean_desc3(priv, p);
|
priv->hw->mode->clean_desc3(priv, p);
|
||||||
|
|
||||||
if (likely(skb != NULL)) {
|
if (likely(skb != NULL)) {
|
||||||
dev_kfree_skb(skb);
|
dev_consume_skb_any(skb);
|
||||||
priv->tx_skbuff[entry] = NULL;
|
priv->tx_skbuff[entry] = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue