wifi: iwlwifi: mvm: fix the TLC command after ADD_STA
BugLink: https://bugs.launchpad.net/bugs/2060097
[ Upstream commit 0fcdf55fced7121c43fa576433986f1c04115b73 ]
ADD_STA resets the link quality data inside the firmware. This is not
supposed to happen and has been fixed for newer devices. For older
devices (AX201 and down), this makes us send frames with rates that are
not in the TLC table.
Fixes: 5a86dcb4a9 ("wifi: iwlwifi: mvm: update station's MFP flag after association")
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://msgid.link/20240129211905.1deca7eaff14.I597abd7aab36fdab4aa8311a48c98a3d5bd433ba@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
(cherry picked from commit b2ee971bf856e60132d755ce19fac0022afb3cde)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
This commit is contained in:
committed by
Roxana Nicolescu
parent
108ba6cac8
commit
26c062ef95
@@ -3809,13 +3809,17 @@ iwl_mvm_sta_state_assoc_to_authorized(struct iwl_mvm *mvm,
|
||||
|
||||
mvm_sta->authorized = true;
|
||||
|
||||
iwl_mvm_rs_rate_init_all_links(mvm, vif, sta);
|
||||
|
||||
/* MFP is set by default before the station is authorized.
|
||||
* Clear it here in case it's not used.
|
||||
*/
|
||||
if (!sta->mfp)
|
||||
return callbacks->update_sta(mvm, vif, sta);
|
||||
if (!sta->mfp) {
|
||||
int ret = callbacks->update_sta(mvm, vif, sta);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
||||
iwl_mvm_rs_rate_init_all_links(mvm, vif, sta);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user