mac80211: remove a leftover patch chunk that should have been deleted in r45061
[openwrt/staging/yousong.git] / package / kernel / mac80211 / patches / 300-mac80211-add-an-intermediate-software-queue-implemen.patch
1 From: Felix Fietkau <nbd@openwrt.org>
2 Date: Tue, 18 Nov 2014 23:58:51 +0100
3 Subject: [PATCH] mac80211: add an intermediate software queue implementation
4
5 This allows drivers to request per-vif and per-sta-tid queues from which
6 they can pull frames. This makes it easier to keep the hardware queues
7 short, and to improve fairness between clients and vifs.
8
9 The task of scheduling packet transmission is left up to the driver -
10 queueing is controlled by mac80211. Drivers can only dequeue packets by
11 calling ieee80211_tx_dequeue. This makes it possible to add active queue
12 management later without changing drivers using this code.
13
14 This can also be used as a starting point to implement A-MSDU
15 aggregation in a way that does not add artificially induced latency.
16
17 Signed-off-by: Felix Fietkau <nbd@openwrt.org>
18 ---
19
20 --- a/include/net/mac80211.h
21 +++ b/include/net/mac80211.h
22 @@ -84,6 +84,35 @@
23 *
24 */
25
26 +/**
27 + * DOC: mac80211 software tx queueing
28 + *
29 + * mac80211 provides an optional intermediate queueing implementation designed
30 + * to allow the driver to keep hardware queues short and provide some fairness
31 + * between different stations/interfaces.
32 + * In this model, the driver pulls data frames from the mac80211 queue instead
33 + * of letting mac80211 push them via drv_tx().
34 + * Other frames (e.g. control or management) are still pushed using drv_tx().
35 + *
36 + * Intermediate queues (struct ieee80211_txq) are kept per-sta per-tid, with a
37 + * single per-vif queue for multicast data frames.
38 + *
39 + * The driver is expected to initialize its private per-queue data for stations
40 + * and interfaces in the .add_interface and .sta_add ops.
41 + *
42 + * The driver can not access the queue directly. To dequeue a frame, it calls
43 + * ieee80211_tx_dequeue(). Whenever mac80211 adds a new frame to a queue, it
44 + * calls the .wake_tx_queue driver op.
45 + *
46 + * For AP powersave TIM handling, the driver only needs to indicate if it has
47 + * buffered packets in the driver specific data structures by calling
48 + * ieee80211_sta_set_buffered(). For frames buffered in the ieee80211_txq
49 + * struct, mac80211 sets the appropriate TIM PVB bits and calls
50 + * .release_buffered_frames().
51 + * That callback is expected to release its own buffered frames and afterwards
52 + * also frames from the ieee80211_txq (obtained via ieee80211_tx_dequeue).
53 + */
54 +
55 struct device;
56
57 /**
58 @@ -1257,6 +1286,8 @@ struct ieee80211_vif {
59 u8 cab_queue;
60 u8 hw_queue[IEEE80211_NUM_ACS];
61
62 + struct ieee80211_txq *txq;
63 +
64 struct ieee80211_chanctx_conf __rcu *chanctx_conf;
65
66 u32 driver_flags;
67 @@ -1519,6 +1550,8 @@ struct ieee80211_sta {
68 bool tdls_initiator;
69 bool mfp;
70
71 + struct ieee80211_txq *txq[IEEE80211_NUM_TIDS];
72 +
73 /* must be last */
74 u8 drv_priv[0] __aligned(sizeof(void *));
75 };
76 @@ -1547,6 +1580,27 @@ struct ieee80211_tx_control {
77 };
78
79 /**
80 + * struct ieee80211_txq - Software intermediate tx queue
81 + *
82 + * @vif: &struct ieee80211_vif pointer from the add_interface callback.
83 + * @sta: station table entry, %NULL for per-vif queue
84 + * @tid: the TID for this queue (unused for per-vif queue)
85 + * @ac: the AC for this queue
86 + *
87 + * The driver can obtain packets from this queue by calling
88 + * ieee80211_tx_dequeue().
89 + */
90 +struct ieee80211_txq {
91 + struct ieee80211_vif *vif;
92 + struct ieee80211_sta *sta;
93 + u8 tid;
94 + u8 ac;
95 +
96 + /* must be last */
97 + u8 drv_priv[0] __aligned(sizeof(void *));
98 +};
99 +
100 +/**
101 * enum ieee80211_hw_flags - hardware flags
102 *
103 * These flags are used to indicate hardware capabilities to
104 @@ -1770,6 +1824,8 @@ enum ieee80211_hw_flags {
105 * within &struct ieee80211_sta.
106 * @chanctx_data_size: size (in bytes) of the drv_priv data area
107 * within &struct ieee80211_chanctx_conf.
108 + * @txq_data_size: size (in bytes) of the drv_priv data area
109 + * within @struct ieee80211_txq.
110 *
111 * @max_rates: maximum number of alternate rate retry stages the hw
112 * can handle.
113 @@ -1818,6 +1874,9 @@ enum ieee80211_hw_flags {
114 * @n_cipher_schemes: a size of an array of cipher schemes definitions.
115 * @cipher_schemes: a pointer to an array of cipher scheme definitions
116 * supported by HW.
117 + *
118 + * @txq_ac_max_pending: maximum number of frames per AC pending in all txq
119 + * entries for a vif.
120 */
121 struct ieee80211_hw {
122 struct ieee80211_conf conf;
123 @@ -1830,6 +1889,7 @@ struct ieee80211_hw {
124 int vif_data_size;
125 int sta_data_size;
126 int chanctx_data_size;
127 + int txq_data_size;
128 u16 queues;
129 u16 max_listen_interval;
130 s8 max_signal;
131 @@ -1846,6 +1906,7 @@ struct ieee80211_hw {
132 u8 uapsd_max_sp_len;
133 u8 n_cipher_schemes;
134 const struct ieee80211_cipher_scheme *cipher_schemes;
135 + int txq_ac_max_pending;
136 };
137
138 /**
139 @@ -3007,6 +3068,8 @@ enum ieee80211_reconfig_type {
140 * response template is provided, together with the location of the
141 * switch-timing IE within the template. The skb can only be used within
142 * the function call.
143 + *
144 + * @wake_tx_queue: Called when new packets have been added to the queue.
145 */
146 struct ieee80211_ops {
147 void (*tx)(struct ieee80211_hw *hw,
148 @@ -3238,6 +3301,9 @@ struct ieee80211_ops {
149 void (*tdls_recv_channel_switch)(struct ieee80211_hw *hw,
150 struct ieee80211_vif *vif,
151 struct ieee80211_tdls_ch_sw_params *params);
152 +
153 + void (*wake_tx_queue)(struct ieee80211_hw *hw,
154 + struct ieee80211_txq *txq);
155 };
156
157 /**
158 @@ -5249,4 +5315,17 @@ void ieee80211_unreserve_tid(struct ieee
159 */
160 size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
161 const u8 *ids, int n_ids, size_t offset);
162 +
163 +/**
164 + * ieee80211_tx_dequeue - dequeue a packet from a software tx queue
165 + *
166 + * @hw: pointer as obtained from ieee80211_alloc_hw()
167 + * @txq: pointer obtained from .add_tx_queue() call
168 + *
169 + * Returns the skb if successful, %NULL if no frame was available.
170 + */
171 +struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
172 + struct ieee80211_txq *txq);
173 +
174 +
175 #endif /* MAC80211_H */
176 --- a/net/mac80211/driver-ops.h
177 +++ b/net/mac80211/driver-ops.h
178 @@ -1367,4 +1367,16 @@ drv_tdls_recv_channel_switch(struct ieee
179 trace_drv_return_void(local);
180 }
181
182 +static inline void drv_wake_tx_queue(struct ieee80211_local *local,
183 + struct txq_info *txq)
184 +{
185 + struct ieee80211_sub_if_data *sdata = vif_to_sdata(txq->txq.vif);
186 +
187 + if (!check_sdata_in_driver(sdata))
188 + return;
189 +
190 + trace_drv_wake_tx_queue(local, sdata, txq->txq.sta, txq->txq.tid);
191 + local->ops->wake_tx_queue(&local->hw, &txq->txq);
192 +}
193 +
194 #endif /* __MAC80211_DRIVER_OPS */
195 --- a/net/mac80211/ieee80211_i.h
196 +++ b/net/mac80211/ieee80211_i.h
197 @@ -809,6 +809,19 @@ struct mac80211_qos_map {
198 struct rcu_head rcu_head;
199 };
200
201 +enum txq_info_flags {
202 + IEEE80211_TXQ_STOP,
203 + IEEE80211_TXQ_AMPDU,
204 +};
205 +
206 +struct txq_info {
207 + struct sk_buff_head queue;
208 + unsigned long flags;
209 +
210 + /* keep last! */
211 + struct ieee80211_txq txq;
212 +};
213 +
214 struct ieee80211_sub_if_data {
215 struct list_head list;
216
217 @@ -853,6 +866,7 @@ struct ieee80211_sub_if_data {
218 bool control_port_no_encrypt;
219 int encrypt_headroom;
220
221 + atomic_t txqs_len[IEEE80211_NUM_ACS];
222 struct ieee80211_tx_queue_params tx_conf[IEEE80211_NUM_ACS];
223 struct mac80211_qos_map __rcu *qos_map;
224
225 @@ -1453,6 +1467,10 @@ static inline struct ieee80211_local *hw
226 return container_of(hw, struct ieee80211_local, hw);
227 }
228
229 +static inline struct txq_info *to_txq_info(struct ieee80211_txq *txq)
230 +{
231 + return container_of(txq, struct txq_info, txq);
232 +}
233
234 static inline int ieee80211_bssid_match(const u8 *raddr, const u8 *addr)
235 {
236 @@ -1905,6 +1923,9 @@ static inline bool ieee80211_can_run_wor
237 return true;
238 }
239
240 +void ieee80211_init_tx_queue(struct ieee80211_sub_if_data *sdata,
241 + struct sta_info *sta,
242 + struct txq_info *txq, int tid);
243 void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
244 u16 transaction, u16 auth_alg, u16 status,
245 const u8 *extra, size_t extra_len, const u8 *bssid,
246 --- a/net/mac80211/iface.c
247 +++ b/net/mac80211/iface.c
248 @@ -969,6 +969,13 @@ static void ieee80211_do_stop(struct iee
249 }
250 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
251
252 + if (sdata->vif.txq) {
253 + struct txq_info *txqi = to_txq_info(sdata->vif.txq);
254 +
255 + ieee80211_purge_tx_queue(&local->hw, &txqi->queue);
256 + atomic_set(&sdata->txqs_len[txqi->txq.ac], 0);
257 + }
258 +
259 if (local->open_count == 0)
260 ieee80211_clear_tx_pending(local);
261
262 @@ -1674,6 +1681,7 @@ int ieee80211_if_add(struct ieee80211_lo
263 {
264 struct net_device *ndev = NULL;
265 struct ieee80211_sub_if_data *sdata = NULL;
266 + struct txq_info *txqi;
267 int ret, i;
268 int txqs = 1;
269
270 @@ -1693,10 +1701,18 @@ int ieee80211_if_add(struct ieee80211_lo
271 ieee80211_assign_perm_addr(local, wdev->address, type);
272 memcpy(sdata->vif.addr, wdev->address, ETH_ALEN);
273 } else {
274 + int size = ALIGN(sizeof(*sdata) + local->hw.vif_data_size,
275 + sizeof(void *));
276 + int txq_size = 0;
277 +
278 + if (local->ops->wake_tx_queue)
279 + txq_size += sizeof(struct txq_info) +
280 + local->hw.txq_data_size;
281 +
282 if (local->hw.queues >= IEEE80211_NUM_ACS)
283 txqs = IEEE80211_NUM_ACS;
284
285 - ndev = alloc_netdev_mqs(sizeof(*sdata) + local->hw.vif_data_size,
286 + ndev = alloc_netdev_mqs(size + txq_size,
287 name, NET_NAME_UNKNOWN,
288 ieee80211_if_setup, txqs, 1);
289 if (!ndev)
290 @@ -1731,6 +1747,9 @@ int ieee80211_if_add(struct ieee80211_lo
291 memcpy(sdata->vif.addr, ndev->dev_addr, ETH_ALEN);
292 memcpy(sdata->name, ndev->name, IFNAMSIZ);
293
294 + txqi = netdev_priv(ndev) + size;
295 + ieee80211_init_tx_queue(sdata, NULL, txqi, 0);
296 +
297 sdata->dev = ndev;
298 }
299
300 --- a/net/mac80211/main.c
301 +++ b/net/mac80211/main.c
302 @@ -1019,6 +1019,9 @@ int ieee80211_register_hw(struct ieee802
303
304 local->dynamic_ps_forced_timeout = -1;
305
306 + if (!local->hw.txq_ac_max_pending)
307 + local->hw.txq_ac_max_pending = 64;
308 +
309 result = ieee80211_wep_init(local);
310 if (result < 0)
311 wiphy_debug(local->hw.wiphy, "Failed to initialize wep: %d\n",
312 --- a/net/mac80211/sta_info.c
313 +++ b/net/mac80211/sta_info.c
314 @@ -118,6 +118,16 @@ static void __cleanup_single_sta(struct
315 atomic_dec(&ps->num_sta_ps);
316 }
317
318 + if (sta->sta.txq[0]) {
319 + for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
320 + struct txq_info *txqi = to_txq_info(sta->sta.txq[i]);
321 + int n = skb_queue_len(&txqi->queue);
322 +
323 + ieee80211_purge_tx_queue(&local->hw, &txqi->queue);
324 + atomic_sub(n, &sdata->txqs_len[txqi->txq.ac]);
325 + }
326 + }
327 +
328 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
329 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
330 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
331 @@ -234,6 +244,8 @@ void sta_info_free(struct ieee80211_loca
332
333 sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
334
335 + if (sta->sta.txq[0])
336 + kfree(to_txq_info(sta->sta.txq[0]));
337 kfree(rcu_dereference_raw(sta->sta.rates));
338 kfree(sta);
339 }
340 @@ -285,11 +297,12 @@ struct sta_info *sta_info_alloc(struct i
341 const u8 *addr, gfp_t gfp)
342 {
343 struct ieee80211_local *local = sdata->local;
344 + struct ieee80211_hw *hw = &local->hw;
345 struct sta_info *sta;
346 struct timespec uptime;
347 int i;
348
349 - sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
350 + sta = kzalloc(sizeof(*sta) + hw->sta_data_size, gfp);
351 if (!sta)
352 return NULL;
353
354 @@ -321,11 +334,25 @@ struct sta_info *sta_info_alloc(struct i
355 for (i = 0; i < ARRAY_SIZE(sta->chain_signal_avg); i++)
356 ewma_init(&sta->chain_signal_avg[i], 1024, 8);
357
358 - if (sta_prepare_rate_control(local, sta, gfp)) {
359 - kfree(sta);
360 - return NULL;
361 + if (local->ops->wake_tx_queue) {
362 + void *txq_data;
363 + int size = sizeof(struct txq_info) +
364 + ALIGN(hw->txq_data_size, sizeof(void *));
365 +
366 + txq_data = kcalloc(ARRAY_SIZE(sta->sta.txq), size, gfp);
367 + if (!txq_data)
368 + goto free;
369 +
370 + for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
371 + struct txq_info *txq = txq_data + i * size;
372 +
373 + ieee80211_init_tx_queue(sdata, sta, txq, i);
374 + }
375 }
376
377 + if (sta_prepare_rate_control(local, sta, gfp))
378 + goto free_txq;
379 +
380 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
381 /*
382 * timer_to_tid must be initialized with identity mapping
383 @@ -346,7 +373,7 @@ struct sta_info *sta_info_alloc(struct i
384 if (sdata->vif.type == NL80211_IFTYPE_AP ||
385 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
386 struct ieee80211_supported_band *sband =
387 - local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
388 + hw->wiphy->bands[ieee80211_get_sdata_band(sdata)];
389 u8 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >>
390 IEEE80211_HT_CAP_SM_PS_SHIFT;
391 /*
392 @@ -371,6 +398,13 @@ struct sta_info *sta_info_alloc(struct i
393 sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
394
395 return sta;
396 +
397 +free_txq:
398 + if (sta->sta.txq[0])
399 + kfree(to_txq_info(sta->sta.txq[0]));
400 +free:
401 + kfree(sta);
402 + return NULL;
403 }
404
405 static int sta_info_insert_check(struct sta_info *sta)
406 @@ -640,6 +674,8 @@ static void __sta_info_recalc_tim(struct
407
408 indicate_tim |=
409 sta->driver_buffered_tids & tids;
410 + indicate_tim |=
411 + sta->txq_buffered_tids & tids;
412 }
413
414 done:
415 @@ -1071,7 +1107,7 @@ void ieee80211_sta_ps_deliver_wakeup(str
416 struct ieee80211_sub_if_data *sdata = sta->sdata;
417 struct ieee80211_local *local = sdata->local;
418 struct sk_buff_head pending;
419 - int filtered = 0, buffered = 0, ac;
420 + int filtered = 0, buffered = 0, ac, i;
421 unsigned long flags;
422 struct ps_data *ps;
423
424 @@ -1090,10 +1126,22 @@ void ieee80211_sta_ps_deliver_wakeup(str
425
426 BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
427 sta->driver_buffered_tids = 0;
428 + sta->txq_buffered_tids = 0;
429
430 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
431 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
432
433 + if (sta->sta.txq[0]) {
434 + for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
435 + struct txq_info *txqi = to_txq_info(sta->sta.txq[i]);
436 +
437 + if (!skb_queue_len(&txqi->queue))
438 + continue;
439 +
440 + drv_wake_tx_queue(local, txqi);
441 + }
442 + }
443 +
444 skb_queue_head_init(&pending);
445
446 /* sync with ieee80211_tx_h_unicast_ps_buf */
447 @@ -1254,7 +1302,7 @@ ieee80211_sta_ps_deliver_response(struct
448 struct ieee80211_sub_if_data *sdata = sta->sdata;
449 struct ieee80211_local *local = sdata->local;
450 bool more_data = false;
451 - int ac;
452 + int ac, tid;
453 unsigned long driver_release_tids = 0;
454 struct sk_buff_head frames;
455
456 @@ -1275,8 +1323,10 @@ ieee80211_sta_ps_deliver_response(struct
457 /* if we already have frames from software, then we can't also
458 * release from hardware queues
459 */
460 - if (skb_queue_empty(&frames))
461 + if (skb_queue_empty(&frames)) {
462 driver_release_tids |= sta->driver_buffered_tids & tids;
463 + driver_release_tids |= sta->txq_buffered_tids & tids;
464 + }
465
466 if (driver_release_tids) {
467 /* If the driver has data on more than one TID then
468 @@ -1447,6 +1497,8 @@ ieee80211_sta_ps_deliver_response(struct
469
470 sta_info_recalc_tim(sta);
471 } else {
472 + unsigned long tids = sta->txq_buffered_tids & driver_release_tids;
473 +
474 /*
475 * We need to release a frame that is buffered somewhere in the
476 * driver ... it'll have to handle that.
477 @@ -1466,8 +1518,22 @@ ieee80211_sta_ps_deliver_response(struct
478 * that the TID(s) became empty before returning here from the
479 * release function.
480 * Either way, however, when the driver tells us that the TID(s)
481 - * became empty we'll do the TIM recalculation.
482 + * became empty or we find that a txq became empty, we'll do the
483 + * TIM recalculation.
484 */
485 +
486 + if (!sta->sta.txq[0])
487 + return;
488 +
489 + for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) {
490 + struct txq_info *txqi = to_txq_info(sta->sta.txq[tid]);
491 +
492 + if (!(tids & BIT(tid)) || skb_queue_len(&txqi->queue))
493 + continue;
494 +
495 + sta_info_recalc_tim(sta);
496 + break;
497 + }
498 }
499 }
500
501 --- a/net/mac80211/sta_info.h
502 +++ b/net/mac80211/sta_info.h
503 @@ -274,6 +274,7 @@ struct sta_ampdu_mlme {
504 * entered power saving state, these are also delivered to
505 * the station when it leaves powersave or polls for frames
506 * @driver_buffered_tids: bitmap of TIDs the driver has data buffered on
507 + * @txq_buffered_tids: bitmap of TIDs that mac80211 has txq data buffered on
508 * @rx_packets: Number of MSDUs received from this STA
509 * @rx_bytes: Number of bytes received from this STA
510 * @last_rx: time (in jiffies) when last frame was received from this STA
511 @@ -368,6 +369,7 @@ struct sta_info {
512 struct sk_buff_head ps_tx_buf[IEEE80211_NUM_ACS];
513 struct sk_buff_head tx_filtered[IEEE80211_NUM_ACS];
514 unsigned long driver_buffered_tids;
515 + unsigned long txq_buffered_tids;
516
517 /* Updated from RX path only, no locking requirements */
518 unsigned long rx_packets;
519 --- a/net/mac80211/trace.h
520 +++ b/net/mac80211/trace.h
521 @@ -2312,6 +2312,34 @@ TRACE_EVENT(drv_tdls_recv_channel_switch
522 )
523 );
524
525 +TRACE_EVENT(drv_wake_tx_queue,
526 + TP_PROTO(struct ieee80211_local *local,
527 + struct ieee80211_sub_if_data *sdata,
528 + struct ieee80211_sta *sta,
529 + u8 tid),
530 +
531 + TP_ARGS(local, sdata, sta, tid),
532 +
533 + TP_STRUCT__entry(
534 + LOCAL_ENTRY
535 + VIF_ENTRY
536 + STA_ENTRY
537 + __field(u8, tid)
538 + ),
539 +
540 + TP_fast_assign(
541 + LOCAL_ASSIGN;
542 + VIF_ASSIGN;
543 + STA_ASSIGN;
544 + __entry->tid = tid;
545 + ),
546 +
547 + TP_printk(
548 + LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " tid: 0x%x",
549 + LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->tid
550 + )
551 +);
552 +
553 #ifdef CPTCFG_MAC80211_MESSAGE_TRACING
554 #undef TRACE_SYSTEM
555 #define TRACE_SYSTEM mac80211_msg
556 --- a/net/mac80211/tx.c
557 +++ b/net/mac80211/tx.c
558 @@ -776,12 +776,23 @@ ieee80211_tx_h_rate_ctrl(struct ieee8021
559 return TX_CONTINUE;
560 }
561
562 +static u16
563 +ieee80211_tx_next_seq(struct sta_info *sta, int tid)
564 +{
565 + u16 *seq = &sta->tid_seq[tid];
566 + u16 ret = cpu_to_le16(*seq);
567 +
568 + /* Increase the sequence number. */
569 + *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
570 +
571 + return ret;
572 +}
573 +
574 static ieee80211_tx_result debug_noinline
575 ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
576 {
577 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
578 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
579 - u16 *seq;
580 u8 *qc;
581 int tid;
582
583 @@ -832,13 +843,10 @@ ieee80211_tx_h_sequence(struct ieee80211
584
585 qc = ieee80211_get_qos_ctl(hdr);
586 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
587 - seq = &tx->sta->tid_seq[tid];
588 tx->sta->tx_msdu[tid]++;
589
590 - hdr->seq_ctrl = cpu_to_le16(*seq);
591 -
592 - /* Increase the sequence number. */
593 - *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
594 + if (!tx->sta->sta.txq[0])
595 + hdr->seq_ctrl = ieee80211_tx_next_seq(tx->sta, tid);
596
597 return TX_CONTINUE;
598 }
599 @@ -1067,7 +1075,7 @@ static bool ieee80211_tx_prep_agg(struct
600 * nothing -- this aggregation session is being started
601 * but that might still fail with the driver
602 */
603 - } else {
604 + } else if (!tx->sta->sta.txq[tid]) {
605 spin_lock(&tx->sta->lock);
606 /*
607 * Need to re-check now, because we may get here
608 @@ -1201,13 +1209,102 @@ ieee80211_tx_prepare(struct ieee80211_su
609 return TX_CONTINUE;
610 }
611
612 +static void ieee80211_drv_tx(struct ieee80211_local *local,
613 + struct ieee80211_vif *vif,
614 + struct ieee80211_sta *pubsta,
615 + struct sk_buff *skb)
616 +{
617 + struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
618 + struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
619 + struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
620 + struct ieee80211_tx_control control = {
621 + .sta = pubsta
622 + };
623 + struct ieee80211_txq *txq = NULL;
624 + struct txq_info *txqi;
625 + u8 ac;
626 +
627 + if (info->control.flags & IEEE80211_TX_CTRL_PS_RESPONSE)
628 + goto tx_normal;
629 +
630 + if (!ieee80211_is_data(hdr->frame_control))
631 + goto tx_normal;
632 +
633 + if (pubsta) {
634 + u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
635 +
636 + txq = pubsta->txq[tid];
637 + } else if (vif) {
638 + txq = vif->txq;
639 + }
640 +
641 + if (!txq)
642 + goto tx_normal;
643 +
644 + ac = txq->ac;
645 + txqi = to_txq_info(txq);
646 + atomic_inc(&sdata->txqs_len[ac]);
647 + if (atomic_read(&sdata->txqs_len[ac]) >= local->hw.txq_ac_max_pending)
648 + netif_stop_subqueue(sdata->dev, ac);
649 +
650 + skb_queue_tail(&txqi->queue, skb);
651 + drv_wake_tx_queue(local, txqi);
652 +
653 + return;
654 +
655 +tx_normal:
656 + drv_tx(local, &control, skb);
657 +}
658 +
659 +struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
660 + struct ieee80211_txq *txq)
661 +{
662 + struct ieee80211_local *local = hw_to_local(hw);
663 + struct ieee80211_sub_if_data *sdata = vif_to_sdata(txq->vif);
664 + struct txq_info *txqi = container_of(txq, struct txq_info, txq);
665 + struct ieee80211_hdr *hdr;
666 + struct sk_buff *skb = NULL;
667 + u8 ac = txq->ac;
668 +
669 + spin_lock_bh(&txqi->queue.lock);
670 +
671 + if (test_bit(IEEE80211_TXQ_STOP, &txqi->flags))
672 + goto out;
673 +
674 + skb = __skb_dequeue(&txqi->queue);
675 + if (!skb)
676 + goto out;
677 +
678 + atomic_dec(&sdata->txqs_len[ac]);
679 + if (__netif_subqueue_stopped(sdata->dev, ac))
680 + ieee80211_propagate_queue_wake(local, sdata->vif.hw_queue[ac]);
681 +
682 + hdr = (struct ieee80211_hdr *)skb->data;
683 + if (txq->sta && ieee80211_is_data_qos(hdr->frame_control)) {
684 + struct sta_info *sta = container_of(txq->sta, struct sta_info,
685 + sta);
686 + struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
687 +
688 + hdr->seq_ctrl = ieee80211_tx_next_seq(sta, txq->tid);
689 + if (test_bit(IEEE80211_TXQ_AMPDU, &txqi->flags))
690 + info->flags |= IEEE80211_TX_CTL_AMPDU;
691 + else
692 + info->flags &= ~IEEE80211_TX_CTL_AMPDU;
693 + }
694 +
695 +out:
696 + spin_unlock_bh(&txqi->queue.lock);
697 +
698 + return skb;
699 +}
700 +EXPORT_SYMBOL(ieee80211_tx_dequeue);
701 +
702 static bool ieee80211_tx_frags(struct ieee80211_local *local,
703 struct ieee80211_vif *vif,
704 struct ieee80211_sta *sta,
705 struct sk_buff_head *skbs,
706 bool txpending)
707 {
708 - struct ieee80211_tx_control control;
709 struct sk_buff *skb, *tmp;
710 unsigned long flags;
711
712 @@ -1265,10 +1362,9 @@ static bool ieee80211_tx_frags(struct ie
713 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
714
715 info->control.vif = vif;
716 - control.sta = sta;
717
718 __skb_unlink(skb, skbs);
719 - drv_tx(local, &control, skb);
720 + ieee80211_drv_tx(local, vif, sta, skb);
721 }
722
723 return true;
724 --- a/net/mac80211/util.c
725 +++ b/net/mac80211/util.c
726 @@ -308,6 +308,11 @@ void ieee80211_propagate_queue_wake(stru
727 for (ac = 0; ac < n_acs; ac++) {
728 int ac_queue = sdata->vif.hw_queue[ac];
729
730 + if (local->ops->wake_tx_queue &&
731 + (atomic_read(&sdata->txqs_len[ac]) >
732 + local->hw.txq_ac_max_pending))
733 + continue;
734 +
735 if (ac_queue == queue ||
736 (sdata->vif.cab_queue == queue &&
737 local->queue_stop_reasons[ac_queue] == 0 &&
738 @@ -3307,3 +3312,20 @@ u8 *ieee80211_add_wmm_info_ie(u8 *buf, u
739
740 return buf;
741 }
742 +
743 +void ieee80211_init_tx_queue(struct ieee80211_sub_if_data *sdata,
744 + struct sta_info *sta,
745 + struct txq_info *txqi, int tid)
746 +{
747 + skb_queue_head_init(&txqi->queue);
748 + txqi->txq.vif = &sdata->vif;
749 +
750 + if (sta) {
751 + txqi->txq.sta = &sta->sta;
752 + sta->sta.txq[tid] = &txqi->txq;
753 + txqi->txq.ac = ieee802_1d_to_ac[tid & 7];
754 + } else {
755 + sdata->vif.txq = &txqi->txq;
756 + txqi->txq.ac = IEEE80211_AC_BE;
757 + }
758 +}
759 --- a/net/mac80211/rx.c
760 +++ b/net/mac80211/rx.c
761 @@ -1176,6 +1176,7 @@ static void sta_ps_start(struct sta_info
762 struct ieee80211_sub_if_data *sdata = sta->sdata;
763 struct ieee80211_local *local = sdata->local;
764 struct ps_data *ps;
765 + int tid;
766
767 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
768 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
769 @@ -1189,6 +1190,18 @@ static void sta_ps_start(struct sta_info
770 drv_sta_notify(local, sdata, STA_NOTIFY_SLEEP, &sta->sta);
771 ps_dbg(sdata, "STA %pM aid %d enters power save mode\n",
772 sta->sta.addr, sta->sta.aid);
773 +
774 + if (!sta->sta.txq[0])
775 + return;
776 +
777 + for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) {
778 + struct txq_info *txqi = to_txq_info(sta->sta.txq[tid]);
779 +
780 + if (!skb_queue_len(&txqi->queue))
781 + set_bit(tid, &sta->txq_buffered_tids);
782 + else
783 + clear_bit(tid, &sta->txq_buffered_tids);
784 + }
785 }
786
787 static void sta_ps_end(struct sta_info *sta)
788 --- a/net/mac80211/agg-tx.c
789 +++ b/net/mac80211/agg-tx.c
790 @@ -188,6 +188,43 @@ ieee80211_wake_queue_agg(struct ieee8021
791 __release(agg_queue);
792 }
793
794 +static void
795 +ieee80211_agg_stop_txq(struct sta_info *sta, int tid)
796 +{
797 + struct ieee80211_txq *txq = sta->sta.txq[tid];
798 + struct txq_info *txqi;
799 +
800 + if (!txq)
801 + return;
802 +
803 + txqi = to_txq_info(txq);
804 +
805 + /* Lock here to protect against further seqno updates on dequeue */
806 + spin_lock_bh(&txqi->queue.lock);
807 + set_bit(IEEE80211_TXQ_STOP, &txqi->flags);
808 + spin_unlock_bh(&txqi->queue.lock);
809 +}
810 +
811 +static void
812 +ieee80211_agg_start_txq(struct sta_info *sta, int tid, bool enable)
813 +{
814 + struct ieee80211_txq *txq = sta->sta.txq[tid];
815 + struct txq_info *txqi;
816 +
817 + if (!txq)
818 + return;
819 +
820 + txqi = to_txq_info(txq);
821 +
822 + if (enable)
823 + set_bit(IEEE80211_TXQ_AMPDU, &txqi->flags);
824 + else
825 + clear_bit(IEEE80211_TXQ_AMPDU, &txqi->flags);
826 +
827 + clear_bit(IEEE80211_TXQ_STOP, &txqi->flags);
828 + drv_wake_tx_queue(sta->sdata->local, txqi);
829 +}
830 +
831 /*
832 * splice packets from the STA's pending to the local pending,
833 * requires a call to ieee80211_agg_splice_finish later
834 @@ -247,6 +284,7 @@ static void ieee80211_remove_tid_tx(stru
835 ieee80211_assign_tid_tx(sta, tid, NULL);
836
837 ieee80211_agg_splice_finish(sta->sdata, tid);
838 + ieee80211_agg_start_txq(sta, tid, false);
839
840 kfree_rcu(tid_tx, rcu_head);
841 }
842 @@ -418,6 +456,8 @@ void ieee80211_tx_ba_session_handle_star
843 */
844 clear_bit(HT_AGG_STATE_WANT_START, &tid_tx->state);
845
846 + ieee80211_agg_stop_txq(sta, tid);
847 +
848 /*
849 * Make sure no packets are being processed. This ensures that
850 * we have a valid starting sequence number and that in-flight
851 @@ -440,6 +480,8 @@ void ieee80211_tx_ba_session_handle_star
852 ieee80211_agg_splice_finish(sdata, tid);
853 spin_unlock_bh(&sta->lock);
854
855 + ieee80211_agg_start_txq(sta, tid, false);
856 +
857 kfree_rcu(tid_tx, rcu_head);
858 return;
859 }
860 @@ -666,6 +708,8 @@ static void ieee80211_agg_tx_operational
861 ieee80211_agg_splice_finish(sta->sdata, tid);
862
863 spin_unlock_bh(&sta->lock);
864 +
865 + ieee80211_agg_start_txq(sta, tid, true);
866 }
867
868 void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)