diff options
Diffstat (limited to 'net/mac80211/mlme.c')
| -rw-r--r-- | net/mac80211/mlme.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index cef0c9e79ab..f76b83341cf 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -1430,6 +1430,8 @@ static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,  	del_timer_sync(&sdata->u.mgd.bcn_mon_timer);  	del_timer_sync(&sdata->u.mgd.timer);  	del_timer_sync(&sdata->u.mgd.chswitch_timer); + +	sdata->u.mgd.timers_running = 0;  }  void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata, @@ -3246,6 +3248,8 @@ int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,  	goto out_unlock;   err_clear: +	memset(ifmgd->bssid, 0, ETH_ALEN); +	ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);  	ifmgd->auth_data = NULL;   err_free:  	kfree(auth_data); @@ -3437,6 +3441,8 @@ int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,  	err = 0;  	goto out;   err_clear: +	memset(ifmgd->bssid, 0, ETH_ALEN); +	ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);  	ifmgd->assoc_data = NULL;   err_free:  	kfree(assoc_data);  |