1STRUCT IEEE80211_TX_(9) Advanced driver interface STRUCT IEEE80211_TX_(9)
2
3
4
6 struct_ieee80211_tx_queue_params - transmit queue configuration
7
9 struct ieee80211_tx_queue_params {
10 u16 txop;
11 u16 cw_min;
12 u16 cw_max;
13 u8 aifs;
14 bool uapsd;
15 };
16
18 txop
19 maximum burst time in units of 32 usecs, 0 meaning disabled
20
21 cw_min
22 minimum contention window [a value of the form 2^n-1 in the range
23 1..32767]
24
25 cw_max
26 maximum contention window [like cw_min]
27
28 aifs
29 arbitration interframe space [0..255]
30
31 uapsd
32 is U-APSD mode enabled for the queue
33
35 The information provided in this structure is required for QoS transmit
36 queue configuration. Cf. IEEE 802.11 7.3.2.29.
37
39 Johannes Berg <johannes@sipsolutions.net>
40 Author.
41
43Kernel Hackers Manual 2.6. November 2011 STRUCT IEEE80211_TX_(9)