Use IEEE80211_RATE_MANDATORY_G instead of IEEE80211_RATE_MANDATORY_B for comparison to get all mandatory rates in 2.4 GHz band. It is safe to do so because ERP mandatory rates are a superset of HR/DSSS mandatory rates. Also force IEEE80211_RATE_MANDATORY_A for 10 MHz and 5 MHz channels as they use "half-clocked" respectively "quarter-clocked" operation of the OFDM rates (IEEE Std 802.11-2016, 17.1.1). Signed-off-by: Richard Schütz <rschuetz@xxxxxxxxxxxxxx> --- net/wireless/util.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/net/wireless/util.c b/net/wireless/util.c index c69b5c31caf8..8cac453302f7 100644 --- a/net/wireless/util.c +++ b/net/wireless/util.c @@ -48,15 +48,12 @@ u32 ieee80211_mandatory_rates(struct ieee80211_supported_band *sband, if (WARN_ON(!sband)) return 1; - if (sband->band == NL80211_BAND_2GHZ) { - if (scan_width == NL80211_BSS_CHAN_WIDTH_5 || - scan_width == NL80211_BSS_CHAN_WIDTH_10) - mandatory_flag = IEEE80211_RATE_MANDATORY_G; - else - mandatory_flag = IEEE80211_RATE_MANDATORY_B; - } else { + if (sband->band == NL80211_BAND_2GHZ && + scan_width != NL80211_BSS_CHAN_WIDTH_5 && + scan_width != NL80211_BSS_CHAN_WIDTH_10) + mandatory_flag = IEEE80211_RATE_MANDATORY_G; + else mandatory_flag = IEEE80211_RATE_MANDATORY_A; - } bitrates = sband->bitrates; for (i = 0; i < sband->n_bitrates; i++) -- 2.14.1