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