diff options
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index 4099ece143ef..f7e65fa3f9ed 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -32,6 +32,9 @@ | |||
32 | * @WLAN_STA_WME: Station is a QoS-STA. | 32 | * @WLAN_STA_WME: Station is a QoS-STA. |
33 | * @WLAN_STA_WDS: Station is one of our WDS peers. | 33 | * @WLAN_STA_WDS: Station is one of our WDS peers. |
34 | * @WLAN_STA_PSPOLL: Station has just PS-polled us. | 34 | * @WLAN_STA_PSPOLL: Station has just PS-polled us. |
35 | * @WLAN_STA_CLEAR_PS_FILT: Clear PS filter in hardware (using the | ||
36 | * IEEE80211_TXCTL_CLEAR_PS_FILT control flag) when the next | ||
37 | * frame to this station is transmitted. | ||
35 | */ | 38 | */ |
36 | enum ieee80211_sta_info_flags { | 39 | enum ieee80211_sta_info_flags { |
37 | WLAN_STA_AUTH = 1<<0, | 40 | WLAN_STA_AUTH = 1<<0, |
@@ -43,6 +46,7 @@ enum ieee80211_sta_info_flags { | |||
43 | WLAN_STA_WME = 1<<6, | 46 | WLAN_STA_WME = 1<<6, |
44 | WLAN_STA_WDS = 1<<7, | 47 | WLAN_STA_WDS = 1<<7, |
45 | WLAN_STA_PSPOLL = 1<<8, | 48 | WLAN_STA_PSPOLL = 1<<8, |
49 | WLAN_STA_CLEAR_PS_FILT = 1<<9, | ||
46 | }; | 50 | }; |
47 | 51 | ||
48 | #define STA_TID_NUM 16 | 52 | #define STA_TID_NUM 16 |
@@ -136,8 +140,6 @@ struct sta_info { | |||
136 | struct sk_buff_head tx_filtered; /* buffer of TX frames that were | 140 | struct sk_buff_head tx_filtered; /* buffer of TX frames that were |
137 | * already given to low-level driver, | 141 | * already given to low-level driver, |
138 | * but were filtered */ | 142 | * but were filtered */ |
139 | int clear_dst_mask; | ||
140 | |||
141 | unsigned long rx_packets, tx_packets; /* number of RX/TX MSDUs */ | 143 | unsigned long rx_packets, tx_packets; /* number of RX/TX MSDUs */ |
142 | unsigned long rx_bytes, tx_bytes; | 144 | unsigned long rx_bytes, tx_bytes; |
143 | unsigned long tx_retry_failed, tx_retry_count; | 145 | unsigned long tx_retry_failed, tx_retry_count; |