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

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

mlx4: Call dev_kfree_skby_any instead of dev_kfree_skb.



Replace dev_kfree_skb with dev_kfree_skb_any in functions that can
be called in 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 f7e79913
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -314,7 +314,7 @@ static u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
			}
		}
	}
	dev_kfree_skb(skb);
	dev_kfree_skb_any(skb);
	return tx_info->nr_txbb;
}