diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-10-05 12:02:48 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-10-06 18:14:57 -0400 |
commit | 76708dee382a69b2f9d0e50f413f99fefb2dc509 (patch) | |
tree | ce1b8014520c08641423a0842d03eace38da0c4e /include/net | |
parent | 417bd25ac4c6f76c8aafe8a584f3620f4a936b72 (diff) |
mac80211: free up 2 bytes in skb->cb
Free up 2 bytes in skb->cb to be used for multi-rate retry later.
Move iv_len and icv_len initialization into key alloc.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/mac80211.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index f5f5b1ff1584..feb3be81dfa6 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -337,8 +337,6 @@ struct ieee80211_tx_info { | |||
337 | unsigned long jiffies; | 337 | unsigned long jiffies; |
338 | s8 rts_cts_rate_idx, alt_retry_rate_idx; | 338 | s8 rts_cts_rate_idx, alt_retry_rate_idx; |
339 | u8 retry_limit; | 339 | u8 retry_limit; |
340 | u8 icv_len; | ||
341 | u8 iv_len; | ||
342 | } control; | 340 | } control; |
343 | struct { | 341 | struct { |
344 | u64 ampdu_ack_map; | 342 | u64 ampdu_ack_map; |
@@ -635,6 +633,8 @@ enum ieee80211_key_flags { | |||
635 | */ | 633 | */ |
636 | struct ieee80211_key_conf { | 634 | struct ieee80211_key_conf { |
637 | enum ieee80211_key_alg alg; | 635 | enum ieee80211_key_alg alg; |
636 | u8 icv_len; | ||
637 | u8 iv_len; | ||
638 | u8 hw_key_idx; | 638 | u8 hw_key_idx; |
639 | u8 flags; | 639 | u8 flags; |
640 | s8 keyidx; | 640 | s8 keyidx; |