summary refs log tree commit diff
path: root/net
diff options
context:
space:
mode:
authorEliad Peller <eliad@wizery.com>2012-01-10 15:19:54 +0200
committerJohn W. Linville <linville@tuxdriver.com>2012-01-24 14:47:09 -0500
commitba1960257c5980f9b58057995ce3394bd8e48ca3 (patch)
tree9b91a56e26f268d925e6b420ccaab58dbad15625 /net
parent4f3d09de38d234ce7ffba5ec5a7e6704f983d375 (diff)
downloadlinux-ba1960257c5980f9b58057995ce3394bd8e48ca3.tar.gz
mac80211: update oper_channel on ibss join
Commit 13c40c5 ("mac80211: Add HT operation modes for IBSS") broke
ibss operation by mistakenly removing the local->oper_channel
update (causing ibss to start on the wrong channel). fix it.

Signed-off-by: Eliad Peller <eliad@wizery.com>
Acked-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/ibss.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c
index b3d76b756cd5..a4643969a13b 100644
--- a/net/mac80211/ibss.c
+++ b/net/mac80211/ibss.c
@@ -106,6 +106,7 @@ static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
 
 	sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0;
 
+	local->oper_channel = chan;
 	channel_type = ifibss->channel_type;
 	if (channel_type > NL80211_CHAN_HT20 &&
 	    !cfg80211_can_beacon_sec_chan(local->hw.wiphy, chan, channel_type))