diff options
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index 040cbb0ac3af..500bafe0a0bb 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -140,10 +140,13 @@ struct tid_ampdu_rx { | |||
140 | * @addba_req_num: number of times addBA request has been sent. | 140 | * @addba_req_num: number of times addBA request has been sent. |
141 | * @dialog_token_allocator: dialog token enumerator for each new session; | 141 | * @dialog_token_allocator: dialog token enumerator for each new session; |
142 | * @work: work struct for starting/stopping aggregation | 142 | * @work: work struct for starting/stopping aggregation |
143 | * @tid_rx_timer_expired: bitmap indicating on which TIDs the | ||
144 | * RX timer expired until the work for it runs | ||
143 | */ | 145 | */ |
144 | struct sta_ampdu_mlme { | 146 | struct sta_ampdu_mlme { |
145 | /* rx */ | 147 | /* rx */ |
146 | struct tid_ampdu_rx *tid_rx[STA_TID_NUM]; | 148 | struct tid_ampdu_rx *tid_rx[STA_TID_NUM]; |
149 | unsigned long tid_rx_timer_expired[BITS_TO_LONGS(STA_TID_NUM)]; | ||
147 | /* tx */ | 150 | /* tx */ |
148 | struct work_struct work; | 151 | struct work_struct work; |
149 | struct tid_ampdu_tx *tid_tx[STA_TID_NUM]; | 152 | struct tid_ampdu_tx *tid_tx[STA_TID_NUM]; |