diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-07-18 07:31:31 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-01-03 07:01:41 -0500 |
commit | c82c4a80bbb9c8ffa1d783070a8caa37f2db45b6 (patch) | |
tree | efafa9bdbba034bf4012dc4d2c727d7bd903fd28 /net/mac80211/util.c | |
parent | d582cffbcd04eae0bd8a83b05648bfd54bfd21c9 (diff) |
mac80211: split aggregation stop by reason
The initiator/tx doesn't really identify why an
aggregation session is stopped, give a reason
for stopping that more clearly identifies what's
going on. This will help tell the driver clearly
what is expected of it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r-- | net/mac80211/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index e27c89c27bf4..1b9420730d8c 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c | |||
@@ -1639,7 +1639,8 @@ int ieee80211_reconfig(struct ieee80211_local *local) | |||
1639 | mutex_lock(&local->sta_mtx); | 1639 | mutex_lock(&local->sta_mtx); |
1640 | 1640 | ||
1641 | list_for_each_entry(sta, &local->sta_list, list) { | 1641 | list_for_each_entry(sta, &local->sta_list, list) { |
1642 | ieee80211_sta_tear_down_BA_sessions(sta, true); | 1642 | ieee80211_sta_tear_down_BA_sessions( |
1643 | sta, AGG_STOP_LOCAL_REQUEST); | ||
1643 | clear_sta_flag(sta, WLAN_STA_BLOCK_BA); | 1644 | clear_sta_flag(sta, WLAN_STA_BLOCK_BA); |
1644 | } | 1645 | } |
1645 | 1646 | ||