diff options
author | Michael Wu <flamingice@sourmilk.net> | 2007-12-25 19:33:16 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:09:42 -0500 |
commit | 2bc454b0b30b3645d114689b64321cb49be99923 (patch) | |
tree | a6c2bc87e02586f43a71dbb5f1808079df120dec /drivers/net/wireless/iwlwifi/iwl-4965-rs.c | |
parent | 9ab461732a3cd8e7a7cf13cc46ed4c1ac7907824 (diff) |
mac80211: Fix rate reporting regression
Mattias Nissler's "clean up rate selection" patch incorrectly changes
the behavior of txrate setting in sta_info. This patch backs out parts
of the rate selection consolidation in order to fix this issue for now.
Signed-off-by: Michael Wu <flamingice@sourmilk.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-4965-rs.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965-rs.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965-rs.c b/drivers/net/wireless/iwlwifi/iwl-4965-rs.c index 229b34199f92..5081e287b129 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965-rs.c +++ b/drivers/net/wireless/iwlwifi/iwl-4965-rs.c | |||
@@ -2017,6 +2017,7 @@ static void rs_get_rate(void *priv_rate, struct net_device *dev, | |||
2017 | struct ieee80211_conf *conf = &local->hw.conf; | 2017 | struct ieee80211_conf *conf = &local->hw.conf; |
2018 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; | 2018 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
2019 | struct sta_info *sta; | 2019 | struct sta_info *sta; |
2020 | u16 fc; | ||
2020 | struct iwl4965_priv *priv = (struct iwl4965_priv *)priv_rate; | 2021 | struct iwl4965_priv *priv = (struct iwl4965_priv *)priv_rate; |
2021 | struct iwl4965_rate_scale_priv *lq; | 2022 | struct iwl4965_rate_scale_priv *lq; |
2022 | 2023 | ||
@@ -2024,7 +2025,11 @@ static void rs_get_rate(void *priv_rate, struct net_device *dev, | |||
2024 | 2025 | ||
2025 | sta = sta_info_get(local, hdr->addr1); | 2026 | sta = sta_info_get(local, hdr->addr1); |
2026 | 2027 | ||
2027 | if (!sta || !sta->rate_ctrl_priv) { | 2028 | /* Send management frames and broadcast/multicast data using lowest |
2029 | * rate. */ | ||
2030 | fc = le16_to_cpu(hdr->frame_control); | ||
2031 | if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1) || | ||
2032 | !sta || !sta->rate_ctrl_priv) { | ||
2028 | sel->rate = rate_lowest(local, local->oper_hw_mode, sta); | 2033 | sel->rate = rate_lowest(local, local->oper_hw_mode, sta); |
2029 | if (sta) | 2034 | if (sta) |
2030 | sta_info_put(sta); | 2035 | sta_info_put(sta); |