]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Revert "wifi: mac80211: fix RCU list iterations"
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 10 Nov 2024 05:02:40 +0000 (06:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 14 Nov 2024 12:19:38 +0000 (13:19 +0100)
This reverts commit f37319609335d3eb2f7edfec4bad7996668a4d29 which is
commit ac35180032fbc5d80b29af00ba4881815ceefcb6 upstream.

It should not have been backported here due to lack of other rcu
changes in the stable branches.

Cc: Johannes Berg <johannes@sipsolutions.net>
Cc: Miriam Rachel Korenblit <miriam.rachel.korenblit@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/mac80211/chan.c
net/mac80211/mlme.c
net/mac80211/scan.c
net/mac80211/util.c

index c09aed6a3cfcc83d73aaf9670ac456fa56dc9d7e..68952752b5990f917f0257a241a0a650ca2e1463 100644 (file)
@@ -245,9 +245,7 @@ ieee80211_get_max_required_bw(struct ieee80211_sub_if_data *sdata,
        enum nl80211_chan_width max_bw = NL80211_CHAN_WIDTH_20_NOHT;
        struct sta_info *sta;
 
-       lockdep_assert_wiphy(sdata->local->hw.wiphy);
-
-       list_for_each_entry(sta, &sdata->local->sta_list, list) {
+       list_for_each_entry_rcu(sta, &sdata->local->sta_list, list) {
                if (sdata != sta->sdata &&
                    !(sta->sdata->bss && sta->sdata->bss == sdata->bss))
                        continue;
index b14c809bcdea33dd23ca81868eb640b936b03350..42e2c84ed2484a68f085172bc191a1d891a4ac70 100644 (file)
@@ -732,7 +732,7 @@ static bool ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
                bool disable_mu_mimo = false;
                struct ieee80211_sub_if_data *other;
 
-               list_for_each_entry(other, &local->interfaces, list) {
+               list_for_each_entry_rcu(other, &local->interfaces, list) {
                        if (other->vif.bss_conf.mu_mimo_owner) {
                                disable_mu_mimo = true;
                                break;
index d4a032f3457732a58d7f88fde04b63dcaeabc91a..1726e3221d3c77a0435d200d63502932ef1db294 100644 (file)
@@ -490,7 +490,7 @@ static void __ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted)
         * the scan was in progress; if there was none this will
         * just be a no-op for the particular interface.
         */
-       list_for_each_entry(sdata, &local->interfaces, list) {
+       list_for_each_entry_rcu(sdata, &local->interfaces, list) {
                if (ieee80211_sdata_running(sdata))
                        wiphy_work_queue(sdata->local->hw.wiphy, &sdata->work);
        }
index 02b5aaad2a155c10ce9000d673893f9653531697..d682c32821a110322980dbf9dd2201ee63f3b40a 100644 (file)
@@ -745,9 +745,7 @@ static void __iterate_interfaces(struct ieee80211_local *local,
        struct ieee80211_sub_if_data *sdata;
        bool active_only = iter_flags & IEEE80211_IFACE_ITER_ACTIVE;
 
-       list_for_each_entry_rcu(sdata, &local->interfaces, list,
-                               lockdep_is_held(&local->iflist_mtx) ||
-                               lockdep_is_held(&local->hw.wiphy->mtx)) {
+       list_for_each_entry_rcu(sdata, &local->interfaces, list) {
                switch (sdata->vif.type) {
                case NL80211_IFTYPE_MONITOR:
                        if (!(sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE))