diff options
author | Johannes Berg <johannes.berg@intel.com> | 2023-06-06 14:49:31 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2023-06-07 19:53:29 +0200 |
commit | 4b8d43f1137cb9f6e8bb3b77251ad9429ab7ef34 (patch) | |
tree | 8175641a45bd3da5931eedd8daaf23d975fd0906 /net/mac80211/ieee80211_i.h | |
parent | wifi: mac80211: ibss: move disconnect to wiphy work (diff) | |
download | linux-4b8d43f1137cb9f6e8bb3b77251ad9429ab7ef34.tar.xz linux-4b8d43f1137cb9f6e8bb3b77251ad9429ab7ef34.zip |
wifi: mac80211: mlme: move disconnects to wiphy work
Move the beacon loss work that might cause a disconnect
and the CSA disconnect work to be wiphy work, so we hold
the wiphy lock for them.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 78ac71b66fce..f918e73469a7 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -466,8 +466,8 @@ struct ieee80211_if_managed { struct timer_list conn_mon_timer; struct timer_list bcn_mon_timer; struct work_struct monitor_work; - struct work_struct beacon_connection_loss_work; - struct work_struct csa_connection_drop_work; + struct wiphy_work beacon_connection_loss_work; + struct wiphy_work csa_connection_drop_work; unsigned long beacon_timeout; unsigned long probe_timeout; |