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 b1b4b1413c74..f75f5d9ac06d 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -55,6 +55,7 @@ | |||
55 | * @WLAN_STA_4ADDR_EVENT: 4-addr event was already sent for this frame. | 55 | * @WLAN_STA_4ADDR_EVENT: 4-addr event was already sent for this frame. |
56 | * @WLAN_STA_INSERTED: This station is inserted into the hash table. | 56 | * @WLAN_STA_INSERTED: This station is inserted into the hash table. |
57 | * @WLAN_STA_RATE_CONTROL: rate control was initialized for this station. | 57 | * @WLAN_STA_RATE_CONTROL: rate control was initialized for this station. |
58 | * @WLAN_STA_TOFFSET_KNOWN: toffset calculated for this station is valid. | ||
58 | */ | 59 | */ |
59 | enum ieee80211_sta_info_flags { | 60 | enum ieee80211_sta_info_flags { |
60 | WLAN_STA_AUTH, | 61 | WLAN_STA_AUTH, |
@@ -76,6 +77,7 @@ enum ieee80211_sta_info_flags { | |||
76 | WLAN_STA_4ADDR_EVENT, | 77 | WLAN_STA_4ADDR_EVENT, |
77 | WLAN_STA_INSERTED, | 78 | WLAN_STA_INSERTED, |
78 | WLAN_STA_RATE_CONTROL, | 79 | WLAN_STA_RATE_CONTROL, |
80 | WLAN_STA_TOFFSET_KNOWN, | ||
79 | }; | 81 | }; |
80 | 82 | ||
81 | #define STA_TID_NUM 16 | 83 | #define STA_TID_NUM 16 |
@@ -268,6 +270,7 @@ struct sta_ampdu_mlme { | |||
268 | * @plink_timeout: timeout of peer link | 270 | * @plink_timeout: timeout of peer link |
269 | * @plink_timer: peer link watch timer | 271 | * @plink_timer: peer link watch timer |
270 | * @plink_timer_was_running: used by suspend/resume to restore timers | 272 | * @plink_timer_was_running: used by suspend/resume to restore timers |
273 | * @t_offset: timing offset relative to this host | ||
271 | * @debugfs: debug filesystem info | 274 | * @debugfs: debug filesystem info |
272 | * @dead: set to true when sta is unlinked | 275 | * @dead: set to true when sta is unlinked |
273 | * @uploaded: set to true when sta is uploaded to the driver | 276 | * @uploaded: set to true when sta is uploaded to the driver |
@@ -357,6 +360,8 @@ struct sta_info { | |||
357 | enum nl80211_plink_state plink_state; | 360 | enum nl80211_plink_state plink_state; |
358 | u32 plink_timeout; | 361 | u32 plink_timeout; |
359 | struct timer_list plink_timer; | 362 | struct timer_list plink_timer; |
363 | s64 t_offset; | ||
364 | s64 t_offset_setpoint; | ||
360 | #endif | 365 | #endif |
361 | 366 | ||
362 | #ifdef CONFIG_MAC80211_DEBUGFS | 367 | #ifdef CONFIG_MAC80211_DEBUGFS |