wifi: iwlwifi: mvm: support flush on AP interfaces
authorJohannes Berg <johannes.berg@intel.com>
Wed, 16 Aug 2023 08:10:53 +0000 (11:10 +0300)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 22 Aug 2023 11:19:24 +0000 (13:19 +0200)
Support TX flush on AP interfaces so that we will do a
proper flush for frames on the queue before keys are
removed.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
Link: https://lore.kernel.org/r/20230816104355.f4b749b91ec2.Ia8381bd4f7d47592e74387c564739798a01c4049@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c

index e7fe5b7..5918c1f 100644 (file)
@@ -5605,9 +5605,6 @@ void iwl_mvm_mac_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
                return;
        }
 
-       if (vif->type != NL80211_IFTYPE_STATION)
-               return;
-
        /* Make sure we're done with the deferred traffic before flushing */
        flush_work(&mvm->add_stream_wk);
 
@@ -5631,9 +5628,6 @@ void iwl_mvm_mac_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
                        ap_sta_done = true;
                }
 
-               /* make sure only TDLS peers or the AP are flushed */
-               WARN_ON_ONCE(sta != mvmvif->ap_sta && !sta->tdls);
-
                if (drop) {
                        if (iwl_mvm_flush_sta(mvm, mvmsta, false))
                                IWL_ERR(mvm, "flush request fail\n");