All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/3] wifi: rtlwifi: don't call kfree_skb() under spin_lock_irqsave()
@ 2022-12-07  6:28 Yang Yingliang
  2022-12-07  6:28 ` [PATCH v2 1/3] wifi: rtlwifi: rtl8821ae: " Yang Yingliang
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Yang Yingliang @ 2022-12-07  6:28 UTC (permalink / raw)
  To: pkshih, kvalo; +Cc: linux-wireless, yangyingliang

It is not allowed to call kfree_skb() from hardware interrupt
context or with interrupts being disabled. This patchset is
trying to add all skb to a free list, then free them after
spin_unlock_irqrestore() at once.

v1 -> v2:
  change subject prefix to "wifi: rtlwifi: ..."

Yang Yingliang (3):
  wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under
    spin_lock_irqsave()
  wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under
    spin_lock_irqsave()
  wifi: rtlwifi: rtl8723be: don't call kfree_skb() under
    spin_lock_irqsave()

 drivers/net/wireless/realtek/rtlwifi/rtl8188ee/hw.c | 6 +++++-
 drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.c | 6 +++++-
 drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c | 6 +++++-
 3 files changed, 15 insertions(+), 3 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-12-07 11:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-07  6:28 [PATCH v2 0/3] wifi: rtlwifi: don't call kfree_skb() under spin_lock_irqsave() Yang Yingliang
2022-12-07  6:28 ` [PATCH v2 1/3] wifi: rtlwifi: rtl8821ae: " Yang Yingliang
2022-12-07  6:28 ` [PATCH v2 2/3] wifi: rtlwifi: rtl8188ee: " Yang Yingliang
2022-12-07  6:28 ` [PATCH v2 3/3] wifi: rtlwifi: rtl8723be: " Yang Yingliang
2022-12-07 11:53 ` [PATCH v2 0/3] wifi: rtlwifi: " Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.