diff options
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index e9eb565506da..56a3d38a2cd1 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -86,6 +86,8 @@ enum ieee80211_sta_info_flags { | |||
86 | * @stop_initiator: initiator of a session stop | 86 | * @stop_initiator: initiator of a session stop |
87 | * @tx_stop: TX DelBA frame when stopping | 87 | * @tx_stop: TX DelBA frame when stopping |
88 | * @buf_size: reorder buffer size at receiver | 88 | * @buf_size: reorder buffer size at receiver |
89 | * @failed_bar_ssn: ssn of the last failed BAR tx attempt | ||
90 | * @bar_pending: BAR needs to be re-sent | ||
89 | * | 91 | * |
90 | * This structure's lifetime is managed by RCU, assignments to | 92 | * This structure's lifetime is managed by RCU, assignments to |
91 | * the array holding it must hold the aggregation mutex. | 93 | * the array holding it must hold the aggregation mutex. |
@@ -106,6 +108,9 @@ struct tid_ampdu_tx { | |||
106 | u8 stop_initiator; | 108 | u8 stop_initiator; |
107 | bool tx_stop; | 109 | bool tx_stop; |
108 | u8 buf_size; | 110 | u8 buf_size; |
111 | |||
112 | u16 failed_bar_ssn; | ||
113 | bool bar_pending; | ||
109 | }; | 114 | }; |
110 | 115 | ||
111 | /** | 116 | /** |