Skip to content

Commit

Permalink
mac80211: don't send delBA when removing stations
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Johannes Berg committed Sep 21, 2012
1 parent 7f16114 commit 582bb50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/mac80211/sta_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 582bb50

Please sign in to comment.