diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2010-04-29 15:34:01 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-04-30 14:59:15 -0400 |
commit | 49b5c7f473f1bbcb30275dcaee2c06dfb8ec2279 (patch) | |
tree | c11eefc297ad0a0aae253f682bf66912b9907ad9 /net/mac80211/ibss.c | |
parent | edfcba15bdfa520d8c64b496c9260a9d9e0b6d18 (diff) |
mac80211: tell driver about IBSS merge
My previous patch "mac80211: notify driver about
IBSS status" left a problem -- when we merge with
a new BSSID, we never tell the driver that we left
the old one. Fix that.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ibss.c')
-rw-r--r-- | net/mac80211/ibss.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c index a87e309e3b99..c585fced8584 100644 --- a/net/mac80211/ibss.c +++ b/net/mac80211/ibss.c | |||
@@ -91,6 +91,12 @@ static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata, | |||
91 | if (memcmp(ifibss->bssid, bssid, ETH_ALEN)) | 91 | if (memcmp(ifibss->bssid, bssid, ETH_ALEN)) |
92 | sta_info_flush(sdata->local, sdata); | 92 | sta_info_flush(sdata->local, sdata); |
93 | 93 | ||
94 | /* if merging, indicate to driver that we leave the old IBSS */ | ||
95 | if (sdata->vif.bss_conf.ibss_joined) { | ||
96 | sdata->vif.bss_conf.ibss_joined = false; | ||
97 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_IBSS); | ||
98 | } | ||
99 | |||
94 | memcpy(ifibss->bssid, bssid, ETH_ALEN); | 100 | memcpy(ifibss->bssid, bssid, ETH_ALEN); |
95 | 101 | ||
96 | sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0; | 102 | sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0; |