misc: st_core: Do not call kfree_skb() under spin_lock_irqsave()
authorJinjie Ruan <ruanjinjie@huawei.com>
Wed, 23 Aug 2023 03:50:20 +0000 (11:50 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 5 Oct 2023 09:26:58 +0000 (11:26 +0200)
commit4d08c3d12b61022501989f9f071514d2d6f77c47
tree07b0824c5ddfc0a088ceec32973f36c11402632d
parent0113a99b8a75f307439c2950cec5b5dab818f35c
misc: st_core: Do not call kfree_skb() under spin_lock_irqsave()

It is not allowed to call kfree_skb() from hardware interrupt
context or with hardware interrupts being disabled.
So replace kfree_skb() with dev_kfree_skb_irq() under
spin_lock_irqsave(). Compile tested only.

Fixes: 53618cc1e51e ("Staging: sources for ST core")
Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
Link: https://lore.kernel.org/r/20230823035020.1281892-1-ruanjinjie@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/ti-st/st_core.c