diff options
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/iface.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c index 1bf12a26b45e..80c16f6e2af6 100644 --- a/net/mac80211/iface.c +++ b/net/mac80211/iface.c | |||
@@ -860,22 +860,18 @@ void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata) | |||
860 | void ieee80211_remove_interfaces(struct ieee80211_local *local) | 860 | void ieee80211_remove_interfaces(struct ieee80211_local *local) |
861 | { | 861 | { |
862 | struct ieee80211_sub_if_data *sdata, *tmp; | 862 | struct ieee80211_sub_if_data *sdata, *tmp; |
863 | LIST_HEAD(unreg_list); | ||
863 | 864 | ||
864 | ASSERT_RTNL(); | 865 | ASSERT_RTNL(); |
865 | 866 | ||
867 | mutex_lock(&local->iflist_mtx); | ||
866 | list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) { | 868 | list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) { |
867 | /* | ||
868 | * we cannot hold the iflist_mtx across unregister_netdevice, | ||
869 | * but we only need to hold it for list modifications to lock | ||
870 | * out readers since we're under the RTNL here as all other | ||
871 | * writers. | ||
872 | */ | ||
873 | mutex_lock(&local->iflist_mtx); | ||
874 | list_del(&sdata->list); | 869 | list_del(&sdata->list); |
875 | mutex_unlock(&local->iflist_mtx); | ||
876 | 870 | ||
877 | unregister_netdevice(sdata->dev); | 871 | unregister_netdevice_queue(sdata->dev, &unreg_list); |
878 | } | 872 | } |
873 | mutex_unlock(&local->iflist_mtx); | ||
874 | unregister_netdevice_many(&unreg_list); | ||
879 | } | 875 | } |
880 | 876 | ||
881 | static u32 ieee80211_idle_off(struct ieee80211_local *local, | 877 | static u32 ieee80211_idle_off(struct ieee80211_local *local, |