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: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Eric W. Biederman 2014-03-11 14:19:14 -07:00 коммит произвёл David S. Miller
Родитель f7e79913a1
Коммит e81f44b66b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}