diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-08-27 06:35:54 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-08-27 13:53:30 -0400 |
commit | b9dcf712d1fb98bf279fcd453a42a763b104961d (patch) | |
tree | a09aa20ca2c26dbf9439beca7c8c9a403e70c8b5 /net/mac80211/mlme.c | |
parent | 2337db8db845ece2d4ab7673a343e285f1bfda85 (diff) |
mac80211: clean up ifdown/cleanup paths
There's a lot of redundant code in mac80211's
interface cleanup/down, for example freeing
AP beacons is done both when the interface is
set DOWN as well as when it is torn down, of
which only the former has any effect.
Also, a bunch of things should be closer to
where they matter, like the MLME timers that
we should cancel when disassociating, rather
than only when the interface is set DOWN.
Clean up all this code.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r-- | net/mac80211/mlme.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 0cb429657474..c8694478cde2 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
@@ -991,6 +991,11 @@ static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata, | |||
991 | 991 | ||
992 | if (remove_sta) | 992 | if (remove_sta) |
993 | sta_info_destroy_addr(sdata, bssid); | 993 | sta_info_destroy_addr(sdata, bssid); |
994 | |||
995 | del_timer_sync(&sdata->u.mgd.conn_mon_timer); | ||
996 | del_timer_sync(&sdata->u.mgd.bcn_mon_timer); | ||
997 | del_timer_sync(&sdata->u.mgd.timer); | ||
998 | del_timer_sync(&sdata->u.mgd.chswitch_timer); | ||
994 | } | 999 | } |
995 | 1000 | ||
996 | void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata, | 1001 | void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata, |