1STRUCT IEEE80211_TX_(9) The basic mac80211 driver inte STRUCT IEEE80211_TX_(9)
2
3
4
6 struct_ieee80211_tx_info - skb transmit information
7
9 struct ieee80211_tx_info {
10 u32 flags;
11 u8 band;
12 u8 hw_queue;
13 u16 ack_frame_id;
14 union {unnamed_union};
15 };
16
18 flags
19 transmit info flags, defined above
20
21 band
22 the band to transmit on (use for checking for races)
23
24 hw_queue
25 HW queue to put the frame on, skb_get_queue_mapping gives the AC
26
27 ack_frame_id
28 internal frame ID for TX status, used internally
29
30 {unnamed_union}
31 anonymous
32
34 This structure is placed in skb->cb for three uses: (1) mac80211 TX
35 control - mac80211 tells the driver what to do (2) driver internal use
36 (if applicable) (3) TX status information - driver tells mac80211 what
37 happened
38
40 Johannes Berg <johannes@sipsolutions.net>
41 Author.
42
44Kernel Hackers Manual 3.10 June 2019 STRUCT IEEE80211_TX_(9)