diff options
author | Thomas Huehn <thomas@net.t-labs.tu-berlin.de> | 2012-07-02 13:46:16 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-07-03 07:48:37 -0400 |
commit | e3e1a0bcb3f192fe2f95f86a74bd4e7967341e74 (patch) | |
tree | ed07b2c0a4bd814263bc1b85183ed0d1040ba274 /include/net/mac80211.h | |
parent | cb831b537d50d21f6afb5dffbde4cf6523627461 (diff) |
mac80211: reduce IEEE80211_TX_MAX_RATES
IEEE80211_TX_MAX_RATES can be reduced from 5 to 4 as there
is no current hardware supporting a rate chain with 5 multi
rate stages (mrr), so 4 mrr stages are sufficient.
The memory that is freed within the ieee80211_tx_info struct
will be used in the upcoming Transmission Power Control (TPC)
implementation.
Suggested-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: Thomas Huehn <thomas@net.t-labs.tu-berlin.de>
[reword commit message]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index dc2a97af95e7..3f1b58cf9c8c 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -475,7 +475,7 @@ enum mac80211_rate_control_flags { | |||
475 | #define IEEE80211_TX_INFO_RATE_DRIVER_DATA_SIZE 24 | 475 | #define IEEE80211_TX_INFO_RATE_DRIVER_DATA_SIZE 24 |
476 | 476 | ||
477 | /* maximum number of rate stages */ | 477 | /* maximum number of rate stages */ |
478 | #define IEEE80211_TX_MAX_RATES 5 | 478 | #define IEEE80211_TX_MAX_RATES 4 |
479 | 479 | ||
480 | /** | 480 | /** |
481 | * struct ieee80211_tx_rate - rate selection/status | 481 | * struct ieee80211_tx_rate - rate selection/status |
@@ -563,11 +563,11 @@ struct ieee80211_tx_info { | |||
563 | } control; | 563 | } control; |
564 | struct { | 564 | struct { |
565 | struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES]; | 565 | struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES]; |
566 | u8 ampdu_ack_len; | ||
567 | int ack_signal; | 566 | int ack_signal; |
567 | u8 ampdu_ack_len; | ||
568 | u8 ampdu_len; | 568 | u8 ampdu_len; |
569 | u8 antenna; | 569 | u8 antenna; |
570 | /* 14 bytes free */ | 570 | /* 21 bytes free */ |
571 | } status; | 571 | } status; |
572 | struct { | 572 | struct { |
573 | struct ieee80211_tx_rate driver_rates[ | 573 | struct ieee80211_tx_rate driver_rates[ |
@@ -634,7 +634,7 @@ ieee80211_tx_info_clear_status(struct ieee80211_tx_info *info) | |||
634 | info->status.rates[i].count = 0; | 634 | info->status.rates[i].count = 0; |
635 | 635 | ||
636 | BUILD_BUG_ON( | 636 | BUILD_BUG_ON( |
637 | offsetof(struct ieee80211_tx_info, status.ampdu_ack_len) != 23); | 637 | offsetof(struct ieee80211_tx_info, status.ack_signal) != 20); |
638 | memset(&info->status.ampdu_ack_len, 0, | 638 | memset(&info->status.ampdu_ack_len, 0, |
639 | sizeof(struct ieee80211_tx_info) - | 639 | sizeof(struct ieee80211_tx_info) - |
640 | offsetof(struct ieee80211_tx_info, status.ampdu_ack_len)); | 640 | offsetof(struct ieee80211_tx_info, status.ampdu_ack_len)); |