All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH wireless] wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll
@ 2023-05-24 14:39 Lorenzo Bianconi
  2023-05-25  5:55 ` Kalle Valo
  2023-05-27  8:17 ` Kalle Valo
  0 siblings, 2 replies; 3+ messages in thread
From: Lorenzo Bianconi @ 2023-05-24 14:39 UTC (permalink / raw)
  To: kvalo; +Cc: lorenzo.bianconi, linux-wireless, nbd

Grab sta_poll_lock spinlock in mt7615_mac_sta_poll routine in order to
avoid possible races with mt7615_mac_add_txs() or mt7615_mac_fill_rx()
removing msta pointer from sta_poll_list.

Fixes: a621372a04ac ("mt76: mt7615: rework mt7615_mac_sta_poll for usb code")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
 drivers/net/wireless/mediatek/mt76/mt7615/mac.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/mac.c b/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
index da1d17b73a25..64002484ccad 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
@@ -914,7 +914,10 @@ void mt7615_mac_sta_poll(struct mt7615_dev *dev)
 
 		msta = list_first_entry(&sta_poll_list, struct mt7615_sta,
 					poll_list);
+
+		spin_lock_bh(&dev->sta_poll_lock);
 		list_del_init(&msta->poll_list);
+		spin_unlock_bh(&dev->sta_poll_lock);
 
 		addr = mt7615_mac_wtbl_addr(dev, msta->wcid.idx) + 19 * 4;
 
-- 
2.40.1


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

* Re: [PATCH wireless] wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll
  2023-05-24 14:39 [PATCH wireless] wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll Lorenzo Bianconi
@ 2023-05-25  5:55 ` Kalle Valo
  2023-05-27  8:17 ` Kalle Valo
  1 sibling, 0 replies; 3+ messages in thread
From: Kalle Valo @ 2023-05-25  5:55 UTC (permalink / raw)
  To: Lorenzo Bianconi; +Cc: lorenzo.bianconi, linux-wireless, nbd

Lorenzo Bianconi <lorenzo@kernel.org> writes:

> Grab sta_poll_lock spinlock in mt7615_mac_sta_poll routine in order to
> avoid possible races with mt7615_mac_add_txs() or mt7615_mac_fill_rx()
> removing msta pointer from sta_poll_list.
>
> Fixes: a621372a04ac ("mt76: mt7615: rework mt7615_mac_sta_poll for usb code")
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>

I'll take this to wireless tree.

-- 
https://patchwork.kernel.org/project/linux-wireless/list/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

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

* Re: [PATCH wireless] wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll
  2023-05-24 14:39 [PATCH wireless] wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll Lorenzo Bianconi
  2023-05-25  5:55 ` Kalle Valo
@ 2023-05-27  8:17 ` Kalle Valo
  1 sibling, 0 replies; 3+ messages in thread
From: Kalle Valo @ 2023-05-27  8:17 UTC (permalink / raw)
  To: Lorenzo Bianconi; +Cc: lorenzo.bianconi, linux-wireless, nbd

Lorenzo Bianconi <lorenzo@kernel.org> wrote:

> Grab sta_poll_lock spinlock in mt7615_mac_sta_poll routine in order to
> avoid possible races with mt7615_mac_add_txs() or mt7615_mac_fill_rx()
> removing msta pointer from sta_poll_list.
> 
> Fixes: a621372a04ac ("mt76: mt7615: rework mt7615_mac_sta_poll for usb code")
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>

Patch applied to wireless.git, thanks.

30bc32c7c1f9 wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll

-- 
https://patchwork.kernel.org/project/linux-wireless/patch/48b23404b759de4f1db2ef85975c72a4aeb1097c.1684938695.git.lorenzo@kernel.org/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches


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

end of thread, other threads:[~2023-05-27  8:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-24 14:39 [PATCH wireless] wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll Lorenzo Bianconi
2023-05-25  5:55 ` Kalle Valo
2023-05-27  8:17 ` 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.