Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH 1/5] ath9k_htc: Lock sta_notify() callback
@ 2010-05-11 10:54 Sujith.Manoharan
  2010-05-11 10:57 ` Johannes Berg
  0 siblings, 1 reply; 3+ messages in thread
From: Sujith.Manoharan @ 2010-05-11 10:54 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless

Since ->sta_notify() can sleep, protect
the callback with a mutex.

Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
---
 drivers/net/wireless/ath/ath9k/htc_drv_main.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_main.c b/drivers/net/wireless/ath/ath9k/htc_drv_main.c
index 6c386da..9d371c1 100644
--- a/drivers/net/wireless/ath/ath9k/htc_drv_main.c
+++ b/drivers/net/wireless/ath/ath9k/htc_drv_main.c
@@ -1452,6 +1452,8 @@ static void ath9k_htc_sta_notify(struct ieee80211_hw *hw,
 	struct ath9k_htc_priv *priv = hw->priv;
 	int ret;
 
+	mutex_lock(&priv->mutex);
+
 	switch (cmd) {
 	case STA_NOTIFY_ADD:
 		ret = ath9k_htc_add_station(priv, vif, sta);
@@ -1464,6 +1466,8 @@ static void ath9k_htc_sta_notify(struct ieee80211_hw *hw,
 	default:
 		break;
 	}
+
+	mutex_unlock(&priv->mutex);
 }
 
 static int ath9k_htc_conf_tx(struct ieee80211_hw *hw, u16 queue,
-- 
1.7.1


-- 

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

end of thread, other threads:[~2010-05-11 11:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-11 10:54 [PATCH 1/5] ath9k_htc: Lock sta_notify() callback Sujith.Manoharan
2010-05-11 10:57 ` Johannes Berg
2010-05-11 11:17   ` Sujith.Manoharan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox