File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ static void cfg80211_wiphy_work(struct work_struct *work)
431
431
if (wk ) {
432
432
list_del_init (& wk -> entry );
433
433
if (!list_empty (& rdev -> wiphy_work_list ))
434
- schedule_work ( work );
434
+ queue_work ( system_unbound_wq , work );
435
435
spin_unlock_irq (& rdev -> wiphy_work_lock );
436
436
437
437
wk -> func (& rdev -> wiphy , wk );
Original file line number Diff line number Diff line change 5
5
*
6
6
* Copyright 2005-2006 Jiri Benc <[email protected] >
7
7
* Copyright 2006 Johannes Berg <[email protected] >
8
- * Copyright (C) 2020-2021, 2023 Intel Corporation
8
+ * Copyright (C) 2020-2021, 2023-2024 Intel Corporation
9
9
*/
10
10
11
11
#include <linux/device.h>
@@ -137,7 +137,7 @@ static int wiphy_resume(struct device *dev)
137
137
if (rdev -> wiphy .registered && rdev -> ops -> resume )
138
138
ret = rdev_resume (rdev );
139
139
rdev -> suspended = false;
140
- schedule_work ( & rdev -> wiphy_work );
140
+ queue_work ( system_unbound_wq , & rdev -> wiphy_work );
141
141
wiphy_unlock (& rdev -> wiphy );
142
142
143
143
if (ret )
You can’t perform that action at this time.
0 commit comments