mbox series

[net,0/3] mISDN: don't call dev_kfree_skb() under spin_lock_irqsave()

Message ID 20221207093239.3775457-1-yangyingliang@huawei.com (mailing list archive)
Headers show
Series mISDN: don't call dev_kfree_skb() under spin_lock_irqsave() | expand

Message

Yang Yingliang Dec. 7, 2022, 9:32 a.m. UTC
It is not allowed to call consume_skb() from hardware interrupt context
or with interrupts being disabled. This patchset replace dev_kfree_skb()
with dev_consume_skb_irq() under spin_lock_irqsave().

Yang Yingliang (3):
  mISDN: hfcsusb: don't call dev_kfree_skb() under spin_lock_irqsave()
  mISDN: hfcpci: don't call dev_kfree_skb() under spin_lock_irqsave()
  mISDN: hfcmulti: don't call dev_kfree_skb() under spin_lock_irqsave()

 drivers/isdn/hardware/mISDN/hfcmulti.c | 8 ++++----
 drivers/isdn/hardware/mISDN/hfcpci.c   | 4 ++--
 drivers/isdn/hardware/mISDN/hfcsusb.c  | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)