diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-02-20 17:59:33 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-02-29 15:41:32 -0500 |
commit | d46e144b65bf053b25d134ec9f52a38e63e04bb4 (patch) | |
tree | 95a3e4ea7660511375f71c54335045a5d1441b1a /net/mac80211/sta_info.h | |
parent | d97cf01576e1867d26b5c8de360380f815a1b7df (diff) |
mac80211: rework TX filtered frame code
This reworks the code for TX filtered frames, splitting it out to
a new function to handle those cases, making the clear instruction
a flag and renaming a few things to be easier to understand and
less Atheros hardware specific. Finally, it also makes the comments
explain more.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
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; |