mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 12:20:52 +07:00
mac80211: protect ->scanning by mutex in ieee80211_work_work()
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
133d40f9a2
commit
5f5460706e
@ -122,9 +122,6 @@ static void ieee80211_work_work(struct work_struct *work)
|
|||||||
enum work_action rma;
|
enum work_action rma;
|
||||||
bool remain_off_channel = false;
|
bool remain_off_channel = false;
|
||||||
|
|
||||||
if (local->scanning)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ieee80211_queue_work() should have picked up most cases,
|
* ieee80211_queue_work() should have picked up most cases,
|
||||||
* here we'll pick the rest.
|
* here we'll pick the rest.
|
||||||
@ -134,6 +131,11 @@ static void ieee80211_work_work(struct work_struct *work)
|
|||||||
|
|
||||||
mutex_lock(&local->mtx);
|
mutex_lock(&local->mtx);
|
||||||
|
|
||||||
|
if (local->scanning) {
|
||||||
|
mutex_unlock(&local->mtx);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
ieee80211_recalc_idle(local);
|
ieee80211_recalc_idle(local);
|
||||||
|
|
||||||
list_for_each_entry_safe(wk, tmp, &local->work_list, list) {
|
list_for_each_entry_safe(wk, tmp, &local->work_list, list) {
|
||||||
|
Loading…
Reference in New Issue
Block a user