Re: [PATCH net] xen/netback: don't call kfree_skb() under spin_lock_irqsave()

2022-12-07 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (master) by Paolo Abeni : On Mon, 5 Dec 2022 22:13:33 +0800 you wrote: > It is not allowed to call kfree_skb() from hardware interrupt > context or with interrupts being disabled. So replace kfree_skb() > with dev_kfree_skb_irq() under

Re: [PATCH net] xen/netback: don't call kfree_skb() under spin_lock_irqsave()

2022-12-05 Thread Paul Durrant
On 05/12/2022 14:13, Yang Yingliang wrote: It is not allowed to call kfree_skb() from hardware interrupt context or with interrupts being disabled. So replace kfree_skb() with dev_kfree_skb_irq() under spin_lock_irqsave(). Fixes: be81992f9086 ("xen/netback: don't queue unlimited number of

[PATCH net] xen/netback: don't call kfree_skb() under spin_lock_irqsave()

2022-12-05 Thread Yang Yingliang
It is not allowed to call kfree_skb() from hardware interrupt context or with interrupts being disabled. So replace kfree_skb() with dev_kfree_skb_irq() under spin_lock_irqsave(). Fixes: be81992f9086 ("xen/netback: don't queue unlimited number of packages") Signed-off-by: Yang Yingliang ---