diff options
author | Johannes Berg | 2011-04-01 13:52:48 +0200 |
---|---|---|
committer | John W. Linville | 2011-04-04 16:20:07 -0400 |
commit | 26d59535aa08386b97ece58a27bb16fca4f066db (patch) | |
tree | 13949e0c77c36c502d99d417a72188189c87e0b6 /net/mac80211/util.c | |
parent | ccc7c28af205888798b51b6cbc0b557ac1170a49 (diff) |
mac80211: clean up station cleanup timer
We currently run this timer exactly once when
a new mac80211 device is registered, but that
is completely pointless since it will have no
work to do at all. Therefore, remove that and
also simplify some code using the timer.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r-- | net/mac80211/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index 556647a910ac..ef0560a2346a 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -1290,7 +1290,7 @@ int ieee80211_reconfig(struct ieee80211_local *local) } } - add_timer(&local->sta_cleanup); + mod_timer(&local->sta_cleanup, jiffies + 1); mutex_lock(&local->sta_mtx); list_for_each_entry(sta, &local->sta_list, list) |