iwlwifi: mvm: config mac ctxt to HE before TLC
authorLiad Kaufman <liad.kaufman@intel.com>
Sun, 9 Dec 2018 10:24:24 +0000 (12:24 +0200)
committerLuca Coelho <luciano.coelho@intel.com>
Mon, 4 Feb 2019 10:28:06 +0000 (12:28 +0200)
If we have a station connecting HE, make sure that the
MAC ctxt is updated with indication of this before
setting the TLC rates via the TLC manager command.

Signed-off-by: Liad Kaufman <liad.kaufman@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c
drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c

index c1eb07c..83711b5 100644 (file)
@@ -706,8 +706,7 @@ static int iwl_mvm_mac_ctxt_cmd_sta(struct iwl_mvm *mvm,
        if (vif->probe_req_reg && vif->bss_conf.assoc && vif->p2p)
                cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
 
-       if (vif->bss_conf.assoc && vif->bss_conf.he_support &&
-           !iwlwifi_mod_params.disable_11ax) {
+       if (vif->bss_conf.he_support && !iwlwifi_mod_params.disable_11ax) {
                cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_11AX);
                if (vif->bss_conf.twt_requester)
                        ctxt_sta->data_policy |= cpu_to_le32(TWT_SUPPORTED);
index 92605aa..fc251cc 100644 (file)
@@ -3066,11 +3066,15 @@ static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
        } else if (old_state == IEEE80211_STA_AUTH &&
                   new_state == IEEE80211_STA_ASSOC) {
                if (vif->type == NL80211_IFTYPE_AP) {
+                       vif->bss_conf.he_support = sta->he_cap.has_he;
                        mvmvif->ap_assoc_sta_count++;
                        iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
                        if (vif->bss_conf.he_support &&
                            !iwlwifi_mod_params.disable_11ax)
                                iwl_mvm_cfg_he_sta(mvm, vif, mvm_sta->sta_id);
+               } else if (vif->type == NL80211_IFTYPE_STATION) {
+                       vif->bss_conf.he_support = sta->he_cap.has_he;
+                       iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
                }
 
                iwl_mvm_rs_rate_init(mvm, sta, mvmvif->phy_ctxt->channel->band,