Message ID | iwlwifi.20201129151117.9c66af9f5dda.I86867c273bb3d00e31e13857d4a013f5503c17ea@changeid |
---|---|
State | New |
Headers | show |
Series | iwlwifi: updates intended for v5.11 2020-11-29 | expand |
On Sun, 2020-11-29 at 15:14 +0200, Luca Coelho wrote: > From: Avraham Stern <avraham.stern@intel.com> > > Some 11ax APs send the authentication response frame as a HE frame. > Since the MAC_FILTER_IN_11AX flag is only set on association, the > frame is being filtered out and the association fails. > Fix it by setting the station HE capabilities before authentication. > This will result in setting the MAC_FILTER_IN_11AX flag for HE > stations before authentication and filtering in the authentication > response. > > Signed-off-by: Avraham Stern <avraham.stern@intel.com> > Signed-off-by: Luca Coelho <luciano.coelho@intel.com> > --- I'm going to drop this one, since this implementation already went it in another patch for fixes. I apologize for the noise. -- Cheers, Luca.
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c index 688c1125e67b..62e884f3e29e 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -3127,6 +3127,9 @@ static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw, goto out_unlock; } + if (vif->type == NL80211_IFTYPE_STATION) + vif->bss_conf.he_support = sta->he_cap.has_he; + if (sta->tdls && (vif->p2p || iwl_mvm_tdls_sta_count(mvm, NULL) ==