workqueue: rename kernel/workqueue_sched.h to kernel/workqueue_internal.h
[linux-2.6-block.git] / kernel / workqueue.c
CommitLineData
1da177e4 1/*
c54fce6e 2 * kernel/workqueue.c - generic async execution with shared worker pool
1da177e4 3 *
c54fce6e 4 * Copyright (C) 2002 Ingo Molnar
1da177e4 5 *
c54fce6e
TH
6 * Derived from the taskqueue/keventd code by:
7 * David Woodhouse <dwmw2@infradead.org>
8 * Andrew Morton
9 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
10 * Theodore Ts'o <tytso@mit.edu>
1da177e4 11 *
c54fce6e 12 * Made to use alloc_percpu by Christoph Lameter.
1da177e4 13 *
c54fce6e
TH
14 * Copyright (C) 2010 SUSE Linux Products GmbH
15 * Copyright (C) 2010 Tejun Heo <tj@kernel.org>
89ada679 16 *
c54fce6e
TH
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 is one worker pool for each CPU and
20 * one extra for works which are better served by workers which are
21 * not bound to any specific CPU.
22 *
23 * Please read Documentation/workqueue.txt for details.
1da177e4
LT
24 */
25
9984de1a 26#include <linux/export.h>
1da177e4
LT
27#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/init.h>
30#include <linux/signal.h>
31#include <linux/completion.h>
32#include <linux/workqueue.h>
33#include <linux/slab.h>
34#include <linux/cpu.h>
35#include <linux/notifier.h>
36#include <linux/kthread.h>
1fa44eca 37#include <linux/hardirq.h>
46934023 38#include <linux/mempolicy.h>
341a5958 39#include <linux/freezer.h>
d5abe669
PZ
40#include <linux/kallsyms.h>
41#include <linux/debug_locks.h>
4e6045f1 42#include <linux/lockdep.h>
c34056a3 43#include <linux/idr.h>
42f8570f 44#include <linux/hashtable.h>
e22bee78 45
ea138446 46#include "workqueue_internal.h"
1da177e4 47
c8e55f36 48enum {
bc2ae0f5
TH
49 /*
50 * global_cwq flags
51 *
52 * A bound gcwq is either associated or disassociated with its CPU.
53 * While associated (!DISASSOCIATED), all workers are bound to the
54 * CPU and none has %WORKER_UNBOUND set and concurrency management
55 * is in effect.
56 *
57 * While DISASSOCIATED, the cpu may be offline and all workers have
58 * %WORKER_UNBOUND set and concurrency management disabled, and may
59 * be executing on any CPU. The gcwq behaves as an unbound one.
60 *
61 * Note that DISASSOCIATED can be flipped only while holding
b2eb83d1 62 * assoc_mutex of all pools on the gcwq to avoid changing binding
bc2ae0f5
TH
63 * state while create_worker() is in progress.
64 */
11ebea50
TH
65 GCWQ_DISASSOCIATED = 1 << 0, /* cpu can't serve workers */
66 GCWQ_FREEZING = 1 << 1, /* freeze in progress */
67
68 /* pool flags */
69 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
552a37e9 70 POOL_MANAGING_WORKERS = 1 << 1, /* managing workers */
db7bccf4 71
c8e55f36
TH
72 /* worker flags */
73 WORKER_STARTED = 1 << 0, /* started */
74 WORKER_DIE = 1 << 1, /* die die die */
75 WORKER_IDLE = 1 << 2, /* is idle */
e22bee78 76 WORKER_PREP = 1 << 3, /* preparing to run works */
fb0e7beb 77 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
f3421797 78 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
e22bee78 79
5f7dabfd 80 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_UNBOUND |
403c821d 81 WORKER_CPU_INTENSIVE,
db7bccf4 82
3270476a 83 NR_WORKER_POOLS = 2, /* # worker pools per gcwq */
4ce62e9e 84
c8e55f36 85 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
db7bccf4 86
e22bee78
TH
87 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
88 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
89
3233cdbd
TH
90 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
91 /* call for help after 10ms
92 (min two ticks) */
e22bee78
TH
93 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
94 CREATE_COOLDOWN = HZ, /* time to breath after fail */
e22bee78
TH
95
96 /*
97 * Rescue workers are used only on emergencies and shared by
98 * all cpus. Give -20.
99 */
100 RESCUER_NICE_LEVEL = -20,
3270476a 101 HIGHPRI_NICE_LEVEL = -20,
c8e55f36 102};
1da177e4
LT
103
104/*
4690c4ab
TH
105 * Structure fields follow one of the following exclusion rules.
106 *
e41e704b
TH
107 * I: Modifiable by initialization/destruction paths and read-only for
108 * everyone else.
4690c4ab 109 *
e22bee78
TH
110 * P: Preemption protected. Disabling preemption is enough and should
111 * only be modified and accessed from the local cpu.
112 *
8b03ae3c 113 * L: gcwq->lock protected. Access with gcwq->lock held.
4690c4ab 114 *
e22bee78
TH
115 * X: During normal operation, modification requires gcwq->lock and
116 * should be done only from local cpu. Either disabling preemption
117 * on local cpu or grabbing gcwq->lock is enough for read access.
f3421797 118 * If GCWQ_DISASSOCIATED is set, it's identical to L.
e22bee78 119 *
73f53c4a
TH
120 * F: wq->flush_mutex protected.
121 *
4690c4ab 122 * W: workqueue_lock protected.
1da177e4 123 */
1da177e4 124
8b03ae3c 125struct global_cwq;
bd7bdd43 126struct worker_pool;
1da177e4 127
e22bee78
TH
128/*
129 * The poor guys doing the actual heavy lifting. All on-duty workers
130 * are either serving the manager role, on idle list or on busy hash.
131 */
c34056a3 132struct worker {
c8e55f36
TH
133 /* on idle list while idle, on busy hash table while busy */
134 union {
135 struct list_head entry; /* L: while idle */
136 struct hlist_node hentry; /* L: while busy */
137 };
1da177e4 138
c34056a3 139 struct work_struct *current_work; /* L: work being processed */
a2c1c57b 140 work_func_t current_func; /* L: current_work's fn */
8cca0eea 141 struct cpu_workqueue_struct *current_cwq; /* L: current_work's cwq */
affee4b2 142 struct list_head scheduled; /* L: scheduled works */
c34056a3 143 struct task_struct *task; /* I: worker task */
bd7bdd43 144 struct worker_pool *pool; /* I: the associated pool */
e22bee78
TH
145 /* 64 bytes boundary on 64bit, 32 on 32bit */
146 unsigned long last_active; /* L: last active timestamp */
147 unsigned int flags; /* X: flags */
c34056a3 148 int id; /* I: worker id */
25511a47
TH
149
150 /* for rebinding worker to CPU */
25511a47 151 struct work_struct rebind_work; /* L: for busy worker */
111c225a
TH
152
153 /* used only by rescuers to point to the target workqueue */
154 struct workqueue_struct *rescue_wq; /* I: the workqueue to rescue */
c34056a3
TH
155};
156
bd7bdd43
TH
157struct worker_pool {
158 struct global_cwq *gcwq; /* I: the owning gcwq */
11ebea50 159 unsigned int flags; /* X: flags */
bd7bdd43
TH
160
161 struct list_head worklist; /* L: list of pending works */
162 int nr_workers; /* L: total number of workers */
ea1abd61
LJ
163
164 /* nr_idle includes the ones off idle_list for rebinding */
bd7bdd43
TH
165 int nr_idle; /* L: currently idle ones */
166
167 struct list_head idle_list; /* X: list of idle workers */
168 struct timer_list idle_timer; /* L: worker idle timeout */
169 struct timer_list mayday_timer; /* L: SOS timer for workers */
170
b2eb83d1 171 struct mutex assoc_mutex; /* protect GCWQ_DISASSOCIATED */
bd7bdd43 172 struct ida worker_ida; /* L: for worker IDs */
bd7bdd43
TH
173};
174
8b03ae3c 175/*
e22bee78
TH
176 * Global per-cpu workqueue. There's one and only one for each cpu
177 * and all works are queued and processed here regardless of their
178 * target workqueues.
8b03ae3c
TH
179 */
180struct global_cwq {
181 spinlock_t lock; /* the gcwq lock */
182 unsigned int cpu; /* I: the associated cpu */
db7bccf4 183 unsigned int flags; /* L: GCWQ_* flags */
c8e55f36 184
bd7bdd43 185 /* workers are chained either in busy_hash or pool idle_list */
42f8570f 186 DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER);
c8e55f36
TH
187 /* L: hash of busy workers */
188
330dad5b
JK
189 struct worker_pool pools[NR_WORKER_POOLS];
190 /* normal and highpri pools */
8b03ae3c
TH
191} ____cacheline_aligned_in_smp;
192
1da177e4 193/*
502ca9d8 194 * The per-CPU workqueue. The lower WORK_STRUCT_FLAG_BITS of
0f900049
TH
195 * work_struct->data are used for flags and thus cwqs need to be
196 * aligned at two's power of the number of flag bits.
1da177e4
LT
197 */
198struct cpu_workqueue_struct {
bd7bdd43 199 struct worker_pool *pool; /* I: the associated pool */
4690c4ab 200 struct workqueue_struct *wq; /* I: the owning workqueue */
73f53c4a
TH
201 int work_color; /* L: current color */
202 int flush_color; /* L: flushing color */
203 int nr_in_flight[WORK_NR_COLORS];
204 /* L: nr of in_flight works */
1e19ffc6 205 int nr_active; /* L: nr of active works */
a0a1a5fd 206 int max_active; /* L: max active works */
1e19ffc6 207 struct list_head delayed_works; /* L: delayed works */
0f900049 208};
1da177e4 209
73f53c4a
TH
210/*
211 * Structure used to wait for workqueue flush.
212 */
213struct wq_flusher {
214 struct list_head list; /* F: list of flushers */
215 int flush_color; /* F: flush color waiting for */
216 struct completion done; /* flush completion */
217};
218
f2e005aa
TH
219/*
220 * All cpumasks are assumed to be always set on UP and thus can't be
221 * used to determine whether there's something to be done.
222 */
223#ifdef CONFIG_SMP
224typedef cpumask_var_t mayday_mask_t;
225#define mayday_test_and_set_cpu(cpu, mask) \
226 cpumask_test_and_set_cpu((cpu), (mask))
227#define mayday_clear_cpu(cpu, mask) cpumask_clear_cpu((cpu), (mask))
228#define for_each_mayday_cpu(cpu, mask) for_each_cpu((cpu), (mask))
9c37547a 229#define alloc_mayday_mask(maskp, gfp) zalloc_cpumask_var((maskp), (gfp))
f2e005aa
TH
230#define free_mayday_mask(mask) free_cpumask_var((mask))
231#else
232typedef unsigned long mayday_mask_t;
233#define mayday_test_and_set_cpu(cpu, mask) test_and_set_bit(0, &(mask))
234#define mayday_clear_cpu(cpu, mask) clear_bit(0, &(mask))
235#define for_each_mayday_cpu(cpu, mask) if ((cpu) = 0, (mask))
236#define alloc_mayday_mask(maskp, gfp) true
237#define free_mayday_mask(mask) do { } while (0)
238#endif
1da177e4
LT
239
240/*
241 * The externally visible workqueue abstraction is an array of
242 * per-CPU workqueues:
243 */
244struct workqueue_struct {
9c5a2ba7 245 unsigned int flags; /* W: WQ_* flags */
bdbc5dd7
TH
246 union {
247 struct cpu_workqueue_struct __percpu *pcpu;
248 struct cpu_workqueue_struct *single;
249 unsigned long v;
250 } cpu_wq; /* I: cwq's */
4690c4ab 251 struct list_head list; /* W: list of all workqueues */
73f53c4a
TH
252
253 struct mutex flush_mutex; /* protects wq flushing */
254 int work_color; /* F: current work color */
255 int flush_color; /* F: current flush color */
256 atomic_t nr_cwqs_to_flush; /* flush in progress */
257 struct wq_flusher *first_flusher; /* F: first flusher */
258 struct list_head flusher_queue; /* F: flush waiters */
259 struct list_head flusher_overflow; /* F: flush overflow list */
260
f2e005aa 261 mayday_mask_t mayday_mask; /* cpus requesting rescue */
e22bee78
TH
262 struct worker *rescuer; /* I: rescue worker */
263
9c5a2ba7 264 int nr_drainers; /* W: drain in progress */
dcd989cb 265 int saved_max_active; /* W: saved cwq max_active */
4e6045f1 266#ifdef CONFIG_LOCKDEP
4690c4ab 267 struct lockdep_map lockdep_map;
4e6045f1 268#endif
b196be89 269 char name[]; /* I: workqueue name */
1da177e4
LT
270};
271
d320c038 272struct workqueue_struct *system_wq __read_mostly;
d320c038 273EXPORT_SYMBOL_GPL(system_wq);
044c782c 274struct workqueue_struct *system_highpri_wq __read_mostly;
1aabe902 275EXPORT_SYMBOL_GPL(system_highpri_wq);
044c782c 276struct workqueue_struct *system_long_wq __read_mostly;
d320c038 277EXPORT_SYMBOL_GPL(system_long_wq);
044c782c 278struct workqueue_struct *system_unbound_wq __read_mostly;
f3421797 279EXPORT_SYMBOL_GPL(system_unbound_wq);
044c782c 280struct workqueue_struct *system_freezable_wq __read_mostly;
24d51add 281EXPORT_SYMBOL_GPL(system_freezable_wq);
d320c038 282
97bd2347
TH
283#define CREATE_TRACE_POINTS
284#include <trace/events/workqueue.h>
285
4ce62e9e 286#define for_each_worker_pool(pool, gcwq) \
3270476a
TH
287 for ((pool) = &(gcwq)->pools[0]; \
288 (pool) < &(gcwq)->pools[NR_WORKER_POOLS]; (pool)++)
4ce62e9e 289
db7bccf4 290#define for_each_busy_worker(worker, i, pos, gcwq) \
42f8570f 291 hash_for_each(gcwq->busy_hash, i, pos, worker, hentry)
db7bccf4 292
f3421797
TH
293static inline int __next_gcwq_cpu(int cpu, const struct cpumask *mask,
294 unsigned int sw)
295{
296 if (cpu < nr_cpu_ids) {
297 if (sw & 1) {
298 cpu = cpumask_next(cpu, mask);
299 if (cpu < nr_cpu_ids)
300 return cpu;
301 }
302 if (sw & 2)
303 return WORK_CPU_UNBOUND;
304 }
305 return WORK_CPU_NONE;
306}
307
308static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
309 struct workqueue_struct *wq)
310{
311 return __next_gcwq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
312}
313
09884951
TH
314/*
315 * CPU iterators
316 *
317 * An extra gcwq is defined for an invalid cpu number
318 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
319 * specific CPU. The following iterators are similar to
320 * for_each_*_cpu() iterators but also considers the unbound gcwq.
321 *
322 * for_each_gcwq_cpu() : possible CPUs + WORK_CPU_UNBOUND
323 * for_each_online_gcwq_cpu() : online CPUs + WORK_CPU_UNBOUND
324 * for_each_cwq_cpu() : possible CPUs for bound workqueues,
325 * WORK_CPU_UNBOUND for unbound workqueues
326 */
f3421797
TH
327#define for_each_gcwq_cpu(cpu) \
328 for ((cpu) = __next_gcwq_cpu(-1, cpu_possible_mask, 3); \
329 (cpu) < WORK_CPU_NONE; \
330 (cpu) = __next_gcwq_cpu((cpu), cpu_possible_mask, 3))
331
332#define for_each_online_gcwq_cpu(cpu) \
333 for ((cpu) = __next_gcwq_cpu(-1, cpu_online_mask, 3); \
334 (cpu) < WORK_CPU_NONE; \
335 (cpu) = __next_gcwq_cpu((cpu), cpu_online_mask, 3))
336
337#define for_each_cwq_cpu(cpu, wq) \
338 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, (wq)); \
339 (cpu) < WORK_CPU_NONE; \
340 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, (wq)))
341
dc186ad7
TG
342#ifdef CONFIG_DEBUG_OBJECTS_WORK
343
344static struct debug_obj_descr work_debug_descr;
345
99777288
SG
346static void *work_debug_hint(void *addr)
347{
348 return ((struct work_struct *) addr)->func;
349}
350
dc186ad7
TG
351/*
352 * fixup_init is called when:
353 * - an active object is initialized
354 */
355static int work_fixup_init(void *addr, enum debug_obj_state state)
356{
357 struct work_struct *work = addr;
358
359 switch (state) {
360 case ODEBUG_STATE_ACTIVE:
361 cancel_work_sync(work);
362 debug_object_init(work, &work_debug_descr);
363 return 1;
364 default:
365 return 0;
366 }
367}
368
369/*
370 * fixup_activate is called when:
371 * - an active object is activated
372 * - an unknown object is activated (might be a statically initialized object)
373 */
374static int work_fixup_activate(void *addr, enum debug_obj_state state)
375{
376 struct work_struct *work = addr;
377
378 switch (state) {
379
380 case ODEBUG_STATE_NOTAVAILABLE:
381 /*
382 * This is not really a fixup. The work struct was
383 * statically initialized. We just make sure that it
384 * is tracked in the object tracker.
385 */
22df02bb 386 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
dc186ad7
TG
387 debug_object_init(work, &work_debug_descr);
388 debug_object_activate(work, &work_debug_descr);
389 return 0;
390 }
391 WARN_ON_ONCE(1);
392 return 0;
393
394 case ODEBUG_STATE_ACTIVE:
395 WARN_ON(1);
396
397 default:
398 return 0;
399 }
400}
401
402/*
403 * fixup_free is called when:
404 * - an active object is freed
405 */
406static int work_fixup_free(void *addr, enum debug_obj_state state)
407{
408 struct work_struct *work = addr;
409
410 switch (state) {
411 case ODEBUG_STATE_ACTIVE:
412 cancel_work_sync(work);
413 debug_object_free(work, &work_debug_descr);
414 return 1;
415 default:
416 return 0;
417 }
418}
419
420static struct debug_obj_descr work_debug_descr = {
421 .name = "work_struct",
99777288 422 .debug_hint = work_debug_hint,
dc186ad7
TG
423 .fixup_init = work_fixup_init,
424 .fixup_activate = work_fixup_activate,
425 .fixup_free = work_fixup_free,
426};
427
428static inline void debug_work_activate(struct work_struct *work)
429{
430 debug_object_activate(work, &work_debug_descr);
431}
432
433static inline void debug_work_deactivate(struct work_struct *work)
434{
435 debug_object_deactivate(work, &work_debug_descr);
436}
437
438void __init_work(struct work_struct *work, int onstack)
439{
440 if (onstack)
441 debug_object_init_on_stack(work, &work_debug_descr);
442 else
443 debug_object_init(work, &work_debug_descr);
444}
445EXPORT_SYMBOL_GPL(__init_work);
446
447void destroy_work_on_stack(struct work_struct *work)
448{
449 debug_object_free(work, &work_debug_descr);
450}
451EXPORT_SYMBOL_GPL(destroy_work_on_stack);
452
453#else
454static inline void debug_work_activate(struct work_struct *work) { }
455static inline void debug_work_deactivate(struct work_struct *work) { }
456#endif
457
95402b38
GS
458/* Serializes the accesses to the list of workqueues. */
459static DEFINE_SPINLOCK(workqueue_lock);
1da177e4 460static LIST_HEAD(workqueues);
a0a1a5fd 461static bool workqueue_freezing; /* W: have wqs started freezing? */
c34056a3 462
e22bee78
TH
463/*
464 * The almighty global cpu workqueues. nr_running is the only field
465 * which is expected to be used frequently by other cpus via
466 * try_to_wake_up(). Put it in a separate cacheline.
467 */
8b03ae3c 468static DEFINE_PER_CPU(struct global_cwq, global_cwq);
4ce62e9e 469static DEFINE_PER_CPU_SHARED_ALIGNED(atomic_t, pool_nr_running[NR_WORKER_POOLS]);
8b03ae3c 470
f3421797
TH
471/*
472 * Global cpu workqueue and nr_running counter for unbound gcwq. The
473 * gcwq is always online, has GCWQ_DISASSOCIATED set, and all its
474 * workers have WORKER_UNBOUND set.
475 */
476static struct global_cwq unbound_global_cwq;
4ce62e9e
TH
477static atomic_t unbound_pool_nr_running[NR_WORKER_POOLS] = {
478 [0 ... NR_WORKER_POOLS - 1] = ATOMIC_INIT(0), /* always 0 */
479};
f3421797 480
c34056a3 481static int worker_thread(void *__worker);
1da177e4 482
3270476a
TH
483static int worker_pool_pri(struct worker_pool *pool)
484{
485 return pool - pool->gcwq->pools;
486}
487
8b03ae3c
TH
488static struct global_cwq *get_gcwq(unsigned int cpu)
489{
f3421797
TH
490 if (cpu != WORK_CPU_UNBOUND)
491 return &per_cpu(global_cwq, cpu);
492 else
493 return &unbound_global_cwq;
8b03ae3c
TH
494}
495
63d95a91 496static atomic_t *get_pool_nr_running(struct worker_pool *pool)
e22bee78 497{
63d95a91 498 int cpu = pool->gcwq->cpu;
3270476a 499 int idx = worker_pool_pri(pool);
63d95a91 500
f3421797 501 if (cpu != WORK_CPU_UNBOUND)
4ce62e9e 502 return &per_cpu(pool_nr_running, cpu)[idx];
f3421797 503 else
4ce62e9e 504 return &unbound_pool_nr_running[idx];
e22bee78
TH
505}
506
1537663f
TH
507static struct cpu_workqueue_struct *get_cwq(unsigned int cpu,
508 struct workqueue_struct *wq)
b1f4ec17 509{
f3421797 510 if (!(wq->flags & WQ_UNBOUND)) {
e06ffa1e 511 if (likely(cpu < nr_cpu_ids))
f3421797 512 return per_cpu_ptr(wq->cpu_wq.pcpu, cpu);
f3421797
TH
513 } else if (likely(cpu == WORK_CPU_UNBOUND))
514 return wq->cpu_wq.single;
515 return NULL;
b1f4ec17
ON
516}
517
73f53c4a
TH
518static unsigned int work_color_to_flags(int color)
519{
520 return color << WORK_STRUCT_COLOR_SHIFT;
521}
522
523static int get_work_color(struct work_struct *work)
524{
525 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
526 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
527}
528
529static int work_next_color(int color)
530{
531 return (color + 1) % WORK_NR_COLORS;
532}
1da177e4 533
14441960 534/*
b5490077
TH
535 * While queued, %WORK_STRUCT_CWQ is set and non flag bits of a work's data
536 * contain the pointer to the queued cwq. Once execution starts, the flag
537 * is cleared and the high bits contain OFFQ flags and CPU number.
7a22ad75 538 *
bbb68dfa
TH
539 * set_work_cwq(), set_work_cpu_and_clear_pending(), mark_work_canceling()
540 * and clear_work_data() can be used to set the cwq, cpu or clear
541 * work->data. These functions should only be called while the work is
542 * owned - ie. while the PENDING bit is set.
7a22ad75 543 *
bbb68dfa
TH
544 * get_work_[g]cwq() can be used to obtain the gcwq or cwq corresponding to
545 * a work. gcwq is available once the work has been queued anywhere after
546 * initialization until it is sync canceled. cwq is available only while
547 * the work item is queued.
7a22ad75 548 *
bbb68dfa
TH
549 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
550 * canceled. While being canceled, a work item may have its PENDING set
551 * but stay off timer and worklist for arbitrarily long and nobody should
552 * try to steal the PENDING bit.
14441960 553 */
7a22ad75
TH
554static inline void set_work_data(struct work_struct *work, unsigned long data,
555 unsigned long flags)
365970a1 556{
4594bf15 557 BUG_ON(!work_pending(work));
7a22ad75
TH
558 atomic_long_set(&work->data, data | flags | work_static(work));
559}
365970a1 560
7a22ad75
TH
561static void set_work_cwq(struct work_struct *work,
562 struct cpu_workqueue_struct *cwq,
563 unsigned long extra_flags)
564{
565 set_work_data(work, (unsigned long)cwq,
e120153d 566 WORK_STRUCT_PENDING | WORK_STRUCT_CWQ | extra_flags);
365970a1
DH
567}
568
8930caba
TH
569static void set_work_cpu_and_clear_pending(struct work_struct *work,
570 unsigned int cpu)
7a22ad75 571{
23657bb1
TH
572 /*
573 * The following wmb is paired with the implied mb in
574 * test_and_set_bit(PENDING) and ensures all updates to @work made
575 * here are visible to and precede any updates by the next PENDING
576 * owner.
577 */
578 smp_wmb();
b5490077 579 set_work_data(work, (unsigned long)cpu << WORK_OFFQ_CPU_SHIFT, 0);
7a22ad75 580}
f756d5e2 581
7a22ad75 582static void clear_work_data(struct work_struct *work)
1da177e4 583{
23657bb1 584 smp_wmb(); /* see set_work_cpu_and_clear_pending() */
7a22ad75 585 set_work_data(work, WORK_STRUCT_NO_CPU, 0);
1da177e4
LT
586}
587
7a22ad75 588static struct cpu_workqueue_struct *get_work_cwq(struct work_struct *work)
b1f4ec17 589{
e120153d 590 unsigned long data = atomic_long_read(&work->data);
7a22ad75 591
e120153d
TH
592 if (data & WORK_STRUCT_CWQ)
593 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
594 else
595 return NULL;
4d707b9f
ON
596}
597
7a22ad75 598static struct global_cwq *get_work_gcwq(struct work_struct *work)
365970a1 599{
e120153d 600 unsigned long data = atomic_long_read(&work->data);
7a22ad75
TH
601 unsigned int cpu;
602
e120153d
TH
603 if (data & WORK_STRUCT_CWQ)
604 return ((struct cpu_workqueue_struct *)
bd7bdd43 605 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->gcwq;
7a22ad75 606
b5490077 607 cpu = data >> WORK_OFFQ_CPU_SHIFT;
bdbc5dd7 608 if (cpu == WORK_CPU_NONE)
7a22ad75
TH
609 return NULL;
610
f3421797 611 BUG_ON(cpu >= nr_cpu_ids && cpu != WORK_CPU_UNBOUND);
7a22ad75 612 return get_gcwq(cpu);
b1f4ec17
ON
613}
614
bbb68dfa
TH
615static void mark_work_canceling(struct work_struct *work)
616{
617 struct global_cwq *gcwq = get_work_gcwq(work);
618 unsigned long cpu = gcwq ? gcwq->cpu : WORK_CPU_NONE;
619
620 set_work_data(work, (cpu << WORK_OFFQ_CPU_SHIFT) | WORK_OFFQ_CANCELING,
621 WORK_STRUCT_PENDING);
622}
623
624static bool work_is_canceling(struct work_struct *work)
625{
626 unsigned long data = atomic_long_read(&work->data);
627
628 return !(data & WORK_STRUCT_CWQ) && (data & WORK_OFFQ_CANCELING);
629}
630
e22bee78 631/*
3270476a
TH
632 * Policy functions. These define the policies on how the global worker
633 * pools are managed. Unless noted otherwise, these functions assume that
634 * they're being called with gcwq->lock held.
e22bee78
TH
635 */
636
63d95a91 637static bool __need_more_worker(struct worker_pool *pool)
a848e3b6 638{
3270476a 639 return !atomic_read(get_pool_nr_running(pool));
a848e3b6
ON
640}
641
4594bf15 642/*
e22bee78
TH
643 * Need to wake up a worker? Called from anything but currently
644 * running workers.
974271c4
TH
645 *
646 * Note that, because unbound workers never contribute to nr_running, this
647 * function will always return %true for unbound gcwq as long as the
648 * worklist isn't empty.
4594bf15 649 */
63d95a91 650static bool need_more_worker(struct worker_pool *pool)
365970a1 651{
63d95a91 652 return !list_empty(&pool->worklist) && __need_more_worker(pool);
e22bee78 653}
4594bf15 654
e22bee78 655/* Can I start working? Called from busy but !running workers. */
63d95a91 656static bool may_start_working(struct worker_pool *pool)
e22bee78 657{
63d95a91 658 return pool->nr_idle;
e22bee78
TH
659}
660
661/* Do I need to keep working? Called from currently running workers. */
63d95a91 662static bool keep_working(struct worker_pool *pool)
e22bee78 663{
63d95a91 664 atomic_t *nr_running = get_pool_nr_running(pool);
e22bee78 665
3270476a 666 return !list_empty(&pool->worklist) && atomic_read(nr_running) <= 1;
e22bee78
TH
667}
668
669/* Do we need a new worker? Called from manager. */
63d95a91 670static bool need_to_create_worker(struct worker_pool *pool)
e22bee78 671{
63d95a91 672 return need_more_worker(pool) && !may_start_working(pool);
e22bee78 673}
365970a1 674
e22bee78 675/* Do I need to be the manager? */
63d95a91 676static bool need_to_manage_workers(struct worker_pool *pool)
e22bee78 677{
63d95a91 678 return need_to_create_worker(pool) ||
11ebea50 679 (pool->flags & POOL_MANAGE_WORKERS);
e22bee78
TH
680}
681
682/* Do we have too many workers and should some go away? */
63d95a91 683static bool too_many_workers(struct worker_pool *pool)
e22bee78 684{
552a37e9 685 bool managing = pool->flags & POOL_MANAGING_WORKERS;
63d95a91
TH
686 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
687 int nr_busy = pool->nr_workers - nr_idle;
e22bee78 688
ea1abd61
LJ
689 /*
690 * nr_idle and idle_list may disagree if idle rebinding is in
691 * progress. Never return %true if idle_list is empty.
692 */
693 if (list_empty(&pool->idle_list))
694 return false;
695
e22bee78 696 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
365970a1
DH
697}
698
4d707b9f 699/*
e22bee78
TH
700 * Wake up functions.
701 */
702
7e11629d 703/* Return the first worker. Safe with preemption disabled */
63d95a91 704static struct worker *first_worker(struct worker_pool *pool)
7e11629d 705{
63d95a91 706 if (unlikely(list_empty(&pool->idle_list)))
7e11629d
TH
707 return NULL;
708
63d95a91 709 return list_first_entry(&pool->idle_list, struct worker, entry);
7e11629d
TH
710}
711
712/**
713 * wake_up_worker - wake up an idle worker
63d95a91 714 * @pool: worker pool to wake worker from
7e11629d 715 *
63d95a91 716 * Wake up the first idle worker of @pool.
7e11629d
TH
717 *
718 * CONTEXT:
719 * spin_lock_irq(gcwq->lock).
720 */
63d95a91 721static void wake_up_worker(struct worker_pool *pool)
7e11629d 722{
63d95a91 723 struct worker *worker = first_worker(pool);
7e11629d
TH
724
725 if (likely(worker))
726 wake_up_process(worker->task);
727}
728
d302f017 729/**
e22bee78
TH
730 * wq_worker_waking_up - a worker is waking up
731 * @task: task waking up
732 * @cpu: CPU @task is waking up to
733 *
734 * This function is called during try_to_wake_up() when a worker is
735 * being awoken.
736 *
737 * CONTEXT:
738 * spin_lock_irq(rq->lock)
739 */
740void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
741{
742 struct worker *worker = kthread_data(task);
743
36576000
JK
744 if (!(worker->flags & WORKER_NOT_RUNNING)) {
745 WARN_ON_ONCE(worker->pool->gcwq->cpu != cpu);
63d95a91 746 atomic_inc(get_pool_nr_running(worker->pool));
36576000 747 }
e22bee78
TH
748}
749
750/**
751 * wq_worker_sleeping - a worker is going to sleep
752 * @task: task going to sleep
753 * @cpu: CPU in question, must be the current CPU number
754 *
755 * This function is called during schedule() when a busy worker is
756 * going to sleep. Worker on the same cpu can be woken up by
757 * returning pointer to its task.
758 *
759 * CONTEXT:
760 * spin_lock_irq(rq->lock)
761 *
762 * RETURNS:
763 * Worker task on @cpu to wake up, %NULL if none.
764 */
765struct task_struct *wq_worker_sleeping(struct task_struct *task,
766 unsigned int cpu)
767{
768 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
111c225a
TH
769 struct worker_pool *pool;
770 atomic_t *nr_running;
e22bee78 771
111c225a
TH
772 /*
773 * Rescuers, which may not have all the fields set up like normal
774 * workers, also reach here, let's not access anything before
775 * checking NOT_RUNNING.
776 */
2d64672e 777 if (worker->flags & WORKER_NOT_RUNNING)
e22bee78
TH
778 return NULL;
779
111c225a
TH
780 pool = worker->pool;
781 nr_running = get_pool_nr_running(pool);
782
e22bee78
TH
783 /* this can only happen on the local cpu */
784 BUG_ON(cpu != raw_smp_processor_id());
785
786 /*
787 * The counterpart of the following dec_and_test, implied mb,
788 * worklist not empty test sequence is in insert_work().
789 * Please read comment there.
790 *
628c78e7
TH
791 * NOT_RUNNING is clear. This means that we're bound to and
792 * running on the local cpu w/ rq lock held and preemption
793 * disabled, which in turn means that none else could be
794 * manipulating idle_list, so dereferencing idle_list without gcwq
795 * lock is safe.
e22bee78 796 */
bd7bdd43 797 if (atomic_dec_and_test(nr_running) && !list_empty(&pool->worklist))
63d95a91 798 to_wakeup = first_worker(pool);
e22bee78
TH
799 return to_wakeup ? to_wakeup->task : NULL;
800}
801
802/**
803 * worker_set_flags - set worker flags and adjust nr_running accordingly
cb444766 804 * @worker: self
d302f017
TH
805 * @flags: flags to set
806 * @wakeup: wakeup an idle worker if necessary
807 *
e22bee78
TH
808 * Set @flags in @worker->flags and adjust nr_running accordingly. If
809 * nr_running becomes zero and @wakeup is %true, an idle worker is
810 * woken up.
d302f017 811 *
cb444766
TH
812 * CONTEXT:
813 * spin_lock_irq(gcwq->lock)
d302f017
TH
814 */
815static inline void worker_set_flags(struct worker *worker, unsigned int flags,
816 bool wakeup)
817{
bd7bdd43 818 struct worker_pool *pool = worker->pool;
e22bee78 819
cb444766
TH
820 WARN_ON_ONCE(worker->task != current);
821
e22bee78
TH
822 /*
823 * If transitioning into NOT_RUNNING, adjust nr_running and
824 * wake up an idle worker as necessary if requested by
825 * @wakeup.
826 */
827 if ((flags & WORKER_NOT_RUNNING) &&
828 !(worker->flags & WORKER_NOT_RUNNING)) {
63d95a91 829 atomic_t *nr_running = get_pool_nr_running(pool);
e22bee78
TH
830
831 if (wakeup) {
832 if (atomic_dec_and_test(nr_running) &&
bd7bdd43 833 !list_empty(&pool->worklist))
63d95a91 834 wake_up_worker(pool);
e22bee78
TH
835 } else
836 atomic_dec(nr_running);
837 }
838
d302f017
TH
839 worker->flags |= flags;
840}
841
842/**
e22bee78 843 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
cb444766 844 * @worker: self
d302f017
TH
845 * @flags: flags to clear
846 *
e22bee78 847 * Clear @flags in @worker->flags and adjust nr_running accordingly.
d302f017 848 *
cb444766
TH
849 * CONTEXT:
850 * spin_lock_irq(gcwq->lock)
d302f017
TH
851 */
852static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
853{
63d95a91 854 struct worker_pool *pool = worker->pool;
e22bee78
TH
855 unsigned int oflags = worker->flags;
856
cb444766
TH
857 WARN_ON_ONCE(worker->task != current);
858
d302f017 859 worker->flags &= ~flags;
e22bee78 860
42c025f3
TH
861 /*
862 * If transitioning out of NOT_RUNNING, increment nr_running. Note
863 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
864 * of multiple flags, not a single flag.
865 */
e22bee78
TH
866 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
867 if (!(worker->flags & WORKER_NOT_RUNNING))
63d95a91 868 atomic_inc(get_pool_nr_running(pool));
d302f017
TH
869}
870
8cca0eea
TH
871/**
872 * find_worker_executing_work - find worker which is executing a work
873 * @gcwq: gcwq of interest
874 * @work: work to find worker for
875 *
a2c1c57b
TH
876 * Find a worker which is executing @work on @gcwq by searching
877 * @gcwq->busy_hash which is keyed by the address of @work. For a worker
878 * to match, its current execution should match the address of @work and
879 * its work function. This is to avoid unwanted dependency between
880 * unrelated work executions through a work item being recycled while still
881 * being executed.
882 *
883 * This is a bit tricky. A work item may be freed once its execution
884 * starts and nothing prevents the freed area from being recycled for
885 * another work item. If the same work item address ends up being reused
886 * before the original execution finishes, workqueue will identify the
887 * recycled work item as currently executing and make it wait until the
888 * current execution finishes, introducing an unwanted dependency.
889 *
890 * This function checks the work item address, work function and workqueue
891 * to avoid false positives. Note that this isn't complete as one may
892 * construct a work function which can introduce dependency onto itself
893 * through a recycled work item. Well, if somebody wants to shoot oneself
894 * in the foot that badly, there's only so much we can do, and if such
895 * deadlock actually occurs, it should be easy to locate the culprit work
896 * function.
8cca0eea
TH
897 *
898 * CONTEXT:
899 * spin_lock_irq(gcwq->lock).
900 *
901 * RETURNS:
902 * Pointer to worker which is executing @work if found, NULL
903 * otherwise.
4d707b9f 904 */
8cca0eea
TH
905static struct worker *find_worker_executing_work(struct global_cwq *gcwq,
906 struct work_struct *work)
4d707b9f 907{
42f8570f
SL
908 struct worker *worker;
909 struct hlist_node *tmp;
910
a2c1c57b
TH
911 hash_for_each_possible(gcwq->busy_hash, worker, tmp, hentry,
912 (unsigned long)work)
913 if (worker->current_work == work &&
914 worker->current_func == work->func)
42f8570f
SL
915 return worker;
916
917 return NULL;
4d707b9f
ON
918}
919
bf4ede01
TH
920/**
921 * move_linked_works - move linked works to a list
922 * @work: start of series of works to be scheduled
923 * @head: target list to append @work to
924 * @nextp: out paramter for nested worklist walking
925 *
926 * Schedule linked works starting from @work to @head. Work series to
927 * be scheduled starts at @work and includes any consecutive work with
928 * WORK_STRUCT_LINKED set in its predecessor.
929 *
930 * If @nextp is not NULL, it's updated to point to the next work of
931 * the last scheduled work. This allows move_linked_works() to be
932 * nested inside outer list_for_each_entry_safe().
933 *
934 * CONTEXT:
935 * spin_lock_irq(gcwq->lock).
936 */
937static void move_linked_works(struct work_struct *work, struct list_head *head,
938 struct work_struct **nextp)
939{
940 struct work_struct *n;
941
942 /*
943 * Linked worklist will always end before the end of the list,
944 * use NULL for list head.
945 */
946 list_for_each_entry_safe_from(work, n, NULL, entry) {
947 list_move_tail(&work->entry, head);
948 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
949 break;
950 }
951
952 /*
953 * If we're already inside safe list traversal and have moved
954 * multiple works to the scheduled queue, the next position
955 * needs to be updated.
956 */
957 if (nextp)
958 *nextp = n;
959}
960
3aa62497 961static void cwq_activate_delayed_work(struct work_struct *work)
bf4ede01 962{
3aa62497 963 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
bf4ede01
TH
964
965 trace_workqueue_activate_work(work);
966 move_linked_works(work, &cwq->pool->worklist, NULL);
967 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
968 cwq->nr_active++;
969}
970
3aa62497
LJ
971static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
972{
973 struct work_struct *work = list_first_entry(&cwq->delayed_works,
974 struct work_struct, entry);
975
976 cwq_activate_delayed_work(work);
977}
978
bf4ede01
TH
979/**
980 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
981 * @cwq: cwq of interest
982 * @color: color of work which left the queue
bf4ede01
TH
983 *
984 * A work either has completed or is removed from pending queue,
985 * decrement nr_in_flight of its cwq and handle workqueue flushing.
986 *
987 * CONTEXT:
988 * spin_lock_irq(gcwq->lock).
989 */
b3f9f405 990static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color)
bf4ede01
TH
991{
992 /* ignore uncolored works */
993 if (color == WORK_NO_COLOR)
994 return;
995
996 cwq->nr_in_flight[color]--;
997
b3f9f405
LJ
998 cwq->nr_active--;
999 if (!list_empty(&cwq->delayed_works)) {
1000 /* one down, submit a delayed one */
1001 if (cwq->nr_active < cwq->max_active)
1002 cwq_activate_first_delayed(cwq);
bf4ede01
TH
1003 }
1004
1005 /* is flush in progress and are we at the flushing tip? */
1006 if (likely(cwq->flush_color != color))
1007 return;
1008
1009 /* are there still in-flight works? */
1010 if (cwq->nr_in_flight[color])
1011 return;
1012
1013 /* this cwq is done, clear flush_color */
1014 cwq->flush_color = -1;
1015
1016 /*
1017 * If this was the last cwq, wake up the first flusher. It
1018 * will handle the rest.
1019 */
1020 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
1021 complete(&cwq->wq->first_flusher->done);
1022}
1023
36e227d2 1024/**
bbb68dfa 1025 * try_to_grab_pending - steal work item from worklist and disable irq
36e227d2
TH
1026 * @work: work item to steal
1027 * @is_dwork: @work is a delayed_work
bbb68dfa 1028 * @flags: place to store irq state
36e227d2
TH
1029 *
1030 * Try to grab PENDING bit of @work. This function can handle @work in any
1031 * stable state - idle, on timer or on worklist. Return values are
1032 *
1033 * 1 if @work was pending and we successfully stole PENDING
1034 * 0 if @work was idle and we claimed PENDING
1035 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
bbb68dfa
TH
1036 * -ENOENT if someone else is canceling @work, this state may persist
1037 * for arbitrarily long
36e227d2 1038 *
bbb68dfa 1039 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
e0aecdd8
TH
1040 * interrupted while holding PENDING and @work off queue, irq must be
1041 * disabled on entry. This, combined with delayed_work->timer being
1042 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
bbb68dfa
TH
1043 *
1044 * On successful return, >= 0, irq is disabled and the caller is
1045 * responsible for releasing it using local_irq_restore(*@flags).
1046 *
e0aecdd8 1047 * This function is safe to call from any context including IRQ handler.
bf4ede01 1048 */
bbb68dfa
TH
1049static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1050 unsigned long *flags)
bf4ede01
TH
1051{
1052 struct global_cwq *gcwq;
bf4ede01 1053
bbb68dfa
TH
1054 local_irq_save(*flags);
1055
36e227d2
TH
1056 /* try to steal the timer if it exists */
1057 if (is_dwork) {
1058 struct delayed_work *dwork = to_delayed_work(work);
1059
e0aecdd8
TH
1060 /*
1061 * dwork->timer is irqsafe. If del_timer() fails, it's
1062 * guaranteed that the timer is not queued anywhere and not
1063 * running on the local CPU.
1064 */
36e227d2
TH
1065 if (likely(del_timer(&dwork->timer)))
1066 return 1;
1067 }
1068
1069 /* try to claim PENDING the normal way */
bf4ede01
TH
1070 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1071 return 0;
1072
1073 /*
1074 * The queueing is in progress, or it is already queued. Try to
1075 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1076 */
1077 gcwq = get_work_gcwq(work);
1078 if (!gcwq)
bbb68dfa 1079 goto fail;
bf4ede01 1080
bbb68dfa 1081 spin_lock(&gcwq->lock);
bf4ede01
TH
1082 if (!list_empty(&work->entry)) {
1083 /*
1084 * This work is queued, but perhaps we locked the wrong gcwq.
1085 * In that case we must see the new value after rmb(), see
1086 * insert_work()->wmb().
1087 */
1088 smp_rmb();
1089 if (gcwq == get_work_gcwq(work)) {
1090 debug_work_deactivate(work);
3aa62497
LJ
1091
1092 /*
1093 * A delayed work item cannot be grabbed directly
1094 * because it might have linked NO_COLOR work items
1095 * which, if left on the delayed_list, will confuse
1096 * cwq->nr_active management later on and cause
1097 * stall. Make sure the work item is activated
1098 * before grabbing.
1099 */
1100 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
1101 cwq_activate_delayed_work(work);
1102
bf4ede01
TH
1103 list_del_init(&work->entry);
1104 cwq_dec_nr_in_flight(get_work_cwq(work),
b3f9f405 1105 get_work_color(work));
36e227d2 1106
bbb68dfa 1107 spin_unlock(&gcwq->lock);
36e227d2 1108 return 1;
bf4ede01
TH
1109 }
1110 }
bbb68dfa
TH
1111 spin_unlock(&gcwq->lock);
1112fail:
1113 local_irq_restore(*flags);
1114 if (work_is_canceling(work))
1115 return -ENOENT;
1116 cpu_relax();
36e227d2 1117 return -EAGAIN;
bf4ede01
TH
1118}
1119
4690c4ab 1120/**
7e11629d 1121 * insert_work - insert a work into gcwq
4690c4ab
TH
1122 * @cwq: cwq @work belongs to
1123 * @work: work to insert
1124 * @head: insertion point
1125 * @extra_flags: extra WORK_STRUCT_* flags to set
1126 *
7e11629d
TH
1127 * Insert @work which belongs to @cwq into @gcwq after @head.
1128 * @extra_flags is or'd to work_struct flags.
4690c4ab
TH
1129 *
1130 * CONTEXT:
8b03ae3c 1131 * spin_lock_irq(gcwq->lock).
4690c4ab 1132 */
b89deed3 1133static void insert_work(struct cpu_workqueue_struct *cwq,
4690c4ab
TH
1134 struct work_struct *work, struct list_head *head,
1135 unsigned int extra_flags)
b89deed3 1136{
63d95a91 1137 struct worker_pool *pool = cwq->pool;
e22bee78 1138
4690c4ab 1139 /* we own @work, set data and link */
7a22ad75 1140 set_work_cwq(work, cwq, extra_flags);
e1d8aa9f 1141
6e84d644
ON
1142 /*
1143 * Ensure that we get the right work->data if we see the
1144 * result of list_add() below, see try_to_grab_pending().
1145 */
1146 smp_wmb();
4690c4ab 1147
1a4d9b0a 1148 list_add_tail(&work->entry, head);
e22bee78
TH
1149
1150 /*
1151 * Ensure either worker_sched_deactivated() sees the above
1152 * list_add_tail() or we see zero nr_running to avoid workers
1153 * lying around lazily while there are works to be processed.
1154 */
1155 smp_mb();
1156
63d95a91
TH
1157 if (__need_more_worker(pool))
1158 wake_up_worker(pool);
b89deed3
ON
1159}
1160
c8efcc25
TH
1161/*
1162 * Test whether @work is being queued from another work executing on the
1163 * same workqueue. This is rather expensive and should only be used from
1164 * cold paths.
1165 */
1166static bool is_chained_work(struct workqueue_struct *wq)
1167{
1168 unsigned long flags;
1169 unsigned int cpu;
1170
1171 for_each_gcwq_cpu(cpu) {
1172 struct global_cwq *gcwq = get_gcwq(cpu);
1173 struct worker *worker;
1174 struct hlist_node *pos;
1175 int i;
1176
1177 spin_lock_irqsave(&gcwq->lock, flags);
1178 for_each_busy_worker(worker, i, pos, gcwq) {
1179 if (worker->task != current)
1180 continue;
1181 spin_unlock_irqrestore(&gcwq->lock, flags);
1182 /*
1183 * I'm @worker, no locking necessary. See if @work
1184 * is headed to the same workqueue.
1185 */
1186 return worker->current_cwq->wq == wq;
1187 }
1188 spin_unlock_irqrestore(&gcwq->lock, flags);
1189 }
1190 return false;
1191}
1192
4690c4ab 1193static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
1da177e4
LT
1194 struct work_struct *work)
1195{
502ca9d8
TH
1196 struct global_cwq *gcwq;
1197 struct cpu_workqueue_struct *cwq;
1e19ffc6 1198 struct list_head *worklist;
8a2e8e5d 1199 unsigned int work_flags;
b75cac93 1200 unsigned int req_cpu = cpu;
8930caba
TH
1201
1202 /*
1203 * While a work item is PENDING && off queue, a task trying to
1204 * steal the PENDING will busy-loop waiting for it to either get
1205 * queued or lose PENDING. Grabbing PENDING and queueing should
1206 * happen with IRQ disabled.
1207 */
1208 WARN_ON_ONCE(!irqs_disabled());
1da177e4 1209
dc186ad7 1210 debug_work_activate(work);
1e19ffc6 1211
c8efcc25 1212 /* if dying, only works from the same workqueue are allowed */
9c5a2ba7 1213 if (unlikely(wq->flags & WQ_DRAINING) &&
c8efcc25 1214 WARN_ON_ONCE(!is_chained_work(wq)))
e41e704b
TH
1215 return;
1216
c7fc77f7
TH
1217 /* determine gcwq to use */
1218 if (!(wq->flags & WQ_UNBOUND)) {
18aa9eff
TH
1219 struct global_cwq *last_gcwq;
1220
57469821 1221 if (cpu == WORK_CPU_UNBOUND)
c7fc77f7
TH
1222 cpu = raw_smp_processor_id();
1223
18aa9eff 1224 /*
dbf2576e
TH
1225 * It's multi cpu. If @work was previously on a different
1226 * cpu, it might still be running there, in which case the
1227 * work needs to be queued on that cpu to guarantee
1228 * non-reentrancy.
18aa9eff 1229 */
502ca9d8 1230 gcwq = get_gcwq(cpu);
dbf2576e
TH
1231 last_gcwq = get_work_gcwq(work);
1232
1233 if (last_gcwq && last_gcwq != gcwq) {
18aa9eff
TH
1234 struct worker *worker;
1235
8930caba 1236 spin_lock(&last_gcwq->lock);
18aa9eff
TH
1237
1238 worker = find_worker_executing_work(last_gcwq, work);
1239
1240 if (worker && worker->current_cwq->wq == wq)
1241 gcwq = last_gcwq;
1242 else {
1243 /* meh... not running there, queue here */
8930caba
TH
1244 spin_unlock(&last_gcwq->lock);
1245 spin_lock(&gcwq->lock);
18aa9eff 1246 }
8930caba
TH
1247 } else {
1248 spin_lock(&gcwq->lock);
1249 }
f3421797
TH
1250 } else {
1251 gcwq = get_gcwq(WORK_CPU_UNBOUND);
8930caba 1252 spin_lock(&gcwq->lock);
502ca9d8
TH
1253 }
1254
1255 /* gcwq determined, get cwq and queue */
1256 cwq = get_cwq(gcwq->cpu, wq);
b75cac93 1257 trace_workqueue_queue_work(req_cpu, cwq, work);
502ca9d8 1258
f5b2552b 1259 if (WARN_ON(!list_empty(&work->entry))) {
8930caba 1260 spin_unlock(&gcwq->lock);
f5b2552b
DC
1261 return;
1262 }
1e19ffc6 1263
73f53c4a 1264 cwq->nr_in_flight[cwq->work_color]++;
8a2e8e5d 1265 work_flags = work_color_to_flags(cwq->work_color);
1e19ffc6
TH
1266
1267 if (likely(cwq->nr_active < cwq->max_active)) {
cdadf009 1268 trace_workqueue_activate_work(work);
1e19ffc6 1269 cwq->nr_active++;
3270476a 1270 worklist = &cwq->pool->worklist;
8a2e8e5d
TH
1271 } else {
1272 work_flags |= WORK_STRUCT_DELAYED;
1e19ffc6 1273 worklist = &cwq->delayed_works;
8a2e8e5d 1274 }
1e19ffc6 1275
8a2e8e5d 1276 insert_work(cwq, work, worklist, work_flags);
1e19ffc6 1277
8930caba 1278 spin_unlock(&gcwq->lock);
1da177e4
LT
1279}
1280
0fcb78c2 1281/**
c1a220e7
ZR
1282 * queue_work_on - queue work on specific cpu
1283 * @cpu: CPU number to execute work on
0fcb78c2
REB
1284 * @wq: workqueue to use
1285 * @work: work to queue
1286 *
d4283e93 1287 * Returns %false if @work was already on a queue, %true otherwise.
1da177e4 1288 *
c1a220e7
ZR
1289 * We queue the work to a specific CPU, the caller must ensure it
1290 * can't go away.
1da177e4 1291 */
d4283e93
TH
1292bool queue_work_on(int cpu, struct workqueue_struct *wq,
1293 struct work_struct *work)
1da177e4 1294{
d4283e93 1295 bool ret = false;
8930caba 1296 unsigned long flags;
ef1ca236 1297
8930caba 1298 local_irq_save(flags);
c1a220e7 1299
22df02bb 1300 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
4690c4ab 1301 __queue_work(cpu, wq, work);
d4283e93 1302 ret = true;
c1a220e7 1303 }
ef1ca236 1304
8930caba 1305 local_irq_restore(flags);
1da177e4
LT
1306 return ret;
1307}
c1a220e7 1308EXPORT_SYMBOL_GPL(queue_work_on);
1da177e4 1309
c1a220e7 1310/**
0a13c00e 1311 * queue_work - queue work on a workqueue
c1a220e7
ZR
1312 * @wq: workqueue to use
1313 * @work: work to queue
1314 *
d4283e93 1315 * Returns %false if @work was already on a queue, %true otherwise.
c1a220e7 1316 *
0a13c00e
TH
1317 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1318 * it can be processed by another CPU.
c1a220e7 1319 */
d4283e93 1320bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
c1a220e7 1321{
57469821 1322 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
c1a220e7 1323}
0a13c00e 1324EXPORT_SYMBOL_GPL(queue_work);
c1a220e7 1325
d8e794df 1326void delayed_work_timer_fn(unsigned long __data)
1da177e4 1327{
52bad64d 1328 struct delayed_work *dwork = (struct delayed_work *)__data;
7a22ad75 1329 struct cpu_workqueue_struct *cwq = get_work_cwq(&dwork->work);
1da177e4 1330
e0aecdd8 1331 /* should have been called from irqsafe timer with irq already off */
1265057f 1332 __queue_work(dwork->cpu, cwq->wq, &dwork->work);
1da177e4 1333}
d8e794df 1334EXPORT_SYMBOL_GPL(delayed_work_timer_fn);
1da177e4 1335
7beb2edf
TH
1336static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1337 struct delayed_work *dwork, unsigned long delay)
1da177e4 1338{
7beb2edf
TH
1339 struct timer_list *timer = &dwork->timer;
1340 struct work_struct *work = &dwork->work;
1341 unsigned int lcpu;
1342
1343 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1344 timer->data != (unsigned long)dwork);
fc4b514f
TH
1345 WARN_ON_ONCE(timer_pending(timer));
1346 WARN_ON_ONCE(!list_empty(&work->entry));
7beb2edf 1347
8852aac2
TH
1348 /*
1349 * If @delay is 0, queue @dwork->work immediately. This is for
1350 * both optimization and correctness. The earliest @timer can
1351 * expire is on the closest next tick and delayed_work users depend
1352 * on that there's no such delay when @delay is 0.
1353 */
1354 if (!delay) {
1355 __queue_work(cpu, wq, &dwork->work);
1356 return;
1357 }
1358
7beb2edf 1359 timer_stats_timer_set_start_info(&dwork->timer);
1da177e4 1360
7beb2edf
TH
1361 /*
1362 * This stores cwq for the moment, for the timer_fn. Note that the
1363 * work's gcwq is preserved to allow reentrance detection for
1364 * delayed works.
1365 */
1366 if (!(wq->flags & WQ_UNBOUND)) {
1367 struct global_cwq *gcwq = get_work_gcwq(work);
1368
e42986de
JK
1369 /*
1370 * If we cannot get the last gcwq from @work directly,
1371 * select the last CPU such that it avoids unnecessarily
1372 * triggering non-reentrancy check in __queue_work().
1373 */
1374 lcpu = cpu;
1375 if (gcwq)
7beb2edf 1376 lcpu = gcwq->cpu;
e42986de 1377 if (lcpu == WORK_CPU_UNBOUND)
7beb2edf
TH
1378 lcpu = raw_smp_processor_id();
1379 } else {
1380 lcpu = WORK_CPU_UNBOUND;
1381 }
1382
1383 set_work_cwq(work, get_cwq(lcpu, wq), 0);
1384
1265057f 1385 dwork->cpu = cpu;
7beb2edf
TH
1386 timer->expires = jiffies + delay;
1387
1388 if (unlikely(cpu != WORK_CPU_UNBOUND))
1389 add_timer_on(timer, cpu);
1390 else
1391 add_timer(timer);
1da177e4
LT
1392}
1393
0fcb78c2
REB
1394/**
1395 * queue_delayed_work_on - queue work on specific CPU after delay
1396 * @cpu: CPU number to execute work on
1397 * @wq: workqueue to use
af9997e4 1398 * @dwork: work to queue
0fcb78c2
REB
1399 * @delay: number of jiffies to wait before queueing
1400 *
715f1300
TH
1401 * Returns %false if @work was already on a queue, %true otherwise. If
1402 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1403 * execution.
0fcb78c2 1404 */
d4283e93
TH
1405bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1406 struct delayed_work *dwork, unsigned long delay)
7a6bc1cd 1407{
52bad64d 1408 struct work_struct *work = &dwork->work;
d4283e93 1409 bool ret = false;
8930caba 1410 unsigned long flags;
7a6bc1cd 1411
8930caba
TH
1412 /* read the comment in __queue_work() */
1413 local_irq_save(flags);
7a6bc1cd 1414
22df02bb 1415 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
7beb2edf 1416 __queue_delayed_work(cpu, wq, dwork, delay);
d4283e93 1417 ret = true;
7a6bc1cd 1418 }
8a3e77cc 1419
8930caba 1420 local_irq_restore(flags);
7a6bc1cd
VP
1421 return ret;
1422}
ae90dd5d 1423EXPORT_SYMBOL_GPL(queue_delayed_work_on);
c7fc77f7 1424
0a13c00e
TH
1425/**
1426 * queue_delayed_work - queue work on a workqueue after delay
1427 * @wq: workqueue to use
1428 * @dwork: delayable work to queue
1429 * @delay: number of jiffies to wait before queueing
1430 *
715f1300 1431 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
0a13c00e 1432 */
d4283e93 1433bool queue_delayed_work(struct workqueue_struct *wq,
0a13c00e
TH
1434 struct delayed_work *dwork, unsigned long delay)
1435{
57469821 1436 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
0a13c00e
TH
1437}
1438EXPORT_SYMBOL_GPL(queue_delayed_work);
c7fc77f7 1439
8376fe22
TH
1440/**
1441 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1442 * @cpu: CPU number to execute work on
1443 * @wq: workqueue to use
1444 * @dwork: work to queue
1445 * @delay: number of jiffies to wait before queueing
1446 *
1447 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1448 * modify @dwork's timer so that it expires after @delay. If @delay is
1449 * zero, @work is guaranteed to be scheduled immediately regardless of its
1450 * current state.
1451 *
1452 * Returns %false if @dwork was idle and queued, %true if @dwork was
1453 * pending and its timer was modified.
1454 *
e0aecdd8 1455 * This function is safe to call from any context including IRQ handler.
8376fe22
TH
1456 * See try_to_grab_pending() for details.
1457 */
1458bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1459 struct delayed_work *dwork, unsigned long delay)
1460{
1461 unsigned long flags;
1462 int ret;
c7fc77f7 1463
8376fe22
TH
1464 do {
1465 ret = try_to_grab_pending(&dwork->work, true, &flags);
1466 } while (unlikely(ret == -EAGAIN));
63bc0362 1467
8376fe22
TH
1468 if (likely(ret >= 0)) {
1469 __queue_delayed_work(cpu, wq, dwork, delay);
1470 local_irq_restore(flags);
7a6bc1cd 1471 }
8376fe22
TH
1472
1473 /* -ENOENT from try_to_grab_pending() becomes %true */
7a6bc1cd
VP
1474 return ret;
1475}
8376fe22
TH
1476EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1477
1478/**
1479 * mod_delayed_work - modify delay of or queue a delayed work
1480 * @wq: workqueue to use
1481 * @dwork: work to queue
1482 * @delay: number of jiffies to wait before queueing
1483 *
1484 * mod_delayed_work_on() on local CPU.
1485 */
1486bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
1487 unsigned long delay)
1488{
1489 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
1490}
1491EXPORT_SYMBOL_GPL(mod_delayed_work);
1da177e4 1492
c8e55f36
TH
1493/**
1494 * worker_enter_idle - enter idle state
1495 * @worker: worker which is entering idle state
1496 *
1497 * @worker is entering idle state. Update stats and idle timer if
1498 * necessary.
1499 *
1500 * LOCKING:
1501 * spin_lock_irq(gcwq->lock).
1502 */
1503static void worker_enter_idle(struct worker *worker)
1da177e4 1504{
bd7bdd43
TH
1505 struct worker_pool *pool = worker->pool;
1506 struct global_cwq *gcwq = pool->gcwq;
c8e55f36
TH
1507
1508 BUG_ON(worker->flags & WORKER_IDLE);
1509 BUG_ON(!list_empty(&worker->entry) &&
1510 (worker->hentry.next || worker->hentry.pprev));
1511
cb444766
TH
1512 /* can't use worker_set_flags(), also called from start_worker() */
1513 worker->flags |= WORKER_IDLE;
bd7bdd43 1514 pool->nr_idle++;
e22bee78 1515 worker->last_active = jiffies;
c8e55f36
TH
1516
1517 /* idle_list is LIFO */
bd7bdd43 1518 list_add(&worker->entry, &pool->idle_list);
db7bccf4 1519
628c78e7
TH
1520 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1521 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
cb444766 1522
544ecf31 1523 /*
628c78e7
TH
1524 * Sanity check nr_running. Because gcwq_unbind_fn() releases
1525 * gcwq->lock between setting %WORKER_UNBOUND and zapping
1526 * nr_running, the warning may trigger spuriously. Check iff
1527 * unbind is not in progress.
544ecf31 1528 */
628c78e7 1529 WARN_ON_ONCE(!(gcwq->flags & GCWQ_DISASSOCIATED) &&
bd7bdd43 1530 pool->nr_workers == pool->nr_idle &&
63d95a91 1531 atomic_read(get_pool_nr_running(pool)));
c8e55f36
TH
1532}
1533
1534/**
1535 * worker_leave_idle - leave idle state
1536 * @worker: worker which is leaving idle state
1537 *
1538 * @worker is leaving idle state. Update stats.
1539 *
1540 * LOCKING:
1541 * spin_lock_irq(gcwq->lock).
1542 */
1543static void worker_leave_idle(struct worker *worker)
1544{
bd7bdd43 1545 struct worker_pool *pool = worker->pool;
c8e55f36
TH
1546
1547 BUG_ON(!(worker->flags & WORKER_IDLE));
d302f017 1548 worker_clr_flags(worker, WORKER_IDLE);
bd7bdd43 1549 pool->nr_idle--;
c8e55f36
TH
1550 list_del_init(&worker->entry);
1551}
1552
e22bee78
TH
1553/**
1554 * worker_maybe_bind_and_lock - bind worker to its cpu if possible and lock gcwq
1555 * @worker: self
1556 *
1557 * Works which are scheduled while the cpu is online must at least be
1558 * scheduled to a worker which is bound to the cpu so that if they are
1559 * flushed from cpu callbacks while cpu is going down, they are
1560 * guaranteed to execute on the cpu.
1561 *
1562 * This function is to be used by rogue workers and rescuers to bind
1563 * themselves to the target cpu and may race with cpu going down or
1564 * coming online. kthread_bind() can't be used because it may put the
1565 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
1566 * verbatim as it's best effort and blocking and gcwq may be
1567 * [dis]associated in the meantime.
1568 *
f2d5a0ee
TH
1569 * This function tries set_cpus_allowed() and locks gcwq and verifies the
1570 * binding against %GCWQ_DISASSOCIATED which is set during
1571 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1572 * enters idle state or fetches works without dropping lock, it can
1573 * guarantee the scheduling requirement described in the first paragraph.
e22bee78
TH
1574 *
1575 * CONTEXT:
1576 * Might sleep. Called without any lock but returns with gcwq->lock
1577 * held.
1578 *
1579 * RETURNS:
1580 * %true if the associated gcwq is online (@worker is successfully
1581 * bound), %false if offline.
1582 */
1583static bool worker_maybe_bind_and_lock(struct worker *worker)
972fa1c5 1584__acquires(&gcwq->lock)
e22bee78 1585{
bd7bdd43 1586 struct global_cwq *gcwq = worker->pool->gcwq;
e22bee78
TH
1587 struct task_struct *task = worker->task;
1588
1589 while (true) {
4e6045f1 1590 /*
e22bee78
TH
1591 * The following call may fail, succeed or succeed
1592 * without actually migrating the task to the cpu if
1593 * it races with cpu hotunplug operation. Verify
1594 * against GCWQ_DISASSOCIATED.
4e6045f1 1595 */
f3421797
TH
1596 if (!(gcwq->flags & GCWQ_DISASSOCIATED))
1597 set_cpus_allowed_ptr(task, get_cpu_mask(gcwq->cpu));
e22bee78
TH
1598
1599 spin_lock_irq(&gcwq->lock);
1600 if (gcwq->flags & GCWQ_DISASSOCIATED)
1601 return false;
1602 if (task_cpu(task) == gcwq->cpu &&
1603 cpumask_equal(&current->cpus_allowed,
1604 get_cpu_mask(gcwq->cpu)))
1605 return true;
1606 spin_unlock_irq(&gcwq->lock);
1607
5035b20f
TH
1608 /*
1609 * We've raced with CPU hot[un]plug. Give it a breather
1610 * and retry migration. cond_resched() is required here;
1611 * otherwise, we might deadlock against cpu_stop trying to
1612 * bring down the CPU on non-preemptive kernel.
1613 */
e22bee78 1614 cpu_relax();
5035b20f 1615 cond_resched();
e22bee78
TH
1616 }
1617}
1618
25511a47 1619/*
ea1abd61 1620 * Rebind an idle @worker to its CPU. worker_thread() will test
5f7dabfd 1621 * list_empty(@worker->entry) before leaving idle and call this function.
25511a47
TH
1622 */
1623static void idle_worker_rebind(struct worker *worker)
1624{
1625 struct global_cwq *gcwq = worker->pool->gcwq;
1626
5f7dabfd
LJ
1627 /* CPU may go down again inbetween, clear UNBOUND only on success */
1628 if (worker_maybe_bind_and_lock(worker))
1629 worker_clr_flags(worker, WORKER_UNBOUND);
25511a47 1630
ea1abd61
LJ
1631 /* rebind complete, become available again */
1632 list_add(&worker->entry, &worker->pool->idle_list);
1633 spin_unlock_irq(&gcwq->lock);
25511a47
TH
1634}
1635
e22bee78 1636/*
25511a47 1637 * Function for @worker->rebind.work used to rebind unbound busy workers to
403c821d
TH
1638 * the associated cpu which is coming back online. This is scheduled by
1639 * cpu up but can race with other cpu hotplug operations and may be
1640 * executed twice without intervening cpu down.
e22bee78 1641 */
25511a47 1642static void busy_worker_rebind_fn(struct work_struct *work)
e22bee78
TH
1643{
1644 struct worker *worker = container_of(work, struct worker, rebind_work);
bd7bdd43 1645 struct global_cwq *gcwq = worker->pool->gcwq;
e22bee78 1646
eab6d828
LJ
1647 if (worker_maybe_bind_and_lock(worker))
1648 worker_clr_flags(worker, WORKER_UNBOUND);
e22bee78
TH
1649
1650 spin_unlock_irq(&gcwq->lock);
1651}
1652
25511a47
TH
1653/**
1654 * rebind_workers - rebind all workers of a gcwq to the associated CPU
1655 * @gcwq: gcwq of interest
1656 *
1657 * @gcwq->cpu is coming online. Rebind all workers to the CPU. Rebinding
1658 * is different for idle and busy ones.
1659 *
ea1abd61
LJ
1660 * Idle ones will be removed from the idle_list and woken up. They will
1661 * add themselves back after completing rebind. This ensures that the
1662 * idle_list doesn't contain any unbound workers when re-bound busy workers
1663 * try to perform local wake-ups for concurrency management.
25511a47 1664 *
ea1abd61
LJ
1665 * Busy workers can rebind after they finish their current work items.
1666 * Queueing the rebind work item at the head of the scheduled list is
1667 * enough. Note that nr_running will be properly bumped as busy workers
1668 * rebind.
25511a47 1669 *
ea1abd61
LJ
1670 * On return, all non-manager workers are scheduled for rebind - see
1671 * manage_workers() for the manager special case. Any idle worker
1672 * including the manager will not appear on @idle_list until rebind is
1673 * complete, making local wake-ups safe.
25511a47
TH
1674 */
1675static void rebind_workers(struct global_cwq *gcwq)
25511a47 1676{
25511a47 1677 struct worker_pool *pool;
ea1abd61 1678 struct worker *worker, *n;
25511a47
TH
1679 struct hlist_node *pos;
1680 int i;
1681
1682 lockdep_assert_held(&gcwq->lock);
1683
1684 for_each_worker_pool(pool, gcwq)
b2eb83d1 1685 lockdep_assert_held(&pool->assoc_mutex);
25511a47 1686
5f7dabfd 1687 /* dequeue and kick idle ones */
25511a47 1688 for_each_worker_pool(pool, gcwq) {
ea1abd61 1689 list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
ea1abd61
LJ
1690 /*
1691 * idle workers should be off @pool->idle_list
1692 * until rebind is complete to avoid receiving
1693 * premature local wake-ups.
1694 */
1695 list_del_init(&worker->entry);
25511a47 1696
5f7dabfd
LJ
1697 /*
1698 * worker_thread() will see the above dequeuing
1699 * and call idle_worker_rebind().
1700 */
25511a47
TH
1701 wake_up_process(worker->task);
1702 }
1703 }
1704
ea1abd61 1705 /* rebind busy workers */
25511a47
TH
1706 for_each_busy_worker(worker, i, pos, gcwq) {
1707 struct work_struct *rebind_work = &worker->rebind_work;
e2b6a6d5 1708 struct workqueue_struct *wq;
25511a47
TH
1709
1710 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1711 work_data_bits(rebind_work)))
1712 continue;
1713
25511a47 1714 debug_work_activate(rebind_work);
90beca5d 1715
e2b6a6d5
JK
1716 /*
1717 * wq doesn't really matter but let's keep @worker->pool
1718 * and @cwq->pool consistent for sanity.
1719 */
1720 if (worker_pool_pri(worker->pool))
1721 wq = system_highpri_wq;
1722 else
1723 wq = system_wq;
ec58815a 1724
e2b6a6d5
JK
1725 insert_work(get_cwq(gcwq->cpu, wq), rebind_work,
1726 worker->scheduled.next,
1727 work_color_to_flags(WORK_NO_COLOR));
ec58815a 1728 }
25511a47
TH
1729}
1730
c34056a3
TH
1731static struct worker *alloc_worker(void)
1732{
1733 struct worker *worker;
1734
1735 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
c8e55f36
TH
1736 if (worker) {
1737 INIT_LIST_HEAD(&worker->entry);
affee4b2 1738 INIT_LIST_HEAD(&worker->scheduled);
25511a47 1739 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
e22bee78
TH
1740 /* on creation a worker is in !idle && prep state */
1741 worker->flags = WORKER_PREP;
c8e55f36 1742 }
c34056a3
TH
1743 return worker;
1744}
1745
1746/**
1747 * create_worker - create a new workqueue worker
63d95a91 1748 * @pool: pool the new worker will belong to
c34056a3 1749 *
63d95a91 1750 * Create a new worker which is bound to @pool. The returned worker
c34056a3
TH
1751 * can be started by calling start_worker() or destroyed using
1752 * destroy_worker().
1753 *
1754 * CONTEXT:
1755 * Might sleep. Does GFP_KERNEL allocations.
1756 *
1757 * RETURNS:
1758 * Pointer to the newly created worker.
1759 */
bc2ae0f5 1760static struct worker *create_worker(struct worker_pool *pool)
c34056a3 1761{
63d95a91 1762 struct global_cwq *gcwq = pool->gcwq;
3270476a 1763 const char *pri = worker_pool_pri(pool) ? "H" : "";
c34056a3 1764 struct worker *worker = NULL;
f3421797 1765 int id = -1;
c34056a3 1766
8b03ae3c 1767 spin_lock_irq(&gcwq->lock);
bd7bdd43 1768 while (ida_get_new(&pool->worker_ida, &id)) {
8b03ae3c 1769 spin_unlock_irq(&gcwq->lock);
bd7bdd43 1770 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
c34056a3 1771 goto fail;
8b03ae3c 1772 spin_lock_irq(&gcwq->lock);
c34056a3 1773 }
8b03ae3c 1774 spin_unlock_irq(&gcwq->lock);
c34056a3
TH
1775
1776 worker = alloc_worker();
1777 if (!worker)
1778 goto fail;
1779
bd7bdd43 1780 worker->pool = pool;
c34056a3
TH
1781 worker->id = id;
1782
bc2ae0f5 1783 if (gcwq->cpu != WORK_CPU_UNBOUND)
94dcf29a 1784 worker->task = kthread_create_on_node(worker_thread,
3270476a
TH
1785 worker, cpu_to_node(gcwq->cpu),
1786 "kworker/%u:%d%s", gcwq->cpu, id, pri);
f3421797
TH
1787 else
1788 worker->task = kthread_create(worker_thread, worker,
3270476a 1789 "kworker/u:%d%s", id, pri);
c34056a3
TH
1790 if (IS_ERR(worker->task))
1791 goto fail;
1792
3270476a
TH
1793 if (worker_pool_pri(pool))
1794 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1795
db7bccf4 1796 /*
bc2ae0f5
TH
1797 * Determine CPU binding of the new worker depending on
1798 * %GCWQ_DISASSOCIATED. The caller is responsible for ensuring the
1799 * flag remains stable across this function. See the comments
1800 * above the flag definition for details.
1801 *
1802 * As an unbound worker may later become a regular one if CPU comes
1803 * online, make sure every worker has %PF_THREAD_BOUND set.
db7bccf4 1804 */
bc2ae0f5 1805 if (!(gcwq->flags & GCWQ_DISASSOCIATED)) {
8b03ae3c 1806 kthread_bind(worker->task, gcwq->cpu);
bc2ae0f5 1807 } else {
db7bccf4 1808 worker->task->flags |= PF_THREAD_BOUND;
bc2ae0f5 1809 worker->flags |= WORKER_UNBOUND;
f3421797 1810 }
c34056a3
TH
1811
1812 return worker;
1813fail:
1814 if (id >= 0) {
8b03ae3c 1815 spin_lock_irq(&gcwq->lock);
bd7bdd43 1816 ida_remove(&pool->worker_ida, id);
8b03ae3c 1817 spin_unlock_irq(&gcwq->lock);
c34056a3
TH
1818 }
1819 kfree(worker);
1820 return NULL;
1821}
1822
1823/**
1824 * start_worker - start a newly created worker
1825 * @worker: worker to start
1826 *
c8e55f36 1827 * Make the gcwq aware of @worker and start it.
c34056a3
TH
1828 *
1829 * CONTEXT:
8b03ae3c 1830 * spin_lock_irq(gcwq->lock).
c34056a3
TH
1831 */
1832static void start_worker(struct worker *worker)
1833{
cb444766 1834 worker->flags |= WORKER_STARTED;
bd7bdd43 1835 worker->pool->nr_workers++;
c8e55f36 1836 worker_enter_idle(worker);
c34056a3
TH
1837 wake_up_process(worker->task);
1838}
1839
1840/**
1841 * destroy_worker - destroy a workqueue worker
1842 * @worker: worker to be destroyed
1843 *
c8e55f36
TH
1844 * Destroy @worker and adjust @gcwq stats accordingly.
1845 *
1846 * CONTEXT:
1847 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
c34056a3
TH
1848 */
1849static void destroy_worker(struct worker *worker)
1850{
bd7bdd43
TH
1851 struct worker_pool *pool = worker->pool;
1852 struct global_cwq *gcwq = pool->gcwq;
c34056a3
TH
1853 int id = worker->id;
1854
1855 /* sanity check frenzy */
1856 BUG_ON(worker->current_work);
affee4b2 1857 BUG_ON(!list_empty(&worker->scheduled));
c34056a3 1858
c8e55f36 1859 if (worker->flags & WORKER_STARTED)
bd7bdd43 1860 pool->nr_workers--;
c8e55f36 1861 if (worker->flags & WORKER_IDLE)
bd7bdd43 1862 pool->nr_idle--;
c8e55f36
TH
1863
1864 list_del_init(&worker->entry);
cb444766 1865 worker->flags |= WORKER_DIE;
c8e55f36
TH
1866
1867 spin_unlock_irq(&gcwq->lock);
1868
c34056a3
TH
1869 kthread_stop(worker->task);
1870 kfree(worker);
1871
8b03ae3c 1872 spin_lock_irq(&gcwq->lock);
bd7bdd43 1873 ida_remove(&pool->worker_ida, id);
c34056a3
TH
1874}
1875
63d95a91 1876static void idle_worker_timeout(unsigned long __pool)
e22bee78 1877{
63d95a91
TH
1878 struct worker_pool *pool = (void *)__pool;
1879 struct global_cwq *gcwq = pool->gcwq;
e22bee78
TH
1880
1881 spin_lock_irq(&gcwq->lock);
1882
63d95a91 1883 if (too_many_workers(pool)) {
e22bee78
TH
1884 struct worker *worker;
1885 unsigned long expires;
1886
1887 /* idle_list is kept in LIFO order, check the last one */
63d95a91 1888 worker = list_entry(pool->idle_list.prev, struct worker, entry);
e22bee78
TH
1889 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1890
1891 if (time_before(jiffies, expires))
63d95a91 1892 mod_timer(&pool->idle_timer, expires);
e22bee78
TH
1893 else {
1894 /* it's been idle for too long, wake up manager */
11ebea50 1895 pool->flags |= POOL_MANAGE_WORKERS;
63d95a91 1896 wake_up_worker(pool);
d5abe669 1897 }
e22bee78
TH
1898 }
1899
1900 spin_unlock_irq(&gcwq->lock);
1901}
d5abe669 1902
e22bee78
TH
1903static bool send_mayday(struct work_struct *work)
1904{
1905 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1906 struct workqueue_struct *wq = cwq->wq;
f3421797 1907 unsigned int cpu;
e22bee78
TH
1908
1909 if (!(wq->flags & WQ_RESCUER))
1910 return false;
1911
1912 /* mayday mayday mayday */
bd7bdd43 1913 cpu = cwq->pool->gcwq->cpu;
f3421797
TH
1914 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1915 if (cpu == WORK_CPU_UNBOUND)
1916 cpu = 0;
f2e005aa 1917 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
e22bee78
TH
1918 wake_up_process(wq->rescuer->task);
1919 return true;
1920}
1921
63d95a91 1922static void gcwq_mayday_timeout(unsigned long __pool)
e22bee78 1923{
63d95a91
TH
1924 struct worker_pool *pool = (void *)__pool;
1925 struct global_cwq *gcwq = pool->gcwq;
e22bee78
TH
1926 struct work_struct *work;
1927
1928 spin_lock_irq(&gcwq->lock);
1929
63d95a91 1930 if (need_to_create_worker(pool)) {
e22bee78
TH
1931 /*
1932 * We've been trying to create a new worker but
1933 * haven't been successful. We might be hitting an
1934 * allocation deadlock. Send distress signals to
1935 * rescuers.
1936 */
63d95a91 1937 list_for_each_entry(work, &pool->worklist, entry)
e22bee78 1938 send_mayday(work);
1da177e4 1939 }
e22bee78
TH
1940
1941 spin_unlock_irq(&gcwq->lock);
1942
63d95a91 1943 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
1da177e4
LT
1944}
1945
e22bee78
TH
1946/**
1947 * maybe_create_worker - create a new worker if necessary
63d95a91 1948 * @pool: pool to create a new worker for
e22bee78 1949 *
63d95a91 1950 * Create a new worker for @pool if necessary. @pool is guaranteed to
e22bee78
TH
1951 * have at least one idle worker on return from this function. If
1952 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
63d95a91 1953 * sent to all rescuers with works scheduled on @pool to resolve
e22bee78
TH
1954 * possible allocation deadlock.
1955 *
1956 * On return, need_to_create_worker() is guaranteed to be false and
1957 * may_start_working() true.
1958 *
1959 * LOCKING:
1960 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1961 * multiple times. Does GFP_KERNEL allocations. Called only from
1962 * manager.
1963 *
1964 * RETURNS:
1965 * false if no action was taken and gcwq->lock stayed locked, true
1966 * otherwise.
1967 */
63d95a91 1968static bool maybe_create_worker(struct worker_pool *pool)
06bd6ebf
NK
1969__releases(&gcwq->lock)
1970__acquires(&gcwq->lock)
1da177e4 1971{
63d95a91
TH
1972 struct global_cwq *gcwq = pool->gcwq;
1973
1974 if (!need_to_create_worker(pool))
e22bee78
TH
1975 return false;
1976restart:
9f9c2364
TH
1977 spin_unlock_irq(&gcwq->lock);
1978
e22bee78 1979 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
63d95a91 1980 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
e22bee78
TH
1981
1982 while (true) {
1983 struct worker *worker;
1984
bc2ae0f5 1985 worker = create_worker(pool);
e22bee78 1986 if (worker) {
63d95a91 1987 del_timer_sync(&pool->mayday_timer);
e22bee78
TH
1988 spin_lock_irq(&gcwq->lock);
1989 start_worker(worker);
63d95a91 1990 BUG_ON(need_to_create_worker(pool));
e22bee78
TH
1991 return true;
1992 }
1993
63d95a91 1994 if (!need_to_create_worker(pool))
e22bee78 1995 break;
1da177e4 1996
e22bee78
TH
1997 __set_current_state(TASK_INTERRUPTIBLE);
1998 schedule_timeout(CREATE_COOLDOWN);
9f9c2364 1999
63d95a91 2000 if (!need_to_create_worker(pool))
e22bee78
TH
2001 break;
2002 }
2003
63d95a91 2004 del_timer_sync(&pool->mayday_timer);
e22bee78 2005 spin_lock_irq(&gcwq->lock);
63d95a91 2006 if (need_to_create_worker(pool))
e22bee78
TH
2007 goto restart;
2008 return true;
2009}
2010
2011/**
2012 * maybe_destroy_worker - destroy workers which have been idle for a while
63d95a91 2013 * @pool: pool to destroy workers for
e22bee78 2014 *
63d95a91 2015 * Destroy @pool workers which have been idle for longer than
e22bee78
TH
2016 * IDLE_WORKER_TIMEOUT.
2017 *
2018 * LOCKING:
2019 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
2020 * multiple times. Called only from manager.
2021 *
2022 * RETURNS:
2023 * false if no action was taken and gcwq->lock stayed locked, true
2024 * otherwise.
2025 */
63d95a91 2026static bool maybe_destroy_workers(struct worker_pool *pool)
e22bee78
TH
2027{
2028 bool ret = false;
1da177e4 2029
63d95a91 2030 while (too_many_workers(pool)) {
e22bee78
TH
2031 struct worker *worker;
2032 unsigned long expires;
3af24433 2033
63d95a91 2034 worker = list_entry(pool->idle_list.prev, struct worker, entry);
e22bee78 2035 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
85f4186a 2036
e22bee78 2037 if (time_before(jiffies, expires)) {
63d95a91 2038 mod_timer(&pool->idle_timer, expires);
3af24433 2039 break;
e22bee78 2040 }
1da177e4 2041
e22bee78
TH
2042 destroy_worker(worker);
2043 ret = true;
1da177e4 2044 }
1e19ffc6 2045
e22bee78 2046 return ret;
1e19ffc6
TH
2047}
2048
73f53c4a 2049/**
e22bee78
TH
2050 * manage_workers - manage worker pool
2051 * @worker: self
73f53c4a 2052 *
e22bee78
TH
2053 * Assume the manager role and manage gcwq worker pool @worker belongs
2054 * to. At any given time, there can be only zero or one manager per
2055 * gcwq. The exclusion is handled automatically by this function.
2056 *
2057 * The caller can safely start processing works on false return. On
2058 * true return, it's guaranteed that need_to_create_worker() is false
2059 * and may_start_working() is true.
73f53c4a
TH
2060 *
2061 * CONTEXT:
e22bee78
TH
2062 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
2063 * multiple times. Does GFP_KERNEL allocations.
2064 *
2065 * RETURNS:
2066 * false if no action was taken and gcwq->lock stayed locked, true if
2067 * some action was taken.
73f53c4a 2068 */
e22bee78 2069static bool manage_workers(struct worker *worker)
73f53c4a 2070{
63d95a91 2071 struct worker_pool *pool = worker->pool;
e22bee78 2072 bool ret = false;
73f53c4a 2073
ee378aa4 2074 if (pool->flags & POOL_MANAGING_WORKERS)
e22bee78 2075 return ret;
1e19ffc6 2076
552a37e9 2077 pool->flags |= POOL_MANAGING_WORKERS;
73f53c4a 2078
ee378aa4
LJ
2079 /*
2080 * To simplify both worker management and CPU hotplug, hold off
2081 * management while hotplug is in progress. CPU hotplug path can't
2082 * grab %POOL_MANAGING_WORKERS to achieve this because that can
2083 * lead to idle worker depletion (all become busy thinking someone
2084 * else is managing) which in turn can result in deadlock under
b2eb83d1 2085 * extreme circumstances. Use @pool->assoc_mutex to synchronize
ee378aa4
LJ
2086 * manager against CPU hotplug.
2087 *
b2eb83d1 2088 * assoc_mutex would always be free unless CPU hotplug is in
ee378aa4
LJ
2089 * progress. trylock first without dropping @gcwq->lock.
2090 */
b2eb83d1 2091 if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
ee378aa4 2092 spin_unlock_irq(&pool->gcwq->lock);
b2eb83d1 2093 mutex_lock(&pool->assoc_mutex);
ee378aa4
LJ
2094 /*
2095 * CPU hotplug could have happened while we were waiting
b2eb83d1 2096 * for assoc_mutex. Hotplug itself can't handle us
ee378aa4
LJ
2097 * because manager isn't either on idle or busy list, and
2098 * @gcwq's state and ours could have deviated.
2099 *
b2eb83d1 2100 * As hotplug is now excluded via assoc_mutex, we can
ee378aa4
LJ
2101 * simply try to bind. It will succeed or fail depending
2102 * on @gcwq's current state. Try it and adjust
2103 * %WORKER_UNBOUND accordingly.
2104 */
2105 if (worker_maybe_bind_and_lock(worker))
2106 worker->flags &= ~WORKER_UNBOUND;
2107 else
2108 worker->flags |= WORKER_UNBOUND;
73f53c4a 2109
ee378aa4
LJ
2110 ret = true;
2111 }
73f53c4a 2112
11ebea50 2113 pool->flags &= ~POOL_MANAGE_WORKERS;
73f53c4a
TH
2114
2115 /*
e22bee78
TH
2116 * Destroy and then create so that may_start_working() is true
2117 * on return.
73f53c4a 2118 */
63d95a91
TH
2119 ret |= maybe_destroy_workers(pool);
2120 ret |= maybe_create_worker(pool);
e22bee78 2121
552a37e9 2122 pool->flags &= ~POOL_MANAGING_WORKERS;
b2eb83d1 2123 mutex_unlock(&pool->assoc_mutex);
e22bee78 2124 return ret;
73f53c4a
TH
2125}
2126
a62428c0
TH
2127/**
2128 * process_one_work - process single work
c34056a3 2129 * @worker: self
a62428c0
TH
2130 * @work: work to process
2131 *
2132 * Process @work. This function contains all the logics necessary to
2133 * process a single work including synchronization against and
2134 * interaction with other workers on the same cpu, queueing and
2135 * flushing. As long as context requirement is met, any worker can
2136 * call this function to process a work.
2137 *
2138 * CONTEXT:
8b03ae3c 2139 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
a62428c0 2140 */
c34056a3 2141static void process_one_work(struct worker *worker, struct work_struct *work)
06bd6ebf
NK
2142__releases(&gcwq->lock)
2143__acquires(&gcwq->lock)
a62428c0 2144{
7e11629d 2145 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
bd7bdd43
TH
2146 struct worker_pool *pool = worker->pool;
2147 struct global_cwq *gcwq = pool->gcwq;
fb0e7beb 2148 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
73f53c4a 2149 int work_color;
7e11629d 2150 struct worker *collision;
a62428c0
TH
2151#ifdef CONFIG_LOCKDEP
2152 /*
2153 * It is permissible to free the struct work_struct from
2154 * inside the function that is called from it, this we need to
2155 * take into account for lockdep too. To avoid bogus "held
2156 * lock freed" warnings as well as problems when looking into
2157 * work->lockdep_map, make a copy and use that here.
2158 */
4d82a1de
PZ
2159 struct lockdep_map lockdep_map;
2160
2161 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
a62428c0 2162#endif
6fec10a1
TH
2163 /*
2164 * Ensure we're on the correct CPU. DISASSOCIATED test is
2165 * necessary to avoid spurious warnings from rescuers servicing the
2166 * unbound or a disassociated gcwq.
2167 */
5f7dabfd 2168 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
6fec10a1 2169 !(gcwq->flags & GCWQ_DISASSOCIATED) &&
25511a47
TH
2170 raw_smp_processor_id() != gcwq->cpu);
2171
7e11629d
TH
2172 /*
2173 * A single work shouldn't be executed concurrently by
2174 * multiple workers on a single cpu. Check whether anyone is
2175 * already processing the work. If so, defer the work to the
2176 * currently executing one.
2177 */
42f8570f 2178 collision = find_worker_executing_work(gcwq, work);
7e11629d
TH
2179 if (unlikely(collision)) {
2180 move_linked_works(work, &collision->scheduled, NULL);
2181 return;
2182 }
2183
8930caba 2184 /* claim and dequeue */
a62428c0 2185 debug_work_deactivate(work);
023f27d3 2186 hash_add(gcwq->busy_hash, &worker->hentry, (unsigned long)work);
c34056a3 2187 worker->current_work = work;
a2c1c57b 2188 worker->current_func = work->func;
8cca0eea 2189 worker->current_cwq = cwq;
73f53c4a 2190 work_color = get_work_color(work);
7a22ad75 2191
a62428c0
TH
2192 list_del_init(&work->entry);
2193
fb0e7beb
TH
2194 /*
2195 * CPU intensive works don't participate in concurrency
2196 * management. They're the scheduler's responsibility.
2197 */
2198 if (unlikely(cpu_intensive))
2199 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2200
974271c4
TH
2201 /*
2202 * Unbound gcwq isn't concurrency managed and work items should be
2203 * executed ASAP. Wake up another worker if necessary.
2204 */
63d95a91
TH
2205 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2206 wake_up_worker(pool);
974271c4 2207
8930caba 2208 /*
23657bb1
TH
2209 * Record the last CPU and clear PENDING which should be the last
2210 * update to @work. Also, do this inside @gcwq->lock so that
2211 * PENDING and queued state changes happen together while IRQ is
2212 * disabled.
8930caba 2213 */
8930caba 2214 set_work_cpu_and_clear_pending(work, gcwq->cpu);
a62428c0 2215
8b03ae3c 2216 spin_unlock_irq(&gcwq->lock);
a62428c0 2217
e159489b 2218 lock_map_acquire_read(&cwq->wq->lockdep_map);
a62428c0 2219 lock_map_acquire(&lockdep_map);
e36c886a 2220 trace_workqueue_execute_start(work);
a2c1c57b 2221 worker->current_func(work);
e36c886a
AV
2222 /*
2223 * While we must be careful to not use "work" after this, the trace
2224 * point will only record its address.
2225 */
2226 trace_workqueue_execute_end(work);
a62428c0
TH
2227 lock_map_release(&lockdep_map);
2228 lock_map_release(&cwq->wq->lockdep_map);
2229
2230 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
044c782c
VI
2231 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2232 " last function: %pf\n",
a2c1c57b
TH
2233 current->comm, preempt_count(), task_pid_nr(current),
2234 worker->current_func);
a62428c0
TH
2235 debug_show_held_locks(current);
2236 dump_stack();
2237 }
2238
8b03ae3c 2239 spin_lock_irq(&gcwq->lock);
a62428c0 2240
fb0e7beb
TH
2241 /* clear cpu intensive status */
2242 if (unlikely(cpu_intensive))
2243 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2244
a62428c0 2245 /* we're done with it, release */
42f8570f 2246 hash_del(&worker->hentry);
c34056a3 2247 worker->current_work = NULL;
a2c1c57b 2248 worker->current_func = NULL;
8cca0eea 2249 worker->current_cwq = NULL;
b3f9f405 2250 cwq_dec_nr_in_flight(cwq, work_color);
a62428c0
TH
2251}
2252
affee4b2
TH
2253/**
2254 * process_scheduled_works - process scheduled works
2255 * @worker: self
2256 *
2257 * Process all scheduled works. Please note that the scheduled list
2258 * may change while processing a work, so this function repeatedly
2259 * fetches a work from the top and executes it.
2260 *
2261 * CONTEXT:
8b03ae3c 2262 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
affee4b2
TH
2263 * multiple times.
2264 */
2265static void process_scheduled_works(struct worker *worker)
1da177e4 2266{
affee4b2
TH
2267 while (!list_empty(&worker->scheduled)) {
2268 struct work_struct *work = list_first_entry(&worker->scheduled,
1da177e4 2269 struct work_struct, entry);
c34056a3 2270 process_one_work(worker, work);
1da177e4 2271 }
1da177e4
LT
2272}
2273
4690c4ab
TH
2274/**
2275 * worker_thread - the worker thread function
c34056a3 2276 * @__worker: self
4690c4ab 2277 *
e22bee78
TH
2278 * The gcwq worker thread function. There's a single dynamic pool of
2279 * these per each cpu. These workers process all works regardless of
2280 * their specific target workqueue. The only exception is works which
2281 * belong to workqueues with a rescuer which will be explained in
2282 * rescuer_thread().
4690c4ab 2283 */
c34056a3 2284static int worker_thread(void *__worker)
1da177e4 2285{
c34056a3 2286 struct worker *worker = __worker;
bd7bdd43
TH
2287 struct worker_pool *pool = worker->pool;
2288 struct global_cwq *gcwq = pool->gcwq;
1da177e4 2289
e22bee78
TH
2290 /* tell the scheduler that this is a workqueue worker */
2291 worker->task->flags |= PF_WQ_WORKER;
c8e55f36 2292woke_up:
c8e55f36 2293 spin_lock_irq(&gcwq->lock);
1da177e4 2294
5f7dabfd
LJ
2295 /* we are off idle list if destruction or rebind is requested */
2296 if (unlikely(list_empty(&worker->entry))) {
c8e55f36 2297 spin_unlock_irq(&gcwq->lock);
25511a47 2298
5f7dabfd 2299 /* if DIE is set, destruction is requested */
25511a47
TH
2300 if (worker->flags & WORKER_DIE) {
2301 worker->task->flags &= ~PF_WQ_WORKER;
2302 return 0;
2303 }
2304
5f7dabfd 2305 /* otherwise, rebind */
25511a47
TH
2306 idle_worker_rebind(worker);
2307 goto woke_up;
c8e55f36 2308 }
affee4b2 2309
c8e55f36 2310 worker_leave_idle(worker);
db7bccf4 2311recheck:
e22bee78 2312 /* no more worker necessary? */
63d95a91 2313 if (!need_more_worker(pool))
e22bee78
TH
2314 goto sleep;
2315
2316 /* do we need to manage? */
63d95a91 2317 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
e22bee78
TH
2318 goto recheck;
2319
c8e55f36
TH
2320 /*
2321 * ->scheduled list can only be filled while a worker is
2322 * preparing to process a work or actually processing it.
2323 * Make sure nobody diddled with it while I was sleeping.
2324 */
2325 BUG_ON(!list_empty(&worker->scheduled));
2326
e22bee78
TH
2327 /*
2328 * When control reaches this point, we're guaranteed to have
2329 * at least one idle worker or that someone else has already
2330 * assumed the manager role.
2331 */
2332 worker_clr_flags(worker, WORKER_PREP);
2333
2334 do {
c8e55f36 2335 struct work_struct *work =
bd7bdd43 2336 list_first_entry(&pool->worklist,
c8e55f36
TH
2337 struct work_struct, entry);
2338
2339 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2340 /* optimization path, not strictly necessary */
2341 process_one_work(worker, work);
2342 if (unlikely(!list_empty(&worker->scheduled)))
affee4b2 2343 process_scheduled_works(worker);
c8e55f36
TH
2344 } else {
2345 move_linked_works(work, &worker->scheduled, NULL);
2346 process_scheduled_works(worker);
affee4b2 2347 }
63d95a91 2348 } while (keep_working(pool));
e22bee78
TH
2349
2350 worker_set_flags(worker, WORKER_PREP, false);
d313dd85 2351sleep:
63d95a91 2352 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
e22bee78 2353 goto recheck;
d313dd85 2354
c8e55f36 2355 /*
e22bee78
TH
2356 * gcwq->lock is held and there's no work to process and no
2357 * need to manage, sleep. Workers are woken up only while
2358 * holding gcwq->lock or from local cpu, so setting the
2359 * current state before releasing gcwq->lock is enough to
2360 * prevent losing any event.
c8e55f36
TH
2361 */
2362 worker_enter_idle(worker);
2363 __set_current_state(TASK_INTERRUPTIBLE);
2364 spin_unlock_irq(&gcwq->lock);
2365 schedule();
2366 goto woke_up;
1da177e4
LT
2367}
2368
e22bee78
TH
2369/**
2370 * rescuer_thread - the rescuer thread function
111c225a 2371 * @__rescuer: self
e22bee78
TH
2372 *
2373 * Workqueue rescuer thread function. There's one rescuer for each
2374 * workqueue which has WQ_RESCUER set.
2375 *
2376 * Regular work processing on a gcwq may block trying to create a new
2377 * worker which uses GFP_KERNEL allocation which has slight chance of
2378 * developing into deadlock if some works currently on the same queue
2379 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2380 * the problem rescuer solves.
2381 *
2382 * When such condition is possible, the gcwq summons rescuers of all
2383 * workqueues which have works queued on the gcwq and let them process
2384 * those works so that forward progress can be guaranteed.
2385 *
2386 * This should happen rarely.
2387 */
111c225a 2388static int rescuer_thread(void *__rescuer)
e22bee78 2389{
111c225a
TH
2390 struct worker *rescuer = __rescuer;
2391 struct workqueue_struct *wq = rescuer->rescue_wq;
e22bee78 2392 struct list_head *scheduled = &rescuer->scheduled;
f3421797 2393 bool is_unbound = wq->flags & WQ_UNBOUND;
e22bee78
TH
2394 unsigned int cpu;
2395
2396 set_user_nice(current, RESCUER_NICE_LEVEL);
111c225a
TH
2397
2398 /*
2399 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2400 * doesn't participate in concurrency management.
2401 */
2402 rescuer->task->flags |= PF_WQ_WORKER;
e22bee78
TH
2403repeat:
2404 set_current_state(TASK_INTERRUPTIBLE);
2405
412d32e6
MG
2406 if (kthread_should_stop()) {
2407 __set_current_state(TASK_RUNNING);
111c225a 2408 rescuer->task->flags &= ~PF_WQ_WORKER;
e22bee78 2409 return 0;
412d32e6 2410 }
e22bee78 2411
f3421797
TH
2412 /*
2413 * See whether any cpu is asking for help. Unbounded
2414 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2415 */
f2e005aa 2416 for_each_mayday_cpu(cpu, wq->mayday_mask) {
f3421797
TH
2417 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
2418 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
bd7bdd43
TH
2419 struct worker_pool *pool = cwq->pool;
2420 struct global_cwq *gcwq = pool->gcwq;
e22bee78
TH
2421 struct work_struct *work, *n;
2422
2423 __set_current_state(TASK_RUNNING);
f2e005aa 2424 mayday_clear_cpu(cpu, wq->mayday_mask);
e22bee78
TH
2425
2426 /* migrate to the target cpu if possible */
bd7bdd43 2427 rescuer->pool = pool;
e22bee78
TH
2428 worker_maybe_bind_and_lock(rescuer);
2429
2430 /*
2431 * Slurp in all works issued via this workqueue and
2432 * process'em.
2433 */
2434 BUG_ON(!list_empty(&rescuer->scheduled));
bd7bdd43 2435 list_for_each_entry_safe(work, n, &pool->worklist, entry)
e22bee78
TH
2436 if (get_work_cwq(work) == cwq)
2437 move_linked_works(work, scheduled, &n);
2438
2439 process_scheduled_works(rescuer);
7576958a
TH
2440
2441 /*
2442 * Leave this gcwq. If keep_working() is %true, notify a
2443 * regular worker; otherwise, we end up with 0 concurrency
2444 * and stalling the execution.
2445 */
63d95a91
TH
2446 if (keep_working(pool))
2447 wake_up_worker(pool);
7576958a 2448
e22bee78
TH
2449 spin_unlock_irq(&gcwq->lock);
2450 }
2451
111c225a
TH
2452 /* rescuers should never participate in concurrency management */
2453 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
e22bee78
TH
2454 schedule();
2455 goto repeat;
1da177e4
LT
2456}
2457
fc2e4d70
ON
2458struct wq_barrier {
2459 struct work_struct work;
2460 struct completion done;
2461};
2462
2463static void wq_barrier_func(struct work_struct *work)
2464{
2465 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2466 complete(&barr->done);
2467}
2468
4690c4ab
TH
2469/**
2470 * insert_wq_barrier - insert a barrier work
2471 * @cwq: cwq to insert barrier into
2472 * @barr: wq_barrier to insert
affee4b2
TH
2473 * @target: target work to attach @barr to
2474 * @worker: worker currently executing @target, NULL if @target is not executing
4690c4ab 2475 *
affee4b2
TH
2476 * @barr is linked to @target such that @barr is completed only after
2477 * @target finishes execution. Please note that the ordering
2478 * guarantee is observed only with respect to @target and on the local
2479 * cpu.
2480 *
2481 * Currently, a queued barrier can't be canceled. This is because
2482 * try_to_grab_pending() can't determine whether the work to be
2483 * grabbed is at the head of the queue and thus can't clear LINKED
2484 * flag of the previous work while there must be a valid next work
2485 * after a work with LINKED flag set.
2486 *
2487 * Note that when @worker is non-NULL, @target may be modified
2488 * underneath us, so we can't reliably determine cwq from @target.
4690c4ab
TH
2489 *
2490 * CONTEXT:
8b03ae3c 2491 * spin_lock_irq(gcwq->lock).
4690c4ab 2492 */
83c22520 2493static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
affee4b2
TH
2494 struct wq_barrier *barr,
2495 struct work_struct *target, struct worker *worker)
fc2e4d70 2496{
affee4b2
TH
2497 struct list_head *head;
2498 unsigned int linked = 0;
2499
dc186ad7 2500 /*
8b03ae3c 2501 * debugobject calls are safe here even with gcwq->lock locked
dc186ad7
TG
2502 * as we know for sure that this will not trigger any of the
2503 * checks and call back into the fixup functions where we
2504 * might deadlock.
2505 */
ca1cab37 2506 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
22df02bb 2507 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
fc2e4d70 2508 init_completion(&barr->done);
83c22520 2509
affee4b2
TH
2510 /*
2511 * If @target is currently being executed, schedule the
2512 * barrier to the worker; otherwise, put it after @target.
2513 */
2514 if (worker)
2515 head = worker->scheduled.next;
2516 else {
2517 unsigned long *bits = work_data_bits(target);
2518
2519 head = target->entry.next;
2520 /* there can already be other linked works, inherit and set */
2521 linked = *bits & WORK_STRUCT_LINKED;
2522 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2523 }
2524
dc186ad7 2525 debug_work_activate(&barr->work);
affee4b2
TH
2526 insert_work(cwq, &barr->work, head,
2527 work_color_to_flags(WORK_NO_COLOR) | linked);
fc2e4d70
ON
2528}
2529
73f53c4a
TH
2530/**
2531 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2532 * @wq: workqueue being flushed
2533 * @flush_color: new flush color, < 0 for no-op
2534 * @work_color: new work color, < 0 for no-op
2535 *
2536 * Prepare cwqs for workqueue flushing.
2537 *
2538 * If @flush_color is non-negative, flush_color on all cwqs should be
2539 * -1. If no cwq has in-flight commands at the specified color, all
2540 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2541 * has in flight commands, its cwq->flush_color is set to
2542 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2543 * wakeup logic is armed and %true is returned.
2544 *
2545 * The caller should have initialized @wq->first_flusher prior to
2546 * calling this function with non-negative @flush_color. If
2547 * @flush_color is negative, no flush color update is done and %false
2548 * is returned.
2549 *
2550 * If @work_color is non-negative, all cwqs should have the same
2551 * work_color which is previous to @work_color and all will be
2552 * advanced to @work_color.
2553 *
2554 * CONTEXT:
2555 * mutex_lock(wq->flush_mutex).
2556 *
2557 * RETURNS:
2558 * %true if @flush_color >= 0 and there's something to flush. %false
2559 * otherwise.
2560 */
2561static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2562 int flush_color, int work_color)
1da177e4 2563{
73f53c4a
TH
2564 bool wait = false;
2565 unsigned int cpu;
1da177e4 2566
73f53c4a
TH
2567 if (flush_color >= 0) {
2568 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2569 atomic_set(&wq->nr_cwqs_to_flush, 1);
1da177e4 2570 }
2355b70f 2571
f3421797 2572 for_each_cwq_cpu(cpu, wq) {
73f53c4a 2573 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
bd7bdd43 2574 struct global_cwq *gcwq = cwq->pool->gcwq;
fc2e4d70 2575
8b03ae3c 2576 spin_lock_irq(&gcwq->lock);
83c22520 2577
73f53c4a
TH
2578 if (flush_color >= 0) {
2579 BUG_ON(cwq->flush_color != -1);
fc2e4d70 2580
73f53c4a
TH
2581 if (cwq->nr_in_flight[flush_color]) {
2582 cwq->flush_color = flush_color;
2583 atomic_inc(&wq->nr_cwqs_to_flush);
2584 wait = true;
2585 }
2586 }
1da177e4 2587
73f53c4a
TH
2588 if (work_color >= 0) {
2589 BUG_ON(work_color != work_next_color(cwq->work_color));
2590 cwq->work_color = work_color;
2591 }
1da177e4 2592
8b03ae3c 2593 spin_unlock_irq(&gcwq->lock);
1da177e4 2594 }
2355b70f 2595
73f53c4a
TH
2596 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2597 complete(&wq->first_flusher->done);
14441960 2598
73f53c4a 2599 return wait;
1da177e4
LT
2600}
2601
0fcb78c2 2602/**
1da177e4 2603 * flush_workqueue - ensure that any scheduled work has run to completion.
0fcb78c2 2604 * @wq: workqueue to flush
1da177e4
LT
2605 *
2606 * Forces execution of the workqueue and blocks until its completion.
2607 * This is typically used in driver shutdown handlers.
2608 *
fc2e4d70
ON
2609 * We sleep until all works which were queued on entry have been handled,
2610 * but we are not livelocked by new incoming ones.
1da177e4 2611 */
7ad5b3a5 2612void flush_workqueue(struct workqueue_struct *wq)
1da177e4 2613{
73f53c4a
TH
2614 struct wq_flusher this_flusher = {
2615 .list = LIST_HEAD_INIT(this_flusher.list),
2616 .flush_color = -1,
2617 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2618 };
2619 int next_color;
1da177e4 2620
3295f0ef
IM
2621 lock_map_acquire(&wq->lockdep_map);
2622 lock_map_release(&wq->lockdep_map);
73f53c4a
TH
2623
2624 mutex_lock(&wq->flush_mutex);
2625
2626 /*
2627 * Start-to-wait phase
2628 */
2629 next_color = work_next_color(wq->work_color);
2630
2631 if (next_color != wq->flush_color) {
2632 /*
2633 * Color space is not full. The current work_color
2634 * becomes our flush_color and work_color is advanced
2635 * by one.
2636 */
2637 BUG_ON(!list_empty(&wq->flusher_overflow));
2638 this_flusher.flush_color = wq->work_color;
2639 wq->work_color = next_color;
2640
2641 if (!wq->first_flusher) {
2642 /* no flush in progress, become the first flusher */
2643 BUG_ON(wq->flush_color != this_flusher.flush_color);
2644
2645 wq->first_flusher = &this_flusher;
2646
2647 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2648 wq->work_color)) {
2649 /* nothing to flush, done */
2650 wq->flush_color = next_color;
2651 wq->first_flusher = NULL;
2652 goto out_unlock;
2653 }
2654 } else {
2655 /* wait in queue */
2656 BUG_ON(wq->flush_color == this_flusher.flush_color);
2657 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2658 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2659 }
2660 } else {
2661 /*
2662 * Oops, color space is full, wait on overflow queue.
2663 * The next flush completion will assign us
2664 * flush_color and transfer to flusher_queue.
2665 */
2666 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2667 }
2668
2669 mutex_unlock(&wq->flush_mutex);
2670
2671 wait_for_completion(&this_flusher.done);
2672
2673 /*
2674 * Wake-up-and-cascade phase
2675 *
2676 * First flushers are responsible for cascading flushes and
2677 * handling overflow. Non-first flushers can simply return.
2678 */
2679 if (wq->first_flusher != &this_flusher)
2680 return;
2681
2682 mutex_lock(&wq->flush_mutex);
2683
4ce48b37
TH
2684 /* we might have raced, check again with mutex held */
2685 if (wq->first_flusher != &this_flusher)
2686 goto out_unlock;
2687
73f53c4a
TH
2688 wq->first_flusher = NULL;
2689
2690 BUG_ON(!list_empty(&this_flusher.list));
2691 BUG_ON(wq->flush_color != this_flusher.flush_color);
2692
2693 while (true) {
2694 struct wq_flusher *next, *tmp;
2695
2696 /* complete all the flushers sharing the current flush color */
2697 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2698 if (next->flush_color != wq->flush_color)
2699 break;
2700 list_del_init(&next->list);
2701 complete(&next->done);
2702 }
2703
2704 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2705 wq->flush_color != work_next_color(wq->work_color));
2706
2707 /* this flush_color is finished, advance by one */
2708 wq->flush_color = work_next_color(wq->flush_color);
2709
2710 /* one color has been freed, handle overflow queue */
2711 if (!list_empty(&wq->flusher_overflow)) {
2712 /*
2713 * Assign the same color to all overflowed
2714 * flushers, advance work_color and append to
2715 * flusher_queue. This is the start-to-wait
2716 * phase for these overflowed flushers.
2717 */
2718 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2719 tmp->flush_color = wq->work_color;
2720
2721 wq->work_color = work_next_color(wq->work_color);
2722
2723 list_splice_tail_init(&wq->flusher_overflow,
2724 &wq->flusher_queue);
2725 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2726 }
2727
2728 if (list_empty(&wq->flusher_queue)) {
2729 BUG_ON(wq->flush_color != wq->work_color);
2730 break;
2731 }
2732
2733 /*
2734 * Need to flush more colors. Make the next flusher
2735 * the new first flusher and arm cwqs.
2736 */
2737 BUG_ON(wq->flush_color == wq->work_color);
2738 BUG_ON(wq->flush_color != next->flush_color);
2739
2740 list_del_init(&next->list);
2741 wq->first_flusher = next;
2742
2743 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2744 break;
2745
2746 /*
2747 * Meh... this color is already done, clear first
2748 * flusher and repeat cascading.
2749 */
2750 wq->first_flusher = NULL;
2751 }
2752
2753out_unlock:
2754 mutex_unlock(&wq->flush_mutex);
1da177e4 2755}
ae90dd5d 2756EXPORT_SYMBOL_GPL(flush_workqueue);
1da177e4 2757
9c5a2ba7
TH
2758/**
2759 * drain_workqueue - drain a workqueue
2760 * @wq: workqueue to drain
2761 *
2762 * Wait until the workqueue becomes empty. While draining is in progress,
2763 * only chain queueing is allowed. IOW, only currently pending or running
2764 * work items on @wq can queue further work items on it. @wq is flushed
2765 * repeatedly until it becomes empty. The number of flushing is detemined
2766 * by the depth of chaining and should be relatively short. Whine if it
2767 * takes too long.
2768 */
2769void drain_workqueue(struct workqueue_struct *wq)
2770{
2771 unsigned int flush_cnt = 0;
2772 unsigned int cpu;
2773
2774 /*
2775 * __queue_work() needs to test whether there are drainers, is much
2776 * hotter than drain_workqueue() and already looks at @wq->flags.
2777 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2778 */
2779 spin_lock(&workqueue_lock);
2780 if (!wq->nr_drainers++)
2781 wq->flags |= WQ_DRAINING;
2782 spin_unlock(&workqueue_lock);
2783reflush:
2784 flush_workqueue(wq);
2785
2786 for_each_cwq_cpu(cpu, wq) {
2787 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
fa2563e4 2788 bool drained;
9c5a2ba7 2789
bd7bdd43 2790 spin_lock_irq(&cwq->pool->gcwq->lock);
fa2563e4 2791 drained = !cwq->nr_active && list_empty(&cwq->delayed_works);
bd7bdd43 2792 spin_unlock_irq(&cwq->pool->gcwq->lock);
fa2563e4
TT
2793
2794 if (drained)
9c5a2ba7
TH
2795 continue;
2796
2797 if (++flush_cnt == 10 ||
2798 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
044c782c
VI
2799 pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
2800 wq->name, flush_cnt);
9c5a2ba7
TH
2801 goto reflush;
2802 }
2803
2804 spin_lock(&workqueue_lock);
2805 if (!--wq->nr_drainers)
2806 wq->flags &= ~WQ_DRAINING;
2807 spin_unlock(&workqueue_lock);
2808}
2809EXPORT_SYMBOL_GPL(drain_workqueue);
2810
606a5020 2811static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
db700897 2812{
affee4b2 2813 struct worker *worker = NULL;
8b03ae3c 2814 struct global_cwq *gcwq;
db700897 2815 struct cpu_workqueue_struct *cwq;
db700897
ON
2816
2817 might_sleep();
7a22ad75
TH
2818 gcwq = get_work_gcwq(work);
2819 if (!gcwq)
baf59022 2820 return false;
db700897 2821
8b03ae3c 2822 spin_lock_irq(&gcwq->lock);
db700897
ON
2823 if (!list_empty(&work->entry)) {
2824 /*
2825 * See the comment near try_to_grab_pending()->smp_rmb().
7a22ad75
TH
2826 * If it was re-queued to a different gcwq under us, we
2827 * are not going to wait.
db700897
ON
2828 */
2829 smp_rmb();
7a22ad75 2830 cwq = get_work_cwq(work);
bd7bdd43 2831 if (unlikely(!cwq || gcwq != cwq->pool->gcwq))
4690c4ab 2832 goto already_gone;
606a5020 2833 } else {
7a22ad75 2834 worker = find_worker_executing_work(gcwq, work);
affee4b2 2835 if (!worker)
4690c4ab 2836 goto already_gone;
7a22ad75 2837 cwq = worker->current_cwq;
606a5020 2838 }
db700897 2839
baf59022 2840 insert_wq_barrier(cwq, barr, work, worker);
8b03ae3c 2841 spin_unlock_irq(&gcwq->lock);
7a22ad75 2842
e159489b
TH
2843 /*
2844 * If @max_active is 1 or rescuer is in use, flushing another work
2845 * item on the same workqueue may lead to deadlock. Make sure the
2846 * flusher is not running on the same workqueue by verifying write
2847 * access.
2848 */
2849 if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER)
2850 lock_map_acquire(&cwq->wq->lockdep_map);
2851 else
2852 lock_map_acquire_read(&cwq->wq->lockdep_map);
7a22ad75 2853 lock_map_release(&cwq->wq->lockdep_map);
e159489b 2854
401a8d04 2855 return true;
4690c4ab 2856already_gone:
8b03ae3c 2857 spin_unlock_irq(&gcwq->lock);
401a8d04 2858 return false;
db700897 2859}
baf59022
TH
2860
2861/**
2862 * flush_work - wait for a work to finish executing the last queueing instance
2863 * @work: the work to flush
2864 *
606a5020
TH
2865 * Wait until @work has finished execution. @work is guaranteed to be idle
2866 * on return if it hasn't been requeued since flush started.
baf59022
TH
2867 *
2868 * RETURNS:
2869 * %true if flush_work() waited for the work to finish execution,
2870 * %false if it was already idle.
2871 */
2872bool flush_work(struct work_struct *work)
2873{
2874 struct wq_barrier barr;
2875
0976dfc1
SB
2876 lock_map_acquire(&work->lockdep_map);
2877 lock_map_release(&work->lockdep_map);
2878
606a5020 2879 if (start_flush_work(work, &barr)) {
401a8d04
TH
2880 wait_for_completion(&barr.done);
2881 destroy_work_on_stack(&barr.work);
2882 return true;
606a5020 2883 } else {
401a8d04 2884 return false;
6e84d644 2885 }
6e84d644 2886}
606a5020 2887EXPORT_SYMBOL_GPL(flush_work);
6e84d644 2888
36e227d2 2889static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
1f1f642e 2890{
bbb68dfa 2891 unsigned long flags;
1f1f642e
ON
2892 int ret;
2893
2894 do {
bbb68dfa
TH
2895 ret = try_to_grab_pending(work, is_dwork, &flags);
2896 /*
2897 * If someone else is canceling, wait for the same event it
2898 * would be waiting for before retrying.
2899 */
2900 if (unlikely(ret == -ENOENT))
606a5020 2901 flush_work(work);
1f1f642e
ON
2902 } while (unlikely(ret < 0));
2903
bbb68dfa
TH
2904 /* tell other tasks trying to grab @work to back off */
2905 mark_work_canceling(work);
2906 local_irq_restore(flags);
2907
606a5020 2908 flush_work(work);
7a22ad75 2909 clear_work_data(work);
1f1f642e
ON
2910 return ret;
2911}
2912
6e84d644 2913/**
401a8d04
TH
2914 * cancel_work_sync - cancel a work and wait for it to finish
2915 * @work: the work to cancel
6e84d644 2916 *
401a8d04
TH
2917 * Cancel @work and wait for its execution to finish. This function
2918 * can be used even if the work re-queues itself or migrates to
2919 * another workqueue. On return from this function, @work is
2920 * guaranteed to be not pending or executing on any CPU.
1f1f642e 2921 *
401a8d04
TH
2922 * cancel_work_sync(&delayed_work->work) must not be used for
2923 * delayed_work's. Use cancel_delayed_work_sync() instead.
6e84d644 2924 *
401a8d04 2925 * The caller must ensure that the workqueue on which @work was last
6e84d644 2926 * queued can't be destroyed before this function returns.
401a8d04
TH
2927 *
2928 * RETURNS:
2929 * %true if @work was pending, %false otherwise.
6e84d644 2930 */
401a8d04 2931bool cancel_work_sync(struct work_struct *work)
6e84d644 2932{
36e227d2 2933 return __cancel_work_timer(work, false);
b89deed3 2934}
28e53bdd 2935EXPORT_SYMBOL_GPL(cancel_work_sync);
b89deed3 2936
6e84d644 2937/**
401a8d04
TH
2938 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2939 * @dwork: the delayed work to flush
6e84d644 2940 *
401a8d04
TH
2941 * Delayed timer is cancelled and the pending work is queued for
2942 * immediate execution. Like flush_work(), this function only
2943 * considers the last queueing instance of @dwork.
1f1f642e 2944 *
401a8d04
TH
2945 * RETURNS:
2946 * %true if flush_work() waited for the work to finish execution,
2947 * %false if it was already idle.
6e84d644 2948 */
401a8d04
TH
2949bool flush_delayed_work(struct delayed_work *dwork)
2950{
8930caba 2951 local_irq_disable();
401a8d04 2952 if (del_timer_sync(&dwork->timer))
1265057f 2953 __queue_work(dwork->cpu,
401a8d04 2954 get_work_cwq(&dwork->work)->wq, &dwork->work);
8930caba 2955 local_irq_enable();
401a8d04
TH
2956 return flush_work(&dwork->work);
2957}
2958EXPORT_SYMBOL(flush_delayed_work);
2959
09383498 2960/**
57b30ae7
TH
2961 * cancel_delayed_work - cancel a delayed work
2962 * @dwork: delayed_work to cancel
09383498 2963 *
57b30ae7
TH
2964 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2965 * and canceled; %false if wasn't pending. Note that the work callback
2966 * function may still be running on return, unless it returns %true and the
2967 * work doesn't re-arm itself. Explicitly flush or use
2968 * cancel_delayed_work_sync() to wait on it.
09383498 2969 *
57b30ae7 2970 * This function is safe to call from any context including IRQ handler.
09383498 2971 */
57b30ae7 2972bool cancel_delayed_work(struct delayed_work *dwork)
09383498 2973{
57b30ae7
TH
2974 unsigned long flags;
2975 int ret;
2976
2977 do {
2978 ret = try_to_grab_pending(&dwork->work, true, &flags);
2979 } while (unlikely(ret == -EAGAIN));
2980
2981 if (unlikely(ret < 0))
2982 return false;
2983
2984 set_work_cpu_and_clear_pending(&dwork->work, work_cpu(&dwork->work));
2985 local_irq_restore(flags);
c0158ca6 2986 return ret;
09383498 2987}
57b30ae7 2988EXPORT_SYMBOL(cancel_delayed_work);
09383498 2989
401a8d04
TH
2990/**
2991 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2992 * @dwork: the delayed work cancel
2993 *
2994 * This is cancel_work_sync() for delayed works.
2995 *
2996 * RETURNS:
2997 * %true if @dwork was pending, %false otherwise.
2998 */
2999bool cancel_delayed_work_sync(struct delayed_work *dwork)
6e84d644 3000{
36e227d2 3001 return __cancel_work_timer(&dwork->work, true);
6e84d644 3002}
f5a421a4 3003EXPORT_SYMBOL(cancel_delayed_work_sync);
1da177e4 3004
0fcb78c2 3005/**
c1a220e7
ZR
3006 * schedule_work_on - put work task on a specific cpu
3007 * @cpu: cpu to put the work task on
3008 * @work: job to be done
3009 *
3010 * This puts a job on a specific cpu
3011 */
d4283e93 3012bool schedule_work_on(int cpu, struct work_struct *work)
c1a220e7 3013{
d320c038 3014 return queue_work_on(cpu, system_wq, work);
c1a220e7
ZR
3015}
3016EXPORT_SYMBOL(schedule_work_on);
3017
0fcb78c2 3018/**
0fcb78c2
REB
3019 * schedule_work - put work task in global workqueue
3020 * @work: job to be done
0fcb78c2 3021 *
d4283e93
TH
3022 * Returns %false if @work was already on the kernel-global workqueue and
3023 * %true otherwise.
5b0f437d
BVA
3024 *
3025 * This puts a job in the kernel-global workqueue if it was not already
3026 * queued and leaves it in the same position on the kernel-global
3027 * workqueue otherwise.
0fcb78c2 3028 */
d4283e93 3029bool schedule_work(struct work_struct *work)
1da177e4 3030{
d320c038 3031 return queue_work(system_wq, work);
1da177e4 3032}
ae90dd5d 3033EXPORT_SYMBOL(schedule_work);
1da177e4 3034
0fcb78c2
REB
3035/**
3036 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
3037 * @cpu: cpu to use
52bad64d 3038 * @dwork: job to be done
0fcb78c2
REB
3039 * @delay: number of jiffies to wait
3040 *
3041 * After waiting for a given time this puts a job in the kernel-global
3042 * workqueue on the specified CPU.
3043 */
d4283e93
TH
3044bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3045 unsigned long delay)
1da177e4 3046{
d320c038 3047 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
1da177e4 3048}
ae90dd5d 3049EXPORT_SYMBOL(schedule_delayed_work_on);
1da177e4 3050
0fcb78c2
REB
3051/**
3052 * schedule_delayed_work - put work task in global workqueue after delay
52bad64d
DH
3053 * @dwork: job to be done
3054 * @delay: number of jiffies to wait or 0 for immediate execution
0fcb78c2
REB
3055 *
3056 * After waiting for a given time this puts a job in the kernel-global
3057 * workqueue.
3058 */
d4283e93 3059bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
1da177e4 3060{
d320c038 3061 return queue_delayed_work(system_wq, dwork, delay);
1da177e4 3062}
ae90dd5d 3063EXPORT_SYMBOL(schedule_delayed_work);
1da177e4 3064
b6136773 3065/**
31ddd871 3066 * schedule_on_each_cpu - execute a function synchronously on each online CPU
b6136773 3067 * @func: the function to call
b6136773 3068 *
31ddd871
TH
3069 * schedule_on_each_cpu() executes @func on each online CPU using the
3070 * system workqueue and blocks until all CPUs have completed.
b6136773 3071 * schedule_on_each_cpu() is very slow.
31ddd871
TH
3072 *
3073 * RETURNS:
3074 * 0 on success, -errno on failure.
b6136773 3075 */
65f27f38 3076int schedule_on_each_cpu(work_func_t func)
15316ba8
CL
3077{
3078 int cpu;
38f51568 3079 struct work_struct __percpu *works;
15316ba8 3080
b6136773
AM
3081 works = alloc_percpu(struct work_struct);
3082 if (!works)
15316ba8 3083 return -ENOMEM;
b6136773 3084
93981800
TH
3085 get_online_cpus();
3086
15316ba8 3087 for_each_online_cpu(cpu) {
9bfb1839
IM
3088 struct work_struct *work = per_cpu_ptr(works, cpu);
3089
3090 INIT_WORK(work, func);
b71ab8c2 3091 schedule_work_on(cpu, work);
65a64464 3092 }
93981800
TH
3093
3094 for_each_online_cpu(cpu)
3095 flush_work(per_cpu_ptr(works, cpu));
3096
95402b38 3097 put_online_cpus();
b6136773 3098 free_percpu(works);
15316ba8
CL
3099 return 0;
3100}
3101
eef6a7d5
AS
3102/**
3103 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3104 *
3105 * Forces execution of the kernel-global workqueue and blocks until its
3106 * completion.
3107 *
3108 * Think twice before calling this function! It's very easy to get into
3109 * trouble if you don't take great care. Either of the following situations
3110 * will lead to deadlock:
3111 *
3112 * One of the work items currently on the workqueue needs to acquire
3113 * a lock held by your code or its caller.
3114 *
3115 * Your code is running in the context of a work routine.
3116 *
3117 * They will be detected by lockdep when they occur, but the first might not
3118 * occur very often. It depends on what work items are on the workqueue and
3119 * what locks they need, which you have no control over.
3120 *
3121 * In most situations flushing the entire workqueue is overkill; you merely
3122 * need to know that a particular work item isn't queued and isn't running.
3123 * In such cases you should use cancel_delayed_work_sync() or
3124 * cancel_work_sync() instead.
3125 */
1da177e4
LT
3126void flush_scheduled_work(void)
3127{
d320c038 3128 flush_workqueue(system_wq);
1da177e4 3129}
ae90dd5d 3130EXPORT_SYMBOL(flush_scheduled_work);
1da177e4 3131
1fa44eca
JB
3132/**
3133 * execute_in_process_context - reliably execute the routine with user context
3134 * @fn: the function to execute
1fa44eca
JB
3135 * @ew: guaranteed storage for the execute work structure (must
3136 * be available when the work executes)
3137 *
3138 * Executes the function immediately if process context is available,
3139 * otherwise schedules the function for delayed execution.
3140 *
3141 * Returns: 0 - function was executed
3142 * 1 - function was scheduled for execution
3143 */
65f27f38 3144int execute_in_process_context(work_func_t fn, struct execute_work *ew)
1fa44eca
JB
3145{
3146 if (!in_interrupt()) {
65f27f38 3147 fn(&ew->work);
1fa44eca
JB
3148 return 0;
3149 }
3150
65f27f38 3151 INIT_WORK(&ew->work, fn);
1fa44eca
JB
3152 schedule_work(&ew->work);
3153
3154 return 1;
3155}
3156EXPORT_SYMBOL_GPL(execute_in_process_context);
3157
1da177e4
LT
3158int keventd_up(void)
3159{
d320c038 3160 return system_wq != NULL;
1da177e4
LT
3161}
3162
bdbc5dd7 3163static int alloc_cwqs(struct workqueue_struct *wq)
0f900049 3164{
65a64464 3165 /*
0f900049
TH
3166 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
3167 * Make sure that the alignment isn't lower than that of
3168 * unsigned long long.
65a64464 3169 */
0f900049
TH
3170 const size_t size = sizeof(struct cpu_workqueue_struct);
3171 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
3172 __alignof__(unsigned long long));
65a64464 3173
e06ffa1e 3174 if (!(wq->flags & WQ_UNBOUND))
f3421797 3175 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
931ac77e 3176 else {
f3421797
TH
3177 void *ptr;
3178
3179 /*
3180 * Allocate enough room to align cwq and put an extra
3181 * pointer at the end pointing back to the originally
3182 * allocated pointer which will be used for free.
3183 */
3184 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
3185 if (ptr) {
3186 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
3187 *(void **)(wq->cpu_wq.single + 1) = ptr;
3188 }
bdbc5dd7 3189 }
f3421797 3190
0415b00d 3191 /* just in case, make sure it's actually aligned */
bdbc5dd7
TH
3192 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
3193 return wq->cpu_wq.v ? 0 : -ENOMEM;
0f900049
TH
3194}
3195
bdbc5dd7 3196static void free_cwqs(struct workqueue_struct *wq)
0f900049 3197{
e06ffa1e 3198 if (!(wq->flags & WQ_UNBOUND))
f3421797
TH
3199 free_percpu(wq->cpu_wq.pcpu);
3200 else if (wq->cpu_wq.single) {
3201 /* the pointer to free is stored right after the cwq */
bdbc5dd7 3202 kfree(*(void **)(wq->cpu_wq.single + 1));
f3421797 3203 }
0f900049
TH
3204}
3205
f3421797
TH
3206static int wq_clamp_max_active(int max_active, unsigned int flags,
3207 const char *name)
b71ab8c2 3208{
f3421797
TH
3209 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3210
3211 if (max_active < 1 || max_active > lim)
044c782c
VI
3212 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3213 max_active, name, 1, lim);
b71ab8c2 3214
f3421797 3215 return clamp_val(max_active, 1, lim);
b71ab8c2
TH
3216}
3217
b196be89 3218struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
d320c038
TH
3219 unsigned int flags,
3220 int max_active,
3221 struct lock_class_key *key,
b196be89 3222 const char *lock_name, ...)
1da177e4 3223{
b196be89 3224 va_list args, args1;
1da177e4 3225 struct workqueue_struct *wq;
c34056a3 3226 unsigned int cpu;
b196be89
TH
3227 size_t namelen;
3228
3229 /* determine namelen, allocate wq and format name */
3230 va_start(args, lock_name);
3231 va_copy(args1, args);
3232 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3233
3234 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3235 if (!wq)
3236 goto err;
3237
3238 vsnprintf(wq->name, namelen, fmt, args1);
3239 va_end(args);
3240 va_end(args1);
1da177e4 3241
6370a6ad
TH
3242 /*
3243 * Workqueues which may be used during memory reclaim should
3244 * have a rescuer to guarantee forward progress.
3245 */
3246 if (flags & WQ_MEM_RECLAIM)
3247 flags |= WQ_RESCUER;
3248
d320c038 3249 max_active = max_active ?: WQ_DFL_ACTIVE;
b196be89 3250 max_active = wq_clamp_max_active(max_active, flags, wq->name);
3af24433 3251
b196be89 3252 /* init wq */
97e37d7b 3253 wq->flags = flags;
a0a1a5fd 3254 wq->saved_max_active = max_active;
73f53c4a
TH
3255 mutex_init(&wq->flush_mutex);
3256 atomic_set(&wq->nr_cwqs_to_flush, 0);
3257 INIT_LIST_HEAD(&wq->flusher_queue);
3258 INIT_LIST_HEAD(&wq->flusher_overflow);
502ca9d8 3259
eb13ba87 3260 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
cce1a165 3261 INIT_LIST_HEAD(&wq->list);
3af24433 3262
bdbc5dd7
TH
3263 if (alloc_cwqs(wq) < 0)
3264 goto err;
3265
f3421797 3266 for_each_cwq_cpu(cpu, wq) {
1537663f 3267 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
8b03ae3c 3268 struct global_cwq *gcwq = get_gcwq(cpu);
3270476a 3269 int pool_idx = (bool)(flags & WQ_HIGHPRI);
1537663f 3270
0f900049 3271 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
3270476a 3272 cwq->pool = &gcwq->pools[pool_idx];
c34056a3 3273 cwq->wq = wq;
73f53c4a 3274 cwq->flush_color = -1;
1e19ffc6 3275 cwq->max_active = max_active;
1e19ffc6 3276 INIT_LIST_HEAD(&cwq->delayed_works);
e22bee78 3277 }
1537663f 3278
e22bee78
TH
3279 if (flags & WQ_RESCUER) {
3280 struct worker *rescuer;
3281
f2e005aa 3282 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
e22bee78
TH
3283 goto err;
3284
3285 wq->rescuer = rescuer = alloc_worker();
3286 if (!rescuer)
3287 goto err;
3288
111c225a
TH
3289 rescuer->rescue_wq = wq;
3290 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
b196be89 3291 wq->name);
e22bee78
TH
3292 if (IS_ERR(rescuer->task))
3293 goto err;
3294
e22bee78
TH
3295 rescuer->task->flags |= PF_THREAD_BOUND;
3296 wake_up_process(rescuer->task);
3af24433
ON
3297 }
3298
a0a1a5fd
TH
3299 /*
3300 * workqueue_lock protects global freeze state and workqueues
3301 * list. Grab it, set max_active accordingly and add the new
3302 * workqueue to workqueues list.
3303 */
1537663f 3304 spin_lock(&workqueue_lock);
a0a1a5fd 3305
58a69cb4 3306 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
f3421797 3307 for_each_cwq_cpu(cpu, wq)
a0a1a5fd
TH
3308 get_cwq(cpu, wq)->max_active = 0;
3309
1537663f 3310 list_add(&wq->list, &workqueues);
a0a1a5fd 3311
1537663f
TH
3312 spin_unlock(&workqueue_lock);
3313
3af24433 3314 return wq;
4690c4ab
TH
3315err:
3316 if (wq) {
bdbc5dd7 3317 free_cwqs(wq);
f2e005aa 3318 free_mayday_mask(wq->mayday_mask);
e22bee78 3319 kfree(wq->rescuer);
4690c4ab
TH
3320 kfree(wq);
3321 }
3322 return NULL;
3af24433 3323}
d320c038 3324EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
1da177e4 3325
3af24433
ON
3326/**
3327 * destroy_workqueue - safely terminate a workqueue
3328 * @wq: target workqueue
3329 *
3330 * Safely destroy a workqueue. All work currently pending will be done first.
3331 */
3332void destroy_workqueue(struct workqueue_struct *wq)
3333{
c8e55f36 3334 unsigned int cpu;
3af24433 3335
9c5a2ba7
TH
3336 /* drain it before proceeding with destruction */
3337 drain_workqueue(wq);
c8efcc25 3338
a0a1a5fd
TH
3339 /*
3340 * wq list is used to freeze wq, remove from list after
3341 * flushing is complete in case freeze races us.
3342 */
95402b38 3343 spin_lock(&workqueue_lock);
b1f4ec17 3344 list_del(&wq->list);
95402b38 3345 spin_unlock(&workqueue_lock);
3af24433 3346
e22bee78 3347 /* sanity check */
f3421797 3348 for_each_cwq_cpu(cpu, wq) {
73f53c4a
TH
3349 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3350 int i;
3351
73f53c4a
TH
3352 for (i = 0; i < WORK_NR_COLORS; i++)
3353 BUG_ON(cwq->nr_in_flight[i]);
1e19ffc6
TH
3354 BUG_ON(cwq->nr_active);
3355 BUG_ON(!list_empty(&cwq->delayed_works));
73f53c4a 3356 }
9b41ea72 3357
e22bee78
TH
3358 if (wq->flags & WQ_RESCUER) {
3359 kthread_stop(wq->rescuer->task);
f2e005aa 3360 free_mayday_mask(wq->mayday_mask);
8d9df9f0 3361 kfree(wq->rescuer);
e22bee78
TH
3362 }
3363
bdbc5dd7 3364 free_cwqs(wq);
3af24433
ON
3365 kfree(wq);
3366}
3367EXPORT_SYMBOL_GPL(destroy_workqueue);
3368
9f4bd4cd
LJ
3369/**
3370 * cwq_set_max_active - adjust max_active of a cwq
3371 * @cwq: target cpu_workqueue_struct
3372 * @max_active: new max_active value.
3373 *
3374 * Set @cwq->max_active to @max_active and activate delayed works if
3375 * increased.
3376 *
3377 * CONTEXT:
3378 * spin_lock_irq(gcwq->lock).
3379 */
3380static void cwq_set_max_active(struct cpu_workqueue_struct *cwq, int max_active)
3381{
3382 cwq->max_active = max_active;
3383
3384 while (!list_empty(&cwq->delayed_works) &&
3385 cwq->nr_active < cwq->max_active)
3386 cwq_activate_first_delayed(cwq);
3387}
3388
dcd989cb
TH
3389/**
3390 * workqueue_set_max_active - adjust max_active of a workqueue
3391 * @wq: target workqueue
3392 * @max_active: new max_active value.
3393 *
3394 * Set max_active of @wq to @max_active.
3395 *
3396 * CONTEXT:
3397 * Don't call from IRQ context.
3398 */
3399void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3400{
3401 unsigned int cpu;
3402
f3421797 3403 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
dcd989cb
TH
3404
3405 spin_lock(&workqueue_lock);
3406
3407 wq->saved_max_active = max_active;
3408
f3421797 3409 for_each_cwq_cpu(cpu, wq) {
dcd989cb
TH
3410 struct global_cwq *gcwq = get_gcwq(cpu);
3411
3412 spin_lock_irq(&gcwq->lock);
3413
58a69cb4 3414 if (!(wq->flags & WQ_FREEZABLE) ||
dcd989cb 3415 !(gcwq->flags & GCWQ_FREEZING))
70369b11 3416 cwq_set_max_active(get_cwq(gcwq->cpu, wq), max_active);
9bfb1839 3417
dcd989cb 3418 spin_unlock_irq(&gcwq->lock);
65a64464 3419 }
93981800 3420
dcd989cb 3421 spin_unlock(&workqueue_lock);
15316ba8 3422}
dcd989cb 3423EXPORT_SYMBOL_GPL(workqueue_set_max_active);
15316ba8 3424
eef6a7d5 3425/**
dcd989cb
TH
3426 * workqueue_congested - test whether a workqueue is congested
3427 * @cpu: CPU in question
3428 * @wq: target workqueue
eef6a7d5 3429 *
dcd989cb
TH
3430 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3431 * no synchronization around this function and the test result is
3432 * unreliable and only useful as advisory hints or for debugging.
eef6a7d5 3433 *
dcd989cb
TH
3434 * RETURNS:
3435 * %true if congested, %false otherwise.
eef6a7d5 3436 */
dcd989cb 3437bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
1da177e4 3438{
dcd989cb
TH
3439 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3440
3441 return !list_empty(&cwq->delayed_works);
1da177e4 3442}
dcd989cb 3443EXPORT_SYMBOL_GPL(workqueue_congested);
1da177e4 3444
1fa44eca 3445/**
dcd989cb
TH
3446 * work_cpu - return the last known associated cpu for @work
3447 * @work: the work of interest
1fa44eca 3448 *
dcd989cb 3449 * RETURNS:
bdbc5dd7 3450 * CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
1fa44eca 3451 */
dcd989cb 3452unsigned int work_cpu(struct work_struct *work)
1fa44eca 3453{
dcd989cb 3454 struct global_cwq *gcwq = get_work_gcwq(work);
1fa44eca 3455
bdbc5dd7 3456 return gcwq ? gcwq->cpu : WORK_CPU_NONE;
1fa44eca 3457}
dcd989cb 3458EXPORT_SYMBOL_GPL(work_cpu);
1fa44eca 3459
dcd989cb
TH
3460/**
3461 * work_busy - test whether a work is currently pending or running
3462 * @work: the work to be tested
3463 *
3464 * Test whether @work is currently pending or running. There is no
3465 * synchronization around this function and the test result is
3466 * unreliable and only useful as advisory hints or for debugging.
3467 * Especially for reentrant wqs, the pending state might hide the
3468 * running state.
3469 *
3470 * RETURNS:
3471 * OR'd bitmask of WORK_BUSY_* bits.
3472 */
3473unsigned int work_busy(struct work_struct *work)
1da177e4 3474{
dcd989cb
TH
3475 struct global_cwq *gcwq = get_work_gcwq(work);
3476 unsigned long flags;
3477 unsigned int ret = 0;
1da177e4 3478
dcd989cb 3479 if (!gcwq)
999767be 3480 return 0;
1da177e4 3481
dcd989cb 3482 spin_lock_irqsave(&gcwq->lock, flags);
1da177e4 3483
dcd989cb
TH
3484 if (work_pending(work))
3485 ret |= WORK_BUSY_PENDING;
3486 if (find_worker_executing_work(gcwq, work))
3487 ret |= WORK_BUSY_RUNNING;
1da177e4 3488
dcd989cb 3489 spin_unlock_irqrestore(&gcwq->lock, flags);
1da177e4 3490
dcd989cb 3491 return ret;
1da177e4 3492}
dcd989cb 3493EXPORT_SYMBOL_GPL(work_busy);
1da177e4 3494
db7bccf4
TH
3495/*
3496 * CPU hotplug.
3497 *
e22bee78
TH
3498 * There are two challenges in supporting CPU hotplug. Firstly, there
3499 * are a lot of assumptions on strong associations among work, cwq and
3500 * gcwq which make migrating pending and scheduled works very
3501 * difficult to implement without impacting hot paths. Secondly,
3502 * gcwqs serve mix of short, long and very long running works making
3503 * blocked draining impractical.
3504 *
628c78e7
TH
3505 * This is solved by allowing a gcwq to be disassociated from the CPU
3506 * running as an unbound one and allowing it to be reattached later if the
3507 * cpu comes back online.
db7bccf4 3508 */
1da177e4 3509
60373152 3510/* claim manager positions of all pools */
b2eb83d1 3511static void gcwq_claim_assoc_and_lock(struct global_cwq *gcwq)
60373152
TH
3512{
3513 struct worker_pool *pool;
3514
3515 for_each_worker_pool(pool, gcwq)
b2eb83d1 3516 mutex_lock_nested(&pool->assoc_mutex, pool - gcwq->pools);
8db25e78 3517 spin_lock_irq(&gcwq->lock);
60373152
TH
3518}
3519
3520/* release manager positions */
b2eb83d1 3521static void gcwq_release_assoc_and_unlock(struct global_cwq *gcwq)
60373152
TH
3522{
3523 struct worker_pool *pool;
3524
8db25e78 3525 spin_unlock_irq(&gcwq->lock);
60373152 3526 for_each_worker_pool(pool, gcwq)
b2eb83d1 3527 mutex_unlock(&pool->assoc_mutex);
60373152
TH
3528}
3529
628c78e7 3530static void gcwq_unbind_fn(struct work_struct *work)
3af24433 3531{
628c78e7 3532 struct global_cwq *gcwq = get_gcwq(smp_processor_id());
4ce62e9e 3533 struct worker_pool *pool;
db7bccf4
TH
3534 struct worker *worker;
3535 struct hlist_node *pos;
3536 int i;
3af24433 3537
db7bccf4
TH
3538 BUG_ON(gcwq->cpu != smp_processor_id());
3539
b2eb83d1 3540 gcwq_claim_assoc_and_lock(gcwq);
3af24433 3541
f2d5a0ee
TH
3542 /*
3543 * We've claimed all manager positions. Make all workers unbound
3544 * and set DISASSOCIATED. Before this, all workers except for the
3545 * ones which are still executing works from before the last CPU
3546 * down must be on the cpu. After this, they may become diasporas.
3547 */
60373152 3548 for_each_worker_pool(pool, gcwq)
4ce62e9e 3549 list_for_each_entry(worker, &pool->idle_list, entry)
403c821d 3550 worker->flags |= WORKER_UNBOUND;
3af24433 3551
db7bccf4 3552 for_each_busy_worker(worker, i, pos, gcwq)
403c821d 3553 worker->flags |= WORKER_UNBOUND;
06ba38a9 3554
f2d5a0ee
TH
3555 gcwq->flags |= GCWQ_DISASSOCIATED;
3556
b2eb83d1 3557 gcwq_release_assoc_and_unlock(gcwq);
628c78e7 3558
e22bee78 3559 /*
403c821d 3560 * Call schedule() so that we cross rq->lock and thus can guarantee
628c78e7
TH
3561 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3562 * as scheduler callbacks may be invoked from other cpus.
e22bee78 3563 */
e22bee78 3564 schedule();
06ba38a9 3565
e22bee78 3566 /*
628c78e7
TH
3567 * Sched callbacks are disabled now. Zap nr_running. After this,
3568 * nr_running stays zero and need_more_worker() and keep_working()
3569 * are always true as long as the worklist is not empty. @gcwq now
3570 * behaves as unbound (in terms of concurrency management) gcwq
3571 * which is served by workers tied to the CPU.
3572 *
3573 * On return from this function, the current worker would trigger
3574 * unbound chain execution of pending work items if other workers
3575 * didn't already.
e22bee78 3576 */
4ce62e9e
TH
3577 for_each_worker_pool(pool, gcwq)
3578 atomic_set(get_pool_nr_running(pool), 0);
3af24433 3579}
3af24433 3580
8db25e78
TH
3581/*
3582 * Workqueues should be brought up before normal priority CPU notifiers.
3583 * This will be registered high priority CPU notifier.
3584 */
9fdf9b73 3585static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
8db25e78
TH
3586 unsigned long action,
3587 void *hcpu)
3af24433
ON
3588{
3589 unsigned int cpu = (unsigned long)hcpu;
db7bccf4 3590 struct global_cwq *gcwq = get_gcwq(cpu);
4ce62e9e 3591 struct worker_pool *pool;
3ce63377 3592
8db25e78 3593 switch (action & ~CPU_TASKS_FROZEN) {
3af24433 3594 case CPU_UP_PREPARE:
4ce62e9e 3595 for_each_worker_pool(pool, gcwq) {
3ce63377
TH
3596 struct worker *worker;
3597
3598 if (pool->nr_workers)
3599 continue;
3600
3601 worker = create_worker(pool);
3602 if (!worker)
3603 return NOTIFY_BAD;
3604
3605 spin_lock_irq(&gcwq->lock);
3606 start_worker(worker);
3607 spin_unlock_irq(&gcwq->lock);
3af24433 3608 }
8db25e78 3609 break;
3af24433 3610
db7bccf4
TH
3611 case CPU_DOWN_FAILED:
3612 case CPU_ONLINE:
b2eb83d1 3613 gcwq_claim_assoc_and_lock(gcwq);
bc2ae0f5 3614 gcwq->flags &= ~GCWQ_DISASSOCIATED;
25511a47 3615 rebind_workers(gcwq);
b2eb83d1 3616 gcwq_release_assoc_and_unlock(gcwq);
db7bccf4 3617 break;
00dfcaf7 3618 }
65758202
TH
3619 return NOTIFY_OK;
3620}
3621
3622/*
3623 * Workqueues should be brought down after normal priority CPU notifiers.
3624 * This will be registered as low priority CPU notifier.
3625 */
9fdf9b73 3626static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
65758202
TH
3627 unsigned long action,
3628 void *hcpu)
3629{
8db25e78
TH
3630 unsigned int cpu = (unsigned long)hcpu;
3631 struct work_struct unbind_work;
3632
65758202
TH
3633 switch (action & ~CPU_TASKS_FROZEN) {
3634 case CPU_DOWN_PREPARE:
8db25e78
TH
3635 /* unbinding should happen on the local CPU */
3636 INIT_WORK_ONSTACK(&unbind_work, gcwq_unbind_fn);
7635d2fd 3637 queue_work_on(cpu, system_highpri_wq, &unbind_work);
8db25e78
TH
3638 flush_work(&unbind_work);
3639 break;
65758202
TH
3640 }
3641 return NOTIFY_OK;
3642}
3643
2d3854a3 3644#ifdef CONFIG_SMP
8ccad40d 3645
2d3854a3 3646struct work_for_cpu {
ed48ece2 3647 struct work_struct work;
2d3854a3
RR
3648 long (*fn)(void *);
3649 void *arg;
3650 long ret;
3651};
3652
ed48ece2 3653static void work_for_cpu_fn(struct work_struct *work)
2d3854a3 3654{
ed48ece2
TH
3655 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
3656
2d3854a3
RR
3657 wfc->ret = wfc->fn(wfc->arg);
3658}
3659
3660/**
3661 * work_on_cpu - run a function in user context on a particular cpu
3662 * @cpu: the cpu to run on
3663 * @fn: the function to run
3664 * @arg: the function arg
3665 *
31ad9081
RR
3666 * This will return the value @fn returns.
3667 * It is up to the caller to ensure that the cpu doesn't go offline.
6b44003e 3668 * The caller must not hold any locks which would prevent @fn from completing.
2d3854a3
RR
3669 */
3670long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3671{
ed48ece2 3672 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
6b44003e 3673
ed48ece2
TH
3674 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
3675 schedule_work_on(cpu, &wfc.work);
3676 flush_work(&wfc.work);
2d3854a3
RR
3677 return wfc.ret;
3678}
3679EXPORT_SYMBOL_GPL(work_on_cpu);
3680#endif /* CONFIG_SMP */
3681
a0a1a5fd
TH
3682#ifdef CONFIG_FREEZER
3683
3684/**
3685 * freeze_workqueues_begin - begin freezing workqueues
3686 *
58a69cb4
TH
3687 * Start freezing workqueues. After this function returns, all freezable
3688 * workqueues will queue new works to their frozen_works list instead of
3689 * gcwq->worklist.
a0a1a5fd
TH
3690 *
3691 * CONTEXT:
8b03ae3c 3692 * Grabs and releases workqueue_lock and gcwq->lock's.
a0a1a5fd
TH
3693 */
3694void freeze_workqueues_begin(void)
3695{
a0a1a5fd
TH
3696 unsigned int cpu;
3697
3698 spin_lock(&workqueue_lock);
3699
3700 BUG_ON(workqueue_freezing);
3701 workqueue_freezing = true;
3702
f3421797 3703 for_each_gcwq_cpu(cpu) {
8b03ae3c 3704 struct global_cwq *gcwq = get_gcwq(cpu);
bdbc5dd7 3705 struct workqueue_struct *wq;
8b03ae3c
TH
3706
3707 spin_lock_irq(&gcwq->lock);
3708
db7bccf4
TH
3709 BUG_ON(gcwq->flags & GCWQ_FREEZING);
3710 gcwq->flags |= GCWQ_FREEZING;
3711
a0a1a5fd
TH
3712 list_for_each_entry(wq, &workqueues, list) {
3713 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3714
58a69cb4 3715 if (cwq && wq->flags & WQ_FREEZABLE)
a0a1a5fd 3716 cwq->max_active = 0;
a0a1a5fd 3717 }
8b03ae3c
TH
3718
3719 spin_unlock_irq(&gcwq->lock);
a0a1a5fd
TH
3720 }
3721
3722 spin_unlock(&workqueue_lock);
3723}
3724
3725/**
58a69cb4 3726 * freeze_workqueues_busy - are freezable workqueues still busy?
a0a1a5fd
TH
3727 *
3728 * Check whether freezing is complete. This function must be called
3729 * between freeze_workqueues_begin() and thaw_workqueues().
3730 *
3731 * CONTEXT:
3732 * Grabs and releases workqueue_lock.
3733 *
3734 * RETURNS:
58a69cb4
TH
3735 * %true if some freezable workqueues are still busy. %false if freezing
3736 * is complete.
a0a1a5fd
TH
3737 */
3738bool freeze_workqueues_busy(void)
3739{
a0a1a5fd
TH
3740 unsigned int cpu;
3741 bool busy = false;
3742
3743 spin_lock(&workqueue_lock);
3744
3745 BUG_ON(!workqueue_freezing);
3746
f3421797 3747 for_each_gcwq_cpu(cpu) {
bdbc5dd7 3748 struct workqueue_struct *wq;
a0a1a5fd
TH
3749 /*
3750 * nr_active is monotonically decreasing. It's safe
3751 * to peek without lock.
3752 */
3753 list_for_each_entry(wq, &workqueues, list) {
3754 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3755
58a69cb4 3756 if (!cwq || !(wq->flags & WQ_FREEZABLE))
a0a1a5fd
TH
3757 continue;
3758
3759 BUG_ON(cwq->nr_active < 0);
3760 if (cwq->nr_active) {
3761 busy = true;
3762 goto out_unlock;
3763 }
3764 }
3765 }
3766out_unlock:
3767 spin_unlock(&workqueue_lock);
3768 return busy;
3769}
3770
3771/**
3772 * thaw_workqueues - thaw workqueues
3773 *
3774 * Thaw workqueues. Normal queueing is restored and all collected
7e11629d 3775 * frozen works are transferred to their respective gcwq worklists.
a0a1a5fd
TH
3776 *
3777 * CONTEXT:
8b03ae3c 3778 * Grabs and releases workqueue_lock and gcwq->lock's.
a0a1a5fd
TH
3779 */
3780void thaw_workqueues(void)
3781{
a0a1a5fd
TH
3782 unsigned int cpu;
3783
3784 spin_lock(&workqueue_lock);
3785
3786 if (!workqueue_freezing)
3787 goto out_unlock;
3788
f3421797 3789 for_each_gcwq_cpu(cpu) {
8b03ae3c 3790 struct global_cwq *gcwq = get_gcwq(cpu);
4ce62e9e 3791 struct worker_pool *pool;
bdbc5dd7 3792 struct workqueue_struct *wq;
8b03ae3c
TH
3793
3794 spin_lock_irq(&gcwq->lock);
3795
db7bccf4
TH
3796 BUG_ON(!(gcwq->flags & GCWQ_FREEZING));
3797 gcwq->flags &= ~GCWQ_FREEZING;
3798
a0a1a5fd
TH
3799 list_for_each_entry(wq, &workqueues, list) {
3800 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3801
58a69cb4 3802 if (!cwq || !(wq->flags & WQ_FREEZABLE))
a0a1a5fd
TH
3803 continue;
3804
a0a1a5fd 3805 /* restore max_active and repopulate worklist */
9f4bd4cd 3806 cwq_set_max_active(cwq, wq->saved_max_active);
a0a1a5fd 3807 }
8b03ae3c 3808
4ce62e9e
TH
3809 for_each_worker_pool(pool, gcwq)
3810 wake_up_worker(pool);
e22bee78 3811
8b03ae3c 3812 spin_unlock_irq(&gcwq->lock);
a0a1a5fd
TH
3813 }
3814
3815 workqueue_freezing = false;
3816out_unlock:
3817 spin_unlock(&workqueue_lock);
3818}
3819#endif /* CONFIG_FREEZER */
3820
6ee0578b 3821static int __init init_workqueues(void)
1da177e4 3822{
c34056a3
TH
3823 unsigned int cpu;
3824
b5490077
TH
3825 /* make sure we have enough bits for OFFQ CPU number */
3826 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_CPU_SHIFT)) <
3827 WORK_CPU_LAST);
3828
65758202 3829 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
a5b4e57d 3830 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
8b03ae3c
TH
3831
3832 /* initialize gcwqs */
f3421797 3833 for_each_gcwq_cpu(cpu) {
8b03ae3c 3834 struct global_cwq *gcwq = get_gcwq(cpu);
4ce62e9e 3835 struct worker_pool *pool;
8b03ae3c
TH
3836
3837 spin_lock_init(&gcwq->lock);
3838 gcwq->cpu = cpu;
477a3c33 3839 gcwq->flags |= GCWQ_DISASSOCIATED;
8b03ae3c 3840
42f8570f 3841 hash_init(gcwq->busy_hash);
c8e55f36 3842
4ce62e9e
TH
3843 for_each_worker_pool(pool, gcwq) {
3844 pool->gcwq = gcwq;
3845 INIT_LIST_HEAD(&pool->worklist);
3846 INIT_LIST_HEAD(&pool->idle_list);
e7577c50 3847
4ce62e9e
TH
3848 init_timer_deferrable(&pool->idle_timer);
3849 pool->idle_timer.function = idle_worker_timeout;
3850 pool->idle_timer.data = (unsigned long)pool;
e22bee78 3851
4ce62e9e
TH
3852 setup_timer(&pool->mayday_timer, gcwq_mayday_timeout,
3853 (unsigned long)pool);
3854
b2eb83d1 3855 mutex_init(&pool->assoc_mutex);
4ce62e9e
TH
3856 ida_init(&pool->worker_ida);
3857 }
8b03ae3c
TH
3858 }
3859
e22bee78 3860 /* create the initial worker */
f3421797 3861 for_each_online_gcwq_cpu(cpu) {
e22bee78 3862 struct global_cwq *gcwq = get_gcwq(cpu);
4ce62e9e 3863 struct worker_pool *pool;
e22bee78 3864
477a3c33
TH
3865 if (cpu != WORK_CPU_UNBOUND)
3866 gcwq->flags &= ~GCWQ_DISASSOCIATED;
4ce62e9e
TH
3867
3868 for_each_worker_pool(pool, gcwq) {
3869 struct worker *worker;
3870
bc2ae0f5 3871 worker = create_worker(pool);
4ce62e9e
TH
3872 BUG_ON(!worker);
3873 spin_lock_irq(&gcwq->lock);
3874 start_worker(worker);
3875 spin_unlock_irq(&gcwq->lock);
3876 }
e22bee78
TH
3877 }
3878
d320c038 3879 system_wq = alloc_workqueue("events", 0, 0);
1aabe902 3880 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
d320c038 3881 system_long_wq = alloc_workqueue("events_long", 0, 0);
f3421797
TH
3882 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3883 WQ_UNBOUND_MAX_ACTIVE);
24d51add
TH
3884 system_freezable_wq = alloc_workqueue("events_freezable",
3885 WQ_FREEZABLE, 0);
1aabe902 3886 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
ae930e0f 3887 !system_unbound_wq || !system_freezable_wq);
6ee0578b 3888 return 0;
1da177e4 3889}
6ee0578b 3890early_initcall(init_workqueues);