2 * kernel/workqueue.c - generic async execution with shared worker pool
4 * Copyright (C) 2002 Ingo Molnar
6 * Derived from the taskqueue/keventd code by:
7 * David Woodhouse <dwmw2@infradead.org>
9 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
10 * Theodore Ts'o <tytso@mit.edu>
12 * Made to use alloc_percpu by Christoph Lameter.
14 * Copyright (C) 2010 SUSE Linux Products GmbH
15 * Copyright (C) 2010 Tejun Heo <tj@kernel.org>
17 * This is the generic async execution mechanism. Work items as are
18 * executed in process context. The worker pool is shared and
19 * automatically managed. There are two worker pools for each CPU (one for
20 * normal work items and the other for high priority ones) and some extra
21 * pools for workqueues which are not bound to any specific CPU - the
22 * number of these backing pools is dynamic.
24 * Please read Documentation/workqueue.txt for details.
27 #include <linux/export.h>
28 #include <linux/kernel.h>
29 #include <linux/sched.h>
30 #include <linux/init.h>
31 #include <linux/signal.h>
32 #include <linux/completion.h>
33 #include <linux/workqueue.h>
34 #include <linux/slab.h>
35 #include <linux/cpu.h>
36 #include <linux/notifier.h>
37 #include <linux/kthread.h>
38 #include <linux/hardirq.h>
39 #include <linux/mempolicy.h>
40 #include <linux/freezer.h>
41 #include <linux/kallsyms.h>
42 #include <linux/debug_locks.h>
43 #include <linux/lockdep.h>
44 #include <linux/idr.h>
45 #include <linux/jhash.h>
46 #include <linux/hashtable.h>
47 #include <linux/rculist.h>
48 #include <linux/nodemask.h>
49 #include <linux/moduleparam.h>
50 #include <linux/uaccess.h>
52 #include "workqueue_internal.h"
58 * A bound pool is either associated or disassociated with its CPU.
59 * While associated (!DISASSOCIATED), all workers are bound to the
60 * CPU and none has %WORKER_UNBOUND set and concurrency management
63 * While DISASSOCIATED, the cpu may be offline and all workers have
64 * %WORKER_UNBOUND set and concurrency management disabled, and may
65 * be executing on any CPU. The pool behaves as an unbound one.
67 * Note that DISASSOCIATED should be flipped only while holding
68 * attach_mutex to avoid changing binding state while
69 * worker_attach_to_pool() is in progress.
71 POOL_DISASSOCIATED
= 1 << 2, /* cpu can't serve workers */
74 WORKER_DIE
= 1 << 1, /* die die die */
75 WORKER_IDLE
= 1 << 2, /* is idle */
76 WORKER_PREP
= 1 << 3, /* preparing to run works */
77 WORKER_CPU_INTENSIVE
= 1 << 6, /* cpu intensive */
78 WORKER_UNBOUND
= 1 << 7, /* worker is unbound */
79 WORKER_REBOUND
= 1 << 8, /* worker was rebound */
81 WORKER_NOT_RUNNING
= WORKER_PREP
| WORKER_CPU_INTENSIVE
|
82 WORKER_UNBOUND
| WORKER_REBOUND
,
84 NR_STD_WORKER_POOLS
= 2, /* # standard pools per cpu */
86 UNBOUND_POOL_HASH_ORDER
= 6, /* hashed by pool->attrs */
87 BUSY_WORKER_HASH_ORDER
= 6, /* 64 pointers */
89 MAX_IDLE_WORKERS_RATIO
= 4, /* 1/4 of busy can be idle */
90 IDLE_WORKER_TIMEOUT
= 300 * HZ
, /* keep idle ones for 5 mins */
92 MAYDAY_INITIAL_TIMEOUT
= HZ
/ 100 >= 2 ? HZ
/ 100 : 2,
93 /* call for help after 10ms
95 MAYDAY_INTERVAL
= HZ
/ 10, /* and then every 100ms */
96 CREATE_COOLDOWN
= HZ
, /* time to breath after fail */
99 * Rescue workers are used only on emergencies and shared by
100 * all cpus. Give MIN_NICE.
102 RESCUER_NICE_LEVEL
= MIN_NICE
,
103 HIGHPRI_NICE_LEVEL
= MIN_NICE
,
109 * Structure fields follow one of the following exclusion rules.
111 * I: Modifiable by initialization/destruction paths and read-only for
114 * P: Preemption protected. Disabling preemption is enough and should
115 * only be modified and accessed from the local cpu.
117 * L: pool->lock protected. Access with pool->lock held.
119 * X: During normal operation, modification requires pool->lock and should
120 * be done only from local cpu. Either disabling preemption on local
121 * cpu or grabbing pool->lock is enough for read access. If
122 * POOL_DISASSOCIATED is set, it's identical to L.
124 * A: pool->attach_mutex protected.
126 * PL: wq_pool_mutex protected.
128 * PR: wq_pool_mutex protected for writes. Sched-RCU protected for reads.
130 * WQ: wq->mutex protected.
132 * WR: wq->mutex protected for writes. Sched-RCU protected for reads.
134 * MD: wq_mayday_lock protected.
137 /* struct worker is defined in workqueue_internal.h */
140 spinlock_t lock
; /* the pool lock */
141 int cpu
; /* I: the associated cpu */
142 int node
; /* I: the associated node ID */
143 int id
; /* I: pool ID */
144 unsigned int flags
; /* X: flags */
146 struct list_head worklist
; /* L: list of pending works */
147 int nr_workers
; /* L: total number of workers */
149 /* nr_idle includes the ones off idle_list for rebinding */
150 int nr_idle
; /* L: currently idle ones */
152 struct list_head idle_list
; /* X: list of idle workers */
153 struct timer_list idle_timer
; /* L: worker idle timeout */
154 struct timer_list mayday_timer
; /* L: SOS timer for workers */
156 /* a workers is either on busy_hash or idle_list, or the manager */
157 DECLARE_HASHTABLE(busy_hash
, BUSY_WORKER_HASH_ORDER
);
158 /* L: hash of busy workers */
160 /* see manage_workers() for details on the two manager mutexes */
161 struct mutex manager_arb
; /* manager arbitration */
162 struct mutex attach_mutex
; /* attach/detach exclusion */
163 struct list_head workers
; /* A: attached workers */
164 struct completion
*detach_completion
; /* all workers detached */
166 struct ida worker_ida
; /* worker IDs for task name */
168 struct workqueue_attrs
*attrs
; /* I: worker attributes */
169 struct hlist_node hash_node
; /* PL: unbound_pool_hash node */
170 int refcnt
; /* PL: refcnt for unbound pools */
173 * The current concurrency level. As it's likely to be accessed
174 * from other CPUs during try_to_wake_up(), put it in a separate
177 atomic_t nr_running ____cacheline_aligned_in_smp
;
180 * Destruction of pool is sched-RCU protected to allow dereferences
181 * from get_work_pool().
184 } ____cacheline_aligned_in_smp
;
187 * The per-pool workqueue. While queued, the lower WORK_STRUCT_FLAG_BITS
188 * of work_struct->data are used for flags and the remaining high bits
189 * point to the pwq; thus, pwqs need to be aligned at two's power of the
190 * number of flag bits.
192 struct pool_workqueue
{
193 struct worker_pool
*pool
; /* I: the associated pool */
194 struct workqueue_struct
*wq
; /* I: the owning workqueue */
195 int work_color
; /* L: current color */
196 int flush_color
; /* L: flushing color */
197 int refcnt
; /* L: reference count */
198 int nr_in_flight
[WORK_NR_COLORS
];
199 /* L: nr of in_flight works */
200 int nr_active
; /* L: nr of active works */
201 int max_active
; /* L: max active works */
202 struct list_head delayed_works
; /* L: delayed works */
203 struct list_head pwqs_node
; /* WR: node on wq->pwqs */
204 struct list_head mayday_node
; /* MD: node on wq->maydays */
207 * Release of unbound pwq is punted to system_wq. See put_pwq()
208 * and pwq_unbound_release_workfn() for details. pool_workqueue
209 * itself is also sched-RCU protected so that the first pwq can be
210 * determined without grabbing wq->mutex.
212 struct work_struct unbound_release_work
;
214 } __aligned(1 << WORK_STRUCT_FLAG_BITS
);
217 * Structure used to wait for workqueue flush.
220 struct list_head list
; /* WQ: list of flushers */
221 int flush_color
; /* WQ: flush color waiting for */
222 struct completion done
; /* flush completion */
228 * The externally visible workqueue. It relays the issued work items to
229 * the appropriate worker_pool through its pool_workqueues.
231 struct workqueue_struct
{
232 struct list_head pwqs
; /* WR: all pwqs of this wq */
233 struct list_head list
; /* PL: list of all workqueues */
235 struct mutex mutex
; /* protects this wq */
236 int work_color
; /* WQ: current work color */
237 int flush_color
; /* WQ: current flush color */
238 atomic_t nr_pwqs_to_flush
; /* flush in progress */
239 struct wq_flusher
*first_flusher
; /* WQ: first flusher */
240 struct list_head flusher_queue
; /* WQ: flush waiters */
241 struct list_head flusher_overflow
; /* WQ: flush overflow list */
243 struct list_head maydays
; /* MD: pwqs requesting rescue */
244 struct worker
*rescuer
; /* I: rescue worker */
246 int nr_drainers
; /* WQ: drain in progress */
247 int saved_max_active
; /* WQ: saved pwq max_active */
249 struct workqueue_attrs
*unbound_attrs
; /* WQ: only for unbound wqs */
250 struct pool_workqueue
*dfl_pwq
; /* WQ: only for unbound wqs */
253 struct wq_device
*wq_dev
; /* I: for sysfs interface */
255 #ifdef CONFIG_LOCKDEP
256 struct lockdep_map lockdep_map
;
258 char name
[WQ_NAME_LEN
]; /* I: workqueue name */
260 /* hot fields used during command issue, aligned to cacheline */
261 unsigned int flags ____cacheline_aligned
; /* WQ: WQ_* flags */
262 struct pool_workqueue __percpu
*cpu_pwqs
; /* I: per-cpu pwqs */
263 struct pool_workqueue __rcu
*numa_pwq_tbl
[]; /* FR: unbound pwqs indexed by node */
266 static struct kmem_cache
*pwq_cache
;
268 static cpumask_var_t
*wq_numa_possible_cpumask
;
269 /* possible CPUs of each node */
271 static bool wq_disable_numa
;
272 module_param_named(disable_numa
, wq_disable_numa
, bool, 0444);
274 /* see the comment above the definition of WQ_POWER_EFFICIENT */
275 #ifdef CONFIG_WQ_POWER_EFFICIENT_DEFAULT
276 static bool wq_power_efficient
= true;
278 static bool wq_power_efficient
;
281 module_param_named(power_efficient
, wq_power_efficient
, bool, 0444);
283 static bool wq_numa_enabled
; /* unbound NUMA affinity enabled */
285 /* buf for wq_update_unbound_numa_attrs(), protected by CPU hotplug exclusion */
286 static struct workqueue_attrs
*wq_update_unbound_numa_attrs_buf
;
288 static DEFINE_MUTEX(wq_pool_mutex
); /* protects pools and workqueues list */
289 static DEFINE_SPINLOCK(wq_mayday_lock
); /* protects wq->maydays list */
291 static LIST_HEAD(workqueues
); /* PL: list of all workqueues */
292 static bool workqueue_freezing
; /* PL: have wqs started freezing? */
294 /* the per-cpu worker pools */
295 static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool
[NR_STD_WORKER_POOLS
],
298 static DEFINE_IDR(worker_pool_idr
); /* PR: idr of all pools */
300 /* PL: hash of all unbound pools keyed by pool->attrs */
301 static DEFINE_HASHTABLE(unbound_pool_hash
, UNBOUND_POOL_HASH_ORDER
);
303 /* I: attributes used when instantiating standard unbound pools on demand */
304 static struct workqueue_attrs
*unbound_std_wq_attrs
[NR_STD_WORKER_POOLS
];
306 /* I: attributes used when instantiating ordered pools on demand */
307 static struct workqueue_attrs
*ordered_wq_attrs
[NR_STD_WORKER_POOLS
];
309 struct workqueue_struct
*system_wq __read_mostly
;
310 EXPORT_SYMBOL(system_wq
);
311 struct workqueue_struct
*system_highpri_wq __read_mostly
;
312 EXPORT_SYMBOL_GPL(system_highpri_wq
);
313 struct workqueue_struct
*system_long_wq __read_mostly
;
314 EXPORT_SYMBOL_GPL(system_long_wq
);
315 struct workqueue_struct
*system_unbound_wq __read_mostly
;
316 EXPORT_SYMBOL_GPL(system_unbound_wq
);
317 struct workqueue_struct
*system_freezable_wq __read_mostly
;
318 EXPORT_SYMBOL_GPL(system_freezable_wq
);
319 struct workqueue_struct
*system_power_efficient_wq __read_mostly
;
320 EXPORT_SYMBOL_GPL(system_power_efficient_wq
);
321 struct workqueue_struct
*system_freezable_power_efficient_wq __read_mostly
;
322 EXPORT_SYMBOL_GPL(system_freezable_power_efficient_wq
);
324 static int worker_thread(void *__worker
);
325 static void copy_workqueue_attrs(struct workqueue_attrs
*to
,
326 const struct workqueue_attrs
*from
);
328 #define CREATE_TRACE_POINTS
329 #include <trace/events/workqueue.h>
331 #define assert_rcu_or_pool_mutex() \
332 rcu_lockdep_assert(rcu_read_lock_sched_held() || \
333 lockdep_is_held(&wq_pool_mutex), \
334 "sched RCU or wq_pool_mutex should be held")
336 #define assert_rcu_or_wq_mutex(wq) \
337 rcu_lockdep_assert(rcu_read_lock_sched_held() || \
338 lockdep_is_held(&wq->mutex), \
339 "sched RCU or wq->mutex should be held")
341 #define for_each_cpu_worker_pool(pool, cpu) \
342 for ((pool) = &per_cpu(cpu_worker_pools, cpu)[0]; \
343 (pool) < &per_cpu(cpu_worker_pools, cpu)[NR_STD_WORKER_POOLS]; \
347 * for_each_pool - iterate through all worker_pools in the system
348 * @pool: iteration cursor
349 * @pi: integer used for iteration
351 * This must be called either with wq_pool_mutex held or sched RCU read
352 * locked. If the pool needs to be used beyond the locking in effect, the
353 * caller is responsible for guaranteeing that the pool stays online.
355 * The if/else clause exists only for the lockdep assertion and can be
358 #define for_each_pool(pool, pi) \
359 idr_for_each_entry(&worker_pool_idr, pool, pi) \
360 if (({ assert_rcu_or_pool_mutex(); false; })) { } \
364 * for_each_pool_worker - iterate through all workers of a worker_pool
365 * @worker: iteration cursor
366 * @pool: worker_pool to iterate workers of
368 * This must be called with @pool->attach_mutex.
370 * The if/else clause exists only for the lockdep assertion and can be
373 #define for_each_pool_worker(worker, pool) \
374 list_for_each_entry((worker), &(pool)->workers, node) \
375 if (({ lockdep_assert_held(&pool->attach_mutex); false; })) { } \
379 * for_each_pwq - iterate through all pool_workqueues of the specified workqueue
380 * @pwq: iteration cursor
381 * @wq: the target workqueue
383 * This must be called either with wq->mutex held or sched RCU read locked.
384 * If the pwq needs to be used beyond the locking in effect, the caller is
385 * responsible for guaranteeing that the pwq stays online.
387 * The if/else clause exists only for the lockdep assertion and can be
390 #define for_each_pwq(pwq, wq) \
391 list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node) \
392 if (({ assert_rcu_or_wq_mutex(wq); false; })) { } \
395 #ifdef CONFIG_DEBUG_OBJECTS_WORK
397 static struct debug_obj_descr work_debug_descr
;
399 static void *work_debug_hint(void *addr
)
401 return ((struct work_struct
*) addr
)->func
;
405 * fixup_init is called when:
406 * - an active object is initialized
408 static int work_fixup_init(void *addr
, enum debug_obj_state state
)
410 struct work_struct
*work
= addr
;
413 case ODEBUG_STATE_ACTIVE
:
414 cancel_work_sync(work
);
415 debug_object_init(work
, &work_debug_descr
);
423 * fixup_activate is called when:
424 * - an active object is activated
425 * - an unknown object is activated (might be a statically initialized object)
427 static int work_fixup_activate(void *addr
, enum debug_obj_state state
)
429 struct work_struct
*work
= addr
;
433 case ODEBUG_STATE_NOTAVAILABLE
:
435 * This is not really a fixup. The work struct was
436 * statically initialized. We just make sure that it
437 * is tracked in the object tracker.
439 if (test_bit(WORK_STRUCT_STATIC_BIT
, work_data_bits(work
))) {
440 debug_object_init(work
, &work_debug_descr
);
441 debug_object_activate(work
, &work_debug_descr
);
447 case ODEBUG_STATE_ACTIVE
:
456 * fixup_free is called when:
457 * - an active object is freed
459 static int work_fixup_free(void *addr
, enum debug_obj_state state
)
461 struct work_struct
*work
= addr
;
464 case ODEBUG_STATE_ACTIVE
:
465 cancel_work_sync(work
);
466 debug_object_free(work
, &work_debug_descr
);
473 static struct debug_obj_descr work_debug_descr
= {
474 .name
= "work_struct",
475 .debug_hint
= work_debug_hint
,
476 .fixup_init
= work_fixup_init
,
477 .fixup_activate
= work_fixup_activate
,
478 .fixup_free
= work_fixup_free
,
481 static inline void debug_work_activate(struct work_struct
*work
)
483 debug_object_activate(work
, &work_debug_descr
);
486 static inline void debug_work_deactivate(struct work_struct
*work
)
488 debug_object_deactivate(work
, &work_debug_descr
);
491 void __init_work(struct work_struct
*work
, int onstack
)
494 debug_object_init_on_stack(work
, &work_debug_descr
);
496 debug_object_init(work
, &work_debug_descr
);
498 EXPORT_SYMBOL_GPL(__init_work
);
500 void destroy_work_on_stack(struct work_struct
*work
)
502 debug_object_free(work
, &work_debug_descr
);
504 EXPORT_SYMBOL_GPL(destroy_work_on_stack
);
506 void destroy_delayed_work_on_stack(struct delayed_work
*work
)
508 destroy_timer_on_stack(&work
->timer
);
509 debug_object_free(&work
->work
, &work_debug_descr
);
511 EXPORT_SYMBOL_GPL(destroy_delayed_work_on_stack
);
514 static inline void debug_work_activate(struct work_struct
*work
) { }
515 static inline void debug_work_deactivate(struct work_struct
*work
) { }
519 * worker_pool_assign_id - allocate ID and assing it to @pool
520 * @pool: the pool pointer of interest
522 * Returns 0 if ID in [0, WORK_OFFQ_POOL_NONE) is allocated and assigned
523 * successfully, -errno on failure.
525 static int worker_pool_assign_id(struct worker_pool
*pool
)
529 lockdep_assert_held(&wq_pool_mutex
);
531 ret
= idr_alloc(&worker_pool_idr
, pool
, 0, WORK_OFFQ_POOL_NONE
,
541 * unbound_pwq_by_node - return the unbound pool_workqueue for the given node
542 * @wq: the target workqueue
545 * This must be called either with pwq_lock held or sched RCU read locked.
546 * If the pwq needs to be used beyond the locking in effect, the caller is
547 * responsible for guaranteeing that the pwq stays online.
549 * Return: The unbound pool_workqueue for @node.
551 static struct pool_workqueue
*unbound_pwq_by_node(struct workqueue_struct
*wq
,
554 assert_rcu_or_wq_mutex(wq
);
555 return rcu_dereference_raw(wq
->numa_pwq_tbl
[node
]);
558 static unsigned int work_color_to_flags(int color
)
560 return color
<< WORK_STRUCT_COLOR_SHIFT
;
563 static int get_work_color(struct work_struct
*work
)
565 return (*work_data_bits(work
) >> WORK_STRUCT_COLOR_SHIFT
) &
566 ((1 << WORK_STRUCT_COLOR_BITS
) - 1);
569 static int work_next_color(int color
)
571 return (color
+ 1) % WORK_NR_COLORS
;
575 * While queued, %WORK_STRUCT_PWQ is set and non flag bits of a work's data
576 * contain the pointer to the queued pwq. Once execution starts, the flag
577 * is cleared and the high bits contain OFFQ flags and pool ID.
579 * set_work_pwq(), set_work_pool_and_clear_pending(), mark_work_canceling()
580 * and clear_work_data() can be used to set the pwq, pool or clear
581 * work->data. These functions should only be called while the work is
582 * owned - ie. while the PENDING bit is set.
584 * get_work_pool() and get_work_pwq() can be used to obtain the pool or pwq
585 * corresponding to a work. Pool is available once the work has been
586 * queued anywhere after initialization until it is sync canceled. pwq is
587 * available only while the work item is queued.
589 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
590 * canceled. While being canceled, a work item may have its PENDING set
591 * but stay off timer and worklist for arbitrarily long and nobody should
592 * try to steal the PENDING bit.
594 static inline void set_work_data(struct work_struct
*work
, unsigned long data
,
597 WARN_ON_ONCE(!work_pending(work
));
598 atomic_long_set(&work
->data
, data
| flags
| work_static(work
));
601 static void set_work_pwq(struct work_struct
*work
, struct pool_workqueue
*pwq
,
602 unsigned long extra_flags
)
604 set_work_data(work
, (unsigned long)pwq
,
605 WORK_STRUCT_PENDING
| WORK_STRUCT_PWQ
| extra_flags
);
608 static void set_work_pool_and_keep_pending(struct work_struct
*work
,
611 set_work_data(work
, (unsigned long)pool_id
<< WORK_OFFQ_POOL_SHIFT
,
612 WORK_STRUCT_PENDING
);
615 static void set_work_pool_and_clear_pending(struct work_struct
*work
,
619 * The following wmb is paired with the implied mb in
620 * test_and_set_bit(PENDING) and ensures all updates to @work made
621 * here are visible to and precede any updates by the next PENDING
625 set_work_data(work
, (unsigned long)pool_id
<< WORK_OFFQ_POOL_SHIFT
, 0);
627 * The following mb guarantees that previous clear of a PENDING bit
628 * will not be reordered with any speculative LOADS or STORES from
629 * work->current_func, which is executed afterwards. This possible
630 * reordering can lead to a missed execution on attempt to qeueue
631 * the same @work. E.g. consider this case:
634 * ---------------------------- --------------------------------
636 * 1 STORE event_indicated
637 * 2 queue_work_on() {
638 * 3 test_and_set_bit(PENDING)
639 * 4 } set_..._and_clear_pending() {
640 * 5 set_work_data() # clear bit
642 * 7 work->current_func() {
643 * 8 LOAD event_indicated
646 * Without an explicit full barrier speculative LOAD on line 8 can
647 * be executed before CPU#0 does STORE on line 1. If that happens,
648 * CPU#0 observes the PENDING bit is still set and new execution of
649 * a @work is not queued in a hope, that CPU#1 will eventually
650 * finish the queued @work. Meanwhile CPU#1 does not see
651 * event_indicated is set, because speculative LOAD was executed
652 * before actual STORE.
657 static void clear_work_data(struct work_struct
*work
)
659 smp_wmb(); /* see set_work_pool_and_clear_pending() */
660 set_work_data(work
, WORK_STRUCT_NO_POOL
, 0);
663 static struct pool_workqueue
*get_work_pwq(struct work_struct
*work
)
665 unsigned long data
= atomic_long_read(&work
->data
);
667 if (data
& WORK_STRUCT_PWQ
)
668 return (void *)(data
& WORK_STRUCT_WQ_DATA_MASK
);
674 * get_work_pool - return the worker_pool a given work was associated with
675 * @work: the work item of interest
677 * Pools are created and destroyed under wq_pool_mutex, and allows read
678 * access under sched-RCU read lock. As such, this function should be
679 * called under wq_pool_mutex or with preemption disabled.
681 * All fields of the returned pool are accessible as long as the above
682 * mentioned locking is in effect. If the returned pool needs to be used
683 * beyond the critical section, the caller is responsible for ensuring the
684 * returned pool is and stays online.
686 * Return: The worker_pool @work was last associated with. %NULL if none.
688 static struct worker_pool
*get_work_pool(struct work_struct
*work
)
690 unsigned long data
= atomic_long_read(&work
->data
);
693 assert_rcu_or_pool_mutex();
695 if (data
& WORK_STRUCT_PWQ
)
696 return ((struct pool_workqueue
*)
697 (data
& WORK_STRUCT_WQ_DATA_MASK
))->pool
;
699 pool_id
= data
>> WORK_OFFQ_POOL_SHIFT
;
700 if (pool_id
== WORK_OFFQ_POOL_NONE
)
703 return idr_find(&worker_pool_idr
, pool_id
);
707 * get_work_pool_id - return the worker pool ID a given work is associated with
708 * @work: the work item of interest
710 * Return: The worker_pool ID @work was last associated with.
711 * %WORK_OFFQ_POOL_NONE if none.
713 static int get_work_pool_id(struct work_struct
*work
)
715 unsigned long data
= atomic_long_read(&work
->data
);
717 if (data
& WORK_STRUCT_PWQ
)
718 return ((struct pool_workqueue
*)
719 (data
& WORK_STRUCT_WQ_DATA_MASK
))->pool
->id
;
721 return data
>> WORK_OFFQ_POOL_SHIFT
;
724 static void mark_work_canceling(struct work_struct
*work
)
726 unsigned long pool_id
= get_work_pool_id(work
);
728 pool_id
<<= WORK_OFFQ_POOL_SHIFT
;
729 set_work_data(work
, pool_id
| WORK_OFFQ_CANCELING
, WORK_STRUCT_PENDING
);
732 static bool work_is_canceling(struct work_struct
*work
)
734 unsigned long data
= atomic_long_read(&work
->data
);
736 return !(data
& WORK_STRUCT_PWQ
) && (data
& WORK_OFFQ_CANCELING
);
740 * Policy functions. These define the policies on how the global worker
741 * pools are managed. Unless noted otherwise, these functions assume that
742 * they're being called with pool->lock held.
745 static bool __need_more_worker(struct worker_pool
*pool
)
747 return !atomic_read(&pool
->nr_running
);
751 * Need to wake up a worker? Called from anything but currently
754 * Note that, because unbound workers never contribute to nr_running, this
755 * function will always return %true for unbound pools as long as the
756 * worklist isn't empty.
758 static bool need_more_worker(struct worker_pool
*pool
)
760 return !list_empty(&pool
->worklist
) && __need_more_worker(pool
);
763 /* Can I start working? Called from busy but !running workers. */
764 static bool may_start_working(struct worker_pool
*pool
)
766 return pool
->nr_idle
;
769 /* Do I need to keep working? Called from currently running workers. */
770 static bool keep_working(struct worker_pool
*pool
)
772 return !list_empty(&pool
->worklist
) &&
773 atomic_read(&pool
->nr_running
) <= 1;
776 /* Do we need a new worker? Called from manager. */
777 static bool need_to_create_worker(struct worker_pool
*pool
)
779 return need_more_worker(pool
) && !may_start_working(pool
);
782 /* Do we have too many workers and should some go away? */
783 static bool too_many_workers(struct worker_pool
*pool
)
785 bool managing
= mutex_is_locked(&pool
->manager_arb
);
786 int nr_idle
= pool
->nr_idle
+ managing
; /* manager is considered idle */
787 int nr_busy
= pool
->nr_workers
- nr_idle
;
789 return nr_idle
> 2 && (nr_idle
- 2) * MAX_IDLE_WORKERS_RATIO
>= nr_busy
;
796 /* Return the first idle worker. Safe with preemption disabled */
797 static struct worker
*first_idle_worker(struct worker_pool
*pool
)
799 if (unlikely(list_empty(&pool
->idle_list
)))
802 return list_first_entry(&pool
->idle_list
, struct worker
, entry
);
806 * wake_up_worker - wake up an idle worker
807 * @pool: worker pool to wake worker from
809 * Wake up the first idle worker of @pool.
812 * spin_lock_irq(pool->lock).
814 static void wake_up_worker(struct worker_pool
*pool
)
816 struct worker
*worker
= first_idle_worker(pool
);
819 wake_up_process(worker
->task
);
823 * wq_worker_waking_up - a worker is waking up
824 * @task: task waking up
825 * @cpu: CPU @task is waking up to
827 * This function is called during try_to_wake_up() when a worker is
831 * spin_lock_irq(rq->lock)
833 void wq_worker_waking_up(struct task_struct
*task
, int cpu
)
835 struct worker
*worker
= kthread_data(task
);
837 if (!(worker
->flags
& WORKER_NOT_RUNNING
)) {
838 WARN_ON_ONCE(worker
->pool
->cpu
!= cpu
);
839 atomic_inc(&worker
->pool
->nr_running
);
844 * wq_worker_sleeping - a worker is going to sleep
845 * @task: task going to sleep
846 * @cpu: CPU in question, must be the current CPU number
848 * This function is called during schedule() when a busy worker is
849 * going to sleep. Worker on the same cpu can be woken up by
850 * returning pointer to its task.
853 * spin_lock_irq(rq->lock)
856 * Worker task on @cpu to wake up, %NULL if none.
858 struct task_struct
*wq_worker_sleeping(struct task_struct
*task
, int cpu
)
860 struct worker
*worker
= kthread_data(task
), *to_wakeup
= NULL
;
861 struct worker_pool
*pool
;
864 * Rescuers, which may not have all the fields set up like normal
865 * workers, also reach here, let's not access anything before
866 * checking NOT_RUNNING.
868 if (worker
->flags
& WORKER_NOT_RUNNING
)
873 /* this can only happen on the local cpu */
874 if (WARN_ON_ONCE(cpu
!= raw_smp_processor_id() || pool
->cpu
!= cpu
))
878 * The counterpart of the following dec_and_test, implied mb,
879 * worklist not empty test sequence is in insert_work().
880 * Please read comment there.
882 * NOT_RUNNING is clear. This means that we're bound to and
883 * running on the local cpu w/ rq lock held and preemption
884 * disabled, which in turn means that none else could be
885 * manipulating idle_list, so dereferencing idle_list without pool
888 if (atomic_dec_and_test(&pool
->nr_running
) &&
889 !list_empty(&pool
->worklist
))
890 to_wakeup
= first_idle_worker(pool
);
891 return to_wakeup
? to_wakeup
->task
: NULL
;
895 * worker_set_flags - set worker flags and adjust nr_running accordingly
897 * @flags: flags to set
899 * Set @flags in @worker->flags and adjust nr_running accordingly.
902 * spin_lock_irq(pool->lock)
904 static inline void worker_set_flags(struct worker
*worker
, unsigned int flags
)
906 struct worker_pool
*pool
= worker
->pool
;
908 WARN_ON_ONCE(worker
->task
!= current
);
910 /* If transitioning into NOT_RUNNING, adjust nr_running. */
911 if ((flags
& WORKER_NOT_RUNNING
) &&
912 !(worker
->flags
& WORKER_NOT_RUNNING
)) {
913 atomic_dec(&pool
->nr_running
);
916 worker
->flags
|= flags
;
920 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
922 * @flags: flags to clear
924 * Clear @flags in @worker->flags and adjust nr_running accordingly.
927 * spin_lock_irq(pool->lock)
929 static inline void worker_clr_flags(struct worker
*worker
, unsigned int flags
)
931 struct worker_pool
*pool
= worker
->pool
;
932 unsigned int oflags
= worker
->flags
;
934 WARN_ON_ONCE(worker
->task
!= current
);
936 worker
->flags
&= ~flags
;
939 * If transitioning out of NOT_RUNNING, increment nr_running. Note
940 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
941 * of multiple flags, not a single flag.
943 if ((flags
& WORKER_NOT_RUNNING
) && (oflags
& WORKER_NOT_RUNNING
))
944 if (!(worker
->flags
& WORKER_NOT_RUNNING
))
945 atomic_inc(&pool
->nr_running
);
949 * find_worker_executing_work - find worker which is executing a work
950 * @pool: pool of interest
951 * @work: work to find worker for
953 * Find a worker which is executing @work on @pool by searching
954 * @pool->busy_hash which is keyed by the address of @work. For a worker
955 * to match, its current execution should match the address of @work and
956 * its work function. This is to avoid unwanted dependency between
957 * unrelated work executions through a work item being recycled while still
960 * This is a bit tricky. A work item may be freed once its execution
961 * starts and nothing prevents the freed area from being recycled for
962 * another work item. If the same work item address ends up being reused
963 * before the original execution finishes, workqueue will identify the
964 * recycled work item as currently executing and make it wait until the
965 * current execution finishes, introducing an unwanted dependency.
967 * This function checks the work item address and work function to avoid
968 * false positives. Note that this isn't complete as one may construct a
969 * work function which can introduce dependency onto itself through a
970 * recycled work item. Well, if somebody wants to shoot oneself in the
971 * foot that badly, there's only so much we can do, and if such deadlock
972 * actually occurs, it should be easy to locate the culprit work function.
975 * spin_lock_irq(pool->lock).
978 * Pointer to worker which is executing @work if found, %NULL
981 static struct worker
*find_worker_executing_work(struct worker_pool
*pool
,
982 struct work_struct
*work
)
984 struct worker
*worker
;
986 hash_for_each_possible(pool
->busy_hash
, worker
, hentry
,
988 if (worker
->current_work
== work
&&
989 worker
->current_func
== work
->func
)
996 * move_linked_works - move linked works to a list
997 * @work: start of series of works to be scheduled
998 * @head: target list to append @work to
999 * @nextp: out paramter for nested worklist walking
1001 * Schedule linked works starting from @work to @head. Work series to
1002 * be scheduled starts at @work and includes any consecutive work with
1003 * WORK_STRUCT_LINKED set in its predecessor.
1005 * If @nextp is not NULL, it's updated to point to the next work of
1006 * the last scheduled work. This allows move_linked_works() to be
1007 * nested inside outer list_for_each_entry_safe().
1010 * spin_lock_irq(pool->lock).
1012 static void move_linked_works(struct work_struct
*work
, struct list_head
*head
,
1013 struct work_struct
**nextp
)
1015 struct work_struct
*n
;
1018 * Linked worklist will always end before the end of the list,
1019 * use NULL for list head.
1021 list_for_each_entry_safe_from(work
, n
, NULL
, entry
) {
1022 list_move_tail(&work
->entry
, head
);
1023 if (!(*work_data_bits(work
) & WORK_STRUCT_LINKED
))
1028 * If we're already inside safe list traversal and have moved
1029 * multiple works to the scheduled queue, the next position
1030 * needs to be updated.
1037 * get_pwq - get an extra reference on the specified pool_workqueue
1038 * @pwq: pool_workqueue to get
1040 * Obtain an extra reference on @pwq. The caller should guarantee that
1041 * @pwq has positive refcnt and be holding the matching pool->lock.
1043 static void get_pwq(struct pool_workqueue
*pwq
)
1045 lockdep_assert_held(&pwq
->pool
->lock
);
1046 WARN_ON_ONCE(pwq
->refcnt
<= 0);
1051 * put_pwq - put a pool_workqueue reference
1052 * @pwq: pool_workqueue to put
1054 * Drop a reference of @pwq. If its refcnt reaches zero, schedule its
1055 * destruction. The caller should be holding the matching pool->lock.
1057 static void put_pwq(struct pool_workqueue
*pwq
)
1059 lockdep_assert_held(&pwq
->pool
->lock
);
1060 if (likely(--pwq
->refcnt
))
1062 if (WARN_ON_ONCE(!(pwq
->wq
->flags
& WQ_UNBOUND
)))
1065 * @pwq can't be released under pool->lock, bounce to
1066 * pwq_unbound_release_workfn(). This never recurses on the same
1067 * pool->lock as this path is taken only for unbound workqueues and
1068 * the release work item is scheduled on a per-cpu workqueue. To
1069 * avoid lockdep warning, unbound pool->locks are given lockdep
1070 * subclass of 1 in get_unbound_pool().
1072 schedule_work(&pwq
->unbound_release_work
);
1076 * put_pwq_unlocked - put_pwq() with surrounding pool lock/unlock
1077 * @pwq: pool_workqueue to put (can be %NULL)
1079 * put_pwq() with locking. This function also allows %NULL @pwq.
1081 static void put_pwq_unlocked(struct pool_workqueue
*pwq
)
1085 * As both pwqs and pools are sched-RCU protected, the
1086 * following lock operations are safe.
1088 spin_lock_irq(&pwq
->pool
->lock
);
1090 spin_unlock_irq(&pwq
->pool
->lock
);
1094 static void pwq_activate_delayed_work(struct work_struct
*work
)
1096 struct pool_workqueue
*pwq
= get_work_pwq(work
);
1098 trace_workqueue_activate_work(work
);
1099 move_linked_works(work
, &pwq
->pool
->worklist
, NULL
);
1100 __clear_bit(WORK_STRUCT_DELAYED_BIT
, work_data_bits(work
));
1104 static void pwq_activate_first_delayed(struct pool_workqueue
*pwq
)
1106 struct work_struct
*work
= list_first_entry(&pwq
->delayed_works
,
1107 struct work_struct
, entry
);
1109 pwq_activate_delayed_work(work
);
1113 * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight
1114 * @pwq: pwq of interest
1115 * @color: color of work which left the queue
1117 * A work either has completed or is removed from pending queue,
1118 * decrement nr_in_flight of its pwq and handle workqueue flushing.
1121 * spin_lock_irq(pool->lock).
1123 static void pwq_dec_nr_in_flight(struct pool_workqueue
*pwq
, int color
)
1125 /* uncolored work items don't participate in flushing or nr_active */
1126 if (color
== WORK_NO_COLOR
)
1129 pwq
->nr_in_flight
[color
]--;
1132 if (!list_empty(&pwq
->delayed_works
)) {
1133 /* one down, submit a delayed one */
1134 if (pwq
->nr_active
< pwq
->max_active
)
1135 pwq_activate_first_delayed(pwq
);
1138 /* is flush in progress and are we at the flushing tip? */
1139 if (likely(pwq
->flush_color
!= color
))
1142 /* are there still in-flight works? */
1143 if (pwq
->nr_in_flight
[color
])
1146 /* this pwq is done, clear flush_color */
1147 pwq
->flush_color
= -1;
1150 * If this was the last pwq, wake up the first flusher. It
1151 * will handle the rest.
1153 if (atomic_dec_and_test(&pwq
->wq
->nr_pwqs_to_flush
))
1154 complete(&pwq
->wq
->first_flusher
->done
);
1160 * try_to_grab_pending - steal work item from worklist and disable irq
1161 * @work: work item to steal
1162 * @is_dwork: @work is a delayed_work
1163 * @flags: place to store irq state
1165 * Try to grab PENDING bit of @work. This function can handle @work in any
1166 * stable state - idle, on timer or on worklist.
1169 * 1 if @work was pending and we successfully stole PENDING
1170 * 0 if @work was idle and we claimed PENDING
1171 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
1172 * -ENOENT if someone else is canceling @work, this state may persist
1173 * for arbitrarily long
1176 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
1177 * interrupted while holding PENDING and @work off queue, irq must be
1178 * disabled on entry. This, combined with delayed_work->timer being
1179 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
1181 * On successful return, >= 0, irq is disabled and the caller is
1182 * responsible for releasing it using local_irq_restore(*@flags).
1184 * This function is safe to call from any context including IRQ handler.
1186 static int try_to_grab_pending(struct work_struct
*work
, bool is_dwork
,
1187 unsigned long *flags
)
1189 struct worker_pool
*pool
;
1190 struct pool_workqueue
*pwq
;
1192 local_irq_save(*flags
);
1194 /* try to steal the timer if it exists */
1196 struct delayed_work
*dwork
= to_delayed_work(work
);
1199 * dwork->timer is irqsafe. If del_timer() fails, it's
1200 * guaranteed that the timer is not queued anywhere and not
1201 * running on the local CPU.
1203 if (likely(del_timer(&dwork
->timer
)))
1207 /* try to claim PENDING the normal way */
1208 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT
, work_data_bits(work
)))
1212 * The queueing is in progress, or it is already queued. Try to
1213 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1215 pool
= get_work_pool(work
);
1219 spin_lock(&pool
->lock
);
1221 * work->data is guaranteed to point to pwq only while the work
1222 * item is queued on pwq->wq, and both updating work->data to point
1223 * to pwq on queueing and to pool on dequeueing are done under
1224 * pwq->pool->lock. This in turn guarantees that, if work->data
1225 * points to pwq which is associated with a locked pool, the work
1226 * item is currently queued on that pool.
1228 pwq
= get_work_pwq(work
);
1229 if (pwq
&& pwq
->pool
== pool
) {
1230 debug_work_deactivate(work
);
1233 * A delayed work item cannot be grabbed directly because
1234 * it might have linked NO_COLOR work items which, if left
1235 * on the delayed_list, will confuse pwq->nr_active
1236 * management later on and cause stall. Make sure the work
1237 * item is activated before grabbing.
1239 if (*work_data_bits(work
) & WORK_STRUCT_DELAYED
)
1240 pwq_activate_delayed_work(work
);
1242 list_del_init(&work
->entry
);
1243 pwq_dec_nr_in_flight(pwq
, get_work_color(work
));
1245 /* work->data points to pwq iff queued, point to pool */
1246 set_work_pool_and_keep_pending(work
, pool
->id
);
1248 spin_unlock(&pool
->lock
);
1251 spin_unlock(&pool
->lock
);
1253 local_irq_restore(*flags
);
1254 if (work_is_canceling(work
))
1261 * insert_work - insert a work into a pool
1262 * @pwq: pwq @work belongs to
1263 * @work: work to insert
1264 * @head: insertion point
1265 * @extra_flags: extra WORK_STRUCT_* flags to set
1267 * Insert @work which belongs to @pwq after @head. @extra_flags is or'd to
1268 * work_struct flags.
1271 * spin_lock_irq(pool->lock).
1273 static void insert_work(struct pool_workqueue
*pwq
, struct work_struct
*work
,
1274 struct list_head
*head
, unsigned int extra_flags
)
1276 struct worker_pool
*pool
= pwq
->pool
;
1278 /* we own @work, set data and link */
1279 set_work_pwq(work
, pwq
, extra_flags
);
1280 list_add_tail(&work
->entry
, head
);
1284 * Ensure either wq_worker_sleeping() sees the above
1285 * list_add_tail() or we see zero nr_running to avoid workers lying
1286 * around lazily while there are works to be processed.
1290 if (__need_more_worker(pool
))
1291 wake_up_worker(pool
);
1295 * Test whether @work is being queued from another work executing on the
1298 static bool is_chained_work(struct workqueue_struct
*wq
)
1300 struct worker
*worker
;
1302 worker
= current_wq_worker();
1304 * Return %true iff I'm a worker execuing a work item on @wq. If
1305 * I'm @worker, it's safe to dereference it without locking.
1307 return worker
&& worker
->current_pwq
->wq
== wq
;
1310 static void __queue_work(int cpu
, struct workqueue_struct
*wq
,
1311 struct work_struct
*work
)
1313 struct pool_workqueue
*pwq
;
1314 struct worker_pool
*last_pool
;
1315 struct list_head
*worklist
;
1316 unsigned int work_flags
;
1317 unsigned int req_cpu
= cpu
;
1320 * While a work item is PENDING && off queue, a task trying to
1321 * steal the PENDING will busy-loop waiting for it to either get
1322 * queued or lose PENDING. Grabbing PENDING and queueing should
1323 * happen with IRQ disabled.
1325 WARN_ON_ONCE(!irqs_disabled());
1327 debug_work_activate(work
);
1329 /* if draining, only works from the same workqueue are allowed */
1330 if (unlikely(wq
->flags
& __WQ_DRAINING
) &&
1331 WARN_ON_ONCE(!is_chained_work(wq
)))
1334 if (req_cpu
== WORK_CPU_UNBOUND
)
1335 cpu
= raw_smp_processor_id();
1337 /* pwq which will be used unless @work is executing elsewhere */
1338 if (!(wq
->flags
& WQ_UNBOUND
))
1339 pwq
= per_cpu_ptr(wq
->cpu_pwqs
, cpu
);
1341 pwq
= unbound_pwq_by_node(wq
, cpu_to_node(cpu
));
1344 * If @work was previously on a different pool, it might still be
1345 * running there, in which case the work needs to be queued on that
1346 * pool to guarantee non-reentrancy.
1348 last_pool
= get_work_pool(work
);
1349 if (last_pool
&& last_pool
!= pwq
->pool
) {
1350 struct worker
*worker
;
1352 spin_lock(&last_pool
->lock
);
1354 worker
= find_worker_executing_work(last_pool
, work
);
1356 if (worker
&& worker
->current_pwq
->wq
== wq
) {
1357 pwq
= worker
->current_pwq
;
1359 /* meh... not running there, queue here */
1360 spin_unlock(&last_pool
->lock
);
1361 spin_lock(&pwq
->pool
->lock
);
1364 spin_lock(&pwq
->pool
->lock
);
1368 * pwq is determined and locked. For unbound pools, we could have
1369 * raced with pwq release and it could already be dead. If its
1370 * refcnt is zero, repeat pwq selection. Note that pwqs never die
1371 * without another pwq replacing it in the numa_pwq_tbl or while
1372 * work items are executing on it, so the retrying is guaranteed to
1373 * make forward-progress.
1375 if (unlikely(!pwq
->refcnt
)) {
1376 if (wq
->flags
& WQ_UNBOUND
) {
1377 spin_unlock(&pwq
->pool
->lock
);
1382 WARN_ONCE(true, "workqueue: per-cpu pwq for %s on cpu%d has 0 refcnt",
1386 /* pwq determined, queue */
1387 trace_workqueue_queue_work(req_cpu
, pwq
, work
);
1389 if (WARN_ON(!list_empty(&work
->entry
))) {
1390 spin_unlock(&pwq
->pool
->lock
);
1394 pwq
->nr_in_flight
[pwq
->work_color
]++;
1395 work_flags
= work_color_to_flags(pwq
->work_color
);
1397 if (likely(pwq
->nr_active
< pwq
->max_active
)) {
1398 trace_workqueue_activate_work(work
);
1400 worklist
= &pwq
->pool
->worklist
;
1402 work_flags
|= WORK_STRUCT_DELAYED
;
1403 worklist
= &pwq
->delayed_works
;
1406 insert_work(pwq
, work
, worklist
, work_flags
);
1408 spin_unlock(&pwq
->pool
->lock
);
1412 * queue_work_on - queue work on specific cpu
1413 * @cpu: CPU number to execute work on
1414 * @wq: workqueue to use
1415 * @work: work to queue
1417 * We queue the work to a specific CPU, the caller must ensure it
1420 * Return: %false if @work was already on a queue, %true otherwise.
1422 bool queue_work_on(int cpu
, struct workqueue_struct
*wq
,
1423 struct work_struct
*work
)
1426 unsigned long flags
;
1428 local_irq_save(flags
);
1430 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT
, work_data_bits(work
))) {
1431 __queue_work(cpu
, wq
, work
);
1435 local_irq_restore(flags
);
1438 EXPORT_SYMBOL(queue_work_on
);
1440 void delayed_work_timer_fn(unsigned long __data
)
1442 struct delayed_work
*dwork
= (struct delayed_work
*)__data
;
1444 /* should have been called from irqsafe timer with irq already off */
1445 __queue_work(dwork
->cpu
, dwork
->wq
, &dwork
->work
);
1447 EXPORT_SYMBOL(delayed_work_timer_fn
);
1449 static void __queue_delayed_work(int cpu
, struct workqueue_struct
*wq
,
1450 struct delayed_work
*dwork
, unsigned long delay
)
1452 struct timer_list
*timer
= &dwork
->timer
;
1453 struct work_struct
*work
= &dwork
->work
;
1455 WARN_ON_ONCE(timer
->function
!= delayed_work_timer_fn
||
1456 timer
->data
!= (unsigned long)dwork
);
1457 WARN_ON_ONCE(timer_pending(timer
));
1458 WARN_ON_ONCE(!list_empty(&work
->entry
));
1461 * If @delay is 0, queue @dwork->work immediately. This is for
1462 * both optimization and correctness. The earliest @timer can
1463 * expire is on the closest next tick and delayed_work users depend
1464 * on that there's no such delay when @delay is 0.
1467 __queue_work(cpu
, wq
, &dwork
->work
);
1471 timer_stats_timer_set_start_info(&dwork
->timer
);
1475 timer
->expires
= jiffies
+ delay
;
1477 if (unlikely(cpu
!= WORK_CPU_UNBOUND
))
1478 add_timer_on(timer
, cpu
);
1484 * queue_delayed_work_on - queue work on specific CPU after delay
1485 * @cpu: CPU number to execute work on
1486 * @wq: workqueue to use
1487 * @dwork: work to queue
1488 * @delay: number of jiffies to wait before queueing
1490 * Return: %false if @work was already on a queue, %true otherwise. If
1491 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1494 bool queue_delayed_work_on(int cpu
, struct workqueue_struct
*wq
,
1495 struct delayed_work
*dwork
, unsigned long delay
)
1497 struct work_struct
*work
= &dwork
->work
;
1499 unsigned long flags
;
1501 /* read the comment in __queue_work() */
1502 local_irq_save(flags
);
1504 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT
, work_data_bits(work
))) {
1505 __queue_delayed_work(cpu
, wq
, dwork
, delay
);
1509 local_irq_restore(flags
);
1512 EXPORT_SYMBOL(queue_delayed_work_on
);
1515 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1516 * @cpu: CPU number to execute work on
1517 * @wq: workqueue to use
1518 * @dwork: work to queue
1519 * @delay: number of jiffies to wait before queueing
1521 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1522 * modify @dwork's timer so that it expires after @delay. If @delay is
1523 * zero, @work is guaranteed to be scheduled immediately regardless of its
1526 * Return: %false if @dwork was idle and queued, %true if @dwork was
1527 * pending and its timer was modified.
1529 * This function is safe to call from any context including IRQ handler.
1530 * See try_to_grab_pending() for details.
1532 bool mod_delayed_work_on(int cpu
, struct workqueue_struct
*wq
,
1533 struct delayed_work
*dwork
, unsigned long delay
)
1535 unsigned long flags
;
1539 ret
= try_to_grab_pending(&dwork
->work
, true, &flags
);
1540 } while (unlikely(ret
== -EAGAIN
));
1542 if (likely(ret
>= 0)) {
1543 __queue_delayed_work(cpu
, wq
, dwork
, delay
);
1544 local_irq_restore(flags
);
1547 /* -ENOENT from try_to_grab_pending() becomes %true */
1550 EXPORT_SYMBOL_GPL(mod_delayed_work_on
);
1553 * worker_enter_idle - enter idle state
1554 * @worker: worker which is entering idle state
1556 * @worker is entering idle state. Update stats and idle timer if
1560 * spin_lock_irq(pool->lock).
1562 static void worker_enter_idle(struct worker
*worker
)
1564 struct worker_pool
*pool
= worker
->pool
;
1566 if (WARN_ON_ONCE(worker
->flags
& WORKER_IDLE
) ||
1567 WARN_ON_ONCE(!list_empty(&worker
->entry
) &&
1568 (worker
->hentry
.next
|| worker
->hentry
.pprev
)))
1571 /* can't use worker_set_flags(), also called from create_worker() */
1572 worker
->flags
|= WORKER_IDLE
;
1574 worker
->last_active
= jiffies
;
1576 /* idle_list is LIFO */
1577 list_add(&worker
->entry
, &pool
->idle_list
);
1579 if (too_many_workers(pool
) && !timer_pending(&pool
->idle_timer
))
1580 mod_timer(&pool
->idle_timer
, jiffies
+ IDLE_WORKER_TIMEOUT
);
1583 * Sanity check nr_running. Because wq_unbind_fn() releases
1584 * pool->lock between setting %WORKER_UNBOUND and zapping
1585 * nr_running, the warning may trigger spuriously. Check iff
1586 * unbind is not in progress.
1588 WARN_ON_ONCE(!(pool
->flags
& POOL_DISASSOCIATED
) &&
1589 pool
->nr_workers
== pool
->nr_idle
&&
1590 atomic_read(&pool
->nr_running
));
1594 * worker_leave_idle - leave idle state
1595 * @worker: worker which is leaving idle state
1597 * @worker is leaving idle state. Update stats.
1600 * spin_lock_irq(pool->lock).
1602 static void worker_leave_idle(struct worker
*worker
)
1604 struct worker_pool
*pool
= worker
->pool
;
1606 if (WARN_ON_ONCE(!(worker
->flags
& WORKER_IDLE
)))
1608 worker_clr_flags(worker
, WORKER_IDLE
);
1610 list_del_init(&worker
->entry
);
1613 static struct worker
*alloc_worker(int node
)
1615 struct worker
*worker
;
1617 worker
= kzalloc_node(sizeof(*worker
), GFP_KERNEL
, node
);
1619 INIT_LIST_HEAD(&worker
->entry
);
1620 INIT_LIST_HEAD(&worker
->scheduled
);
1621 INIT_LIST_HEAD(&worker
->node
);
1622 /* on creation a worker is in !idle && prep state */
1623 worker
->flags
= WORKER_PREP
;
1629 * worker_attach_to_pool() - attach a worker to a pool
1630 * @worker: worker to be attached
1631 * @pool: the target pool
1633 * Attach @worker to @pool. Once attached, the %WORKER_UNBOUND flag and
1634 * cpu-binding of @worker are kept coordinated with the pool across
1637 static void worker_attach_to_pool(struct worker
*worker
,
1638 struct worker_pool
*pool
)
1640 mutex_lock(&pool
->attach_mutex
);
1643 * set_cpus_allowed_ptr() will fail if the cpumask doesn't have any
1644 * online CPUs. It'll be re-applied when any of the CPUs come up.
1646 set_cpus_allowed_ptr(worker
->task
, pool
->attrs
->cpumask
);
1649 * The pool->attach_mutex ensures %POOL_DISASSOCIATED remains
1650 * stable across this function. See the comments above the
1651 * flag definition for details.
1653 if (pool
->flags
& POOL_DISASSOCIATED
)
1654 worker
->flags
|= WORKER_UNBOUND
;
1656 list_add_tail(&worker
->node
, &pool
->workers
);
1658 mutex_unlock(&pool
->attach_mutex
);
1662 * worker_detach_from_pool() - detach a worker from its pool
1663 * @worker: worker which is attached to its pool
1664 * @pool: the pool @worker is attached to
1666 * Undo the attaching which had been done in worker_attach_to_pool(). The
1667 * caller worker shouldn't access to the pool after detached except it has
1668 * other reference to the pool.
1670 static void worker_detach_from_pool(struct worker
*worker
,
1671 struct worker_pool
*pool
)
1673 struct completion
*detach_completion
= NULL
;
1675 mutex_lock(&pool
->attach_mutex
);
1676 list_del(&worker
->node
);
1677 if (list_empty(&pool
->workers
))
1678 detach_completion
= pool
->detach_completion
;
1679 mutex_unlock(&pool
->attach_mutex
);
1681 /* clear leftover flags without pool->lock after it is detached */
1682 worker
->flags
&= ~(WORKER_UNBOUND
| WORKER_REBOUND
);
1684 if (detach_completion
)
1685 complete(detach_completion
);
1689 * create_worker - create a new workqueue worker
1690 * @pool: pool the new worker will belong to
1692 * Create and start a new worker which is attached to @pool.
1695 * Might sleep. Does GFP_KERNEL allocations.
1698 * Pointer to the newly created worker.
1700 static struct worker
*create_worker(struct worker_pool
*pool
)
1702 struct worker
*worker
= NULL
;
1706 /* ID is needed to determine kthread name */
1707 id
= ida_simple_get(&pool
->worker_ida
, 0, 0, GFP_KERNEL
);
1711 worker
= alloc_worker(pool
->node
);
1715 worker
->pool
= pool
;
1719 snprintf(id_buf
, sizeof(id_buf
), "%d:%d%s", pool
->cpu
, id
,
1720 pool
->attrs
->nice
< 0 ? "H" : "");
1722 snprintf(id_buf
, sizeof(id_buf
), "u%d:%d", pool
->id
, id
);
1724 worker
->task
= kthread_create_on_node(worker_thread
, worker
, pool
->node
,
1725 "kworker/%s", id_buf
);
1726 if (IS_ERR(worker
->task
))
1729 set_user_nice(worker
->task
, pool
->attrs
->nice
);
1731 /* prevent userland from meddling with cpumask of workqueue workers */
1732 worker
->task
->flags
|= PF_NO_SETAFFINITY
;
1734 /* successful, attach the worker to the pool */
1735 worker_attach_to_pool(worker
, pool
);
1737 /* start the newly created worker */
1738 spin_lock_irq(&pool
->lock
);
1739 worker
->pool
->nr_workers
++;
1740 worker_enter_idle(worker
);
1741 wake_up_process(worker
->task
);
1742 spin_unlock_irq(&pool
->lock
);
1748 ida_simple_remove(&pool
->worker_ida
, id
);
1754 * destroy_worker - destroy a workqueue worker
1755 * @worker: worker to be destroyed
1757 * Destroy @worker and adjust @pool stats accordingly. The worker should
1761 * spin_lock_irq(pool->lock).
1763 static void destroy_worker(struct worker
*worker
)
1765 struct worker_pool
*pool
= worker
->pool
;
1767 lockdep_assert_held(&pool
->lock
);
1769 /* sanity check frenzy */
1770 if (WARN_ON(worker
->current_work
) ||
1771 WARN_ON(!list_empty(&worker
->scheduled
)) ||
1772 WARN_ON(!(worker
->flags
& WORKER_IDLE
)))
1778 list_del_init(&worker
->entry
);
1779 worker
->flags
|= WORKER_DIE
;
1780 wake_up_process(worker
->task
);
1783 static void idle_worker_timeout(unsigned long __pool
)
1785 struct worker_pool
*pool
= (void *)__pool
;
1787 spin_lock_irq(&pool
->lock
);
1789 while (too_many_workers(pool
)) {
1790 struct worker
*worker
;
1791 unsigned long expires
;
1793 /* idle_list is kept in LIFO order, check the last one */
1794 worker
= list_entry(pool
->idle_list
.prev
, struct worker
, entry
);
1795 expires
= worker
->last_active
+ IDLE_WORKER_TIMEOUT
;
1797 if (time_before(jiffies
, expires
)) {
1798 mod_timer(&pool
->idle_timer
, expires
);
1802 destroy_worker(worker
);
1805 spin_unlock_irq(&pool
->lock
);
1808 static void send_mayday(struct work_struct
*work
)
1810 struct pool_workqueue
*pwq
= get_work_pwq(work
);
1811 struct workqueue_struct
*wq
= pwq
->wq
;
1813 lockdep_assert_held(&wq_mayday_lock
);
1818 /* mayday mayday mayday */
1819 if (list_empty(&pwq
->mayday_node
)) {
1821 * If @pwq is for an unbound wq, its base ref may be put at
1822 * any time due to an attribute change. Pin @pwq until the
1823 * rescuer is done with it.
1826 list_add_tail(&pwq
->mayday_node
, &wq
->maydays
);
1827 wake_up_process(wq
->rescuer
->task
);
1831 static void pool_mayday_timeout(unsigned long __pool
)
1833 struct worker_pool
*pool
= (void *)__pool
;
1834 struct work_struct
*work
;
1836 spin_lock_irq(&wq_mayday_lock
); /* for wq->maydays */
1837 spin_lock(&pool
->lock
);
1839 if (need_to_create_worker(pool
)) {
1841 * We've been trying to create a new worker but
1842 * haven't been successful. We might be hitting an
1843 * allocation deadlock. Send distress signals to
1846 list_for_each_entry(work
, &pool
->worklist
, entry
)
1850 spin_unlock(&pool
->lock
);
1851 spin_unlock_irq(&wq_mayday_lock
);
1853 mod_timer(&pool
->mayday_timer
, jiffies
+ MAYDAY_INTERVAL
);
1857 * maybe_create_worker - create a new worker if necessary
1858 * @pool: pool to create a new worker for
1860 * Create a new worker for @pool if necessary. @pool is guaranteed to
1861 * have at least one idle worker on return from this function. If
1862 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
1863 * sent to all rescuers with works scheduled on @pool to resolve
1864 * possible allocation deadlock.
1866 * On return, need_to_create_worker() is guaranteed to be %false and
1867 * may_start_working() %true.
1870 * spin_lock_irq(pool->lock) which may be released and regrabbed
1871 * multiple times. Does GFP_KERNEL allocations. Called only from
1874 static void maybe_create_worker(struct worker_pool
*pool
)
1875 __releases(&pool
->lock
)
1876 __acquires(&pool
->lock
)
1879 spin_unlock_irq(&pool
->lock
);
1881 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
1882 mod_timer(&pool
->mayday_timer
, jiffies
+ MAYDAY_INITIAL_TIMEOUT
);
1885 if (create_worker(pool
) || !need_to_create_worker(pool
))
1888 schedule_timeout_interruptible(CREATE_COOLDOWN
);
1890 if (!need_to_create_worker(pool
))
1894 del_timer_sync(&pool
->mayday_timer
);
1895 spin_lock_irq(&pool
->lock
);
1897 * This is necessary even after a new worker was just successfully
1898 * created as @pool->lock was dropped and the new worker might have
1899 * already become busy.
1901 if (need_to_create_worker(pool
))
1906 * manage_workers - manage worker pool
1909 * Assume the manager role and manage the worker pool @worker belongs
1910 * to. At any given time, there can be only zero or one manager per
1911 * pool. The exclusion is handled automatically by this function.
1913 * The caller can safely start processing works on false return. On
1914 * true return, it's guaranteed that need_to_create_worker() is false
1915 * and may_start_working() is true.
1918 * spin_lock_irq(pool->lock) which may be released and regrabbed
1919 * multiple times. Does GFP_KERNEL allocations.
1922 * %false if the pool doesn't need management and the caller can safely
1923 * start processing works, %true if management function was performed and
1924 * the conditions that the caller verified before calling the function may
1925 * no longer be true.
1927 static bool manage_workers(struct worker
*worker
)
1929 struct worker_pool
*pool
= worker
->pool
;
1932 * Anyone who successfully grabs manager_arb wins the arbitration
1933 * and becomes the manager. mutex_trylock() on pool->manager_arb
1934 * failure while holding pool->lock reliably indicates that someone
1935 * else is managing the pool and the worker which failed trylock
1936 * can proceed to executing work items. This means that anyone
1937 * grabbing manager_arb is responsible for actually performing
1938 * manager duties. If manager_arb is grabbed and released without
1939 * actual management, the pool may stall indefinitely.
1941 if (!mutex_trylock(&pool
->manager_arb
))
1944 maybe_create_worker(pool
);
1946 mutex_unlock(&pool
->manager_arb
);
1951 * process_one_work - process single work
1953 * @work: work to process
1955 * Process @work. This function contains all the logics necessary to
1956 * process a single work including synchronization against and
1957 * interaction with other workers on the same cpu, queueing and
1958 * flushing. As long as context requirement is met, any worker can
1959 * call this function to process a work.
1962 * spin_lock_irq(pool->lock) which is released and regrabbed.
1964 static void process_one_work(struct worker
*worker
, struct work_struct
*work
)
1965 __releases(&pool
->lock
)
1966 __acquires(&pool
->lock
)
1968 struct pool_workqueue
*pwq
= get_work_pwq(work
);
1969 struct worker_pool
*pool
= worker
->pool
;
1970 bool cpu_intensive
= pwq
->wq
->flags
& WQ_CPU_INTENSIVE
;
1972 struct worker
*collision
;
1973 #ifdef CONFIG_LOCKDEP
1975 * It is permissible to free the struct work_struct from
1976 * inside the function that is called from it, this we need to
1977 * take into account for lockdep too. To avoid bogus "held
1978 * lock freed" warnings as well as problems when looking into
1979 * work->lockdep_map, make a copy and use that here.
1981 struct lockdep_map lockdep_map
;
1983 lockdep_copy_map(&lockdep_map
, &work
->lockdep_map
);
1985 /* ensure we're on the correct CPU */
1986 WARN_ON_ONCE(!(pool
->flags
& POOL_DISASSOCIATED
) &&
1987 raw_smp_processor_id() != pool
->cpu
);
1990 * A single work shouldn't be executed concurrently by
1991 * multiple workers on a single cpu. Check whether anyone is
1992 * already processing the work. If so, defer the work to the
1993 * currently executing one.
1995 collision
= find_worker_executing_work(pool
, work
);
1996 if (unlikely(collision
)) {
1997 move_linked_works(work
, &collision
->scheduled
, NULL
);
2001 /* claim and dequeue */
2002 debug_work_deactivate(work
);
2003 hash_add(pool
->busy_hash
, &worker
->hentry
, (unsigned long)work
);
2004 worker
->current_work
= work
;
2005 worker
->current_func
= work
->func
;
2006 worker
->current_pwq
= pwq
;
2007 work_color
= get_work_color(work
);
2009 list_del_init(&work
->entry
);
2012 * CPU intensive works don't participate in concurrency management.
2013 * They're the scheduler's responsibility. This takes @worker out
2014 * of concurrency management and the next code block will chain
2015 * execution of the pending work items.
2017 if (unlikely(cpu_intensive
))
2018 worker_set_flags(worker
, WORKER_CPU_INTENSIVE
);
2021 * Wake up another worker if necessary. The condition is always
2022 * false for normal per-cpu workers since nr_running would always
2023 * be >= 1 at this point. This is used to chain execution of the
2024 * pending work items for WORKER_NOT_RUNNING workers such as the
2025 * UNBOUND and CPU_INTENSIVE ones.
2027 if (need_more_worker(pool
))
2028 wake_up_worker(pool
);
2031 * Record the last pool and clear PENDING which should be the last
2032 * update to @work. Also, do this inside @pool->lock so that
2033 * PENDING and queued state changes happen together while IRQ is
2036 set_work_pool_and_clear_pending(work
, pool
->id
);
2038 spin_unlock_irq(&pool
->lock
);
2040 lock_map_acquire_read(&pwq
->wq
->lockdep_map
);
2041 lock_map_acquire(&lockdep_map
);
2042 trace_workqueue_execute_start(work
);
2043 worker
->current_func(work
);
2045 * While we must be careful to not use "work" after this, the trace
2046 * point will only record its address.
2048 trace_workqueue_execute_end(work
);
2049 lock_map_release(&lockdep_map
);
2050 lock_map_release(&pwq
->wq
->lockdep_map
);
2052 if (unlikely(in_atomic() || lockdep_depth(current
) > 0)) {
2053 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2054 " last function: %pf\n",
2055 current
->comm
, preempt_count(), task_pid_nr(current
),
2056 worker
->current_func
);
2057 debug_show_held_locks(current
);
2062 * The following prevents a kworker from hogging CPU on !PREEMPT
2063 * kernels, where a requeueing work item waiting for something to
2064 * happen could deadlock with stop_machine as such work item could
2065 * indefinitely requeue itself while all other CPUs are trapped in
2066 * stop_machine. At the same time, report a quiescent RCU state so
2067 * the same condition doesn't freeze RCU.
2069 cond_resched_rcu_qs();
2071 spin_lock_irq(&pool
->lock
);
2073 /* clear cpu intensive status */
2074 if (unlikely(cpu_intensive
))
2075 worker_clr_flags(worker
, WORKER_CPU_INTENSIVE
);
2077 /* we're done with it, release */
2078 hash_del(&worker
->hentry
);
2079 worker
->current_work
= NULL
;
2080 worker
->current_func
= NULL
;
2081 worker
->current_pwq
= NULL
;
2082 worker
->desc_valid
= false;
2083 pwq_dec_nr_in_flight(pwq
, work_color
);
2087 * process_scheduled_works - process scheduled works
2090 * Process all scheduled works. Please note that the scheduled list
2091 * may change while processing a work, so this function repeatedly
2092 * fetches a work from the top and executes it.
2095 * spin_lock_irq(pool->lock) which may be released and regrabbed
2098 static void process_scheduled_works(struct worker
*worker
)
2100 while (!list_empty(&worker
->scheduled
)) {
2101 struct work_struct
*work
= list_first_entry(&worker
->scheduled
,
2102 struct work_struct
, entry
);
2103 process_one_work(worker
, work
);
2108 * worker_thread - the worker thread function
2111 * The worker thread function. All workers belong to a worker_pool -
2112 * either a per-cpu one or dynamic unbound one. These workers process all
2113 * work items regardless of their specific target workqueue. The only
2114 * exception is work items which belong to workqueues with a rescuer which
2115 * will be explained in rescuer_thread().
2119 static int worker_thread(void *__worker
)
2121 struct worker
*worker
= __worker
;
2122 struct worker_pool
*pool
= worker
->pool
;
2124 /* tell the scheduler that this is a workqueue worker */
2125 worker
->task
->flags
|= PF_WQ_WORKER
;
2127 spin_lock_irq(&pool
->lock
);
2129 /* am I supposed to die? */
2130 if (unlikely(worker
->flags
& WORKER_DIE
)) {
2131 spin_unlock_irq(&pool
->lock
);
2132 WARN_ON_ONCE(!list_empty(&worker
->entry
));
2133 worker
->task
->flags
&= ~PF_WQ_WORKER
;
2135 set_task_comm(worker
->task
, "kworker/dying");
2136 ida_simple_remove(&pool
->worker_ida
, worker
->id
);
2137 worker_detach_from_pool(worker
, pool
);
2142 worker_leave_idle(worker
);
2144 /* no more worker necessary? */
2145 if (!need_more_worker(pool
))
2148 /* do we need to manage? */
2149 if (unlikely(!may_start_working(pool
)) && manage_workers(worker
))
2153 * ->scheduled list can only be filled while a worker is
2154 * preparing to process a work or actually processing it.
2155 * Make sure nobody diddled with it while I was sleeping.
2157 WARN_ON_ONCE(!list_empty(&worker
->scheduled
));
2160 * Finish PREP stage. We're guaranteed to have at least one idle
2161 * worker or that someone else has already assumed the manager
2162 * role. This is where @worker starts participating in concurrency
2163 * management if applicable and concurrency management is restored
2164 * after being rebound. See rebind_workers() for details.
2166 worker_clr_flags(worker
, WORKER_PREP
| WORKER_REBOUND
);
2169 struct work_struct
*work
=
2170 list_first_entry(&pool
->worklist
,
2171 struct work_struct
, entry
);
2173 if (likely(!(*work_data_bits(work
) & WORK_STRUCT_LINKED
))) {
2174 /* optimization path, not strictly necessary */
2175 process_one_work(worker
, work
);
2176 if (unlikely(!list_empty(&worker
->scheduled
)))
2177 process_scheduled_works(worker
);
2179 move_linked_works(work
, &worker
->scheduled
, NULL
);
2180 process_scheduled_works(worker
);
2182 } while (keep_working(pool
));
2184 worker_set_flags(worker
, WORKER_PREP
);
2187 * pool->lock is held and there's no work to process and no need to
2188 * manage, sleep. Workers are woken up only while holding
2189 * pool->lock or from local cpu, so setting the current state
2190 * before releasing pool->lock is enough to prevent losing any
2193 worker_enter_idle(worker
);
2194 __set_current_state(TASK_INTERRUPTIBLE
);
2195 spin_unlock_irq(&pool
->lock
);
2201 * rescuer_thread - the rescuer thread function
2204 * Workqueue rescuer thread function. There's one rescuer for each
2205 * workqueue which has WQ_MEM_RECLAIM set.
2207 * Regular work processing on a pool may block trying to create a new
2208 * worker which uses GFP_KERNEL allocation which has slight chance of
2209 * developing into deadlock if some works currently on the same queue
2210 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2211 * the problem rescuer solves.
2213 * When such condition is possible, the pool summons rescuers of all
2214 * workqueues which have works queued on the pool and let them process
2215 * those works so that forward progress can be guaranteed.
2217 * This should happen rarely.
2221 static int rescuer_thread(void *__rescuer
)
2223 struct worker
*rescuer
= __rescuer
;
2224 struct workqueue_struct
*wq
= rescuer
->rescue_wq
;
2225 struct list_head
*scheduled
= &rescuer
->scheduled
;
2228 set_user_nice(current
, RESCUER_NICE_LEVEL
);
2231 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2232 * doesn't participate in concurrency management.
2234 rescuer
->task
->flags
|= PF_WQ_WORKER
;
2236 set_current_state(TASK_INTERRUPTIBLE
);
2239 * By the time the rescuer is requested to stop, the workqueue
2240 * shouldn't have any work pending, but @wq->maydays may still have
2241 * pwq(s) queued. This can happen by non-rescuer workers consuming
2242 * all the work items before the rescuer got to them. Go through
2243 * @wq->maydays processing before acting on should_stop so that the
2244 * list is always empty on exit.
2246 should_stop
= kthread_should_stop();
2248 /* see whether any pwq is asking for help */
2249 spin_lock_irq(&wq_mayday_lock
);
2251 while (!list_empty(&wq
->maydays
)) {
2252 struct pool_workqueue
*pwq
= list_first_entry(&wq
->maydays
,
2253 struct pool_workqueue
, mayday_node
);
2254 struct worker_pool
*pool
= pwq
->pool
;
2255 struct work_struct
*work
, *n
;
2257 __set_current_state(TASK_RUNNING
);
2258 list_del_init(&pwq
->mayday_node
);
2260 spin_unlock_irq(&wq_mayday_lock
);
2262 worker_attach_to_pool(rescuer
, pool
);
2264 spin_lock_irq(&pool
->lock
);
2265 rescuer
->pool
= pool
;
2268 * Slurp in all works issued via this workqueue and
2271 WARN_ON_ONCE(!list_empty(&rescuer
->scheduled
));
2272 list_for_each_entry_safe(work
, n
, &pool
->worklist
, entry
)
2273 if (get_work_pwq(work
) == pwq
)
2274 move_linked_works(work
, scheduled
, &n
);
2276 process_scheduled_works(rescuer
);
2279 * Put the reference grabbed by send_mayday(). @pool won't
2280 * go away while we're still attached to it.
2285 * Leave this pool. If need_more_worker() is %true, notify a
2286 * regular worker; otherwise, we end up with 0 concurrency
2287 * and stalling the execution.
2289 if (need_more_worker(pool
))
2290 wake_up_worker(pool
);
2292 rescuer
->pool
= NULL
;
2293 spin_unlock_irq(&pool
->lock
);
2295 worker_detach_from_pool(rescuer
, pool
);
2297 spin_lock_irq(&wq_mayday_lock
);
2300 spin_unlock_irq(&wq_mayday_lock
);
2303 __set_current_state(TASK_RUNNING
);
2304 rescuer
->task
->flags
&= ~PF_WQ_WORKER
;
2308 /* rescuers should never participate in concurrency management */
2309 WARN_ON_ONCE(!(rescuer
->flags
& WORKER_NOT_RUNNING
));
2315 struct work_struct work
;
2316 struct completion done
;
2319 static void wq_barrier_func(struct work_struct
*work
)
2321 struct wq_barrier
*barr
= container_of(work
, struct wq_barrier
, work
);
2322 complete(&barr
->done
);
2326 * insert_wq_barrier - insert a barrier work
2327 * @pwq: pwq to insert barrier into
2328 * @barr: wq_barrier to insert
2329 * @target: target work to attach @barr to
2330 * @worker: worker currently executing @target, NULL if @target is not executing
2332 * @barr is linked to @target such that @barr is completed only after
2333 * @target finishes execution. Please note that the ordering
2334 * guarantee is observed only with respect to @target and on the local
2337 * Currently, a queued barrier can't be canceled. This is because
2338 * try_to_grab_pending() can't determine whether the work to be
2339 * grabbed is at the head of the queue and thus can't clear LINKED
2340 * flag of the previous work while there must be a valid next work
2341 * after a work with LINKED flag set.
2343 * Note that when @worker is non-NULL, @target may be modified
2344 * underneath us, so we can't reliably determine pwq from @target.
2347 * spin_lock_irq(pool->lock).
2349 static void insert_wq_barrier(struct pool_workqueue
*pwq
,
2350 struct wq_barrier
*barr
,
2351 struct work_struct
*target
, struct worker
*worker
)
2353 struct list_head
*head
;
2354 unsigned int linked
= 0;
2357 * debugobject calls are safe here even with pool->lock locked
2358 * as we know for sure that this will not trigger any of the
2359 * checks and call back into the fixup functions where we
2362 INIT_WORK_ONSTACK(&barr
->work
, wq_barrier_func
);
2363 __set_bit(WORK_STRUCT_PENDING_BIT
, work_data_bits(&barr
->work
));
2364 init_completion(&barr
->done
);
2367 * If @target is currently being executed, schedule the
2368 * barrier to the worker; otherwise, put it after @target.
2371 head
= worker
->scheduled
.next
;
2373 unsigned long *bits
= work_data_bits(target
);
2375 head
= target
->entry
.next
;
2376 /* there can already be other linked works, inherit and set */
2377 linked
= *bits
& WORK_STRUCT_LINKED
;
2378 __set_bit(WORK_STRUCT_LINKED_BIT
, bits
);
2381 debug_work_activate(&barr
->work
);
2382 insert_work(pwq
, &barr
->work
, head
,
2383 work_color_to_flags(WORK_NO_COLOR
) | linked
);
2387 * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing
2388 * @wq: workqueue being flushed
2389 * @flush_color: new flush color, < 0 for no-op
2390 * @work_color: new work color, < 0 for no-op
2392 * Prepare pwqs for workqueue flushing.
2394 * If @flush_color is non-negative, flush_color on all pwqs should be
2395 * -1. If no pwq has in-flight commands at the specified color, all
2396 * pwq->flush_color's stay at -1 and %false is returned. If any pwq
2397 * has in flight commands, its pwq->flush_color is set to
2398 * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq
2399 * wakeup logic is armed and %true is returned.
2401 * The caller should have initialized @wq->first_flusher prior to
2402 * calling this function with non-negative @flush_color. If
2403 * @flush_color is negative, no flush color update is done and %false
2406 * If @work_color is non-negative, all pwqs should have the same
2407 * work_color which is previous to @work_color and all will be
2408 * advanced to @work_color.
2411 * mutex_lock(wq->mutex).
2414 * %true if @flush_color >= 0 and there's something to flush. %false
2417 static bool flush_workqueue_prep_pwqs(struct workqueue_struct
*wq
,
2418 int flush_color
, int work_color
)
2421 struct pool_workqueue
*pwq
;
2423 if (flush_color
>= 0) {
2424 WARN_ON_ONCE(atomic_read(&wq
->nr_pwqs_to_flush
));
2425 atomic_set(&wq
->nr_pwqs_to_flush
, 1);
2428 for_each_pwq(pwq
, wq
) {
2429 struct worker_pool
*pool
= pwq
->pool
;
2431 spin_lock_irq(&pool
->lock
);
2433 if (flush_color
>= 0) {
2434 WARN_ON_ONCE(pwq
->flush_color
!= -1);
2436 if (pwq
->nr_in_flight
[flush_color
]) {
2437 pwq
->flush_color
= flush_color
;
2438 atomic_inc(&wq
->nr_pwqs_to_flush
);
2443 if (work_color
>= 0) {
2444 WARN_ON_ONCE(work_color
!= work_next_color(pwq
->work_color
));
2445 pwq
->work_color
= work_color
;
2448 spin_unlock_irq(&pool
->lock
);
2451 if (flush_color
>= 0 && atomic_dec_and_test(&wq
->nr_pwqs_to_flush
))
2452 complete(&wq
->first_flusher
->done
);
2458 * flush_workqueue - ensure that any scheduled work has run to completion.
2459 * @wq: workqueue to flush
2461 * This function sleeps until all work items which were queued on entry
2462 * have finished execution, but it is not livelocked by new incoming ones.
2464 void flush_workqueue(struct workqueue_struct
*wq
)
2466 struct wq_flusher this_flusher
= {
2467 .list
= LIST_HEAD_INIT(this_flusher
.list
),
2469 .done
= COMPLETION_INITIALIZER_ONSTACK(this_flusher
.done
),
2473 lock_map_acquire(&wq
->lockdep_map
);
2474 lock_map_release(&wq
->lockdep_map
);
2476 mutex_lock(&wq
->mutex
);
2479 * Start-to-wait phase
2481 next_color
= work_next_color(wq
->work_color
);
2483 if (next_color
!= wq
->flush_color
) {
2485 * Color space is not full. The current work_color
2486 * becomes our flush_color and work_color is advanced
2489 WARN_ON_ONCE(!list_empty(&wq
->flusher_overflow
));
2490 this_flusher
.flush_color
= wq
->work_color
;
2491 wq
->work_color
= next_color
;
2493 if (!wq
->first_flusher
) {
2494 /* no flush in progress, become the first flusher */
2495 WARN_ON_ONCE(wq
->flush_color
!= this_flusher
.flush_color
);
2497 wq
->first_flusher
= &this_flusher
;
2499 if (!flush_workqueue_prep_pwqs(wq
, wq
->flush_color
,
2501 /* nothing to flush, done */
2502 wq
->flush_color
= next_color
;
2503 wq
->first_flusher
= NULL
;
2508 WARN_ON_ONCE(wq
->flush_color
== this_flusher
.flush_color
);
2509 list_add_tail(&this_flusher
.list
, &wq
->flusher_queue
);
2510 flush_workqueue_prep_pwqs(wq
, -1, wq
->work_color
);
2514 * Oops, color space is full, wait on overflow queue.
2515 * The next flush completion will assign us
2516 * flush_color and transfer to flusher_queue.
2518 list_add_tail(&this_flusher
.list
, &wq
->flusher_overflow
);
2521 mutex_unlock(&wq
->mutex
);
2523 wait_for_completion(&this_flusher
.done
);
2526 * Wake-up-and-cascade phase
2528 * First flushers are responsible for cascading flushes and
2529 * handling overflow. Non-first flushers can simply return.
2531 if (wq
->first_flusher
!= &this_flusher
)
2534 mutex_lock(&wq
->mutex
);
2536 /* we might have raced, check again with mutex held */
2537 if (wq
->first_flusher
!= &this_flusher
)
2540 wq
->first_flusher
= NULL
;
2542 WARN_ON_ONCE(!list_empty(&this_flusher
.list
));
2543 WARN_ON_ONCE(wq
->flush_color
!= this_flusher
.flush_color
);
2546 struct wq_flusher
*next
, *tmp
;
2548 /* complete all the flushers sharing the current flush color */
2549 list_for_each_entry_safe(next
, tmp
, &wq
->flusher_queue
, list
) {
2550 if (next
->flush_color
!= wq
->flush_color
)
2552 list_del_init(&next
->list
);
2553 complete(&next
->done
);
2556 WARN_ON_ONCE(!list_empty(&wq
->flusher_overflow
) &&
2557 wq
->flush_color
!= work_next_color(wq
->work_color
));
2559 /* this flush_color is finished, advance by one */
2560 wq
->flush_color
= work_next_color(wq
->flush_color
);
2562 /* one color has been freed, handle overflow queue */
2563 if (!list_empty(&wq
->flusher_overflow
)) {
2565 * Assign the same color to all overflowed
2566 * flushers, advance work_color and append to
2567 * flusher_queue. This is the start-to-wait
2568 * phase for these overflowed flushers.
2570 list_for_each_entry(tmp
, &wq
->flusher_overflow
, list
)
2571 tmp
->flush_color
= wq
->work_color
;
2573 wq
->work_color
= work_next_color(wq
->work_color
);
2575 list_splice_tail_init(&wq
->flusher_overflow
,
2576 &wq
->flusher_queue
);
2577 flush_workqueue_prep_pwqs(wq
, -1, wq
->work_color
);
2580 if (list_empty(&wq
->flusher_queue
)) {
2581 WARN_ON_ONCE(wq
->flush_color
!= wq
->work_color
);
2586 * Need to flush more colors. Make the next flusher
2587 * the new first flusher and arm pwqs.
2589 WARN_ON_ONCE(wq
->flush_color
== wq
->work_color
);
2590 WARN_ON_ONCE(wq
->flush_color
!= next
->flush_color
);
2592 list_del_init(&next
->list
);
2593 wq
->first_flusher
= next
;
2595 if (flush_workqueue_prep_pwqs(wq
, wq
->flush_color
, -1))
2599 * Meh... this color is already done, clear first
2600 * flusher and repeat cascading.
2602 wq
->first_flusher
= NULL
;
2606 mutex_unlock(&wq
->mutex
);
2608 EXPORT_SYMBOL_GPL(flush_workqueue
);
2611 * drain_workqueue - drain a workqueue
2612 * @wq: workqueue to drain
2614 * Wait until the workqueue becomes empty. While draining is in progress,
2615 * only chain queueing is allowed. IOW, only currently pending or running
2616 * work items on @wq can queue further work items on it. @wq is flushed
2617 * repeatedly until it becomes empty. The number of flushing is detemined
2618 * by the depth of chaining and should be relatively short. Whine if it
2621 void drain_workqueue(struct workqueue_struct
*wq
)
2623 unsigned int flush_cnt
= 0;
2624 struct pool_workqueue
*pwq
;
2627 * __queue_work() needs to test whether there are drainers, is much
2628 * hotter than drain_workqueue() and already looks at @wq->flags.
2629 * Use __WQ_DRAINING so that queue doesn't have to check nr_drainers.
2631 mutex_lock(&wq
->mutex
);
2632 if (!wq
->nr_drainers
++)
2633 wq
->flags
|= __WQ_DRAINING
;
2634 mutex_unlock(&wq
->mutex
);
2636 flush_workqueue(wq
);
2638 mutex_lock(&wq
->mutex
);
2640 for_each_pwq(pwq
, wq
) {
2643 spin_lock_irq(&pwq
->pool
->lock
);
2644 drained
= !pwq
->nr_active
&& list_empty(&pwq
->delayed_works
);
2645 spin_unlock_irq(&pwq
->pool
->lock
);
2650 if (++flush_cnt
== 10 ||
2651 (flush_cnt
% 100 == 0 && flush_cnt
<= 1000))
2652 pr_warn("workqueue %s: drain_workqueue() isn't complete after %u tries\n",
2653 wq
->name
, flush_cnt
);
2655 mutex_unlock(&wq
->mutex
);
2659 if (!--wq
->nr_drainers
)
2660 wq
->flags
&= ~__WQ_DRAINING
;
2661 mutex_unlock(&wq
->mutex
);
2663 EXPORT_SYMBOL_GPL(drain_workqueue
);
2665 static bool start_flush_work(struct work_struct
*work
, struct wq_barrier
*barr
)
2667 struct worker
*worker
= NULL
;
2668 struct worker_pool
*pool
;
2669 struct pool_workqueue
*pwq
;
2673 local_irq_disable();
2674 pool
= get_work_pool(work
);
2680 spin_lock(&pool
->lock
);
2681 /* see the comment in try_to_grab_pending() with the same code */
2682 pwq
= get_work_pwq(work
);
2684 if (unlikely(pwq
->pool
!= pool
))
2687 worker
= find_worker_executing_work(pool
, work
);
2690 pwq
= worker
->current_pwq
;
2693 insert_wq_barrier(pwq
, barr
, work
, worker
);
2694 spin_unlock_irq(&pool
->lock
);
2697 * If @max_active is 1 or rescuer is in use, flushing another work
2698 * item on the same workqueue may lead to deadlock. Make sure the
2699 * flusher is not running on the same workqueue by verifying write
2702 if (pwq
->wq
->saved_max_active
== 1 || pwq
->wq
->rescuer
)
2703 lock_map_acquire(&pwq
->wq
->lockdep_map
);
2705 lock_map_acquire_read(&pwq
->wq
->lockdep_map
);
2706 lock_map_release(&pwq
->wq
->lockdep_map
);
2710 spin_unlock_irq(&pool
->lock
);
2715 * flush_work - wait for a work to finish executing the last queueing instance
2716 * @work: the work to flush
2718 * Wait until @work has finished execution. @work is guaranteed to be idle
2719 * on return if it hasn't been requeued since flush started.
2722 * %true if flush_work() waited for the work to finish execution,
2723 * %false if it was already idle.
2725 bool flush_work(struct work_struct
*work
)
2727 struct wq_barrier barr
;
2729 lock_map_acquire(&work
->lockdep_map
);
2730 lock_map_release(&work
->lockdep_map
);
2732 if (start_flush_work(work
, &barr
)) {
2733 wait_for_completion(&barr
.done
);
2734 destroy_work_on_stack(&barr
.work
);
2740 EXPORT_SYMBOL_GPL(flush_work
);
2744 struct work_struct
*work
;
2747 static int cwt_wakefn(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
)
2749 struct cwt_wait
*cwait
= container_of(wait
, struct cwt_wait
, wait
);
2751 if (cwait
->work
!= key
)
2753 return autoremove_wake_function(wait
, mode
, sync
, key
);
2756 static bool __cancel_work_timer(struct work_struct
*work
, bool is_dwork
)
2758 static DECLARE_WAIT_QUEUE_HEAD(cancel_waitq
);
2759 unsigned long flags
;
2763 ret
= try_to_grab_pending(work
, is_dwork
, &flags
);
2765 * If someone else is already canceling, wait for it to
2766 * finish. flush_work() doesn't work for PREEMPT_NONE
2767 * because we may get scheduled between @work's completion
2768 * and the other canceling task resuming and clearing
2769 * CANCELING - flush_work() will return false immediately
2770 * as @work is no longer busy, try_to_grab_pending() will
2771 * return -ENOENT as @work is still being canceled and the
2772 * other canceling task won't be able to clear CANCELING as
2773 * we're hogging the CPU.
2775 * Let's wait for completion using a waitqueue. As this
2776 * may lead to the thundering herd problem, use a custom
2777 * wake function which matches @work along with exclusive
2780 if (unlikely(ret
== -ENOENT
)) {
2781 struct cwt_wait cwait
;
2783 init_wait(&cwait
.wait
);
2784 cwait
.wait
.func
= cwt_wakefn
;
2787 prepare_to_wait_exclusive(&cancel_waitq
, &cwait
.wait
,
2788 TASK_UNINTERRUPTIBLE
);
2789 if (work_is_canceling(work
))
2791 finish_wait(&cancel_waitq
, &cwait
.wait
);
2793 } while (unlikely(ret
< 0));
2795 /* tell other tasks trying to grab @work to back off */
2796 mark_work_canceling(work
);
2797 local_irq_restore(flags
);
2800 clear_work_data(work
);
2803 * Paired with prepare_to_wait() above so that either
2804 * waitqueue_active() is visible here or !work_is_canceling() is
2808 if (waitqueue_active(&cancel_waitq
))
2809 __wake_up(&cancel_waitq
, TASK_NORMAL
, 1, work
);
2815 * cancel_work_sync - cancel a work and wait for it to finish
2816 * @work: the work to cancel
2818 * Cancel @work and wait for its execution to finish. This function
2819 * can be used even if the work re-queues itself or migrates to
2820 * another workqueue. On return from this function, @work is
2821 * guaranteed to be not pending or executing on any CPU.
2823 * cancel_work_sync(&delayed_work->work) must not be used for
2824 * delayed_work's. Use cancel_delayed_work_sync() instead.
2826 * The caller must ensure that the workqueue on which @work was last
2827 * queued can't be destroyed before this function returns.
2830 * %true if @work was pending, %false otherwise.
2832 bool cancel_work_sync(struct work_struct
*work
)
2834 return __cancel_work_timer(work
, false);
2836 EXPORT_SYMBOL_GPL(cancel_work_sync
);
2839 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2840 * @dwork: the delayed work to flush
2842 * Delayed timer is cancelled and the pending work is queued for
2843 * immediate execution. Like flush_work(), this function only
2844 * considers the last queueing instance of @dwork.
2847 * %true if flush_work() waited for the work to finish execution,
2848 * %false if it was already idle.
2850 bool flush_delayed_work(struct delayed_work
*dwork
)
2852 local_irq_disable();
2853 if (del_timer_sync(&dwork
->timer
))
2854 __queue_work(dwork
->cpu
, dwork
->wq
, &dwork
->work
);
2856 return flush_work(&dwork
->work
);
2858 EXPORT_SYMBOL(flush_delayed_work
);
2861 * cancel_delayed_work - cancel a delayed work
2862 * @dwork: delayed_work to cancel
2864 * Kill off a pending delayed_work.
2866 * Return: %true if @dwork was pending and canceled; %false if it wasn't
2870 * The work callback function may still be running on return, unless
2871 * it returns %true and the work doesn't re-arm itself. Explicitly flush or
2872 * use cancel_delayed_work_sync() to wait on it.
2874 * This function is safe to call from any context including IRQ handler.
2876 bool cancel_delayed_work(struct delayed_work
*dwork
)
2878 unsigned long flags
;
2882 ret
= try_to_grab_pending(&dwork
->work
, true, &flags
);
2883 } while (unlikely(ret
== -EAGAIN
));
2885 if (unlikely(ret
< 0))
2888 set_work_pool_and_clear_pending(&dwork
->work
,
2889 get_work_pool_id(&dwork
->work
));
2890 local_irq_restore(flags
);
2893 EXPORT_SYMBOL(cancel_delayed_work
);
2896 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2897 * @dwork: the delayed work cancel
2899 * This is cancel_work_sync() for delayed works.
2902 * %true if @dwork was pending, %false otherwise.
2904 bool cancel_delayed_work_sync(struct delayed_work
*dwork
)
2906 return __cancel_work_timer(&dwork
->work
, true);
2908 EXPORT_SYMBOL(cancel_delayed_work_sync
);
2911 * schedule_on_each_cpu - execute a function synchronously on each online CPU
2912 * @func: the function to call
2914 * schedule_on_each_cpu() executes @func on each online CPU using the
2915 * system workqueue and blocks until all CPUs have completed.
2916 * schedule_on_each_cpu() is very slow.
2919 * 0 on success, -errno on failure.
2921 int schedule_on_each_cpu(work_func_t func
)
2924 struct work_struct __percpu
*works
;
2926 works
= alloc_percpu(struct work_struct
);
2932 for_each_online_cpu(cpu
) {
2933 struct work_struct
*work
= per_cpu_ptr(works
, cpu
);
2935 INIT_WORK(work
, func
);
2936 schedule_work_on(cpu
, work
);
2939 for_each_online_cpu(cpu
)
2940 flush_work(per_cpu_ptr(works
, cpu
));
2948 * flush_scheduled_work - ensure that any scheduled work has run to completion.
2950 * Forces execution of the kernel-global workqueue and blocks until its
2953 * Think twice before calling this function! It's very easy to get into
2954 * trouble if you don't take great care. Either of the following situations
2955 * will lead to deadlock:
2957 * One of the work items currently on the workqueue needs to acquire
2958 * a lock held by your code or its caller.
2960 * Your code is running in the context of a work routine.
2962 * They will be detected by lockdep when they occur, but the first might not
2963 * occur very often. It depends on what work items are on the workqueue and
2964 * what locks they need, which you have no control over.
2966 * In most situations flushing the entire workqueue is overkill; you merely
2967 * need to know that a particular work item isn't queued and isn't running.
2968 * In such cases you should use cancel_delayed_work_sync() or
2969 * cancel_work_sync() instead.
2971 void flush_scheduled_work(void)
2973 flush_workqueue(system_wq
);
2975 EXPORT_SYMBOL(flush_scheduled_work
);
2978 * execute_in_process_context - reliably execute the routine with user context
2979 * @fn: the function to execute
2980 * @ew: guaranteed storage for the execute work structure (must
2981 * be available when the work executes)
2983 * Executes the function immediately if process context is available,
2984 * otherwise schedules the function for delayed execution.
2986 * Return: 0 - function was executed
2987 * 1 - function was scheduled for execution
2989 int execute_in_process_context(work_func_t fn
, struct execute_work
*ew
)
2991 if (!in_interrupt()) {
2996 INIT_WORK(&ew
->work
, fn
);
2997 schedule_work(&ew
->work
);
3001 EXPORT_SYMBOL_GPL(execute_in_process_context
);
3005 * Workqueues with WQ_SYSFS flag set is visible to userland via
3006 * /sys/bus/workqueue/devices/WQ_NAME. All visible workqueues have the
3007 * following attributes.
3009 * per_cpu RO bool : whether the workqueue is per-cpu or unbound
3010 * max_active RW int : maximum number of in-flight work items
3012 * Unbound workqueues have the following extra attributes.
3014 * id RO int : the associated pool ID
3015 * nice RW int : nice value of the workers
3016 * cpumask RW mask : bitmask of allowed CPUs for the workers
3019 struct workqueue_struct
*wq
;
3023 static struct workqueue_struct
*dev_to_wq(struct device
*dev
)
3025 struct wq_device
*wq_dev
= container_of(dev
, struct wq_device
, dev
);
3030 static ssize_t
per_cpu_show(struct device
*dev
, struct device_attribute
*attr
,
3033 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3035 return scnprintf(buf
, PAGE_SIZE
, "%d\n", (bool)!(wq
->flags
& WQ_UNBOUND
));
3037 static DEVICE_ATTR_RO(per_cpu
);
3039 static ssize_t
max_active_show(struct device
*dev
,
3040 struct device_attribute
*attr
, char *buf
)
3042 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3044 return scnprintf(buf
, PAGE_SIZE
, "%d\n", wq
->saved_max_active
);
3047 static ssize_t
max_active_store(struct device
*dev
,
3048 struct device_attribute
*attr
, const char *buf
,
3051 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3054 if (sscanf(buf
, "%d", &val
) != 1 || val
<= 0)
3057 workqueue_set_max_active(wq
, val
);
3060 static DEVICE_ATTR_RW(max_active
);
3062 static struct attribute
*wq_sysfs_attrs
[] = {
3063 &dev_attr_per_cpu
.attr
,
3064 &dev_attr_max_active
.attr
,
3067 ATTRIBUTE_GROUPS(wq_sysfs
);
3069 static ssize_t
wq_pool_ids_show(struct device
*dev
,
3070 struct device_attribute
*attr
, char *buf
)
3072 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3073 const char *delim
= "";
3074 int node
, written
= 0;
3076 rcu_read_lock_sched();
3077 for_each_node(node
) {
3078 written
+= scnprintf(buf
+ written
, PAGE_SIZE
- written
,
3079 "%s%d:%d", delim
, node
,
3080 unbound_pwq_by_node(wq
, node
)->pool
->id
);
3083 written
+= scnprintf(buf
+ written
, PAGE_SIZE
- written
, "\n");
3084 rcu_read_unlock_sched();
3089 static ssize_t
wq_nice_show(struct device
*dev
, struct device_attribute
*attr
,
3092 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3095 mutex_lock(&wq
->mutex
);
3096 written
= scnprintf(buf
, PAGE_SIZE
, "%d\n", wq
->unbound_attrs
->nice
);
3097 mutex_unlock(&wq
->mutex
);
3102 /* prepare workqueue_attrs for sysfs store operations */
3103 static struct workqueue_attrs
*wq_sysfs_prep_attrs(struct workqueue_struct
*wq
)
3105 struct workqueue_attrs
*attrs
;
3107 attrs
= alloc_workqueue_attrs(GFP_KERNEL
);
3111 mutex_lock(&wq
->mutex
);
3112 copy_workqueue_attrs(attrs
, wq
->unbound_attrs
);
3113 mutex_unlock(&wq
->mutex
);
3117 static ssize_t
wq_nice_store(struct device
*dev
, struct device_attribute
*attr
,
3118 const char *buf
, size_t count
)
3120 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3121 struct workqueue_attrs
*attrs
;
3124 attrs
= wq_sysfs_prep_attrs(wq
);
3128 if (sscanf(buf
, "%d", &attrs
->nice
) == 1 &&
3129 attrs
->nice
>= MIN_NICE
&& attrs
->nice
<= MAX_NICE
)
3130 ret
= apply_workqueue_attrs(wq
, attrs
);
3134 free_workqueue_attrs(attrs
);
3135 return ret
?: count
;
3138 static ssize_t
wq_cpumask_show(struct device
*dev
,
3139 struct device_attribute
*attr
, char *buf
)
3141 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3144 mutex_lock(&wq
->mutex
);
3145 written
= cpumask_scnprintf(buf
, PAGE_SIZE
, wq
->unbound_attrs
->cpumask
);
3146 mutex_unlock(&wq
->mutex
);
3148 written
+= scnprintf(buf
+ written
, PAGE_SIZE
- written
, "\n");
3152 static ssize_t
wq_cpumask_store(struct device
*dev
,
3153 struct device_attribute
*attr
,
3154 const char *buf
, size_t count
)
3156 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3157 struct workqueue_attrs
*attrs
;
3160 attrs
= wq_sysfs_prep_attrs(wq
);
3164 ret
= cpumask_parse(buf
, attrs
->cpumask
);
3166 ret
= apply_workqueue_attrs(wq
, attrs
);
3168 free_workqueue_attrs(attrs
);
3169 return ret
?: count
;
3172 static ssize_t
wq_numa_show(struct device
*dev
, struct device_attribute
*attr
,
3175 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3178 mutex_lock(&wq
->mutex
);
3179 written
= scnprintf(buf
, PAGE_SIZE
, "%d\n",
3180 !wq
->unbound_attrs
->no_numa
);
3181 mutex_unlock(&wq
->mutex
);
3186 static ssize_t
wq_numa_store(struct device
*dev
, struct device_attribute
*attr
,
3187 const char *buf
, size_t count
)
3189 struct workqueue_struct
*wq
= dev_to_wq(dev
);
3190 struct workqueue_attrs
*attrs
;
3193 attrs
= wq_sysfs_prep_attrs(wq
);
3198 if (sscanf(buf
, "%d", &v
) == 1) {
3199 attrs
->no_numa
= !v
;
3200 ret
= apply_workqueue_attrs(wq
, attrs
);
3203 free_workqueue_attrs(attrs
);
3204 return ret
?: count
;
3207 static struct device_attribute wq_sysfs_unbound_attrs
[] = {
3208 __ATTR(pool_ids
, 0444, wq_pool_ids_show
, NULL
),
3209 __ATTR(nice
, 0644, wq_nice_show
, wq_nice_store
),
3210 __ATTR(cpumask
, 0644, wq_cpumask_show
, wq_cpumask_store
),
3211 __ATTR(numa
, 0644, wq_numa_show
, wq_numa_store
),
3215 static struct bus_type wq_subsys
= {
3216 .name
= "workqueue",
3217 .dev_groups
= wq_sysfs_groups
,
3220 static int __init
wq_sysfs_init(void)
3222 return subsys_virtual_register(&wq_subsys
, NULL
);
3224 core_initcall(wq_sysfs_init
);
3226 static void wq_device_release(struct device
*dev
)
3228 struct wq_device
*wq_dev
= container_of(dev
, struct wq_device
, dev
);
3234 * workqueue_sysfs_register - make a workqueue visible in sysfs
3235 * @wq: the workqueue to register
3237 * Expose @wq in sysfs under /sys/bus/workqueue/devices.
3238 * alloc_workqueue*() automatically calls this function if WQ_SYSFS is set
3239 * which is the preferred method.
3241 * Workqueue user should use this function directly iff it wants to apply
3242 * workqueue_attrs before making the workqueue visible in sysfs; otherwise,
3243 * apply_workqueue_attrs() may race against userland updating the
3246 * Return: 0 on success, -errno on failure.
3248 int workqueue_sysfs_register(struct workqueue_struct
*wq
)
3250 struct wq_device
*wq_dev
;
3254 * Adjusting max_active or creating new pwqs by applyting
3255 * attributes breaks ordering guarantee. Disallow exposing ordered
3258 if (WARN_ON(wq
->flags
& __WQ_ORDERED_EXPLICIT
))
3261 wq
->wq_dev
= wq_dev
= kzalloc(sizeof(*wq_dev
), GFP_KERNEL
);
3266 wq_dev
->dev
.bus
= &wq_subsys
;
3267 wq_dev
->dev
.init_name
= wq
->name
;
3268 wq_dev
->dev
.release
= wq_device_release
;
3271 * unbound_attrs are created separately. Suppress uevent until
3272 * everything is ready.
3274 dev_set_uevent_suppress(&wq_dev
->dev
, true);
3276 ret
= device_register(&wq_dev
->dev
);
3283 if (wq
->flags
& WQ_UNBOUND
) {
3284 struct device_attribute
*attr
;
3286 for (attr
= wq_sysfs_unbound_attrs
; attr
->attr
.name
; attr
++) {
3287 ret
= device_create_file(&wq_dev
->dev
, attr
);
3289 device_unregister(&wq_dev
->dev
);
3296 dev_set_uevent_suppress(&wq_dev
->dev
, false);
3297 kobject_uevent(&wq_dev
->dev
.kobj
, KOBJ_ADD
);
3302 * workqueue_sysfs_unregister - undo workqueue_sysfs_register()
3303 * @wq: the workqueue to unregister
3305 * If @wq is registered to sysfs by workqueue_sysfs_register(), unregister.
3307 static void workqueue_sysfs_unregister(struct workqueue_struct
*wq
)
3309 struct wq_device
*wq_dev
= wq
->wq_dev
;
3315 device_unregister(&wq_dev
->dev
);
3317 #else /* CONFIG_SYSFS */
3318 static void workqueue_sysfs_unregister(struct workqueue_struct
*wq
) { }
3319 #endif /* CONFIG_SYSFS */
3322 * free_workqueue_attrs - free a workqueue_attrs
3323 * @attrs: workqueue_attrs to free
3325 * Undo alloc_workqueue_attrs().
3327 void free_workqueue_attrs(struct workqueue_attrs
*attrs
)
3330 free_cpumask_var(attrs
->cpumask
);
3336 * alloc_workqueue_attrs - allocate a workqueue_attrs
3337 * @gfp_mask: allocation mask to use
3339 * Allocate a new workqueue_attrs, initialize with default settings and
3342 * Return: The allocated new workqueue_attr on success. %NULL on failure.
3344 struct workqueue_attrs
*alloc_workqueue_attrs(gfp_t gfp_mask
)
3346 struct workqueue_attrs
*attrs
;
3348 attrs
= kzalloc(sizeof(*attrs
), gfp_mask
);
3351 if (!alloc_cpumask_var(&attrs
->cpumask
, gfp_mask
))
3354 cpumask_copy(attrs
->cpumask
, cpu_possible_mask
);
3357 free_workqueue_attrs(attrs
);
3361 static void copy_workqueue_attrs(struct workqueue_attrs
*to
,
3362 const struct workqueue_attrs
*from
)
3364 to
->nice
= from
->nice
;
3365 cpumask_copy(to
->cpumask
, from
->cpumask
);
3367 * Unlike hash and equality test, this function doesn't ignore
3368 * ->no_numa as it is used for both pool and wq attrs. Instead,
3369 * get_unbound_pool() explicitly clears ->no_numa after copying.
3371 to
->no_numa
= from
->no_numa
;
3374 /* hash value of the content of @attr */
3375 static u32
wqattrs_hash(const struct workqueue_attrs
*attrs
)
3379 hash
= jhash_1word(attrs
->nice
, hash
);
3380 hash
= jhash(cpumask_bits(attrs
->cpumask
),
3381 BITS_TO_LONGS(nr_cpumask_bits
) * sizeof(long), hash
);
3385 /* content equality test */
3386 static bool wqattrs_equal(const struct workqueue_attrs
*a
,
3387 const struct workqueue_attrs
*b
)
3389 if (a
->nice
!= b
->nice
)
3391 if (!cpumask_equal(a
->cpumask
, b
->cpumask
))
3397 * init_worker_pool - initialize a newly zalloc'd worker_pool
3398 * @pool: worker_pool to initialize
3400 * Initiailize a newly zalloc'd @pool. It also allocates @pool->attrs.
3402 * Return: 0 on success, -errno on failure. Even on failure, all fields
3403 * inside @pool proper are initialized and put_unbound_pool() can be called
3404 * on @pool safely to release it.
3406 static int init_worker_pool(struct worker_pool
*pool
)
3408 spin_lock_init(&pool
->lock
);
3411 pool
->node
= NUMA_NO_NODE
;
3412 pool
->flags
|= POOL_DISASSOCIATED
;
3413 INIT_LIST_HEAD(&pool
->worklist
);
3414 INIT_LIST_HEAD(&pool
->idle_list
);
3415 hash_init(pool
->busy_hash
);
3417 init_timer_deferrable(&pool
->idle_timer
);
3418 pool
->idle_timer
.function
= idle_worker_timeout
;
3419 pool
->idle_timer
.data
= (unsigned long)pool
;
3421 setup_timer(&pool
->mayday_timer
, pool_mayday_timeout
,
3422 (unsigned long)pool
);
3424 mutex_init(&pool
->manager_arb
);
3425 mutex_init(&pool
->attach_mutex
);
3426 INIT_LIST_HEAD(&pool
->workers
);
3428 ida_init(&pool
->worker_ida
);
3429 INIT_HLIST_NODE(&pool
->hash_node
);
3432 /* shouldn't fail above this point */
3433 pool
->attrs
= alloc_workqueue_attrs(GFP_KERNEL
);
3439 static void rcu_free_pool(struct rcu_head
*rcu
)
3441 struct worker_pool
*pool
= container_of(rcu
, struct worker_pool
, rcu
);
3443 ida_destroy(&pool
->worker_ida
);
3444 free_workqueue_attrs(pool
->attrs
);
3449 * put_unbound_pool - put a worker_pool
3450 * @pool: worker_pool to put
3452 * Put @pool. If its refcnt reaches zero, it gets destroyed in sched-RCU
3453 * safe manner. get_unbound_pool() calls this function on its failure path
3454 * and this function should be able to release pools which went through,
3455 * successfully or not, init_worker_pool().
3457 * Should be called with wq_pool_mutex held.
3459 static void put_unbound_pool(struct worker_pool
*pool
)
3461 DECLARE_COMPLETION_ONSTACK(detach_completion
);
3462 struct worker
*worker
;
3464 lockdep_assert_held(&wq_pool_mutex
);
3470 if (WARN_ON(!(pool
->cpu
< 0)) ||
3471 WARN_ON(!list_empty(&pool
->worklist
)))
3474 /* release id and unhash */
3476 idr_remove(&worker_pool_idr
, pool
->id
);
3477 hash_del(&pool
->hash_node
);
3480 * Become the manager and destroy all workers. Grabbing
3481 * manager_arb prevents @pool's workers from blocking on
3484 mutex_lock(&pool
->manager_arb
);
3486 spin_lock_irq(&pool
->lock
);
3487 while ((worker
= first_idle_worker(pool
)))
3488 destroy_worker(worker
);
3489 WARN_ON(pool
->nr_workers
|| pool
->nr_idle
);
3490 spin_unlock_irq(&pool
->lock
);
3492 mutex_lock(&pool
->attach_mutex
);
3493 if (!list_empty(&pool
->workers
))
3494 pool
->detach_completion
= &detach_completion
;
3495 mutex_unlock(&pool
->attach_mutex
);
3497 if (pool
->detach_completion
)
3498 wait_for_completion(pool
->detach_completion
);
3500 mutex_unlock(&pool
->manager_arb
);
3502 /* shut down the timers */
3503 del_timer_sync(&pool
->idle_timer
);
3504 del_timer_sync(&pool
->mayday_timer
);
3506 /* sched-RCU protected to allow dereferences from get_work_pool() */
3507 call_rcu_sched(&pool
->rcu
, rcu_free_pool
);
3511 * get_unbound_pool - get a worker_pool with the specified attributes
3512 * @attrs: the attributes of the worker_pool to get
3514 * Obtain a worker_pool which has the same attributes as @attrs, bump the
3515 * reference count and return it. If there already is a matching
3516 * worker_pool, it will be used; otherwise, this function attempts to
3519 * Should be called with wq_pool_mutex held.
3521 * Return: On success, a worker_pool with the same attributes as @attrs.
3522 * On failure, %NULL.
3524 static struct worker_pool
*get_unbound_pool(const struct workqueue_attrs
*attrs
)
3526 u32 hash
= wqattrs_hash(attrs
);
3527 struct worker_pool
*pool
;
3530 lockdep_assert_held(&wq_pool_mutex
);
3532 /* do we already have a matching pool? */
3533 hash_for_each_possible(unbound_pool_hash
, pool
, hash_node
, hash
) {
3534 if (wqattrs_equal(pool
->attrs
, attrs
)) {
3540 /* nope, create a new one */
3541 pool
= kzalloc(sizeof(*pool
), GFP_KERNEL
);
3542 if (!pool
|| init_worker_pool(pool
) < 0)
3545 lockdep_set_subclass(&pool
->lock
, 1); /* see put_pwq() */
3546 copy_workqueue_attrs(pool
->attrs
, attrs
);
3549 * no_numa isn't a worker_pool attribute, always clear it. See
3550 * 'struct workqueue_attrs' comments for detail.
3552 pool
->attrs
->no_numa
= false;
3554 /* if cpumask is contained inside a NUMA node, we belong to that node */
3555 if (wq_numa_enabled
) {
3556 for_each_node(node
) {
3557 if (cpumask_subset(pool
->attrs
->cpumask
,
3558 wq_numa_possible_cpumask
[node
])) {
3565 if (worker_pool_assign_id(pool
) < 0)
3568 /* create and start the initial worker */
3569 if (!create_worker(pool
))
3573 hash_add(unbound_pool_hash
, &pool
->hash_node
, hash
);
3578 put_unbound_pool(pool
);
3582 static void rcu_free_pwq(struct rcu_head
*rcu
)
3584 kmem_cache_free(pwq_cache
,
3585 container_of(rcu
, struct pool_workqueue
, rcu
));
3589 * Scheduled on system_wq by put_pwq() when an unbound pwq hits zero refcnt
3590 * and needs to be destroyed.
3592 static void pwq_unbound_release_workfn(struct work_struct
*work
)
3594 struct pool_workqueue
*pwq
= container_of(work
, struct pool_workqueue
,
3595 unbound_release_work
);
3596 struct workqueue_struct
*wq
= pwq
->wq
;
3597 struct worker_pool
*pool
= pwq
->pool
;
3600 if (WARN_ON_ONCE(!(wq
->flags
& WQ_UNBOUND
)))
3603 mutex_lock(&wq
->mutex
);
3604 list_del_rcu(&pwq
->pwqs_node
);
3605 is_last
= list_empty(&wq
->pwqs
);
3606 mutex_unlock(&wq
->mutex
);
3608 mutex_lock(&wq_pool_mutex
);
3609 put_unbound_pool(pool
);
3610 mutex_unlock(&wq_pool_mutex
);
3612 call_rcu_sched(&pwq
->rcu
, rcu_free_pwq
);
3615 * If we're the last pwq going away, @wq is already dead and no one
3616 * is gonna access it anymore. Free it.
3619 free_workqueue_attrs(wq
->unbound_attrs
);
3625 * pwq_adjust_max_active - update a pwq's max_active to the current setting
3626 * @pwq: target pool_workqueue
3628 * If @pwq isn't freezing, set @pwq->max_active to the associated
3629 * workqueue's saved_max_active and activate delayed work items
3630 * accordingly. If @pwq is freezing, clear @pwq->max_active to zero.
3632 static void pwq_adjust_max_active(struct pool_workqueue
*pwq
)
3634 struct workqueue_struct
*wq
= pwq
->wq
;
3635 bool freezable
= wq
->flags
& WQ_FREEZABLE
;
3637 /* for @wq->saved_max_active */
3638 lockdep_assert_held(&wq
->mutex
);
3640 /* fast exit for non-freezable wqs */
3641 if (!freezable
&& pwq
->max_active
== wq
->saved_max_active
)
3644 spin_lock_irq(&pwq
->pool
->lock
);
3647 * During [un]freezing, the caller is responsible for ensuring that
3648 * this function is called at least once after @workqueue_freezing
3649 * is updated and visible.
3651 if (!freezable
|| !workqueue_freezing
) {
3652 pwq
->max_active
= wq
->saved_max_active
;
3654 while (!list_empty(&pwq
->delayed_works
) &&
3655 pwq
->nr_active
< pwq
->max_active
)
3656 pwq_activate_first_delayed(pwq
);
3659 * Need to kick a worker after thawed or an unbound wq's
3660 * max_active is bumped. It's a slow path. Do it always.
3662 wake_up_worker(pwq
->pool
);
3664 pwq
->max_active
= 0;
3667 spin_unlock_irq(&pwq
->pool
->lock
);
3670 /* initialize newly alloced @pwq which is associated with @wq and @pool */
3671 static void init_pwq(struct pool_workqueue
*pwq
, struct workqueue_struct
*wq
,
3672 struct worker_pool
*pool
)
3674 BUG_ON((unsigned long)pwq
& WORK_STRUCT_FLAG_MASK
);
3676 memset(pwq
, 0, sizeof(*pwq
));
3680 pwq
->flush_color
= -1;
3682 INIT_LIST_HEAD(&pwq
->delayed_works
);
3683 INIT_LIST_HEAD(&pwq
->pwqs_node
);
3684 INIT_LIST_HEAD(&pwq
->mayday_node
);
3685 INIT_WORK(&pwq
->unbound_release_work
, pwq_unbound_release_workfn
);
3688 /* sync @pwq with the current state of its associated wq and link it */
3689 static void link_pwq(struct pool_workqueue
*pwq
)
3691 struct workqueue_struct
*wq
= pwq
->wq
;
3693 lockdep_assert_held(&wq
->mutex
);
3695 /* may be called multiple times, ignore if already linked */
3696 if (!list_empty(&pwq
->pwqs_node
))
3699 /* set the matching work_color */
3700 pwq
->work_color
= wq
->work_color
;
3702 /* sync max_active to the current setting */
3703 pwq_adjust_max_active(pwq
);
3706 list_add_rcu(&pwq
->pwqs_node
, &wq
->pwqs
);
3709 /* obtain a pool matching @attr and create a pwq associating the pool and @wq */
3710 static struct pool_workqueue
*alloc_unbound_pwq(struct workqueue_struct
*wq
,
3711 const struct workqueue_attrs
*attrs
)
3713 struct worker_pool
*pool
;
3714 struct pool_workqueue
*pwq
;
3716 lockdep_assert_held(&wq_pool_mutex
);
3718 pool
= get_unbound_pool(attrs
);
3722 pwq
= kmem_cache_alloc_node(pwq_cache
, GFP_KERNEL
, pool
->node
);
3724 put_unbound_pool(pool
);
3728 init_pwq(pwq
, wq
, pool
);
3732 /* undo alloc_unbound_pwq(), used only in the error path */
3733 static void free_unbound_pwq(struct pool_workqueue
*pwq
)
3735 lockdep_assert_held(&wq_pool_mutex
);
3738 put_unbound_pool(pwq
->pool
);
3739 kmem_cache_free(pwq_cache
, pwq
);
3744 * wq_calc_node_mask - calculate a wq_attrs' cpumask for the specified node
3745 * @attrs: the wq_attrs of interest
3746 * @node: the target NUMA node
3747 * @cpu_going_down: if >= 0, the CPU to consider as offline
3748 * @cpumask: outarg, the resulting cpumask
3750 * Calculate the cpumask a workqueue with @attrs should use on @node. If
3751 * @cpu_going_down is >= 0, that cpu is considered offline during
3752 * calculation. The result is stored in @cpumask.
3754 * If NUMA affinity is not enabled, @attrs->cpumask is always used. If
3755 * enabled and @node has online CPUs requested by @attrs, the returned
3756 * cpumask is the intersection of the possible CPUs of @node and
3759 * The caller is responsible for ensuring that the cpumask of @node stays
3762 * Return: %true if the resulting @cpumask is different from @attrs->cpumask,
3765 static bool wq_calc_node_cpumask(const struct workqueue_attrs
*attrs
, int node
,
3766 int cpu_going_down
, cpumask_t
*cpumask
)
3768 if (!wq_numa_enabled
|| attrs
->no_numa
)
3771 /* does @node have any online CPUs @attrs wants? */
3772 cpumask_and(cpumask
, cpumask_of_node(node
), attrs
->cpumask
);
3773 if (cpu_going_down
>= 0)
3774 cpumask_clear_cpu(cpu_going_down
, cpumask
);
3776 if (cpumask_empty(cpumask
))
3779 /* yeap, return possible CPUs in @node that @attrs wants */
3780 cpumask_and(cpumask
, attrs
->cpumask
, wq_numa_possible_cpumask
[node
]);
3781 return !cpumask_equal(cpumask
, attrs
->cpumask
);
3784 cpumask_copy(cpumask
, attrs
->cpumask
);
3788 /* install @pwq into @wq's numa_pwq_tbl[] for @node and return the old pwq */
3789 static struct pool_workqueue
*numa_pwq_tbl_install(struct workqueue_struct
*wq
,
3791 struct pool_workqueue
*pwq
)
3793 struct pool_workqueue
*old_pwq
;
3795 lockdep_assert_held(&wq
->mutex
);
3797 /* link_pwq() can handle duplicate calls */
3800 old_pwq
= rcu_access_pointer(wq
->numa_pwq_tbl
[node
]);
3801 rcu_assign_pointer(wq
->numa_pwq_tbl
[node
], pwq
);
3806 * apply_workqueue_attrs - apply new workqueue_attrs to an unbound workqueue
3807 * @wq: the target workqueue
3808 * @attrs: the workqueue_attrs to apply, allocated with alloc_workqueue_attrs()
3810 * Apply @attrs to an unbound workqueue @wq. Unless disabled, on NUMA
3811 * machines, this function maps a separate pwq to each NUMA node with
3812 * possibles CPUs in @attrs->cpumask so that work items are affine to the
3813 * NUMA node it was issued on. Older pwqs are released as in-flight work
3814 * items finish. Note that a work item which repeatedly requeues itself
3815 * back-to-back will stay on its current pwq.
3817 * Performs GFP_KERNEL allocations.
3819 * Return: 0 on success and -errno on failure.
3821 int apply_workqueue_attrs(struct workqueue_struct
*wq
,
3822 const struct workqueue_attrs
*attrs
)
3824 struct workqueue_attrs
*new_attrs
, *tmp_attrs
;
3825 struct pool_workqueue
**pwq_tbl
, *dfl_pwq
;
3828 /* only unbound workqueues can change attributes */
3829 if (WARN_ON(!(wq
->flags
& WQ_UNBOUND
)))
3832 /* creating multiple pwqs breaks ordering guarantee */
3833 if (!list_empty(&wq
->pwqs
)) {
3834 if (WARN_ON(wq
->flags
& __WQ_ORDERED_EXPLICIT
))
3837 wq
->flags
&= ~__WQ_ORDERED
;
3840 pwq_tbl
= kzalloc(nr_node_ids
* sizeof(pwq_tbl
[0]), GFP_KERNEL
);
3841 new_attrs
= alloc_workqueue_attrs(GFP_KERNEL
);
3842 tmp_attrs
= alloc_workqueue_attrs(GFP_KERNEL
);
3843 if (!pwq_tbl
|| !new_attrs
|| !tmp_attrs
)
3846 /* make a copy of @attrs and sanitize it */
3847 copy_workqueue_attrs(new_attrs
, attrs
);
3848 cpumask_and(new_attrs
->cpumask
, new_attrs
->cpumask
, cpu_possible_mask
);
3851 * We may create multiple pwqs with differing cpumasks. Make a
3852 * copy of @new_attrs which will be modified and used to obtain
3855 copy_workqueue_attrs(tmp_attrs
, new_attrs
);
3858 * CPUs should stay stable across pwq creations and installations.
3859 * Pin CPUs, determine the target cpumask for each node and create
3864 mutex_lock(&wq_pool_mutex
);
3867 * If something goes wrong during CPU up/down, we'll fall back to
3868 * the default pwq covering whole @attrs->cpumask. Always create
3869 * it even if we don't use it immediately.
3871 dfl_pwq
= alloc_unbound_pwq(wq
, new_attrs
);
3875 for_each_node(node
) {
3876 if (wq_calc_node_cpumask(attrs
, node
, -1, tmp_attrs
->cpumask
)) {
3877 pwq_tbl
[node
] = alloc_unbound_pwq(wq
, tmp_attrs
);
3882 pwq_tbl
[node
] = dfl_pwq
;
3886 mutex_unlock(&wq_pool_mutex
);
3888 /* all pwqs have been created successfully, let's install'em */
3889 mutex_lock(&wq
->mutex
);
3891 copy_workqueue_attrs(wq
->unbound_attrs
, new_attrs
);
3893 /* save the previous pwq and install the new one */
3895 pwq_tbl
[node
] = numa_pwq_tbl_install(wq
, node
, pwq_tbl
[node
]);
3897 /* @dfl_pwq might not have been used, ensure it's linked */
3899 swap(wq
->dfl_pwq
, dfl_pwq
);
3901 mutex_unlock(&wq
->mutex
);
3903 /* put the old pwqs */
3905 put_pwq_unlocked(pwq_tbl
[node
]);
3906 put_pwq_unlocked(dfl_pwq
);
3912 free_workqueue_attrs(tmp_attrs
);
3913 free_workqueue_attrs(new_attrs
);
3918 free_unbound_pwq(dfl_pwq
);
3920 if (pwq_tbl
&& pwq_tbl
[node
] != dfl_pwq
)
3921 free_unbound_pwq(pwq_tbl
[node
]);
3922 mutex_unlock(&wq_pool_mutex
);
3930 * wq_update_unbound_numa - update NUMA affinity of a wq for CPU hot[un]plug
3931 * @wq: the target workqueue
3932 * @cpu: the CPU coming up or going down
3933 * @online: whether @cpu is coming up or going down
3935 * This function is to be called from %CPU_DOWN_PREPARE, %CPU_ONLINE and
3936 * %CPU_DOWN_FAILED. @cpu is being hot[un]plugged, update NUMA affinity of
3939 * If NUMA affinity can't be adjusted due to memory allocation failure, it
3940 * falls back to @wq->dfl_pwq which may not be optimal but is always
3943 * Note that when the last allowed CPU of a NUMA node goes offline for a
3944 * workqueue with a cpumask spanning multiple nodes, the workers which were
3945 * already executing the work items for the workqueue will lose their CPU
3946 * affinity and may execute on any CPU. This is similar to how per-cpu
3947 * workqueues behave on CPU_DOWN. If a workqueue user wants strict
3948 * affinity, it's the user's responsibility to flush the work item from
3951 static void wq_update_unbound_numa(struct workqueue_struct
*wq
, int cpu
,
3954 int node
= cpu_to_node(cpu
);
3955 int cpu_off
= online
? -1 : cpu
;
3956 struct pool_workqueue
*old_pwq
= NULL
, *pwq
;
3957 struct workqueue_attrs
*target_attrs
;
3960 lockdep_assert_held(&wq_pool_mutex
);
3962 if (!wq_numa_enabled
|| !(wq
->flags
& WQ_UNBOUND
))
3966 * We don't wanna alloc/free wq_attrs for each wq for each CPU.
3967 * Let's use a preallocated one. The following buf is protected by
3968 * CPU hotplug exclusion.
3970 target_attrs
= wq_update_unbound_numa_attrs_buf
;
3971 cpumask
= target_attrs
->cpumask
;
3973 mutex_lock(&wq
->mutex
);
3974 if (wq
->unbound_attrs
->no_numa
)
3977 copy_workqueue_attrs(target_attrs
, wq
->unbound_attrs
);
3978 pwq
= unbound_pwq_by_node(wq
, node
);
3981 * Let's determine what needs to be done. If the target cpumask is
3982 * different from wq's, we need to compare it to @pwq's and create
3983 * a new one if they don't match. If the target cpumask equals
3984 * wq's, the default pwq should be used.
3986 if (wq_calc_node_cpumask(wq
->unbound_attrs
, node
, cpu_off
, cpumask
)) {
3987 if (cpumask_equal(cpumask
, pwq
->pool
->attrs
->cpumask
))
3993 mutex_unlock(&wq
->mutex
);
3995 /* create a new pwq */
3996 pwq
= alloc_unbound_pwq(wq
, target_attrs
);
3998 pr_warn("workqueue: allocation failed while updating NUMA affinity of \"%s\"\n",
4000 mutex_lock(&wq
->mutex
);
4005 * Install the new pwq. As this function is called only from CPU
4006 * hotplug callbacks and applying a new attrs is wrapped with
4007 * get/put_online_cpus(), @wq->unbound_attrs couldn't have changed
4010 mutex_lock(&wq
->mutex
);
4011 old_pwq
= numa_pwq_tbl_install(wq
, node
, pwq
);
4015 spin_lock_irq(&wq
->dfl_pwq
->pool
->lock
);
4016 get_pwq(wq
->dfl_pwq
);
4017 spin_unlock_irq(&wq
->dfl_pwq
->pool
->lock
);
4018 old_pwq
= numa_pwq_tbl_install(wq
, node
, wq
->dfl_pwq
);
4020 mutex_unlock(&wq
->mutex
);
4021 put_pwq_unlocked(old_pwq
);
4024 static int alloc_and_link_pwqs(struct workqueue_struct
*wq
)
4026 bool highpri
= wq
->flags
& WQ_HIGHPRI
;
4029 if (!(wq
->flags
& WQ_UNBOUND
)) {
4030 wq
->cpu_pwqs
= alloc_percpu(struct pool_workqueue
);
4034 for_each_possible_cpu(cpu
) {
4035 struct pool_workqueue
*pwq
=
4036 per_cpu_ptr(wq
->cpu_pwqs
, cpu
);
4037 struct worker_pool
*cpu_pools
=
4038 per_cpu(cpu_worker_pools
, cpu
);
4040 init_pwq(pwq
, wq
, &cpu_pools
[highpri
]);
4042 mutex_lock(&wq
->mutex
);
4044 mutex_unlock(&wq
->mutex
);
4047 } else if (wq
->flags
& __WQ_ORDERED
) {
4048 ret
= apply_workqueue_attrs(wq
, ordered_wq_attrs
[highpri
]);
4049 /* there should only be single pwq for ordering guarantee */
4050 WARN(!ret
&& (wq
->pwqs
.next
!= &wq
->dfl_pwq
->pwqs_node
||
4051 wq
->pwqs
.prev
!= &wq
->dfl_pwq
->pwqs_node
),
4052 "ordering guarantee broken for workqueue %s\n", wq
->name
);
4055 return apply_workqueue_attrs(wq
, unbound_std_wq_attrs
[highpri
]);
4059 static int wq_clamp_max_active(int max_active
, unsigned int flags
,
4062 int lim
= flags
& WQ_UNBOUND
? WQ_UNBOUND_MAX_ACTIVE
: WQ_MAX_ACTIVE
;
4064 if (max_active
< 1 || max_active
> lim
)
4065 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
4066 max_active
, name
, 1, lim
);
4068 return clamp_val(max_active
, 1, lim
);
4071 struct workqueue_struct
*__alloc_workqueue_key(const char *fmt
,
4074 struct lock_class_key
*key
,
4075 const char *lock_name
, ...)
4077 size_t tbl_size
= 0;
4079 struct workqueue_struct
*wq
;
4080 struct pool_workqueue
*pwq
;
4083 * Unbound && max_active == 1 used to imply ordered, which is no
4084 * longer the case on NUMA machines due to per-node pools. While
4085 * alloc_ordered_workqueue() is the right way to create an ordered
4086 * workqueue, keep the previous behavior to avoid subtle breakages
4089 if ((flags
& WQ_UNBOUND
) && max_active
== 1)
4090 flags
|= __WQ_ORDERED
;
4092 /* see the comment above the definition of WQ_POWER_EFFICIENT */
4093 if ((flags
& WQ_POWER_EFFICIENT
) && wq_power_efficient
)
4094 flags
|= WQ_UNBOUND
;
4096 /* allocate wq and format name */
4097 if (flags
& WQ_UNBOUND
)
4098 tbl_size
= nr_node_ids
* sizeof(wq
->numa_pwq_tbl
[0]);
4100 wq
= kzalloc(sizeof(*wq
) + tbl_size
, GFP_KERNEL
);
4104 if (flags
& WQ_UNBOUND
) {
4105 wq
->unbound_attrs
= alloc_workqueue_attrs(GFP_KERNEL
);
4106 if (!wq
->unbound_attrs
)
4110 va_start(args
, lock_name
);
4111 vsnprintf(wq
->name
, sizeof(wq
->name
), fmt
, args
);
4114 max_active
= max_active
?: WQ_DFL_ACTIVE
;
4115 max_active
= wq_clamp_max_active(max_active
, flags
, wq
->name
);
4119 wq
->saved_max_active
= max_active
;
4120 mutex_init(&wq
->mutex
);
4121 atomic_set(&wq
->nr_pwqs_to_flush
, 0);
4122 INIT_LIST_HEAD(&wq
->pwqs
);
4123 INIT_LIST_HEAD(&wq
->flusher_queue
);
4124 INIT_LIST_HEAD(&wq
->flusher_overflow
);
4125 INIT_LIST_HEAD(&wq
->maydays
);
4127 lockdep_init_map(&wq
->lockdep_map
, lock_name
, key
, 0);
4128 INIT_LIST_HEAD(&wq
->list
);
4130 if (alloc_and_link_pwqs(wq
) < 0)
4134 * Workqueues which may be used during memory reclaim should
4135 * have a rescuer to guarantee forward progress.
4137 if (flags
& WQ_MEM_RECLAIM
) {
4138 struct worker
*rescuer
;
4140 rescuer
= alloc_worker(NUMA_NO_NODE
);
4144 rescuer
->rescue_wq
= wq
;
4145 rescuer
->task
= kthread_create(rescuer_thread
, rescuer
, "%s",
4147 if (IS_ERR(rescuer
->task
)) {
4152 wq
->rescuer
= rescuer
;
4153 rescuer
->task
->flags
|= PF_NO_SETAFFINITY
;
4154 wake_up_process(rescuer
->task
);
4157 if ((wq
->flags
& WQ_SYSFS
) && workqueue_sysfs_register(wq
))
4161 * wq_pool_mutex protects global freeze state and workqueues list.
4162 * Grab it, adjust max_active and add the new @wq to workqueues
4165 mutex_lock(&wq_pool_mutex
);
4167 mutex_lock(&wq
->mutex
);
4168 for_each_pwq(pwq
, wq
)
4169 pwq_adjust_max_active(pwq
);
4170 mutex_unlock(&wq
->mutex
);
4172 list_add(&wq
->list
, &workqueues
);
4174 mutex_unlock(&wq_pool_mutex
);
4179 free_workqueue_attrs(wq
->unbound_attrs
);
4183 destroy_workqueue(wq
);
4186 EXPORT_SYMBOL_GPL(__alloc_workqueue_key
);
4189 * destroy_workqueue - safely terminate a workqueue
4190 * @wq: target workqueue
4192 * Safely destroy a workqueue. All work currently pending will be done first.
4194 void destroy_workqueue(struct workqueue_struct
*wq
)
4196 struct pool_workqueue
*pwq
;
4199 /* drain it before proceeding with destruction */
4200 drain_workqueue(wq
);
4203 mutex_lock(&wq
->mutex
);
4204 for_each_pwq(pwq
, wq
) {
4207 for (i
= 0; i
< WORK_NR_COLORS
; i
++) {
4208 if (WARN_ON(pwq
->nr_in_flight
[i
])) {
4209 mutex_unlock(&wq
->mutex
);
4214 if (WARN_ON((pwq
!= wq
->dfl_pwq
) && (pwq
->refcnt
> 1)) ||
4215 WARN_ON(pwq
->nr_active
) ||
4216 WARN_ON(!list_empty(&pwq
->delayed_works
))) {
4217 mutex_unlock(&wq
->mutex
);
4221 mutex_unlock(&wq
->mutex
);
4224 * wq list is used to freeze wq, remove from list after
4225 * flushing is complete in case freeze races us.
4227 mutex_lock(&wq_pool_mutex
);
4228 list_del_init(&wq
->list
);
4229 mutex_unlock(&wq_pool_mutex
);
4231 workqueue_sysfs_unregister(wq
);
4234 kthread_stop(wq
->rescuer
->task
);
4239 if (!(wq
->flags
& WQ_UNBOUND
)) {
4241 * The base ref is never dropped on per-cpu pwqs. Directly
4242 * free the pwqs and wq.
4244 free_percpu(wq
->cpu_pwqs
);
4248 * We're the sole accessor of @wq at this point. Directly
4249 * access numa_pwq_tbl[] and dfl_pwq to put the base refs.
4250 * @wq will be freed when the last pwq is released.
4252 for_each_node(node
) {
4253 pwq
= rcu_access_pointer(wq
->numa_pwq_tbl
[node
]);
4254 RCU_INIT_POINTER(wq
->numa_pwq_tbl
[node
], NULL
);
4255 put_pwq_unlocked(pwq
);
4259 * Put dfl_pwq. @wq may be freed any time after dfl_pwq is
4260 * put. Don't access it afterwards.
4264 put_pwq_unlocked(pwq
);
4267 EXPORT_SYMBOL_GPL(destroy_workqueue
);
4270 * workqueue_set_max_active - adjust max_active of a workqueue
4271 * @wq: target workqueue
4272 * @max_active: new max_active value.
4274 * Set max_active of @wq to @max_active.
4277 * Don't call from IRQ context.
4279 void workqueue_set_max_active(struct workqueue_struct
*wq
, int max_active
)
4281 struct pool_workqueue
*pwq
;
4283 /* disallow meddling with max_active for ordered workqueues */
4284 if (WARN_ON(wq
->flags
& __WQ_ORDERED_EXPLICIT
))
4287 max_active
= wq_clamp_max_active(max_active
, wq
->flags
, wq
->name
);
4289 mutex_lock(&wq
->mutex
);
4291 wq
->flags
&= ~__WQ_ORDERED
;
4292 wq
->saved_max_active
= max_active
;
4294 for_each_pwq(pwq
, wq
)
4295 pwq_adjust_max_active(pwq
);
4297 mutex_unlock(&wq
->mutex
);
4299 EXPORT_SYMBOL_GPL(workqueue_set_max_active
);
4302 * current_is_workqueue_rescuer - is %current workqueue rescuer?
4304 * Determine whether %current is a workqueue rescuer. Can be used from
4305 * work functions to determine whether it's being run off the rescuer task.
4307 * Return: %true if %current is a workqueue rescuer. %false otherwise.
4309 bool current_is_workqueue_rescuer(void)
4311 struct worker
*worker
= current_wq_worker();
4313 return worker
&& worker
->rescue_wq
;
4317 * workqueue_congested - test whether a workqueue is congested
4318 * @cpu: CPU in question
4319 * @wq: target workqueue
4321 * Test whether @wq's cpu workqueue for @cpu is congested. There is
4322 * no synchronization around this function and the test result is
4323 * unreliable and only useful as advisory hints or for debugging.
4325 * If @cpu is WORK_CPU_UNBOUND, the test is performed on the local CPU.
4326 * Note that both per-cpu and unbound workqueues may be associated with
4327 * multiple pool_workqueues which have separate congested states. A
4328 * workqueue being congested on one CPU doesn't mean the workqueue is also
4329 * contested on other CPUs / NUMA nodes.
4332 * %true if congested, %false otherwise.
4334 bool workqueue_congested(int cpu
, struct workqueue_struct
*wq
)
4336 struct pool_workqueue
*pwq
;
4339 rcu_read_lock_sched();
4341 if (cpu
== WORK_CPU_UNBOUND
)
4342 cpu
= smp_processor_id();
4344 if (!(wq
->flags
& WQ_UNBOUND
))
4345 pwq
= per_cpu_ptr(wq
->cpu_pwqs
, cpu
);
4347 pwq
= unbound_pwq_by_node(wq
, cpu_to_node(cpu
));
4349 ret
= !list_empty(&pwq
->delayed_works
);
4350 rcu_read_unlock_sched();
4354 EXPORT_SYMBOL_GPL(workqueue_congested
);
4357 * work_busy - test whether a work is currently pending or running
4358 * @work: the work to be tested
4360 * Test whether @work is currently pending or running. There is no
4361 * synchronization around this function and the test result is
4362 * unreliable and only useful as advisory hints or for debugging.
4365 * OR'd bitmask of WORK_BUSY_* bits.
4367 unsigned int work_busy(struct work_struct
*work
)
4369 struct worker_pool
*pool
;
4370 unsigned long flags
;
4371 unsigned int ret
= 0;
4373 if (work_pending(work
))
4374 ret
|= WORK_BUSY_PENDING
;
4376 local_irq_save(flags
);
4377 pool
= get_work_pool(work
);
4379 spin_lock(&pool
->lock
);
4380 if (find_worker_executing_work(pool
, work
))
4381 ret
|= WORK_BUSY_RUNNING
;
4382 spin_unlock(&pool
->lock
);
4384 local_irq_restore(flags
);
4388 EXPORT_SYMBOL_GPL(work_busy
);
4391 * set_worker_desc - set description for the current work item
4392 * @fmt: printf-style format string
4393 * @...: arguments for the format string
4395 * This function can be called by a running work function to describe what
4396 * the work item is about. If the worker task gets dumped, this
4397 * information will be printed out together to help debugging. The
4398 * description can be at most WORKER_DESC_LEN including the trailing '\0'.
4400 void set_worker_desc(const char *fmt
, ...)
4402 struct worker
*worker
= current_wq_worker();
4406 va_start(args
, fmt
);
4407 vsnprintf(worker
->desc
, sizeof(worker
->desc
), fmt
, args
);
4409 worker
->desc_valid
= true;
4414 * print_worker_info - print out worker information and description
4415 * @log_lvl: the log level to use when printing
4416 * @task: target task
4418 * If @task is a worker and currently executing a work item, print out the
4419 * name of the workqueue being serviced and worker description set with
4420 * set_worker_desc() by the currently executing work item.
4422 * This function can be safely called on any task as long as the
4423 * task_struct itself is accessible. While safe, this function isn't
4424 * synchronized and may print out mixups or garbages of limited length.
4426 void print_worker_info(const char *log_lvl
, struct task_struct
*task
)
4428 work_func_t
*fn
= NULL
;
4429 char name
[WQ_NAME_LEN
] = { };
4430 char desc
[WORKER_DESC_LEN
] = { };
4431 struct pool_workqueue
*pwq
= NULL
;
4432 struct workqueue_struct
*wq
= NULL
;
4433 bool desc_valid
= false;
4434 struct worker
*worker
;
4436 if (!(task
->flags
& PF_WQ_WORKER
))
4440 * This function is called without any synchronization and @task
4441 * could be in any state. Be careful with dereferences.
4443 worker
= probe_kthread_data(task
);
4446 * Carefully copy the associated workqueue's workfn and name. Keep
4447 * the original last '\0' in case the original contains garbage.
4449 probe_kernel_read(&fn
, &worker
->current_func
, sizeof(fn
));
4450 probe_kernel_read(&pwq
, &worker
->current_pwq
, sizeof(pwq
));
4451 probe_kernel_read(&wq
, &pwq
->wq
, sizeof(wq
));
4452 probe_kernel_read(name
, wq
->name
, sizeof(name
) - 1);
4454 /* copy worker description */
4455 probe_kernel_read(&desc_valid
, &worker
->desc_valid
, sizeof(desc_valid
));
4457 probe_kernel_read(desc
, worker
->desc
, sizeof(desc
) - 1);
4459 if (fn
|| name
[0] || desc
[0]) {
4460 printk("%sWorkqueue: %s %pf", log_lvl
, name
, fn
);
4462 pr_cont(" (%s)", desc
);
4470 * There are two challenges in supporting CPU hotplug. Firstly, there
4471 * are a lot of assumptions on strong associations among work, pwq and
4472 * pool which make migrating pending and scheduled works very
4473 * difficult to implement without impacting hot paths. Secondly,
4474 * worker pools serve mix of short, long and very long running works making
4475 * blocked draining impractical.
4477 * This is solved by allowing the pools to be disassociated from the CPU
4478 * running as an unbound one and allowing it to be reattached later if the
4479 * cpu comes back online.
4482 static void wq_unbind_fn(struct work_struct
*work
)
4484 int cpu
= smp_processor_id();
4485 struct worker_pool
*pool
;
4486 struct worker
*worker
;
4488 for_each_cpu_worker_pool(pool
, cpu
) {
4489 mutex_lock(&pool
->attach_mutex
);
4490 spin_lock_irq(&pool
->lock
);
4493 * We've blocked all attach/detach operations. Make all workers
4494 * unbound and set DISASSOCIATED. Before this, all workers
4495 * except for the ones which are still executing works from
4496 * before the last CPU down must be on the cpu. After
4497 * this, they may become diasporas.
4499 for_each_pool_worker(worker
, pool
)
4500 worker
->flags
|= WORKER_UNBOUND
;
4502 pool
->flags
|= POOL_DISASSOCIATED
;
4504 spin_unlock_irq(&pool
->lock
);
4505 mutex_unlock(&pool
->attach_mutex
);
4508 * Call schedule() so that we cross rq->lock and thus can
4509 * guarantee sched callbacks see the %WORKER_UNBOUND flag.
4510 * This is necessary as scheduler callbacks may be invoked
4516 * Sched callbacks are disabled now. Zap nr_running.
4517 * After this, nr_running stays zero and need_more_worker()
4518 * and keep_working() are always true as long as the
4519 * worklist is not empty. This pool now behaves as an
4520 * unbound (in terms of concurrency management) pool which
4521 * are served by workers tied to the pool.
4523 atomic_set(&pool
->nr_running
, 0);
4526 * With concurrency management just turned off, a busy
4527 * worker blocking could lead to lengthy stalls. Kick off
4528 * unbound chain execution of currently pending work items.
4530 spin_lock_irq(&pool
->lock
);
4531 wake_up_worker(pool
);
4532 spin_unlock_irq(&pool
->lock
);
4537 * rebind_workers - rebind all workers of a pool to the associated CPU
4538 * @pool: pool of interest
4540 * @pool->cpu is coming online. Rebind all workers to the CPU.
4542 static void rebind_workers(struct worker_pool
*pool
)
4544 struct worker
*worker
;
4546 lockdep_assert_held(&pool
->attach_mutex
);
4549 * Restore CPU affinity of all workers. As all idle workers should
4550 * be on the run-queue of the associated CPU before any local
4551 * wake-ups for concurrency management happen, restore CPU affinty
4552 * of all workers first and then clear UNBOUND. As we're called
4553 * from CPU_ONLINE, the following shouldn't fail.
4555 for_each_pool_worker(worker
, pool
)
4556 WARN_ON_ONCE(set_cpus_allowed_ptr(worker
->task
,
4557 pool
->attrs
->cpumask
) < 0);
4559 spin_lock_irq(&pool
->lock
);
4562 * XXX: CPU hotplug notifiers are weird and can call DOWN_FAILED
4563 * w/o preceding DOWN_PREPARE. Work around it. CPU hotplug is
4564 * being reworked and this can go away in time.
4566 if (!(pool
->flags
& POOL_DISASSOCIATED
)) {
4567 spin_unlock_irq(&pool
->lock
);
4571 pool
->flags
&= ~POOL_DISASSOCIATED
;
4573 for_each_pool_worker(worker
, pool
) {
4574 unsigned int worker_flags
= worker
->flags
;
4577 * A bound idle worker should actually be on the runqueue
4578 * of the associated CPU for local wake-ups targeting it to
4579 * work. Kick all idle workers so that they migrate to the
4580 * associated CPU. Doing this in the same loop as
4581 * replacing UNBOUND with REBOUND is safe as no worker will
4582 * be bound before @pool->lock is released.
4584 if (worker_flags
& WORKER_IDLE
)
4585 wake_up_process(worker
->task
);
4588 * We want to clear UNBOUND but can't directly call
4589 * worker_clr_flags() or adjust nr_running. Atomically
4590 * replace UNBOUND with another NOT_RUNNING flag REBOUND.
4591 * @worker will clear REBOUND using worker_clr_flags() when
4592 * it initiates the next execution cycle thus restoring
4593 * concurrency management. Note that when or whether
4594 * @worker clears REBOUND doesn't affect correctness.
4596 * ACCESS_ONCE() is necessary because @worker->flags may be
4597 * tested without holding any lock in
4598 * wq_worker_waking_up(). Without it, NOT_RUNNING test may
4599 * fail incorrectly leading to premature concurrency
4600 * management operations.
4602 WARN_ON_ONCE(!(worker_flags
& WORKER_UNBOUND
));
4603 worker_flags
|= WORKER_REBOUND
;
4604 worker_flags
&= ~WORKER_UNBOUND
;
4605 ACCESS_ONCE(worker
->flags
) = worker_flags
;
4608 spin_unlock_irq(&pool
->lock
);
4612 * restore_unbound_workers_cpumask - restore cpumask of unbound workers
4613 * @pool: unbound pool of interest
4614 * @cpu: the CPU which is coming up
4616 * An unbound pool may end up with a cpumask which doesn't have any online
4617 * CPUs. When a worker of such pool get scheduled, the scheduler resets
4618 * its cpus_allowed. If @cpu is in @pool's cpumask which didn't have any
4619 * online CPU before, cpus_allowed of all its workers should be restored.
4621 static void restore_unbound_workers_cpumask(struct worker_pool
*pool
, int cpu
)
4623 static cpumask_t cpumask
;
4624 struct worker
*worker
;
4626 lockdep_assert_held(&pool
->attach_mutex
);
4628 /* is @cpu allowed for @pool? */
4629 if (!cpumask_test_cpu(cpu
, pool
->attrs
->cpumask
))
4632 /* is @cpu the only online CPU? */
4633 cpumask_and(&cpumask
, pool
->attrs
->cpumask
, cpu_online_mask
);
4634 if (cpumask_weight(&cpumask
) != 1)
4637 /* as we're called from CPU_ONLINE, the following shouldn't fail */
4638 for_each_pool_worker(worker
, pool
)
4639 WARN_ON_ONCE(set_cpus_allowed_ptr(worker
->task
,
4640 pool
->attrs
->cpumask
) < 0);
4644 * Workqueues should be brought up before normal priority CPU notifiers.
4645 * This will be registered high priority CPU notifier.
4647 static int workqueue_cpu_up_callback(struct notifier_block
*nfb
,
4648 unsigned long action
,
4651 int cpu
= (unsigned long)hcpu
;
4652 struct worker_pool
*pool
;
4653 struct workqueue_struct
*wq
;
4656 switch (action
& ~CPU_TASKS_FROZEN
) {
4657 case CPU_UP_PREPARE
:
4658 for_each_cpu_worker_pool(pool
, cpu
) {
4659 if (pool
->nr_workers
)
4661 if (!create_worker(pool
))
4666 case CPU_DOWN_FAILED
:
4668 mutex_lock(&wq_pool_mutex
);
4670 for_each_pool(pool
, pi
) {
4671 mutex_lock(&pool
->attach_mutex
);
4673 if (pool
->cpu
== cpu
)
4674 rebind_workers(pool
);
4675 else if (pool
->cpu
< 0)
4676 restore_unbound_workers_cpumask(pool
, cpu
);
4678 mutex_unlock(&pool
->attach_mutex
);
4681 /* update NUMA affinity of unbound workqueues */
4682 list_for_each_entry(wq
, &workqueues
, list
)
4683 wq_update_unbound_numa(wq
, cpu
, true);
4685 mutex_unlock(&wq_pool_mutex
);
4692 * Workqueues should be brought down after normal priority CPU notifiers.
4693 * This will be registered as low priority CPU notifier.
4695 static int workqueue_cpu_down_callback(struct notifier_block
*nfb
,
4696 unsigned long action
,
4699 int cpu
= (unsigned long)hcpu
;
4700 struct work_struct unbind_work
;
4701 struct workqueue_struct
*wq
;
4703 switch (action
& ~CPU_TASKS_FROZEN
) {
4704 case CPU_DOWN_PREPARE
:
4705 /* unbinding per-cpu workers should happen on the local CPU */
4706 INIT_WORK_ONSTACK(&unbind_work
, wq_unbind_fn
);
4707 queue_work_on(cpu
, system_highpri_wq
, &unbind_work
);
4709 /* update NUMA affinity of unbound workqueues */
4710 mutex_lock(&wq_pool_mutex
);
4711 list_for_each_entry(wq
, &workqueues
, list
)
4712 wq_update_unbound_numa(wq
, cpu
, false);
4713 mutex_unlock(&wq_pool_mutex
);
4715 /* wait for per-cpu unbinding to finish */
4716 flush_work(&unbind_work
);
4717 destroy_work_on_stack(&unbind_work
);
4725 struct work_for_cpu
{
4726 struct work_struct work
;
4732 static void work_for_cpu_fn(struct work_struct
*work
)
4734 struct work_for_cpu
*wfc
= container_of(work
, struct work_for_cpu
, work
);
4736 wfc
->ret
= wfc
->fn(wfc
->arg
);
4740 * work_on_cpu - run a function in user context on a particular cpu
4741 * @cpu: the cpu to run on
4742 * @fn: the function to run
4743 * @arg: the function arg
4745 * It is up to the caller to ensure that the cpu doesn't go offline.
4746 * The caller must not hold any locks which would prevent @fn from completing.
4748 * Return: The value @fn returns.
4750 long work_on_cpu(int cpu
, long (*fn
)(void *), void *arg
)
4752 struct work_for_cpu wfc
= { .fn
= fn
, .arg
= arg
};
4754 INIT_WORK_ONSTACK(&wfc
.work
, work_for_cpu_fn
);
4755 schedule_work_on(cpu
, &wfc
.work
);
4756 flush_work(&wfc
.work
);
4757 destroy_work_on_stack(&wfc
.work
);
4760 EXPORT_SYMBOL_GPL(work_on_cpu
);
4761 #endif /* CONFIG_SMP */
4763 #ifdef CONFIG_FREEZER
4766 * freeze_workqueues_begin - begin freezing workqueues
4768 * Start freezing workqueues. After this function returns, all freezable
4769 * workqueues will queue new works to their delayed_works list instead of
4773 * Grabs and releases wq_pool_mutex, wq->mutex and pool->lock's.
4775 void freeze_workqueues_begin(void)
4777 struct workqueue_struct
*wq
;
4778 struct pool_workqueue
*pwq
;
4780 mutex_lock(&wq_pool_mutex
);
4782 WARN_ON_ONCE(workqueue_freezing
);
4783 workqueue_freezing
= true;
4785 list_for_each_entry(wq
, &workqueues
, list
) {
4786 mutex_lock(&wq
->mutex
);
4787 for_each_pwq(pwq
, wq
)
4788 pwq_adjust_max_active(pwq
);
4789 mutex_unlock(&wq
->mutex
);
4792 mutex_unlock(&wq_pool_mutex
);
4796 * freeze_workqueues_busy - are freezable workqueues still busy?
4798 * Check whether freezing is complete. This function must be called
4799 * between freeze_workqueues_begin() and thaw_workqueues().
4802 * Grabs and releases wq_pool_mutex.
4805 * %true if some freezable workqueues are still busy. %false if freezing
4808 bool freeze_workqueues_busy(void)
4811 struct workqueue_struct
*wq
;
4812 struct pool_workqueue
*pwq
;
4814 mutex_lock(&wq_pool_mutex
);
4816 WARN_ON_ONCE(!workqueue_freezing
);
4818 list_for_each_entry(wq
, &workqueues
, list
) {
4819 if (!(wq
->flags
& WQ_FREEZABLE
))
4822 * nr_active is monotonically decreasing. It's safe
4823 * to peek without lock.
4825 rcu_read_lock_sched();
4826 for_each_pwq(pwq
, wq
) {
4827 WARN_ON_ONCE(pwq
->nr_active
< 0);
4828 if (pwq
->nr_active
) {
4830 rcu_read_unlock_sched();
4834 rcu_read_unlock_sched();
4837 mutex_unlock(&wq_pool_mutex
);
4842 * thaw_workqueues - thaw workqueues
4844 * Thaw workqueues. Normal queueing is restored and all collected
4845 * frozen works are transferred to their respective pool worklists.
4848 * Grabs and releases wq_pool_mutex, wq->mutex and pool->lock's.
4850 void thaw_workqueues(void)
4852 struct workqueue_struct
*wq
;
4853 struct pool_workqueue
*pwq
;
4855 mutex_lock(&wq_pool_mutex
);
4857 if (!workqueue_freezing
)
4860 workqueue_freezing
= false;
4862 /* restore max_active and repopulate worklist */
4863 list_for_each_entry(wq
, &workqueues
, list
) {
4864 mutex_lock(&wq
->mutex
);
4865 for_each_pwq(pwq
, wq
)
4866 pwq_adjust_max_active(pwq
);
4867 mutex_unlock(&wq
->mutex
);
4871 mutex_unlock(&wq_pool_mutex
);
4873 #endif /* CONFIG_FREEZER */
4875 static void __init
wq_numa_init(void)
4880 if (num_possible_nodes() <= 1)
4883 if (wq_disable_numa
) {
4884 pr_info("workqueue: NUMA affinity support disabled\n");
4888 wq_update_unbound_numa_attrs_buf
= alloc_workqueue_attrs(GFP_KERNEL
);
4889 BUG_ON(!wq_update_unbound_numa_attrs_buf
);
4892 * We want masks of possible CPUs of each node which isn't readily
4893 * available. Build one from cpu_to_node() which should have been
4894 * fully initialized by now.
4896 tbl
= kzalloc(nr_node_ids
* sizeof(tbl
[0]), GFP_KERNEL
);
4900 BUG_ON(!zalloc_cpumask_var_node(&tbl
[node
], GFP_KERNEL
,
4901 node_online(node
) ? node
: NUMA_NO_NODE
));
4903 for_each_possible_cpu(cpu
) {
4904 node
= cpu_to_node(cpu
);
4905 if (WARN_ON(node
== NUMA_NO_NODE
)) {
4906 pr_warn("workqueue: NUMA node mapping not available for cpu%d, disabling NUMA support\n", cpu
);
4907 /* happens iff arch is bonkers, let's just proceed */
4910 cpumask_set_cpu(cpu
, tbl
[node
]);
4913 wq_numa_possible_cpumask
= tbl
;
4914 wq_numa_enabled
= true;
4917 static int __init
init_workqueues(void)
4919 int std_nice
[NR_STD_WORKER_POOLS
] = { 0, HIGHPRI_NICE_LEVEL
};
4922 WARN_ON(__alignof__(struct pool_workqueue
) < __alignof__(long long));
4924 pwq_cache
= KMEM_CACHE(pool_workqueue
, SLAB_PANIC
);
4926 cpu_notifier(workqueue_cpu_up_callback
, CPU_PRI_WORKQUEUE_UP
);
4927 hotcpu_notifier(workqueue_cpu_down_callback
, CPU_PRI_WORKQUEUE_DOWN
);
4931 /* initialize CPU pools */
4932 for_each_possible_cpu(cpu
) {
4933 struct worker_pool
*pool
;
4936 for_each_cpu_worker_pool(pool
, cpu
) {
4937 BUG_ON(init_worker_pool(pool
));
4939 cpumask_copy(pool
->attrs
->cpumask
, cpumask_of(cpu
));
4940 pool
->attrs
->nice
= std_nice
[i
++];
4941 pool
->node
= cpu_to_node(cpu
);
4944 mutex_lock(&wq_pool_mutex
);
4945 BUG_ON(worker_pool_assign_id(pool
));
4946 mutex_unlock(&wq_pool_mutex
);
4950 /* create the initial worker */
4951 for_each_online_cpu(cpu
) {
4952 struct worker_pool
*pool
;
4954 for_each_cpu_worker_pool(pool
, cpu
) {
4955 pool
->flags
&= ~POOL_DISASSOCIATED
;
4956 BUG_ON(!create_worker(pool
));
4960 /* create default unbound and ordered wq attrs */
4961 for (i
= 0; i
< NR_STD_WORKER_POOLS
; i
++) {
4962 struct workqueue_attrs
*attrs
;
4964 BUG_ON(!(attrs
= alloc_workqueue_attrs(GFP_KERNEL
)));
4965 attrs
->nice
= std_nice
[i
];
4966 unbound_std_wq_attrs
[i
] = attrs
;
4969 * An ordered wq should have only one pwq as ordering is
4970 * guaranteed by max_active which is enforced by pwqs.
4971 * Turn off NUMA so that dfl_pwq is used for all nodes.
4973 BUG_ON(!(attrs
= alloc_workqueue_attrs(GFP_KERNEL
)));
4974 attrs
->nice
= std_nice
[i
];
4975 attrs
->no_numa
= true;
4976 ordered_wq_attrs
[i
] = attrs
;
4979 system_wq
= alloc_workqueue("events", 0, 0);
4980 system_highpri_wq
= alloc_workqueue("events_highpri", WQ_HIGHPRI
, 0);
4981 system_long_wq
= alloc_workqueue("events_long", 0, 0);
4982 system_unbound_wq
= alloc_workqueue("events_unbound", WQ_UNBOUND
,
4983 WQ_UNBOUND_MAX_ACTIVE
);
4984 system_freezable_wq
= alloc_workqueue("events_freezable",
4986 system_power_efficient_wq
= alloc_workqueue("events_power_efficient",
4987 WQ_POWER_EFFICIENT
, 0);
4988 system_freezable_power_efficient_wq
= alloc_workqueue("events_freezable_power_efficient",
4989 WQ_FREEZABLE
| WQ_POWER_EFFICIENT
,
4991 BUG_ON(!system_wq
|| !system_highpri_wq
|| !system_long_wq
||
4992 !system_unbound_wq
|| !system_freezable_wq
||
4993 !system_power_efficient_wq
||
4994 !system_freezable_power_efficient_wq
);
4997 early_initcall(init_workqueues
);