diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-07-18 12:54:46 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-09-21 16:14:14 +0200 |
commit | 582bb505b67847600ee27e4cda108bb99a8b6306 (patch) | |
tree | c3d5e35b96584008f9f87846a0753d6337e12f62 /net | |
parent | 7f1611469b67739df260a6487b2a5e199e8eeba1 (diff) | |
download | linux-582bb505b67847600ee27e4cda108bb99a8b6306.tar.gz linux-582bb505b67847600ee27e4cda108bb99a8b6306.tar.bz2 linux-582bb505b67847600ee27e4cda108bb99a8b6306.zip |
mac80211: don't send delBA when removing stations
When a station is removed and we stop the aggregation
sessions, it's not useful to send delBA since this is
due to us or the station disassociating or dropping
the connection in some other way, so change that.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/sta_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index 9c8cd8b8f753..797dd36a220d 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c @@ -738,7 +738,7 @@ int __must_check __sta_info_destroy(struct sta_info *sta) * will be sufficient. */ set_sta_flag(sta, WLAN_STA_BLOCK_BA); - ieee80211_sta_tear_down_BA_sessions(sta, true); + ieee80211_sta_tear_down_BA_sessions(sta, false); ret = sta_info_hash_del(local, sta); if (ret) |