aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/ht.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-02-10 15:25:54 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-02-13 13:45:48 -0500
commit849b7967818995a32c3017542e33eb3155944368 (patch)
treeafd0a98e50c3b9a851a2b46682f6a3767df2ca04 /net/mac80211/ht.c
parentd75636ef9c1af224f1097941879d5a8db7cd04e5 (diff)
mac80211: further cleanups to stopping BA sessions
Essentially consisting of passing the sta_info pointer around, instead of repeatedly doing hash lookups. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ht.c')
-rw-r--r--net/mac80211/ht.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/net/mac80211/ht.c b/net/mac80211/ht.c
index 1b503f3cc54c..82ea0b63a386 100644
--- a/net/mac80211/ht.c
+++ b/net/mac80211/ht.c
@@ -155,15 +155,12 @@ u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
155 155
156void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta) 156void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta)
157{ 157{
158 struct ieee80211_local *local = sta->local;
159 int i; 158 int i;
160 159
161 for (i = 0; i < STA_TID_NUM; i++) { 160 for (i = 0; i < STA_TID_NUM; i++) {
162 ieee80211_stop_tx_ba_session(&local->hw, sta->sta.addr, i, 161 __ieee80211_stop_tx_ba_session(sta, i, WLAN_BACK_INITIATOR);
163 WLAN_BACK_INITIATOR); 162 __ieee80211_stop_rx_ba_session(sta, i, WLAN_BACK_RECIPIENT,
164 ieee80211_sta_stop_rx_ba_session(sta->sdata, sta->sta.addr, i, 163 WLAN_REASON_QSTA_LEAVE_QBSS);
165 WLAN_BACK_RECIPIENT,
166 WLAN_REASON_QSTA_LEAVE_QBSS);
167 } 164 }
168} 165}
169 166