blob: ee8bfe18b4882a43b046256bf0f062f55fab64fd [file] [log] [blame]
Johannes Bergb8695a82009-02-10 21:25:46 +01001/*
2 * HT handling
3 *
4 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
5 * Copyright 2002-2005, Instant802 Networks, Inc.
6 * Copyright 2005-2006, Devicescape Software, Inc.
7 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * Copyright 2007-2009, Intel Corporation
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/ieee80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Johannes Bergb8695a82009-02-10 21:25:46 +010018#include <net/mac80211.h>
19#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020020#include "driver-ops.h"
Johannes Bergb8695a82009-02-10 21:25:46 +010021#include "wme.h"
22
Johannes Berg86ab6c52009-02-10 21:25:49 +010023/**
24 * DOC: TX aggregation
25 *
26 * Aggregation on the TX side requires setting the hardware flag
27 * %IEEE80211_HW_AMPDU_AGGREGATION as well as, if present, the @ampdu_queues
28 * hardware parameter to the number of hardware AMPDU queues. If there are no
29 * hardware queues then the driver will (currently) have to do all frame
30 * buffering.
31 *
32 * When TX aggregation is started by some subsystem (usually the rate control
33 * algorithm would be appropriate) by calling the
34 * ieee80211_start_tx_ba_session() function, the driver will be notified via
35 * its @ampdu_action function, with the %IEEE80211_AMPDU_TX_START action.
36 *
37 * In response to that, the driver is later required to call the
38 * ieee80211_start_tx_ba_cb() (or ieee80211_start_tx_ba_cb_irqsafe())
39 * function, which will start the aggregation session.
40 *
41 * Similarly, when the aggregation session is stopped by
42 * ieee80211_stop_tx_ba_session(), the driver's @ampdu_action function will
43 * be called with the action %IEEE80211_AMPDU_TX_STOP. In this case, the
44 * call must not fail, and the driver must later call ieee80211_stop_tx_ba_cb()
45 * (or ieee80211_stop_tx_ba_cb_irqsafe()).
46 */
47
Johannes Bergb8695a82009-02-10 21:25:46 +010048static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
49 const u8 *da, u16 tid,
50 u8 dialog_token, u16 start_seq_num,
51 u16 agg_size, u16 timeout)
52{
53 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +010054 struct sk_buff *skb;
55 struct ieee80211_mgmt *mgmt;
56 u16 capab;
57
58 skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
59
60 if (!skb) {
61 printk(KERN_ERR "%s: failed to allocate buffer "
Johannes Berg47846c92009-11-25 17:46:19 +010062 "for addba request frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +010063 return;
64 }
65 skb_reserve(skb, local->hw.extra_tx_headroom);
66 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
67 memset(mgmt, 0, 24);
68 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +010069 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg8abd3f92009-02-10 21:25:47 +010070 if (sdata->vif.type == NL80211_IFTYPE_AP ||
71 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg47846c92009-11-25 17:46:19 +010072 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +010073 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
74 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +010075
76 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
77 IEEE80211_STYPE_ACTION);
78
79 skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req));
80
81 mgmt->u.action.category = WLAN_CATEGORY_BACK;
82 mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
83
84 mgmt->u.action.u.addba_req.dialog_token = dialog_token;
85 capab = (u16)(1 << 1); /* bit 1 aggregation policy */
86 capab |= (u16)(tid << 2); /* bit 5:2 TID number */
87 capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */
88
89 mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab);
90
91 mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout);
92 mgmt->u.action.u.addba_req.start_seq_num =
93 cpu_to_le16(start_seq_num << 4);
94
Johannes Berg62ae67b2009-11-18 18:42:05 +010095 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +010096}
97
98void ieee80211_send_bar(struct ieee80211_sub_if_data *sdata, u8 *ra, u16 tid, u16 ssn)
99{
100 struct ieee80211_local *local = sdata->local;
101 struct sk_buff *skb;
102 struct ieee80211_bar *bar;
103 u16 bar_control = 0;
104
105 skb = dev_alloc_skb(sizeof(*bar) + local->hw.extra_tx_headroom);
106 if (!skb) {
107 printk(KERN_ERR "%s: failed to allocate buffer for "
Johannes Berg47846c92009-11-25 17:46:19 +0100108 "bar frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100109 return;
110 }
111 skb_reserve(skb, local->hw.extra_tx_headroom);
112 bar = (struct ieee80211_bar *)skb_put(skb, sizeof(*bar));
113 memset(bar, 0, sizeof(*bar));
114 bar->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
115 IEEE80211_STYPE_BACK_REQ);
116 memcpy(bar->ra, ra, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100117 memcpy(bar->ta, sdata->vif.addr, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +0100118 bar_control |= (u16)IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL;
119 bar_control |= (u16)IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA;
120 bar_control |= (u16)(tid << 12);
121 bar->control = cpu_to_le16(bar_control);
122 bar->start_seq_num = cpu_to_le16(ssn);
123
Johannes Berg62ae67b2009-11-18 18:42:05 +0100124 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
125 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +0100126}
127
Johannes Berga622ab72010-06-10 10:21:39 +0200128static void kfree_tid_tx(struct rcu_head *rcu_head)
129{
130 struct tid_ampdu_tx *tid_tx =
131 container_of(rcu_head, struct tid_ampdu_tx, rcu_head);
132
133 kfree(tid_tx);
134}
135
136static int ___ieee80211_stop_tx_ba_session(
137 struct sta_info *sta, u16 tid,
138 enum ieee80211_back_parties initiator)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100139{
Johannes Berg849b7962009-02-10 21:25:54 +0100140 struct ieee80211_local *local = sta->local;
Johannes Berga622ab72010-06-10 10:21:39 +0200141 struct tid_ampdu_tx *tid_tx = sta->ampdu_mlme.tid_tx[tid];
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100142 int ret;
Johannes Berga622ab72010-06-10 10:21:39 +0200143
144 lockdep_assert_held(&sta->lock);
145
146 if (WARN_ON(!tid_tx))
147 return -ENOENT;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100148
Johannes Berg0ab33702010-06-10 10:21:42 +0200149 if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
150 /* not even started yet! */
151 rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], NULL);
152 call_rcu(&tid_tx->rcu_head, kfree_tid_tx);
153 return 0;
154 }
155
Johannes Berg827d42c2009-11-22 12:28:41 +0100156#ifdef CONFIG_MAC80211_HT_DEBUG
157 printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
158 sta->sta.addr, tid);
159#endif /* CONFIG_MAC80211_HT_DEBUG */
160
Johannes Berga622ab72010-06-10 10:21:39 +0200161 set_bit(HT_AGG_STATE_STOPPING, &tid_tx->state);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100162
Johannes Berga622ab72010-06-10 10:21:39 +0200163 /*
164 * After this packets are no longer handed right through
165 * to the driver but are put onto tid_tx->pending instead,
166 * with locking to ensure proper access.
167 */
168 clear_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state);
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530169
Johannes Berga622ab72010-06-10 10:21:39 +0200170 tid_tx->stop_initiator = initiator;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100171
Johannes Berg12375ef2009-11-25 20:30:31 +0100172 ret = drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100173 IEEE80211_AMPDU_TX_STOP,
Johannes Berg24487982009-04-23 18:52:52 +0200174 &sta->sta, tid, NULL);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100175
176 /* HW shall not deny going back to legacy */
177 if (WARN_ON(ret)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100178 /*
179 * We may have pending packets get stuck in this case...
180 * Not bothering with a workaround for now.
181 */
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100182 }
183
184 return ret;
185}
186
Johannes Bergb8695a82009-02-10 21:25:46 +0100187/*
188 * After sending add Block Ack request we activated a timer until
189 * add Block Ack response will arrive from the recipient.
190 * If this timer expires sta_addba_resp_timer_expired will be executed.
191 */
192static void sta_addba_resp_timer_expired(unsigned long data)
193{
194 /* not an elegant detour, but there is no choice as the timer passes
195 * only one argument, and both sta_info and TID are needed, so init
196 * flow in sta_info_create gives the TID as data, while the timer_to_id
197 * array gives the sta through container_of */
198 u16 tid = *(u8 *)data;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100199 struct sta_info *sta = container_of((void *)data,
Johannes Bergb8695a82009-02-10 21:25:46 +0100200 struct sta_info, timer_to_tid[tid]);
Johannes Berga622ab72010-06-10 10:21:39 +0200201 struct tid_ampdu_tx *tid_tx;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100202
Johannes Bergb8695a82009-02-10 21:25:46 +0100203 /* check if the TID waits for addBA response */
204 spin_lock_bh(&sta->lock);
Johannes Berga622ab72010-06-10 10:21:39 +0200205 tid_tx = sta->ampdu_mlme.tid_tx[tid];
206 if (!tid_tx ||
207 test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state)) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100208 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100209#ifdef CONFIG_MAC80211_HT_DEBUG
210 printk(KERN_DEBUG "timer expired on tid %d but we are not "
Johannes Berg67e0f392010-04-19 11:03:13 +0200211 "(or no longer) expecting addBA response there\n",
Johannes Berg8ade0082009-11-18 17:15:06 +0100212 tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100213#endif
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100214 return;
Johannes Bergb8695a82009-02-10 21:25:46 +0100215 }
216
217#ifdef CONFIG_MAC80211_HT_DEBUG
218 printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
219#endif
220
Johannes Berg849b7962009-02-10 21:25:54 +0100221 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100222 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100223}
224
Johannes Berg96f5e662009-02-12 00:51:53 +0100225static inline int ieee80211_ac_from_tid(int tid)
226{
227 return ieee802_1d_to_ac[tid & 7];
228}
229
Johannes Berga6a67db2010-06-10 10:21:41 +0200230/*
231 * When multiple aggregation sessions on multiple stations
232 * are being created/destroyed simultaneously, we need to
233 * refcount the global queue stop caused by that in order
234 * to not get into a situation where one of the aggregation
235 * setup or teardown re-enables queues before the other is
236 * ready to handle that.
237 *
238 * These two functions take care of this issue by keeping
239 * a global "agg_queue_stop" refcount.
240 */
241static void __acquires(agg_queue)
242ieee80211_stop_queue_agg(struct ieee80211_local *local, int tid)
243{
244 int queue = ieee80211_ac_from_tid(tid);
245
246 if (atomic_inc_return(&local->agg_queue_stop[queue]) == 1)
247 ieee80211_stop_queue_by_reason(
248 &local->hw, queue,
249 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
250 __acquire(agg_queue);
251}
252
253static void __releases(agg_queue)
254ieee80211_wake_queue_agg(struct ieee80211_local *local, int tid)
255{
256 int queue = ieee80211_ac_from_tid(tid);
257
258 if (atomic_dec_return(&local->agg_queue_stop[queue]) == 0)
259 ieee80211_wake_queue_by_reason(
260 &local->hw, queue,
261 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
262 __release(agg_queue);
263}
264
Johannes Berg0ab33702010-06-10 10:21:42 +0200265static void ieee80211_tx_ba_session_handle_start(struct sta_info *sta, int tid)
266{
267 struct tid_ampdu_tx *tid_tx = sta->ampdu_mlme.tid_tx[tid];
268 struct ieee80211_local *local = sta->local;
269 struct ieee80211_sub_if_data *sdata = sta->sdata;
270 u16 start_seq_num;
271 int ret;
272
273 /*
274 * While we're asking the driver about the aggregation,
275 * stop the AC queue so that we don't have to worry
276 * about frames that came in while we were doing that,
277 * which would require us to put them to the AC pending
278 * afterwards which just makes the code more complex.
279 */
280 ieee80211_stop_queue_agg(local, tid);
281
282 clear_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
283
284 /*
285 * This might be off by one due to a race that we can't
286 * really prevent here without synchronize_net() which
287 * can't be called now.
288 */
289 start_seq_num = sta->tid_seq[tid] >> 4;
290
291 ret = drv_ampdu_action(local, sdata, IEEE80211_AMPDU_TX_START,
292 &sta->sta, tid, &start_seq_num);
293 if (ret) {
294#ifdef CONFIG_MAC80211_HT_DEBUG
295 printk(KERN_DEBUG "BA request denied - HW unavailable for"
296 " tid %d\n", tid);
297#endif
298 rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], NULL);
299 ieee80211_wake_queue_agg(local, tid);
300 call_rcu(&tid_tx->rcu_head, kfree_tid_tx);
301 return;
302 }
303
304 /* we can take packets again now */
305 ieee80211_wake_queue_agg(local, tid);
306
307 /* activate the timer for the recipient's addBA response */
308 mod_timer(&tid_tx->addba_resp_timer, jiffies + ADDBA_RESP_INTERVAL);
309#ifdef CONFIG_MAC80211_HT_DEBUG
310 printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
311#endif
312
313 sta->ampdu_mlme.addba_req_num[tid]++;
314
315 /* send AddBA request */
316 ieee80211_send_addba_request(sdata, sta->sta.addr, tid,
317 tid_tx->dialog_token, start_seq_num,
318 0x40, 5000);
319}
320
321void ieee80211_tx_ba_session_work(struct work_struct *work)
322{
323 struct sta_info *sta =
324 container_of(work, struct sta_info, ampdu_mlme.work);
325 struct tid_ampdu_tx *tid_tx;
326 int tid;
327
328 /*
329 * When this flag is set, new sessions should be
330 * blocked, and existing sessions will be torn
331 * down by the code that set the flag, so this
332 * need not run.
333 */
334 if (test_sta_flags(sta, WLAN_STA_BLOCK_BA))
335 return;
336
337 spin_lock_bh(&sta->lock);
338 for (tid = 0; tid < STA_TID_NUM; tid++) {
339 tid_tx = sta->ampdu_mlme.tid_tx[tid];
340 if (!tid_tx)
341 continue;
342
343 if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state))
344 ieee80211_tx_ba_session_handle_start(sta, tid);
345 else if (test_and_clear_bit(HT_AGG_STATE_WANT_STOP,
346 &tid_tx->state))
347 ___ieee80211_stop_tx_ba_session(sta, tid,
348 WLAN_BACK_INITIATOR);
349 }
350 spin_unlock_bh(&sta->lock);
351}
352
Johannes Bergc951ad32009-11-16 12:00:38 +0100353int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100354{
Johannes Bergc951ad32009-11-16 12:00:38 +0100355 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
356 struct ieee80211_sub_if_data *sdata = sta->sdata;
357 struct ieee80211_local *local = sdata->local;
Johannes Berga622ab72010-06-10 10:21:39 +0200358 struct tid_ampdu_tx *tid_tx;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100359 int ret = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100360
Johannes Bergb5878a22010-04-07 16:48:40 +0200361 trace_api_start_tx_ba_session(pubsta, tid);
362
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100363 if (WARN_ON(!local->ops->ampdu_action))
364 return -EINVAL;
365
Johannes Bergc951ad32009-11-16 12:00:38 +0100366 if ((tid >= STA_TID_NUM) ||
367 !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION))
Johannes Bergb8695a82009-02-10 21:25:46 +0100368 return -EINVAL;
369
370#ifdef CONFIG_MAC80211_HT_DEBUG
371 printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
Johannes Bergc951ad32009-11-16 12:00:38 +0100372 pubsta->addr, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100373#endif /* CONFIG_MAC80211_HT_DEBUG */
374
Johannes Berg8abd3f92009-02-10 21:25:47 +0100375 /*
376 * The aggregation code is not prepared to handle
377 * anything but STA/AP due to the BSSID handling.
378 * IBSS could work in the code but isn't supported
379 * by drivers or the standard.
380 */
Johannes Bergc951ad32009-11-16 12:00:38 +0100381 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
382 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
383 sdata->vif.type != NL80211_IFTYPE_AP)
384 return -EINVAL;
Johannes Berg8abd3f92009-02-10 21:25:47 +0100385
Johannes Berg618f3562010-04-06 11:18:46 +0200386 if (test_sta_flags(sta, WLAN_STA_BLOCK_BA)) {
Sujith722f0692009-03-17 08:50:06 +0530387#ifdef CONFIG_MAC80211_HT_DEBUG
Johannes Berg2a419052010-06-10 10:21:29 +0200388 printk(KERN_DEBUG "BA sessions blocked. "
Sujith722f0692009-03-17 08:50:06 +0530389 "Denying BA session request\n");
390#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100391 return -EINVAL;
Sujith722f0692009-03-17 08:50:06 +0530392 }
393
Johannes Bergb8695a82009-02-10 21:25:46 +0100394 spin_lock_bh(&sta->lock);
395
396 /* we have tried too many times, receiver does not want A-MPDU */
397 if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
398 ret = -EBUSY;
399 goto err_unlock_sta;
400 }
401
Johannes Berga622ab72010-06-10 10:21:39 +0200402 tid_tx = sta->ampdu_mlme.tid_tx[tid];
Johannes Bergb8695a82009-02-10 21:25:46 +0100403 /* check if the TID is not in aggregation flow already */
Johannes Berga622ab72010-06-10 10:21:39 +0200404 if (tid_tx) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100405#ifdef CONFIG_MAC80211_HT_DEBUG
406 printk(KERN_DEBUG "BA request denied - session is not "
407 "idle on tid %u\n", tid);
408#endif /* CONFIG_MAC80211_HT_DEBUG */
409 ret = -EAGAIN;
410 goto err_unlock_sta;
411 }
412
413 /* prepare A-MPDU MLME for Tx aggregation */
Johannes Berga622ab72010-06-10 10:21:39 +0200414 tid_tx = kzalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
415 if (!tid_tx) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100416#ifdef CONFIG_MAC80211_HT_DEBUG
417 if (net_ratelimit())
418 printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
419 tid);
420#endif
421 ret = -ENOMEM;
Johannes Berg0ab33702010-06-10 10:21:42 +0200422 goto err_unlock_sta;
Johannes Bergb8695a82009-02-10 21:25:46 +0100423 }
Johannes Berg96f5e662009-02-12 00:51:53 +0100424
Johannes Berga622ab72010-06-10 10:21:39 +0200425 skb_queue_head_init(&tid_tx->pending);
Johannes Berg0ab33702010-06-10 10:21:42 +0200426 __set_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100427
Johannes Bergb8695a82009-02-10 21:25:46 +0100428 /* Tx timer */
Johannes Berga622ab72010-06-10 10:21:39 +0200429 tid_tx->addba_resp_timer.function = sta_addba_resp_timer_expired;
430 tid_tx->addba_resp_timer.data = (unsigned long)&sta->timer_to_tid[tid];
431 init_timer(&tid_tx->addba_resp_timer);
Johannes Bergb8695a82009-02-10 21:25:46 +0100432
Johannes Berg0ab33702010-06-10 10:21:42 +0200433 /* assign a dialog token */
Johannes Bergb8695a82009-02-10 21:25:46 +0100434 sta->ampdu_mlme.dialog_token_allocator++;
Johannes Berga622ab72010-06-10 10:21:39 +0200435 tid_tx->dialog_token = sta->ampdu_mlme.dialog_token_allocator;
Johannes Berga622ab72010-06-10 10:21:39 +0200436
Johannes Berg0ab33702010-06-10 10:21:42 +0200437 /* finally, assign it to the array */
438 rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], tid_tx);
Johannes Bergb8695a82009-02-10 21:25:46 +0100439
Johannes Berg0ab33702010-06-10 10:21:42 +0200440 ieee80211_queue_work(&local->hw, &sta->ampdu_mlme.work);
Johannes Berg51a0d382010-05-31 12:00:12 +0200441
Johannes Berg0ab33702010-06-10 10:21:42 +0200442 /* this flow continues off the work */
Johannes Berg96f5e662009-02-12 00:51:53 +0100443 err_unlock_sta:
Johannes Bergb8695a82009-02-10 21:25:46 +0100444 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100445 return ret;
446}
447EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
448
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100449/*
450 * splice packets from the STA's pending to the local pending,
Johannes Berga6a67db2010-06-10 10:21:41 +0200451 * requires a call to ieee80211_agg_splice_finish later
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100452 */
Johannes Berga6a67db2010-06-10 10:21:41 +0200453static void __acquires(agg_queue)
454ieee80211_agg_splice_packets(struct ieee80211_local *local,
455 struct tid_ampdu_tx *tid_tx, u16 tid)
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100456{
Johannes Berga6a67db2010-06-10 10:21:41 +0200457 int queue = ieee80211_ac_from_tid(tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100458 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100459
Johannes Berga6a67db2010-06-10 10:21:41 +0200460 ieee80211_stop_queue_agg(local, tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100461
Johannes Berga622ab72010-06-10 10:21:39 +0200462 if (WARN(!tid_tx, "TID %d gone but expected when splicing aggregates"
463 " from the pending queue\n", tid))
Luis R. Rodriguez416fbdf2009-08-11 13:10:33 -0700464 return;
465
Johannes Berga622ab72010-06-10 10:21:39 +0200466 if (!skb_queue_empty(&tid_tx->pending)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100467 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100468 /* copy over remaining packets */
Johannes Berga622ab72010-06-10 10:21:39 +0200469 skb_queue_splice_tail_init(&tid_tx->pending,
470 &local->pending[queue]);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100471 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
472 }
473}
474
Johannes Berga6a67db2010-06-10 10:21:41 +0200475static void __releases(agg_queue)
476ieee80211_agg_splice_finish(struct ieee80211_local *local, u16 tid)
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100477{
Johannes Berga6a67db2010-06-10 10:21:41 +0200478 ieee80211_wake_queue_agg(local, tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100479}
480
481/* caller must hold sta->lock */
Johannes Bergb1720232009-03-23 17:28:39 +0100482static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
483 struct sta_info *sta, u16 tid)
484{
Johannes Berga622ab72010-06-10 10:21:39 +0200485 lockdep_assert_held(&sta->lock);
486
Johannes Bergb1720232009-03-23 17:28:39 +0100487#ifdef CONFIG_MAC80211_HT_DEBUG
Frans Pop55f98932010-03-24 19:46:29 +0100488 printk(KERN_DEBUG "Aggregation is on for tid %d\n", tid);
Johannes Bergb1720232009-03-23 17:28:39 +0100489#endif
490
Johannes Berga622ab72010-06-10 10:21:39 +0200491 ieee80211_agg_splice_packets(local, sta->ampdu_mlme.tid_tx[tid], tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100492 /*
Johannes Berga622ab72010-06-10 10:21:39 +0200493 * Now mark as operational. This will be visible
494 * in the TX path, and lets it go lock-free in
495 * the common case.
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100496 */
Johannes Berga622ab72010-06-10 10:21:39 +0200497 set_bit(HT_AGG_STATE_OPERATIONAL, &sta->ampdu_mlme.tid_tx[tid]->state);
498 ieee80211_agg_splice_finish(local, tid);
Johannes Bergb1720232009-03-23 17:28:39 +0100499
Johannes Berg12375ef2009-11-25 20:30:31 +0100500 drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100501 IEEE80211_AMPDU_TX_OPERATIONAL,
Johannes Berg24487982009-04-23 18:52:52 +0200502 &sta->sta, tid, NULL);
Johannes Bergb1720232009-03-23 17:28:39 +0100503}
504
Johannes Bergc951ad32009-11-16 12:00:38 +0100505void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100506{
Johannes Bergc951ad32009-11-16 12:00:38 +0100507 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
508 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100509 struct sta_info *sta;
Johannes Berga622ab72010-06-10 10:21:39 +0200510 struct tid_ampdu_tx *tid_tx;
Johannes Bergb8695a82009-02-10 21:25:46 +0100511
Johannes Bergb5878a22010-04-07 16:48:40 +0200512 trace_api_start_tx_ba_cb(sdata, ra, tid);
513
Johannes Bergb8695a82009-02-10 21:25:46 +0100514 if (tid >= STA_TID_NUM) {
515#ifdef CONFIG_MAC80211_HT_DEBUG
516 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
517 tid, STA_TID_NUM);
518#endif
519 return;
520 }
521
522 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100523 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100524 if (!sta) {
525 rcu_read_unlock();
526#ifdef CONFIG_MAC80211_HT_DEBUG
527 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
528#endif
529 return;
530 }
531
Johannes Bergb8695a82009-02-10 21:25:46 +0100532 spin_lock_bh(&sta->lock);
Johannes Berga622ab72010-06-10 10:21:39 +0200533 tid_tx = sta->ampdu_mlme.tid_tx[tid];
Johannes Bergb8695a82009-02-10 21:25:46 +0100534
Johannes Berga622ab72010-06-10 10:21:39 +0200535 if (WARN_ON(!tid_tx)) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100536#ifdef CONFIG_MAC80211_HT_DEBUG
Johannes Berga622ab72010-06-10 10:21:39 +0200537 printk(KERN_DEBUG "addBA was not requested!\n");
Johannes Bergb8695a82009-02-10 21:25:46 +0100538#endif
539 spin_unlock_bh(&sta->lock);
540 rcu_read_unlock();
541 return;
542 }
543
Johannes Berga622ab72010-06-10 10:21:39 +0200544 if (WARN_ON(test_and_set_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state)))
Johannes Berg96f5e662009-02-12 00:51:53 +0100545 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100546
Johannes Berga622ab72010-06-10 10:21:39 +0200547 if (test_bit(HT_AGG_STATE_RESPONSE_RECEIVED, &tid_tx->state))
Johannes Bergb1720232009-03-23 17:28:39 +0100548 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100549
550 out:
Johannes Bergb8695a82009-02-10 21:25:46 +0100551 spin_unlock_bh(&sta->lock);
552 rcu_read_unlock();
553}
Johannes Bergb8695a82009-02-10 21:25:46 +0100554
Johannes Bergc951ad32009-11-16 12:00:38 +0100555void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Berg86ab6c52009-02-10 21:25:49 +0100556 const u8 *ra, u16 tid)
557{
Johannes Bergc951ad32009-11-16 12:00:38 +0100558 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
559 struct ieee80211_local *local = sdata->local;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100560 struct ieee80211_ra_tid *ra_tid;
561 struct sk_buff *skb = dev_alloc_skb(0);
562
563 if (unlikely(!skb)) {
564#ifdef CONFIG_MAC80211_HT_DEBUG
565 if (net_ratelimit())
566 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100567 "dropping start BA session", sdata->name);
Johannes Berg86ab6c52009-02-10 21:25:49 +0100568#endif
569 return;
570 }
571 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
572 memcpy(&ra_tid->ra, ra, ETH_ALEN);
573 ra_tid->tid = tid;
574
Johannes Bergc1475ca2010-06-10 10:21:37 +0200575 skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_START;
576 skb_queue_tail(&sdata->skb_queue, skb);
577 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg86ab6c52009-02-10 21:25:49 +0100578}
579EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
580
Johannes Berg849b7962009-02-10 21:25:54 +0100581int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
582 enum ieee80211_back_parties initiator)
583{
Johannes Berga622ab72010-06-10 10:21:39 +0200584 struct tid_ampdu_tx *tid_tx;
Johannes Berg849b7962009-02-10 21:25:54 +0100585 int ret;
586
Johannes Berg849b7962009-02-10 21:25:54 +0100587 spin_lock_bh(&sta->lock);
Johannes Berga622ab72010-06-10 10:21:39 +0200588 tid_tx = sta->ampdu_mlme.tid_tx[tid];
Johannes Berg849b7962009-02-10 21:25:54 +0100589
Johannes Berg0ab33702010-06-10 10:21:42 +0200590 if (!tid_tx) {
Johannes Berg849b7962009-02-10 21:25:54 +0100591 ret = -ENOENT;
592 goto unlock;
593 }
594
Johannes Berg849b7962009-02-10 21:25:54 +0100595 ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
596
597 unlock:
598 spin_unlock_bh(&sta->lock);
599 return ret;
600}
Johannes Bergb8695a82009-02-10 21:25:46 +0100601
Johannes Berg6a8579d2010-05-27 14:41:07 +0200602int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100603{
Johannes Bergc951ad32009-11-16 12:00:38 +0100604 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
605 struct ieee80211_sub_if_data *sdata = sta->sdata;
606 struct ieee80211_local *local = sdata->local;
Johannes Berg0ab33702010-06-10 10:21:42 +0200607 struct tid_ampdu_tx *tid_tx;
608 int ret = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100609
Johannes Berg6a8579d2010-05-27 14:41:07 +0200610 trace_api_stop_tx_ba_session(pubsta, tid);
Johannes Bergb5878a22010-04-07 16:48:40 +0200611
Johannes Berg42531192009-11-20 09:15:51 +0100612 if (!local->ops->ampdu_action)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100613 return -EINVAL;
614
Johannes Bergb8695a82009-02-10 21:25:46 +0100615 if (tid >= STA_TID_NUM)
616 return -EINVAL;
617
Johannes Berg0ab33702010-06-10 10:21:42 +0200618 spin_lock_bh(&sta->lock);
619 tid_tx = sta->ampdu_mlme.tid_tx[tid];
620
621 if (!tid_tx) {
622 ret = -ENOENT;
623 goto unlock;
624 }
625
626 if (test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
627 /* already in progress stopping it */
628 ret = 0;
629 goto unlock;
630 }
631
632 set_bit(HT_AGG_STATE_WANT_STOP, &tid_tx->state);
633 ieee80211_queue_work(&local->hw, &sta->ampdu_mlme.work);
634
635 unlock:
636 spin_unlock_bh(&sta->lock);
637 return ret;
Johannes Bergb8695a82009-02-10 21:25:46 +0100638}
639EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
640
Johannes Bergc951ad32009-11-16 12:00:38 +0100641void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100642{
Johannes Bergc951ad32009-11-16 12:00:38 +0100643 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
644 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100645 struct sta_info *sta;
Johannes Berga622ab72010-06-10 10:21:39 +0200646 struct tid_ampdu_tx *tid_tx;
Johannes Bergb8695a82009-02-10 21:25:46 +0100647
Johannes Bergb5878a22010-04-07 16:48:40 +0200648 trace_api_stop_tx_ba_cb(sdata, ra, tid);
649
Johannes Bergb8695a82009-02-10 21:25:46 +0100650 if (tid >= STA_TID_NUM) {
651#ifdef CONFIG_MAC80211_HT_DEBUG
652 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
653 tid, STA_TID_NUM);
654#endif
655 return;
656 }
657
658#ifdef CONFIG_MAC80211_HT_DEBUG
659 printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
660 ra, tid);
661#endif /* CONFIG_MAC80211_HT_DEBUG */
662
663 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100664 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100665 if (!sta) {
666#ifdef CONFIG_MAC80211_HT_DEBUG
667 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
668#endif
669 rcu_read_unlock();
670 return;
671 }
Johannes Bergb8695a82009-02-10 21:25:46 +0100672
Johannes Berga622ab72010-06-10 10:21:39 +0200673 spin_lock_bh(&sta->lock);
674 tid_tx = sta->ampdu_mlme.tid_tx[tid];
675
676 if (!tid_tx || !test_bit(HT_AGG_STATE_STOPPING, &tid_tx->state)) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100677#ifdef CONFIG_MAC80211_HT_DEBUG
678 printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
679#endif
Johannes Berga622ab72010-06-10 10:21:39 +0200680 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100681 rcu_read_unlock();
682 return;
683 }
684
Johannes Berga622ab72010-06-10 10:21:39 +0200685 if (tid_tx->stop_initiator == WLAN_BACK_INITIATOR)
Johannes Bergb8695a82009-02-10 21:25:46 +0100686 ieee80211_send_delba(sta->sdata, ra, tid,
687 WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
688
Johannes Berga622ab72010-06-10 10:21:39 +0200689 /*
690 * When we get here, the TX path will not be lockless any more wrt.
691 * aggregation, since the OPERATIONAL bit has long been cleared.
692 * Thus it will block on getting the lock, if it occurs. So if we
693 * stop the queue now, we will not get any more packets, and any
694 * that might be being processed will wait for us here, thereby
695 * guaranteeing that no packets go to the tid_tx pending queue any
696 * more.
697 */
698
Johannes Berga622ab72010-06-10 10:21:39 +0200699 ieee80211_agg_splice_packets(local, tid_tx, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100700
Johannes Berga622ab72010-06-10 10:21:39 +0200701 /* future packets must not find the tid_tx struct any more */
702 rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], NULL);
Johannes Berg96f5e662009-02-12 00:51:53 +0100703
Johannes Berga622ab72010-06-10 10:21:39 +0200704 ieee80211_agg_splice_finish(local, tid);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100705
Johannes Berga622ab72010-06-10 10:21:39 +0200706 call_rcu(&tid_tx->rcu_head, kfree_tid_tx);
Johannes Bergb8695a82009-02-10 21:25:46 +0100707
Johannes Berga622ab72010-06-10 10:21:39 +0200708 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100709 rcu_read_unlock();
710}
Johannes Bergb8695a82009-02-10 21:25:46 +0100711
Johannes Bergc951ad32009-11-16 12:00:38 +0100712void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Bergb8695a82009-02-10 21:25:46 +0100713 const u8 *ra, u16 tid)
714{
Johannes Bergc951ad32009-11-16 12:00:38 +0100715 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
716 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100717 struct ieee80211_ra_tid *ra_tid;
718 struct sk_buff *skb = dev_alloc_skb(0);
719
720 if (unlikely(!skb)) {
721#ifdef CONFIG_MAC80211_HT_DEBUG
722 if (net_ratelimit())
723 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100724 "dropping stop BA session", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100725#endif
726 return;
727 }
728 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
729 memcpy(&ra_tid->ra, ra, ETH_ALEN);
730 ra_tid->tid = tid;
731
Johannes Bergc1475ca2010-06-10 10:21:37 +0200732 skb->pkt_type = IEEE80211_SDATA_QUEUE_AGG_STOP;
733 skb_queue_tail(&sdata->skb_queue, skb);
734 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Bergb8695a82009-02-10 21:25:46 +0100735}
736EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
737
Johannes Berg86ab6c52009-02-10 21:25:49 +0100738
Johannes Bergb8695a82009-02-10 21:25:46 +0100739void ieee80211_process_addba_resp(struct ieee80211_local *local,
740 struct sta_info *sta,
741 struct ieee80211_mgmt *mgmt,
742 size_t len)
743{
Johannes Berga622ab72010-06-10 10:21:39 +0200744 struct tid_ampdu_tx *tid_tx;
Johannes Bergb1720232009-03-23 17:28:39 +0100745 u16 capab, tid;
Johannes Bergb8695a82009-02-10 21:25:46 +0100746
747 capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
748 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
749
Johannes Bergb8695a82009-02-10 21:25:46 +0100750 spin_lock_bh(&sta->lock);
751
Johannes Berga622ab72010-06-10 10:21:39 +0200752 tid_tx = sta->ampdu_mlme.tid_tx[tid];
753
754 if (!tid_tx)
Johannes Berg8ade0082009-11-18 17:15:06 +0100755 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100756
Johannes Berga622ab72010-06-10 10:21:39 +0200757 if (mgmt->u.action.u.addba_resp.dialog_token != tid_tx->dialog_token) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100758#ifdef CONFIG_MAC80211_HT_DEBUG
759 printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
Johannes Berga622ab72010-06-10 10:21:39 +0200760#endif
Johannes Berg8ade0082009-11-18 17:15:06 +0100761 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100762 }
763
Johannes Berga622ab72010-06-10 10:21:39 +0200764 del_timer(&tid_tx->addba_resp_timer);
Johannes Berg8ade0082009-11-18 17:15:06 +0100765
Johannes Bergb8695a82009-02-10 21:25:46 +0100766#ifdef CONFIG_MAC80211_HT_DEBUG
Frans Pop55f98932010-03-24 19:46:29 +0100767 printk(KERN_DEBUG "switched off addBA timer for tid %d\n", tid);
Johannes Berga622ab72010-06-10 10:21:39 +0200768#endif
Johannes Berg2171abc2009-10-29 08:34:00 +0100769
Johannes Bergb8695a82009-02-10 21:25:46 +0100770 if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
771 == WLAN_STATUS_SUCCESS) {
Johannes Berga622ab72010-06-10 10:21:39 +0200772 if (test_and_set_bit(HT_AGG_STATE_RESPONSE_RECEIVED,
773 &tid_tx->state)) {
774 /* ignore duplicate response */
775 goto out;
776 }
Johannes Bergb8695a82009-02-10 21:25:46 +0100777
Johannes Berga622ab72010-06-10 10:21:39 +0200778 if (test_bit(HT_AGG_STATE_DRV_READY, &tid_tx->state))
Johannes Bergb1720232009-03-23 17:28:39 +0100779 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100780
Johannes Bergb1720232009-03-23 17:28:39 +0100781 sta->ampdu_mlme.addba_req_num[tid] = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100782 } else {
Johannes Berg849b7962009-02-10 21:25:54 +0100783 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100784 }
Johannes Berg2171abc2009-10-29 08:34:00 +0100785
Johannes Berg2171abc2009-10-29 08:34:00 +0100786 out:
Johannes Berg849b7962009-02-10 21:25:54 +0100787 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100788}