linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mac80211: use RCU read locks for sta_info_get
@ 2011-12-26  6:59 Mohammed Shafi Shajakhan
  2011-12-26 10:51 ` Christian Lamparter
  2011-12-29 13:12 ` Kalle Valo
  0 siblings, 2 replies; 6+ messages in thread
From: Mohammed Shafi Shajakhan @ 2011-12-26  6:59 UTC (permalink / raw)
  To: John W. Linville, Johannes Berg
  Cc: linux-wireless, Mohammed Shafi Shajakhan, Paul Stewart,
	Christian Lamparter

From: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>

Cc: Paul Stewart <pstew@google.com>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
---
 net/mac80211/mlme.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 57989a0..ecb4c84 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -1385,9 +1385,11 @@ void ieee80211_beacon_connection_loss_work(struct work_struct *work)
 	struct sta_info *sta;
 
 	if (ifmgd->associated) {
+		rcu_read_lock();
 		sta = sta_info_get(sdata, ifmgd->bssid);
 		if (sta)
 			sta->beacon_loss_count++;
+		rcu_read_unlock();
 	}
 
 	if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
-- 
1.7.0.4


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

end of thread, other threads:[~2011-12-29 13:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-26  6:59 [PATCH] mac80211: use RCU read locks for sta_info_get Mohammed Shafi Shajakhan
2011-12-26 10:51 ` Christian Lamparter
2011-12-26 13:07   ` Mohammed Shafi Shajakhan
2011-12-26 20:36     ` Christian Lamparter
2011-12-29 13:12 ` Kalle Valo
2011-12-29 13:28   ` Mohammed Shafi Shajakhan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).