]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
wifi: cfg80211: use system_unbound_wq for wiphy work
authorJohannes Berg <johannes.berg@intel.com>
Mon, 9 Oct 2023 08:18:01 +0000 (10:18 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 Oct 2023 10:03:06 +0000 (12:03 +0200)
commit49b9165ead33dab3f4c48622c5512cde1468f95b
tree39db68ea8f6dcf8ba0ebc3c28536d3e4ef8492c5
parent405dbaf049816e7dd32e856be2549ccd7d967a4d
wifi: cfg80211: use system_unbound_wq for wiphy work

commit 91d20ab9d9ca035527af503d00e1e30d6c375f2a upstream.

Since wiphy work items can run pretty much arbitrary
code in the stack/driver, it can take longer to run
all of this, so we shouldn't be using system_wq via
schedule_work(). Also, we lock the wiphy (which is
the reason this exists), so use system_unbound_wq.

Reported-and-tested-by: Kalle Valo <kvalo@kernel.org>
Fixes: a3ee4dc84c4e ("wifi: cfg80211: add a work abstraction with special semantics")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/wireless/core.c