commit | 0942170f32e1e9076f9a5f350250b8ec59ac04fa | [log] [tgz] |
---|---|---|
author | Wei Yongjun <weiyongjun1@huawei.com> | Sat Oct 22 14:34:55 2016 +0000 |
committer | David S. Miller <davem@davemloft.net> | Wed Oct 26 17:21:59 2016 -0400 |
tree | 564d58fb7ffde8b573a62a3446b3b9f7ec6f858e | |
parent | a24a9d7aca2daef4ac87d1ef00ef21586ec6affe [diff] |
net: ns83820: use dev_kfree_skb_irq instead of kfree_skb It is not allowed to call kfree_skb() from hardware interrupt context or with interrupts being disabled, spin_lock_irqsave() make sure always in irq disable context. So the kfree_skb() should be replaced with dev_kfree_skb_irq(). This is detected by Coccinelle semantic patch. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>