]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mac80211_hwsim: handle VHT rates in rx_status
authorKarl Beldan <karl.beldan@rivierawaves.com>
Mon, 15 Apr 2013 15:09:30 +0000 (17:09 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 16 Apr 2013 14:04:02 +0000 (16:04 +0200)
Signed-off-by: Karl Beldan <karl.beldan@rivierawaves.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/mac80211_hwsim.c

index b5117f503f83b4ff3c749498ac8455a8afaacab0..7ede2407ef8dbed32026dc16866274321273f126 100644 (file)
@@ -718,9 +718,17 @@ static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
        rx_status.flag |= RX_FLAG_MACTIME_START;
        rx_status.freq = chan->center_freq;
        rx_status.band = chan->band;
-       rx_status.rate_idx = info->control.rates[0].idx;
-       if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
-               rx_status.flag |= RX_FLAG_HT;
+       if (info->control.rates[0].flags & IEEE80211_TX_RC_VHT_MCS) {
+               rx_status.rate_idx =
+                       ieee80211_rate_get_vht_mcs(&info->control.rates[0]);
+               rx_status.vht_nss =
+                       ieee80211_rate_get_vht_nss(&info->control.rates[0]);
+               rx_status.flag |= RX_FLAG_VHT;
+       } else {
+               rx_status.rate_idx = info->control.rates[0].idx;
+               if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
+                       rx_status.flag |= RX_FLAG_HT;
+       }
        if (info->control.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
                rx_status.flag |= RX_FLAG_40MHZ;
        if (info->control.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)