diff options
author | Daniel C Halperin <daniel.c.halperin@intel.com> | 2009-08-21 16:34:20 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-28 14:40:38 -0400 |
commit | 7ebaeff8ae0ba14c086b117f451c5b40bea8a64b (patch) | |
tree | dee11960a479b257f43ae3004b456e3f0fd0b4af | |
parent | f204b2487e5503ca4a9f3e69dcd63f6af979aaac (diff) |
iwlwifi: clear rate control flags on non-HT packet
Clear the flags (most importantly, the IEEE80211_TX_RC_MCS flag)
when sending a non-HT packet so that the rate index can be properly treated.
This fixes the reporting of legacy rates in wireless-extensions for packets
sent after an HT packet.
Signed-off-by: Daniel C Halperin <daniel.c.halperin@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn-rs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-rs.c b/drivers/net/wireless/iwlwifi/iwl-agn-rs.c index fee110de5c6a..26ec969e265d 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-rs.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-rs.c | |||
@@ -2546,6 +2546,7 @@ static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta, | |||
2546 | rate_idx = rate_lowest_index(sband, sta); | 2546 | rate_idx = rate_lowest_index(sband, sta); |
2547 | else if (sband->band == IEEE80211_BAND_5GHZ) | 2547 | else if (sband->band == IEEE80211_BAND_5GHZ) |
2548 | rate_idx -= IWL_FIRST_OFDM_RATE; | 2548 | rate_idx -= IWL_FIRST_OFDM_RATE; |
2549 | info->control.rates[0].flags = 0; | ||
2549 | } | 2550 | } |
2550 | info->control.rates[0].idx = rate_idx; | 2551 | info->control.rates[0].idx = rate_idx; |
2551 | 2552 | ||