aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/ath9k.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-08-27 18:32:23 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-08-30 15:38:53 -0400
commit6a0ddaef7c2f50f2d3ee8dfbf37f66dda11f061a (patch)
tree12d17af4befca782d1bd08417b9781dfd2a16145 /drivers/net/wireless/ath/ath9k/ath9k.h
parent56dc63369270b60e59637d153caf2e6b424ca30e (diff)
ath9k: move the sequence number from ath_frame_info to ath_buf
It is only necessary for BAW tracking and moving it to the ath_buf makes it easier to add further improvements, such as deferring seqno allocation in the aggregation path. Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ath9k.h')
-rw-r--r--drivers/net/wireless/ath/ath9k/ath9k.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h
index eb4cdefda629..5d9a9aabe476 100644
--- a/drivers/net/wireless/ath/ath9k/ath9k.h
+++ b/drivers/net/wireless/ath/ath9k/ath9k.h
@@ -211,12 +211,12 @@ struct ath_frame_info {
211 enum ath9k_key_type keytype; 211 enum ath9k_key_type keytype;
212 u8 keyix; 212 u8 keyix;
213 u8 retries; 213 u8 retries;
214 u16 seqno;
215}; 214};
216 215
217struct ath_buf_state { 216struct ath_buf_state {
218 u8 bf_type; 217 u8 bf_type;
219 u8 bfs_paprd; 218 u8 bfs_paprd;
219 u16 seqno;
220 unsigned long bfs_paprd_timestamp; 220 unsigned long bfs_paprd_timestamp;
221}; 221};
222 222