blob: 1405fb98c0b19c857c0d83d0a1dba50153ff5093 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heoc54fce62010-09-10 16:51:36 +02002 * kernel/workqueue.c - generic async execution with shared worker pool
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Tejun Heoc54fce62010-09-10 16:51:36 +02004 * Copyright (C) 2002 Ingo Molnar
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Tejun Heoc54fce62010-09-10 16:51:36 +02006 * Derived from the taskqueue/keventd code by:
7 * David Woodhouse <dwmw2@infradead.org>
8 * Andrew Morton
9 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
10 * Theodore Ts'o <tytso@mit.edu>
Christoph Lameter89ada672005-10-30 15:01:59 -080011 *
Christoph Lametercde53532008-07-04 09:59:22 -070012 * Made to use alloc_percpu by Christoph Lameter.
Tejun Heoc54fce62010-09-10 16:51:36 +020013 *
14 * Copyright (C) 2010 SUSE Linux Products GmbH
15 * Copyright (C) 2010 Tejun Heo <tj@kernel.org>
16 *
17 * This is the generic async execution mechanism. Work items as are
18 * executed in process context. The worker pool is shared and
19 * automatically managed. There is one worker pool for each CPU and
20 * one extra for works which are better served by workers which are
21 * not bound to any specific CPU.
22 *
23 * Please read Documentation/workqueue.txt for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Paul Gortmaker9984de12011-05-23 14:51:41 -040026#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/init.h>
30#include <linux/signal.h>
31#include <linux/completion.h>
32#include <linux/workqueue.h>
33#include <linux/slab.h>
34#include <linux/cpu.h>
35#include <linux/notifier.h>
36#include <linux/kthread.h>
James Bottomley1fa44ec2006-02-23 12:43:43 -060037#include <linux/hardirq.h>
Christoph Lameter46934022006-10-11 01:21:26 -070038#include <linux/mempolicy.h>
Rafael J. Wysocki341a5952006-12-06 20:34:49 -080039#include <linux/freezer.h>
Peter Zijlstrad5abe662006-12-06 20:37:26 -080040#include <linux/kallsyms.h>
41#include <linux/debug_locks.h>
Johannes Berg4e6045f2007-10-18 23:39:55 -070042#include <linux/lockdep.h>
Tejun Heoc34056a2010-06-29 10:07:11 +020043#include <linux/idr.h>
Tejun Heoe22bee72010-06-29 10:07:14 +020044
45#include "workqueue_sched.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Tejun Heoc8e55f32010-06-29 10:07:12 +020047enum {
Tejun Heodb7bccf2010-06-29 10:07:12 +020048 /* global_cwq flags */
Tejun Heo11ebea52012-07-12 14:46:37 -070049 GCWQ_DISASSOCIATED = 1 << 0, /* cpu can't serve workers */
50 GCWQ_FREEZING = 1 << 1, /* freeze in progress */
51
52 /* pool flags */
53 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
54 POOL_MANAGING_WORKERS = 1 << 1, /* managing workers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020055
Tejun Heoc8e55f32010-06-29 10:07:12 +020056 /* worker flags */
57 WORKER_STARTED = 1 << 0, /* started */
58 WORKER_DIE = 1 << 1, /* die die die */
59 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020060 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heodb7bccf2010-06-29 10:07:12 +020061 WORKER_ROGUE = 1 << 4, /* not bound to any cpu */
Tejun Heoe22bee72010-06-29 10:07:14 +020062 WORKER_REBIND = 1 << 5, /* mom is home, come back */
Tejun Heofb0e7be2010-06-29 10:07:15 +020063 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020064 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020065
Tejun Heofb0e7be2010-06-29 10:07:15 +020066 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_ROGUE | WORKER_REBIND |
Tejun Heof3421792010-07-02 10:03:51 +020067 WORKER_CPU_INTENSIVE | WORKER_UNBOUND,
Tejun Heodb7bccf2010-06-29 10:07:12 +020068
69 /* gcwq->trustee_state */
70 TRUSTEE_START = 0, /* start */
71 TRUSTEE_IN_CHARGE = 1, /* trustee in charge of gcwq */
72 TRUSTEE_BUTCHER = 2, /* butcher workers */
73 TRUSTEE_RELEASE = 3, /* release workers */
74 TRUSTEE_DONE = 4, /* trustee is done */
Tejun Heoc8e55f32010-06-29 10:07:12 +020075
Tejun Heo32704762012-07-13 22:16:45 -070076 NR_WORKER_POOLS = 2, /* # worker pools per gcwq */
Tejun Heo4ce62e92012-07-13 22:16:44 -070077
Tejun Heoc8e55f32010-06-29 10:07:12 +020078 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
79 BUSY_WORKER_HASH_SIZE = 1 << BUSY_WORKER_HASH_ORDER,
80 BUSY_WORKER_HASH_MASK = BUSY_WORKER_HASH_SIZE - 1,
Tejun Heodb7bccf2010-06-29 10:07:12 +020081
Tejun Heoe22bee72010-06-29 10:07:14 +020082 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
83 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
84
Tejun Heo3233cdb2011-02-16 18:10:19 +010085 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
86 /* call for help after 10ms
87 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020088 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
89 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heodb7bccf2010-06-29 10:07:12 +020090 TRUSTEE_COOLDOWN = HZ / 10, /* for trustee draining */
Tejun Heoe22bee72010-06-29 10:07:14 +020091
92 /*
93 * Rescue workers are used only on emergencies and shared by
94 * all cpus. Give -20.
95 */
96 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -070097 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +020098};
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
Tejun Heo4690c4a2010-06-29 10:07:10 +0200101 * Structure fields follow one of the following exclusion rules.
102 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200103 * I: Modifiable by initialization/destruction paths and read-only for
104 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200105 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200106 * P: Preemption protected. Disabling preemption is enough and should
107 * only be modified and accessed from the local cpu.
108 *
Tejun Heo8b03ae32010-06-29 10:07:12 +0200109 * L: gcwq->lock protected. Access with gcwq->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200110 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200111 * X: During normal operation, modification requires gcwq->lock and
112 * should be done only from local cpu. Either disabling preemption
113 * on local cpu or grabbing gcwq->lock is enough for read access.
Tejun Heof3421792010-07-02 10:03:51 +0200114 * If GCWQ_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200115 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200116 * F: wq->flush_mutex protected.
117 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200118 * W: workqueue_lock protected.
119 */
120
Tejun Heo8b03ae32010-06-29 10:07:12 +0200121struct global_cwq;
Tejun Heobd7bdd42012-07-12 14:46:37 -0700122struct worker_pool;
Tejun Heoc34056a2010-06-29 10:07:11 +0200123
Tejun Heoe22bee72010-06-29 10:07:14 +0200124/*
125 * The poor guys doing the actual heavy lifting. All on-duty workers
126 * are either serving the manager role, on idle list or on busy hash.
127 */
Tejun Heoc34056a2010-06-29 10:07:11 +0200128struct worker {
Tejun Heoc8e55f32010-06-29 10:07:12 +0200129 /* on idle list while idle, on busy hash table while busy */
130 union {
131 struct list_head entry; /* L: while idle */
132 struct hlist_node hentry; /* L: while busy */
133 };
134
Tejun Heoc34056a2010-06-29 10:07:11 +0200135 struct work_struct *current_work; /* L: work being processed */
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200136 struct cpu_workqueue_struct *current_cwq; /* L: current_work's cwq */
Tejun Heoaffee4b2010-06-29 10:07:12 +0200137 struct list_head scheduled; /* L: scheduled works */
Tejun Heoc34056a2010-06-29 10:07:11 +0200138 struct task_struct *task; /* I: worker task */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700139 struct worker_pool *pool; /* I: the associated pool */
Tejun Heoe22bee72010-06-29 10:07:14 +0200140 /* 64 bytes boundary on 64bit, 32 on 32bit */
141 unsigned long last_active; /* L: last active timestamp */
142 unsigned int flags; /* X: flags */
Tejun Heoc34056a2010-06-29 10:07:11 +0200143 int id; /* I: worker id */
Tejun Heoe22bee72010-06-29 10:07:14 +0200144 struct work_struct rebind_work; /* L: rebind worker to cpu */
Tejun Heoc34056a2010-06-29 10:07:11 +0200145};
146
Tejun Heobd7bdd42012-07-12 14:46:37 -0700147struct worker_pool {
148 struct global_cwq *gcwq; /* I: the owning gcwq */
Tejun Heo11ebea52012-07-12 14:46:37 -0700149 unsigned int flags; /* X: flags */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700150
151 struct list_head worklist; /* L: list of pending works */
152 int nr_workers; /* L: total number of workers */
153 int nr_idle; /* L: currently idle ones */
154
155 struct list_head idle_list; /* X: list of idle workers */
156 struct timer_list idle_timer; /* L: worker idle timeout */
157 struct timer_list mayday_timer; /* L: SOS timer for workers */
158
159 struct ida worker_ida; /* L: for worker IDs */
160 struct worker *first_idle; /* L: first idle worker */
161};
162
Tejun Heo4690c4a2010-06-29 10:07:10 +0200163/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200164 * Global per-cpu workqueue. There's one and only one for each cpu
165 * and all works are queued and processed here regardless of their
166 * target workqueues.
Tejun Heo8b03ae32010-06-29 10:07:12 +0200167 */
168struct global_cwq {
169 spinlock_t lock; /* the gcwq lock */
170 unsigned int cpu; /* I: the associated cpu */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200171 unsigned int flags; /* L: GCWQ_* flags */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200172
Tejun Heobd7bdd42012-07-12 14:46:37 -0700173 /* workers are chained either in busy_hash or pool idle_list */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200174 struct hlist_head busy_hash[BUSY_WORKER_HASH_SIZE];
175 /* L: hash of busy workers */
176
Tejun Heo32704762012-07-13 22:16:45 -0700177 struct worker_pool pools[2]; /* normal and highpri pools */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200178
179 struct task_struct *trustee; /* L: for gcwq shutdown */
180 unsigned int trustee_state; /* L: trustee state */
181 wait_queue_head_t trustee_wait; /* trustee wait */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200182} ____cacheline_aligned_in_smp;
183
184/*
Tejun Heo502ca9d2010-06-29 10:07:13 +0200185 * The per-CPU workqueue. The lower WORK_STRUCT_FLAG_BITS of
Tejun Heo0f900042010-06-29 10:07:11 +0200186 * work_struct->data are used for flags and thus cwqs need to be
187 * aligned at two's power of the number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 */
189struct cpu_workqueue_struct {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700190 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200191 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200192 int work_color; /* L: current color */
193 int flush_color; /* L: flushing color */
194 int nr_in_flight[WORK_NR_COLORS];
195 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200196 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200197 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200198 struct list_head delayed_works; /* L: delayed works */
Tejun Heo0f900042010-06-29 10:07:11 +0200199};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200202 * Structure used to wait for workqueue flush.
203 */
204struct wq_flusher {
205 struct list_head list; /* F: list of flushers */
206 int flush_color; /* F: flush color waiting for */
207 struct completion done; /* flush completion */
208};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Tejun Heo73f53c42010-06-29 10:07:11 +0200210/*
Tejun Heof2e005a2010-07-20 15:59:09 +0200211 * All cpumasks are assumed to be always set on UP and thus can't be
212 * used to determine whether there's something to be done.
213 */
214#ifdef CONFIG_SMP
215typedef cpumask_var_t mayday_mask_t;
216#define mayday_test_and_set_cpu(cpu, mask) \
217 cpumask_test_and_set_cpu((cpu), (mask))
218#define mayday_clear_cpu(cpu, mask) cpumask_clear_cpu((cpu), (mask))
219#define for_each_mayday_cpu(cpu, mask) for_each_cpu((cpu), (mask))
Tejun Heo9c375472010-08-31 11:18:34 +0200220#define alloc_mayday_mask(maskp, gfp) zalloc_cpumask_var((maskp), (gfp))
Tejun Heof2e005a2010-07-20 15:59:09 +0200221#define free_mayday_mask(mask) free_cpumask_var((mask))
222#else
223typedef unsigned long mayday_mask_t;
224#define mayday_test_and_set_cpu(cpu, mask) test_and_set_bit(0, &(mask))
225#define mayday_clear_cpu(cpu, mask) clear_bit(0, &(mask))
226#define for_each_mayday_cpu(cpu, mask) if ((cpu) = 0, (mask))
227#define alloc_mayday_mask(maskp, gfp) true
228#define free_mayday_mask(mask) do { } while (0)
229#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231/*
232 * The externally visible workqueue abstraction is an array of
233 * per-CPU workqueues:
234 */
235struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200236 unsigned int flags; /* W: WQ_* flags */
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200237 union {
238 struct cpu_workqueue_struct __percpu *pcpu;
239 struct cpu_workqueue_struct *single;
240 unsigned long v;
241 } cpu_wq; /* I: cwq's */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200242 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200243
244 struct mutex flush_mutex; /* protects wq flushing */
245 int work_color; /* F: current work color */
246 int flush_color; /* F: current flush color */
247 atomic_t nr_cwqs_to_flush; /* flush in progress */
248 struct wq_flusher *first_flusher; /* F: first flusher */
249 struct list_head flusher_queue; /* F: flush waiters */
250 struct list_head flusher_overflow; /* F: flush overflow list */
251
Tejun Heof2e005a2010-07-20 15:59:09 +0200252 mayday_mask_t mayday_mask; /* cpus requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200253 struct worker *rescuer; /* I: rescue worker */
254
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200255 int nr_drainers; /* W: drain in progress */
Tejun Heodcd989c2010-06-29 10:07:14 +0200256 int saved_max_active; /* W: saved cwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700257#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200258 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700259#endif
Tejun Heob196be82012-01-10 15:11:35 -0800260 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
Tejun Heod320c032010-06-29 10:07:14 +0200263struct workqueue_struct *system_wq __read_mostly;
264struct workqueue_struct *system_long_wq __read_mostly;
265struct workqueue_struct *system_nrt_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200266struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100267struct workqueue_struct *system_freezable_wq __read_mostly;
Alan Stern62d3c542012-03-02 10:51:00 +0100268struct workqueue_struct *system_nrt_freezable_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200269EXPORT_SYMBOL_GPL(system_wq);
270EXPORT_SYMBOL_GPL(system_long_wq);
271EXPORT_SYMBOL_GPL(system_nrt_wq);
Tejun Heof3421792010-07-02 10:03:51 +0200272EXPORT_SYMBOL_GPL(system_unbound_wq);
Tejun Heo24d51ad2011-02-21 09:52:50 +0100273EXPORT_SYMBOL_GPL(system_freezable_wq);
Alan Stern62d3c542012-03-02 10:51:00 +0100274EXPORT_SYMBOL_GPL(system_nrt_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200275
Tejun Heo97bd2342010-10-05 10:41:14 +0200276#define CREATE_TRACE_POINTS
277#include <trace/events/workqueue.h>
278
Tejun Heo4ce62e92012-07-13 22:16:44 -0700279#define for_each_worker_pool(pool, gcwq) \
Tejun Heo32704762012-07-13 22:16:45 -0700280 for ((pool) = &(gcwq)->pools[0]; \
281 (pool) < &(gcwq)->pools[NR_WORKER_POOLS]; (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700282
Tejun Heodb7bccf2010-06-29 10:07:12 +0200283#define for_each_busy_worker(worker, i, pos, gcwq) \
284 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++) \
285 hlist_for_each_entry(worker, pos, &gcwq->busy_hash[i], hentry)
286
Tejun Heof3421792010-07-02 10:03:51 +0200287static inline int __next_gcwq_cpu(int cpu, const struct cpumask *mask,
288 unsigned int sw)
289{
290 if (cpu < nr_cpu_ids) {
291 if (sw & 1) {
292 cpu = cpumask_next(cpu, mask);
293 if (cpu < nr_cpu_ids)
294 return cpu;
295 }
296 if (sw & 2)
297 return WORK_CPU_UNBOUND;
298 }
299 return WORK_CPU_NONE;
300}
301
302static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
303 struct workqueue_struct *wq)
304{
305 return __next_gcwq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
306}
307
Tejun Heo09884952010-08-01 11:50:12 +0200308/*
309 * CPU iterators
310 *
311 * An extra gcwq is defined for an invalid cpu number
312 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
313 * specific CPU. The following iterators are similar to
314 * for_each_*_cpu() iterators but also considers the unbound gcwq.
315 *
316 * for_each_gcwq_cpu() : possible CPUs + WORK_CPU_UNBOUND
317 * for_each_online_gcwq_cpu() : online CPUs + WORK_CPU_UNBOUND
318 * for_each_cwq_cpu() : possible CPUs for bound workqueues,
319 * WORK_CPU_UNBOUND for unbound workqueues
320 */
Tejun Heof3421792010-07-02 10:03:51 +0200321#define for_each_gcwq_cpu(cpu) \
322 for ((cpu) = __next_gcwq_cpu(-1, cpu_possible_mask, 3); \
323 (cpu) < WORK_CPU_NONE; \
324 (cpu) = __next_gcwq_cpu((cpu), cpu_possible_mask, 3))
325
326#define for_each_online_gcwq_cpu(cpu) \
327 for ((cpu) = __next_gcwq_cpu(-1, cpu_online_mask, 3); \
328 (cpu) < WORK_CPU_NONE; \
329 (cpu) = __next_gcwq_cpu((cpu), cpu_online_mask, 3))
330
331#define for_each_cwq_cpu(cpu, wq) \
332 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, (wq)); \
333 (cpu) < WORK_CPU_NONE; \
334 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, (wq)))
335
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900336#ifdef CONFIG_DEBUG_OBJECTS_WORK
337
338static struct debug_obj_descr work_debug_descr;
339
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100340static void *work_debug_hint(void *addr)
341{
342 return ((struct work_struct *) addr)->func;
343}
344
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900345/*
346 * fixup_init is called when:
347 * - an active object is initialized
348 */
349static int work_fixup_init(void *addr, enum debug_obj_state state)
350{
351 struct work_struct *work = addr;
352
353 switch (state) {
354 case ODEBUG_STATE_ACTIVE:
355 cancel_work_sync(work);
356 debug_object_init(work, &work_debug_descr);
357 return 1;
358 default:
359 return 0;
360 }
361}
362
363/*
364 * fixup_activate is called when:
365 * - an active object is activated
366 * - an unknown object is activated (might be a statically initialized object)
367 */
368static int work_fixup_activate(void *addr, enum debug_obj_state state)
369{
370 struct work_struct *work = addr;
371
372 switch (state) {
373
374 case ODEBUG_STATE_NOTAVAILABLE:
375 /*
376 * This is not really a fixup. The work struct was
377 * statically initialized. We just make sure that it
378 * is tracked in the object tracker.
379 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200380 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900381 debug_object_init(work, &work_debug_descr);
382 debug_object_activate(work, &work_debug_descr);
383 return 0;
384 }
385 WARN_ON_ONCE(1);
386 return 0;
387
388 case ODEBUG_STATE_ACTIVE:
389 WARN_ON(1);
390
391 default:
392 return 0;
393 }
394}
395
396/*
397 * fixup_free is called when:
398 * - an active object is freed
399 */
400static int work_fixup_free(void *addr, enum debug_obj_state state)
401{
402 struct work_struct *work = addr;
403
404 switch (state) {
405 case ODEBUG_STATE_ACTIVE:
406 cancel_work_sync(work);
407 debug_object_free(work, &work_debug_descr);
408 return 1;
409 default:
410 return 0;
411 }
412}
413
414static struct debug_obj_descr work_debug_descr = {
415 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100416 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900417 .fixup_init = work_fixup_init,
418 .fixup_activate = work_fixup_activate,
419 .fixup_free = work_fixup_free,
420};
421
422static inline void debug_work_activate(struct work_struct *work)
423{
424 debug_object_activate(work, &work_debug_descr);
425}
426
427static inline void debug_work_deactivate(struct work_struct *work)
428{
429 debug_object_deactivate(work, &work_debug_descr);
430}
431
432void __init_work(struct work_struct *work, int onstack)
433{
434 if (onstack)
435 debug_object_init_on_stack(work, &work_debug_descr);
436 else
437 debug_object_init(work, &work_debug_descr);
438}
439EXPORT_SYMBOL_GPL(__init_work);
440
441void destroy_work_on_stack(struct work_struct *work)
442{
443 debug_object_free(work, &work_debug_descr);
444}
445EXPORT_SYMBOL_GPL(destroy_work_on_stack);
446
447#else
448static inline void debug_work_activate(struct work_struct *work) { }
449static inline void debug_work_deactivate(struct work_struct *work) { }
450#endif
451
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100452/* Serializes the accesses to the list of workqueues. */
453static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200455static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Oleg Nesterov14441962007-05-23 13:57:57 -0700457/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200458 * The almighty global cpu workqueues. nr_running is the only field
459 * which is expected to be used frequently by other cpus via
460 * try_to_wake_up(). Put it in a separate cacheline.
Oleg Nesterov14441962007-05-23 13:57:57 -0700461 */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200462static DEFINE_PER_CPU(struct global_cwq, global_cwq);
Tejun Heo4ce62e92012-07-13 22:16:44 -0700463static DEFINE_PER_CPU_SHARED_ALIGNED(atomic_t, pool_nr_running[NR_WORKER_POOLS]);
Nathan Lynchf756d5e2006-01-08 01:05:12 -0800464
Tejun Heof3421792010-07-02 10:03:51 +0200465/*
466 * Global cpu workqueue and nr_running counter for unbound gcwq. The
467 * gcwq is always online, has GCWQ_DISASSOCIATED set, and all its
468 * workers have WORKER_UNBOUND set.
469 */
470static struct global_cwq unbound_global_cwq;
Tejun Heo4ce62e92012-07-13 22:16:44 -0700471static atomic_t unbound_pool_nr_running[NR_WORKER_POOLS] = {
472 [0 ... NR_WORKER_POOLS - 1] = ATOMIC_INIT(0), /* always 0 */
473};
Tejun Heof3421792010-07-02 10:03:51 +0200474
Tejun Heoc34056a2010-06-29 10:07:11 +0200475static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Tejun Heo32704762012-07-13 22:16:45 -0700477static int worker_pool_pri(struct worker_pool *pool)
478{
479 return pool - pool->gcwq->pools;
480}
481
Tejun Heo8b03ae32010-06-29 10:07:12 +0200482static struct global_cwq *get_gcwq(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Tejun Heof3421792010-07-02 10:03:51 +0200484 if (cpu != WORK_CPU_UNBOUND)
485 return &per_cpu(global_cwq, cpu);
486 else
487 return &unbound_global_cwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Tejun Heo63d95a92012-07-12 14:46:37 -0700490static atomic_t *get_pool_nr_running(struct worker_pool *pool)
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700491{
Tejun Heo63d95a92012-07-12 14:46:37 -0700492 int cpu = pool->gcwq->cpu;
Tejun Heo32704762012-07-13 22:16:45 -0700493 int idx = worker_pool_pri(pool);
Tejun Heo63d95a92012-07-12 14:46:37 -0700494
Tejun Heof3421792010-07-02 10:03:51 +0200495 if (cpu != WORK_CPU_UNBOUND)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700496 return &per_cpu(pool_nr_running, cpu)[idx];
Tejun Heof3421792010-07-02 10:03:51 +0200497 else
Tejun Heo4ce62e92012-07-13 22:16:44 -0700498 return &unbound_pool_nr_running[idx];
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700499}
500
Tejun Heo4690c4a2010-06-29 10:07:10 +0200501static struct cpu_workqueue_struct *get_cwq(unsigned int cpu,
502 struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700503{
Tejun Heof3421792010-07-02 10:03:51 +0200504 if (!(wq->flags & WQ_UNBOUND)) {
Lai Jiangshane06ffa12012-03-09 18:03:20 +0800505 if (likely(cpu < nr_cpu_ids))
Tejun Heof3421792010-07-02 10:03:51 +0200506 return per_cpu_ptr(wq->cpu_wq.pcpu, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200507 } else if (likely(cpu == WORK_CPU_UNBOUND))
508 return wq->cpu_wq.single;
509 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700510}
511
Tejun Heo73f53c42010-06-29 10:07:11 +0200512static unsigned int work_color_to_flags(int color)
513{
514 return color << WORK_STRUCT_COLOR_SHIFT;
515}
516
517static int get_work_color(struct work_struct *work)
518{
519 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
520 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
521}
522
523static int work_next_color(int color)
524{
525 return (color + 1) % WORK_NR_COLORS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
David Howells4594bf12006-12-07 11:33:26 +0000528/*
Tejun Heoe1201532010-07-22 14:14:25 +0200529 * A work's data points to the cwq with WORK_STRUCT_CWQ set while the
530 * work is on queue. Once execution starts, WORK_STRUCT_CWQ is
531 * cleared and the work data contains the cpu number it was last on.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200532 *
533 * set_work_{cwq|cpu}() and clear_work_data() can be used to set the
534 * cwq, cpu or clear work->data. These functions should only be
535 * called while the work is owned - ie. while the PENDING bit is set.
536 *
537 * get_work_[g]cwq() can be used to obtain the gcwq or cwq
538 * corresponding to a work. gcwq is available once the work has been
539 * queued anywhere after initialization. cwq is available only from
540 * queueing until execution starts.
David Howells4594bf12006-12-07 11:33:26 +0000541 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200542static inline void set_work_data(struct work_struct *work, unsigned long data,
543 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000544{
David Howells4594bf12006-12-07 11:33:26 +0000545 BUG_ON(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200546 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000547}
David Howells365970a2006-11-22 14:54:49 +0000548
Tejun Heo7a22ad72010-06-29 10:07:13 +0200549static void set_work_cwq(struct work_struct *work,
550 struct cpu_workqueue_struct *cwq,
551 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200552{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200553 set_work_data(work, (unsigned long)cwq,
Tejun Heoe1201532010-07-22 14:14:25 +0200554 WORK_STRUCT_PENDING | WORK_STRUCT_CWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200555}
556
Tejun Heo7a22ad72010-06-29 10:07:13 +0200557static void set_work_cpu(struct work_struct *work, unsigned int cpu)
David Howells365970a2006-11-22 14:54:49 +0000558{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200559 set_work_data(work, cpu << WORK_STRUCT_FLAG_BITS, WORK_STRUCT_PENDING);
560}
561
562static void clear_work_data(struct work_struct *work)
563{
564 set_work_data(work, WORK_STRUCT_NO_CPU, 0);
565}
566
Tejun Heo7a22ad72010-06-29 10:07:13 +0200567static struct cpu_workqueue_struct *get_work_cwq(struct work_struct *work)
568{
Tejun Heoe1201532010-07-22 14:14:25 +0200569 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200570
Tejun Heoe1201532010-07-22 14:14:25 +0200571 if (data & WORK_STRUCT_CWQ)
572 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
573 else
574 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200575}
576
577static struct global_cwq *get_work_gcwq(struct work_struct *work)
578{
Tejun Heoe1201532010-07-22 14:14:25 +0200579 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200580 unsigned int cpu;
581
Tejun Heoe1201532010-07-22 14:14:25 +0200582 if (data & WORK_STRUCT_CWQ)
583 return ((struct cpu_workqueue_struct *)
Tejun Heobd7bdd42012-07-12 14:46:37 -0700584 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->gcwq;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200585
586 cpu = data >> WORK_STRUCT_FLAG_BITS;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200587 if (cpu == WORK_CPU_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200588 return NULL;
589
Tejun Heof3421792010-07-02 10:03:51 +0200590 BUG_ON(cpu >= nr_cpu_ids && cpu != WORK_CPU_UNBOUND);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200591 return get_gcwq(cpu);
David Howells365970a2006-11-22 14:54:49 +0000592}
593
594/*
Tejun Heo32704762012-07-13 22:16:45 -0700595 * Policy functions. These define the policies on how the global worker
596 * pools are managed. Unless noted otherwise, these functions assume that
597 * they're being called with gcwq->lock held.
David Howells365970a2006-11-22 14:54:49 +0000598 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200599
Tejun Heo63d95a92012-07-12 14:46:37 -0700600static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000601{
Tejun Heo32704762012-07-13 22:16:45 -0700602 return !atomic_read(get_pool_nr_running(pool));
David Howells365970a2006-11-22 14:54:49 +0000603}
604
Tejun Heoe22bee72010-06-29 10:07:14 +0200605/*
606 * Need to wake up a worker? Called from anything but currently
607 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700608 *
609 * Note that, because unbound workers never contribute to nr_running, this
610 * function will always return %true for unbound gcwq as long as the
611 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200612 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700613static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000614{
Tejun Heo63d95a92012-07-12 14:46:37 -0700615 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000616}
617
Tejun Heoe22bee72010-06-29 10:07:14 +0200618/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700619static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200620{
Tejun Heo63d95a92012-07-12 14:46:37 -0700621 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200622}
623
624/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700625static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200626{
Tejun Heo63d95a92012-07-12 14:46:37 -0700627 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200628
Tejun Heo32704762012-07-13 22:16:45 -0700629 return !list_empty(&pool->worklist) && atomic_read(nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200630}
631
632/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700633static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200634{
Tejun Heo63d95a92012-07-12 14:46:37 -0700635 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200636}
637
638/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700639static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200640{
Tejun Heo63d95a92012-07-12 14:46:37 -0700641 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700642 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200643}
644
645/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700646static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200647{
Tejun Heo11ebea52012-07-12 14:46:37 -0700648 bool managing = pool->flags & POOL_MANAGING_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -0700649 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
650 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200651
652 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
653}
654
655/*
656 * Wake up functions.
657 */
658
Tejun Heo7e116292010-06-29 10:07:13 +0200659/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700660static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200661{
Tejun Heo63d95a92012-07-12 14:46:37 -0700662 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200663 return NULL;
664
Tejun Heo63d95a92012-07-12 14:46:37 -0700665 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200666}
667
668/**
669 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700670 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200671 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700672 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200673 *
674 * CONTEXT:
675 * spin_lock_irq(gcwq->lock).
676 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700677static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200678{
Tejun Heo63d95a92012-07-12 14:46:37 -0700679 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200680
681 if (likely(worker))
682 wake_up_process(worker->task);
683}
684
Tejun Heo4690c4a2010-06-29 10:07:10 +0200685/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200686 * wq_worker_waking_up - a worker is waking up
687 * @task: task waking up
688 * @cpu: CPU @task is waking up to
689 *
690 * This function is called during try_to_wake_up() when a worker is
691 * being awoken.
692 *
693 * CONTEXT:
694 * spin_lock_irq(rq->lock)
695 */
696void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
697{
698 struct worker *worker = kthread_data(task);
699
Steven Rostedt2d646722010-12-03 23:12:33 -0500700 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heo63d95a92012-07-12 14:46:37 -0700701 atomic_inc(get_pool_nr_running(worker->pool));
Tejun Heoe22bee72010-06-29 10:07:14 +0200702}
703
704/**
705 * wq_worker_sleeping - a worker is going to sleep
706 * @task: task going to sleep
707 * @cpu: CPU in question, must be the current CPU number
708 *
709 * This function is called during schedule() when a busy worker is
710 * going to sleep. Worker on the same cpu can be woken up by
711 * returning pointer to its task.
712 *
713 * CONTEXT:
714 * spin_lock_irq(rq->lock)
715 *
716 * RETURNS:
717 * Worker task on @cpu to wake up, %NULL if none.
718 */
719struct task_struct *wq_worker_sleeping(struct task_struct *task,
720 unsigned int cpu)
721{
722 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heobd7bdd42012-07-12 14:46:37 -0700723 struct worker_pool *pool = worker->pool;
Tejun Heo63d95a92012-07-12 14:46:37 -0700724 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200725
Steven Rostedt2d646722010-12-03 23:12:33 -0500726 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200727 return NULL;
728
729 /* this can only happen on the local cpu */
730 BUG_ON(cpu != raw_smp_processor_id());
731
732 /*
733 * The counterpart of the following dec_and_test, implied mb,
734 * worklist not empty test sequence is in insert_work().
735 * Please read comment there.
736 *
737 * NOT_RUNNING is clear. This means that trustee is not in
738 * charge and we're running on the local cpu w/ rq lock held
739 * and preemption disabled, which in turn means that none else
740 * could be manipulating idle_list, so dereferencing idle_list
741 * without gcwq lock is safe.
742 */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700743 if (atomic_dec_and_test(nr_running) && !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700744 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200745 return to_wakeup ? to_wakeup->task : NULL;
746}
747
748/**
749 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200750 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200751 * @flags: flags to set
752 * @wakeup: wakeup an idle worker if necessary
753 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200754 * Set @flags in @worker->flags and adjust nr_running accordingly. If
755 * nr_running becomes zero and @wakeup is %true, an idle worker is
756 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200757 *
Tejun Heocb444762010-07-02 10:03:50 +0200758 * CONTEXT:
759 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200760 */
761static inline void worker_set_flags(struct worker *worker, unsigned int flags,
762 bool wakeup)
763{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700764 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200765
Tejun Heocb444762010-07-02 10:03:50 +0200766 WARN_ON_ONCE(worker->task != current);
767
Tejun Heoe22bee72010-06-29 10:07:14 +0200768 /*
769 * If transitioning into NOT_RUNNING, adjust nr_running and
770 * wake up an idle worker as necessary if requested by
771 * @wakeup.
772 */
773 if ((flags & WORKER_NOT_RUNNING) &&
774 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heo63d95a92012-07-12 14:46:37 -0700775 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200776
777 if (wakeup) {
778 if (atomic_dec_and_test(nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700779 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700780 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200781 } else
782 atomic_dec(nr_running);
783 }
784
Tejun Heod302f012010-06-29 10:07:13 +0200785 worker->flags |= flags;
786}
787
788/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200789 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200790 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200791 * @flags: flags to clear
792 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200793 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200794 *
Tejun Heocb444762010-07-02 10:03:50 +0200795 * CONTEXT:
796 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200797 */
798static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
799{
Tejun Heo63d95a92012-07-12 14:46:37 -0700800 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200801 unsigned int oflags = worker->flags;
802
Tejun Heocb444762010-07-02 10:03:50 +0200803 WARN_ON_ONCE(worker->task != current);
804
Tejun Heod302f012010-06-29 10:07:13 +0200805 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200806
Tejun Heo42c025f2011-01-11 15:58:49 +0100807 /*
808 * If transitioning out of NOT_RUNNING, increment nr_running. Note
809 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
810 * of multiple flags, not a single flag.
811 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200812 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
813 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heo63d95a92012-07-12 14:46:37 -0700814 atomic_inc(get_pool_nr_running(pool));
Tejun Heod302f012010-06-29 10:07:13 +0200815}
816
817/**
Tejun Heoc8e55f32010-06-29 10:07:12 +0200818 * busy_worker_head - return the busy hash head for a work
819 * @gcwq: gcwq of interest
820 * @work: work to be hashed
821 *
822 * Return hash head of @gcwq for @work.
823 *
824 * CONTEXT:
825 * spin_lock_irq(gcwq->lock).
826 *
827 * RETURNS:
828 * Pointer to the hash head.
829 */
830static struct hlist_head *busy_worker_head(struct global_cwq *gcwq,
831 struct work_struct *work)
832{
833 const int base_shift = ilog2(sizeof(struct work_struct));
834 unsigned long v = (unsigned long)work;
835
836 /* simple shift and fold hash, do we need something better? */
837 v >>= base_shift;
838 v += v >> BUSY_WORKER_HASH_ORDER;
839 v &= BUSY_WORKER_HASH_MASK;
840
841 return &gcwq->busy_hash[v];
842}
843
844/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200845 * __find_worker_executing_work - find worker which is executing a work
846 * @gcwq: gcwq of interest
847 * @bwh: hash head as returned by busy_worker_head()
848 * @work: work to find worker for
849 *
850 * Find a worker which is executing @work on @gcwq. @bwh should be
851 * the hash head obtained by calling busy_worker_head() with the same
852 * work.
853 *
854 * CONTEXT:
855 * spin_lock_irq(gcwq->lock).
856 *
857 * RETURNS:
858 * Pointer to worker which is executing @work if found, NULL
859 * otherwise.
860 */
861static struct worker *__find_worker_executing_work(struct global_cwq *gcwq,
862 struct hlist_head *bwh,
863 struct work_struct *work)
864{
865 struct worker *worker;
866 struct hlist_node *tmp;
867
868 hlist_for_each_entry(worker, tmp, bwh, hentry)
869 if (worker->current_work == work)
870 return worker;
871 return NULL;
872}
873
874/**
875 * find_worker_executing_work - find worker which is executing a work
876 * @gcwq: gcwq of interest
877 * @work: work to find worker for
878 *
879 * Find a worker which is executing @work on @gcwq. This function is
880 * identical to __find_worker_executing_work() except that this
881 * function calculates @bwh itself.
882 *
883 * CONTEXT:
884 * spin_lock_irq(gcwq->lock).
885 *
886 * RETURNS:
887 * Pointer to worker which is executing @work if found, NULL
888 * otherwise.
889 */
890static struct worker *find_worker_executing_work(struct global_cwq *gcwq,
891 struct work_struct *work)
892{
893 return __find_worker_executing_work(gcwq, busy_worker_head(gcwq, work),
894 work);
895}
896
897/**
Tejun Heo7e116292010-06-29 10:07:13 +0200898 * insert_work - insert a work into gcwq
Tejun Heo4690c4a2010-06-29 10:07:10 +0200899 * @cwq: cwq @work belongs to
900 * @work: work to insert
901 * @head: insertion point
902 * @extra_flags: extra WORK_STRUCT_* flags to set
903 *
Tejun Heo7e116292010-06-29 10:07:13 +0200904 * Insert @work which belongs to @cwq into @gcwq after @head.
905 * @extra_flags is or'd to work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200906 *
907 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +0200908 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +0200909 */
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700910static void insert_work(struct cpu_workqueue_struct *cwq,
Tejun Heo4690c4a2010-06-29 10:07:10 +0200911 struct work_struct *work, struct list_head *head,
912 unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700913{
Tejun Heo63d95a92012-07-12 14:46:37 -0700914 struct worker_pool *pool = cwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +0100915
Tejun Heo4690c4a2010-06-29 10:07:10 +0200916 /* we own @work, set data and link */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200917 set_work_cwq(work, cwq, extra_flags);
Tejun Heo4690c4a2010-06-29 10:07:10 +0200918
Oleg Nesterov6e84d642007-05-09 02:34:46 -0700919 /*
920 * Ensure that we get the right work->data if we see the
921 * result of list_add() below, see try_to_grab_pending().
922 */
923 smp_wmb();
Tejun Heo4690c4a2010-06-29 10:07:10 +0200924
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -0700925 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +0200926
927 /*
928 * Ensure either worker_sched_deactivated() sees the above
929 * list_add_tail() or we see zero nr_running to avoid workers
930 * lying around lazily while there are works to be processed.
931 */
932 smp_mb();
933
Tejun Heo63d95a92012-07-12 14:46:37 -0700934 if (__need_more_worker(pool))
935 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700936}
937
Tejun Heoc8efcc22010-12-20 19:32:04 +0100938/*
939 * Test whether @work is being queued from another work executing on the
940 * same workqueue. This is rather expensive and should only be used from
941 * cold paths.
942 */
943static bool is_chained_work(struct workqueue_struct *wq)
944{
945 unsigned long flags;
946 unsigned int cpu;
947
948 for_each_gcwq_cpu(cpu) {
949 struct global_cwq *gcwq = get_gcwq(cpu);
950 struct worker *worker;
951 struct hlist_node *pos;
952 int i;
953
954 spin_lock_irqsave(&gcwq->lock, flags);
955 for_each_busy_worker(worker, i, pos, gcwq) {
956 if (worker->task != current)
957 continue;
958 spin_unlock_irqrestore(&gcwq->lock, flags);
959 /*
960 * I'm @worker, no locking necessary. See if @work
961 * is headed to the same workqueue.
962 */
963 return worker->current_cwq->wq == wq;
964 }
965 spin_unlock_irqrestore(&gcwq->lock, flags);
966 }
967 return false;
968}
969
Tejun Heo4690c4a2010-06-29 10:07:10 +0200970static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 struct work_struct *work)
972{
Tejun Heo502ca9d2010-06-29 10:07:13 +0200973 struct global_cwq *gcwq;
974 struct cpu_workqueue_struct *cwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200975 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +0200976 unsigned int work_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 unsigned long flags;
978
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900979 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200980
Tejun Heoc8efcc22010-12-20 19:32:04 +0100981 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200982 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +0100983 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +0200984 return;
985
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200986 /* determine gcwq to use */
987 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200988 struct global_cwq *last_gcwq;
989
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200990 if (unlikely(cpu == WORK_CPU_UNBOUND))
991 cpu = raw_smp_processor_id();
992
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200993 /*
994 * It's multi cpu. If @wq is non-reentrant and @work
995 * was previously on a different cpu, it might still
996 * be running there, in which case the work needs to
997 * be queued on that cpu to guarantee non-reentrance.
998 */
Tejun Heo502ca9d2010-06-29 10:07:13 +0200999 gcwq = get_gcwq(cpu);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001000 if (wq->flags & WQ_NON_REENTRANT &&
1001 (last_gcwq = get_work_gcwq(work)) && last_gcwq != gcwq) {
1002 struct worker *worker;
1003
1004 spin_lock_irqsave(&last_gcwq->lock, flags);
1005
1006 worker = find_worker_executing_work(last_gcwq, work);
1007
1008 if (worker && worker->current_cwq->wq == wq)
1009 gcwq = last_gcwq;
1010 else {
1011 /* meh... not running there, queue here */
1012 spin_unlock_irqrestore(&last_gcwq->lock, flags);
1013 spin_lock_irqsave(&gcwq->lock, flags);
1014 }
1015 } else
1016 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heof3421792010-07-02 10:03:51 +02001017 } else {
1018 gcwq = get_gcwq(WORK_CPU_UNBOUND);
1019 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001020 }
1021
1022 /* gcwq determined, get cwq and queue */
1023 cwq = get_cwq(gcwq->cpu, wq);
Tejun Heocdadf002010-10-05 10:49:55 +02001024 trace_workqueue_queue_work(cpu, cwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001025
Dan Carpenterf5b25522012-04-13 22:06:58 +03001026 if (WARN_ON(!list_empty(&work->entry))) {
1027 spin_unlock_irqrestore(&gcwq->lock, flags);
1028 return;
1029 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001030
Tejun Heo73f53c42010-06-29 10:07:11 +02001031 cwq->nr_in_flight[cwq->work_color]++;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001032 work_flags = work_color_to_flags(cwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001033
1034 if (likely(cwq->nr_active < cwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001035 trace_workqueue_activate_work(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001036 cwq->nr_active++;
Tejun Heo32704762012-07-13 22:16:45 -07001037 worklist = &cwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001038 } else {
1039 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001040 worklist = &cwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001041 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001042
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001043 insert_work(cwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001044
Tejun Heo8b03ae32010-06-29 10:07:12 +02001045 spin_unlock_irqrestore(&gcwq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001048/**
1049 * queue_work - queue work on a workqueue
1050 * @wq: workqueue to use
1051 * @work: work to queue
1052 *
Alan Stern057647f2006-10-28 10:38:58 -07001053 * Returns 0 if @work was already on a queue, non-zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 *
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07001055 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1056 * it can be processed by another CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001058int queue_work(struct workqueue_struct *wq, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Oleg Nesterovef1ca232008-07-25 01:47:53 -07001060 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Oleg Nesterovef1ca232008-07-25 01:47:53 -07001062 ret = queue_work_on(get_cpu(), wq, work);
1063 put_cpu();
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return ret;
1066}
Dave Jonesae90dd52006-06-30 01:40:45 -04001067EXPORT_SYMBOL_GPL(queue_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Zhang Ruic1a220e2008-07-23 21:28:39 -07001069/**
1070 * queue_work_on - queue work on specific cpu
1071 * @cpu: CPU number to execute work on
1072 * @wq: workqueue to use
1073 * @work: work to queue
1074 *
1075 * Returns 0 if @work was already on a queue, non-zero otherwise.
1076 *
1077 * We queue the work to a specific CPU, the caller must ensure it
1078 * can't go away.
1079 */
1080int
1081queue_work_on(int cpu, struct workqueue_struct *wq, struct work_struct *work)
1082{
1083 int ret = 0;
1084
Tejun Heo22df02b2010-06-29 10:07:10 +02001085 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001086 __queue_work(cpu, wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001087 ret = 1;
1088 }
1089 return ret;
1090}
1091EXPORT_SYMBOL_GPL(queue_work_on);
1092
Li Zefan6d141c32008-02-08 04:21:09 -08001093static void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
David Howells52bad642006-11-22 14:54:01 +00001095 struct delayed_work *dwork = (struct delayed_work *)__data;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001096 struct cpu_workqueue_struct *cwq = get_work_cwq(&dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Tejun Heo4690c4a2010-06-29 10:07:10 +02001098 __queue_work(smp_processor_id(), cwq->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001101/**
1102 * queue_delayed_work - queue work on a workqueue after delay
1103 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001104 * @dwork: delayable work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001105 * @delay: number of jiffies to wait before queueing
1106 *
Alan Stern057647f2006-10-28 10:38:58 -07001107 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001108 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001109int queue_delayed_work(struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001110 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
David Howells52bad642006-11-22 14:54:01 +00001112 if (delay == 0)
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001113 return queue_work(wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001115 return queue_delayed_work_on(-1, wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
Dave Jonesae90dd52006-06-30 01:40:45 -04001117EXPORT_SYMBOL_GPL(queue_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001119/**
1120 * queue_delayed_work_on - queue work on specific CPU after delay
1121 * @cpu: CPU number to execute work on
1122 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001123 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001124 * @delay: number of jiffies to wait before queueing
1125 *
Alan Stern057647f2006-10-28 10:38:58 -07001126 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001127 */
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001128int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001129 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001130{
1131 int ret = 0;
David Howells52bad642006-11-22 14:54:01 +00001132 struct timer_list *timer = &dwork->timer;
1133 struct work_struct *work = &dwork->work;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001134
Tejun Heo22df02b2010-06-29 10:07:10 +02001135 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001136 unsigned int lcpu;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001137
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001138 BUG_ON(timer_pending(timer));
1139 BUG_ON(!list_empty(&work->entry));
1140
Andrew Liu8a3e77c2008-05-01 04:35:14 -07001141 timer_stats_timer_set_start_info(&dwork->timer);
1142
Tejun Heo7a22ad72010-06-29 10:07:13 +02001143 /*
1144 * This stores cwq for the moment, for the timer_fn.
1145 * Note that the work's gcwq is preserved to allow
1146 * reentrance detection for delayed works.
1147 */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001148 if (!(wq->flags & WQ_UNBOUND)) {
1149 struct global_cwq *gcwq = get_work_gcwq(work);
1150
1151 if (gcwq && gcwq->cpu != WORK_CPU_UNBOUND)
1152 lcpu = gcwq->cpu;
1153 else
1154 lcpu = raw_smp_processor_id();
1155 } else
1156 lcpu = WORK_CPU_UNBOUND;
1157
Tejun Heo7a22ad72010-06-29 10:07:13 +02001158 set_work_cwq(work, get_cwq(lcpu, wq), 0);
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001159
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001160 timer->expires = jiffies + delay;
David Howells52bad642006-11-22 14:54:01 +00001161 timer->data = (unsigned long)dwork;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001162 timer->function = delayed_work_timer_fn;
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001163
1164 if (unlikely(cpu >= 0))
1165 add_timer_on(timer, cpu);
1166 else
1167 add_timer(timer);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001168 ret = 1;
1169 }
1170 return ret;
1171}
Dave Jonesae90dd52006-06-30 01:40:45 -04001172EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Tejun Heoc8e55f32010-06-29 10:07:12 +02001174/**
1175 * worker_enter_idle - enter idle state
1176 * @worker: worker which is entering idle state
1177 *
1178 * @worker is entering idle state. Update stats and idle timer if
1179 * necessary.
1180 *
1181 * LOCKING:
1182 * spin_lock_irq(gcwq->lock).
1183 */
1184static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001186 struct worker_pool *pool = worker->pool;
1187 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Tejun Heoc8e55f32010-06-29 10:07:12 +02001189 BUG_ON(worker->flags & WORKER_IDLE);
1190 BUG_ON(!list_empty(&worker->entry) &&
1191 (worker->hentry.next || worker->hentry.pprev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Tejun Heocb444762010-07-02 10:03:50 +02001193 /* can't use worker_set_flags(), also called from start_worker() */
1194 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001195 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001196 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001197
Tejun Heoc8e55f32010-06-29 10:07:12 +02001198 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001199 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001200
Tejun Heoe22bee72010-06-29 10:07:14 +02001201 if (likely(!(worker->flags & WORKER_ROGUE))) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001202 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
Tejun Heobd7bdd42012-07-12 14:46:37 -07001203 mod_timer(&pool->idle_timer,
Tejun Heoe22bee72010-06-29 10:07:14 +02001204 jiffies + IDLE_WORKER_TIMEOUT);
1205 } else
Tejun Heodb7bccf2010-06-29 10:07:12 +02001206 wake_up_all(&gcwq->trustee_wait);
Tejun Heocb444762010-07-02 10:03:50 +02001207
Tejun Heo544ecf32012-05-14 15:04:50 -07001208 /*
1209 * Sanity check nr_running. Because trustee releases gcwq->lock
1210 * between setting %WORKER_ROGUE and zapping nr_running, the
1211 * warning may trigger spuriously. Check iff trustee is idle.
1212 */
1213 WARN_ON_ONCE(gcwq->trustee_state == TRUSTEE_DONE &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001214 pool->nr_workers == pool->nr_idle &&
Tejun Heo63d95a92012-07-12 14:46:37 -07001215 atomic_read(get_pool_nr_running(pool)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Tejun Heoc8e55f32010-06-29 10:07:12 +02001218/**
1219 * worker_leave_idle - leave idle state
1220 * @worker: worker which is leaving idle state
1221 *
1222 * @worker is leaving idle state. Update stats.
1223 *
1224 * LOCKING:
1225 * spin_lock_irq(gcwq->lock).
1226 */
1227static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001229 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Tejun Heoc8e55f32010-06-29 10:07:12 +02001231 BUG_ON(!(worker->flags & WORKER_IDLE));
Tejun Heod302f012010-06-29 10:07:13 +02001232 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001233 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001234 list_del_init(&worker->entry);
1235}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Tejun Heoe22bee72010-06-29 10:07:14 +02001237/**
1238 * worker_maybe_bind_and_lock - bind worker to its cpu if possible and lock gcwq
1239 * @worker: self
1240 *
1241 * Works which are scheduled while the cpu is online must at least be
1242 * scheduled to a worker which is bound to the cpu so that if they are
1243 * flushed from cpu callbacks while cpu is going down, they are
1244 * guaranteed to execute on the cpu.
1245 *
1246 * This function is to be used by rogue workers and rescuers to bind
1247 * themselves to the target cpu and may race with cpu going down or
1248 * coming online. kthread_bind() can't be used because it may put the
1249 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
1250 * verbatim as it's best effort and blocking and gcwq may be
1251 * [dis]associated in the meantime.
1252 *
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001253 * This function tries set_cpus_allowed() and locks gcwq and verifies the
1254 * binding against %GCWQ_DISASSOCIATED which is set during
1255 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1256 * enters idle state or fetches works without dropping lock, it can
1257 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001258 *
1259 * CONTEXT:
1260 * Might sleep. Called without any lock but returns with gcwq->lock
1261 * held.
1262 *
1263 * RETURNS:
1264 * %true if the associated gcwq is online (@worker is successfully
1265 * bound), %false if offline.
1266 */
1267static bool worker_maybe_bind_and_lock(struct worker *worker)
Namhyung Kim972fa1c2010-08-22 23:19:43 +09001268__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001269{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001270 struct global_cwq *gcwq = worker->pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001271 struct task_struct *task = worker->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Tejun Heoe22bee72010-06-29 10:07:14 +02001273 while (true) {
1274 /*
1275 * The following call may fail, succeed or succeed
1276 * without actually migrating the task to the cpu if
1277 * it races with cpu hotunplug operation. Verify
1278 * against GCWQ_DISASSOCIATED.
1279 */
Tejun Heof3421792010-07-02 10:03:51 +02001280 if (!(gcwq->flags & GCWQ_DISASSOCIATED))
1281 set_cpus_allowed_ptr(task, get_cpu_mask(gcwq->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001282
Tejun Heoe22bee72010-06-29 10:07:14 +02001283 spin_lock_irq(&gcwq->lock);
1284 if (gcwq->flags & GCWQ_DISASSOCIATED)
1285 return false;
1286 if (task_cpu(task) == gcwq->cpu &&
1287 cpumask_equal(&current->cpus_allowed,
1288 get_cpu_mask(gcwq->cpu)))
1289 return true;
1290 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001291
Tejun Heo5035b202011-04-29 18:08:37 +02001292 /*
1293 * We've raced with CPU hot[un]plug. Give it a breather
1294 * and retry migration. cond_resched() is required here;
1295 * otherwise, we might deadlock against cpu_stop trying to
1296 * bring down the CPU on non-preemptive kernel.
1297 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001298 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001299 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001300 }
1301}
1302
1303/*
1304 * Function for worker->rebind_work used to rebind rogue busy workers
1305 * to the associated cpu which is coming back online. This is
1306 * scheduled by cpu up but can race with other cpu hotplug operations
1307 * and may be executed twice without intervening cpu down.
1308 */
1309static void worker_rebind_fn(struct work_struct *work)
1310{
1311 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001312 struct global_cwq *gcwq = worker->pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001313
1314 if (worker_maybe_bind_and_lock(worker))
1315 worker_clr_flags(worker, WORKER_REBIND);
1316
1317 spin_unlock_irq(&gcwq->lock);
1318}
1319
Tejun Heoc34056a2010-06-29 10:07:11 +02001320static struct worker *alloc_worker(void)
1321{
1322 struct worker *worker;
1323
1324 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001325 if (worker) {
1326 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001327 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heoe22bee72010-06-29 10:07:14 +02001328 INIT_WORK(&worker->rebind_work, worker_rebind_fn);
1329 /* on creation a worker is in !idle && prep state */
1330 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001331 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001332 return worker;
1333}
1334
1335/**
1336 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001337 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001338 * @bind: whether to set affinity to @cpu or not
1339 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001340 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001341 * can be started by calling start_worker() or destroyed using
1342 * destroy_worker().
1343 *
1344 * CONTEXT:
1345 * Might sleep. Does GFP_KERNEL allocations.
1346 *
1347 * RETURNS:
1348 * Pointer to the newly created worker.
1349 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001350static struct worker *create_worker(struct worker_pool *pool, bool bind)
Tejun Heoc34056a2010-06-29 10:07:11 +02001351{
Tejun Heo63d95a92012-07-12 14:46:37 -07001352 struct global_cwq *gcwq = pool->gcwq;
Tejun Heof3421792010-07-02 10:03:51 +02001353 bool on_unbound_cpu = gcwq->cpu == WORK_CPU_UNBOUND;
Tejun Heo32704762012-07-13 22:16:45 -07001354 const char *pri = worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001355 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001356 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001357
Tejun Heo8b03ae32010-06-29 10:07:12 +02001358 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001359 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001360 spin_unlock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001361 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001362 goto fail;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001363 spin_lock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001364 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02001365 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001366
1367 worker = alloc_worker();
1368 if (!worker)
1369 goto fail;
1370
Tejun Heobd7bdd42012-07-12 14:46:37 -07001371 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001372 worker->id = id;
1373
Tejun Heof3421792010-07-02 10:03:51 +02001374 if (!on_unbound_cpu)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001375 worker->task = kthread_create_on_node(worker_thread,
Tejun Heo32704762012-07-13 22:16:45 -07001376 worker, cpu_to_node(gcwq->cpu),
1377 "kworker/%u:%d%s", gcwq->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001378 else
1379 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001380 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001381 if (IS_ERR(worker->task))
1382 goto fail;
1383
Tejun Heo32704762012-07-13 22:16:45 -07001384 if (worker_pool_pri(pool))
1385 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1386
Tejun Heodb7bccf2010-06-29 10:07:12 +02001387 /*
1388 * A rogue worker will become a regular one if CPU comes
1389 * online later on. Make sure every worker has
1390 * PF_THREAD_BOUND set.
1391 */
Tejun Heof3421792010-07-02 10:03:51 +02001392 if (bind && !on_unbound_cpu)
Tejun Heo8b03ae32010-06-29 10:07:12 +02001393 kthread_bind(worker->task, gcwq->cpu);
Tejun Heof3421792010-07-02 10:03:51 +02001394 else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001395 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heof3421792010-07-02 10:03:51 +02001396 if (on_unbound_cpu)
1397 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001399
Tejun Heoc34056a2010-06-29 10:07:11 +02001400 return worker;
1401fail:
1402 if (id >= 0) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001403 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001404 ida_remove(&pool->worker_ida, id);
Tejun Heo8b03ae32010-06-29 10:07:12 +02001405 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001406 }
1407 kfree(worker);
1408 return NULL;
1409}
1410
1411/**
1412 * start_worker - start a newly created worker
1413 * @worker: worker to start
1414 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001415 * Make the gcwq aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001416 *
1417 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001418 * spin_lock_irq(gcwq->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001419 */
1420static void start_worker(struct worker *worker)
1421{
Tejun Heocb444762010-07-02 10:03:50 +02001422 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001423 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001424 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001425 wake_up_process(worker->task);
1426}
1427
1428/**
1429 * destroy_worker - destroy a workqueue worker
1430 * @worker: worker to be destroyed
1431 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001432 * Destroy @worker and adjust @gcwq stats accordingly.
1433 *
1434 * CONTEXT:
1435 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001436 */
1437static void destroy_worker(struct worker *worker)
1438{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001439 struct worker_pool *pool = worker->pool;
1440 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001441 int id = worker->id;
1442
1443 /* sanity check frenzy */
1444 BUG_ON(worker->current_work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001445 BUG_ON(!list_empty(&worker->scheduled));
Tejun Heoc34056a2010-06-29 10:07:11 +02001446
Tejun Heoc8e55f32010-06-29 10:07:12 +02001447 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001448 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001449 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001450 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001451
1452 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001453 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001454
1455 spin_unlock_irq(&gcwq->lock);
1456
Tejun Heoc34056a2010-06-29 10:07:11 +02001457 kthread_stop(worker->task);
1458 kfree(worker);
1459
Tejun Heo8b03ae32010-06-29 10:07:12 +02001460 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001461 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001462}
1463
Tejun Heo63d95a92012-07-12 14:46:37 -07001464static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001465{
Tejun Heo63d95a92012-07-12 14:46:37 -07001466 struct worker_pool *pool = (void *)__pool;
1467 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001468
1469 spin_lock_irq(&gcwq->lock);
1470
Tejun Heo63d95a92012-07-12 14:46:37 -07001471 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001472 struct worker *worker;
1473 unsigned long expires;
1474
1475 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001476 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001477 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1478
1479 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001480 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001481 else {
1482 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001483 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001484 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001485 }
1486 }
1487
1488 spin_unlock_irq(&gcwq->lock);
1489}
1490
1491static bool send_mayday(struct work_struct *work)
1492{
1493 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1494 struct workqueue_struct *wq = cwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001495 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001496
1497 if (!(wq->flags & WQ_RESCUER))
1498 return false;
1499
1500 /* mayday mayday mayday */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001501 cpu = cwq->pool->gcwq->cpu;
Tejun Heof3421792010-07-02 10:03:51 +02001502 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1503 if (cpu == WORK_CPU_UNBOUND)
1504 cpu = 0;
Tejun Heof2e005a2010-07-20 15:59:09 +02001505 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001506 wake_up_process(wq->rescuer->task);
1507 return true;
1508}
1509
Tejun Heo63d95a92012-07-12 14:46:37 -07001510static void gcwq_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001511{
Tejun Heo63d95a92012-07-12 14:46:37 -07001512 struct worker_pool *pool = (void *)__pool;
1513 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001514 struct work_struct *work;
1515
1516 spin_lock_irq(&gcwq->lock);
1517
Tejun Heo63d95a92012-07-12 14:46:37 -07001518 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001519 /*
1520 * We've been trying to create a new worker but
1521 * haven't been successful. We might be hitting an
1522 * allocation deadlock. Send distress signals to
1523 * rescuers.
1524 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001525 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001526 send_mayday(work);
1527 }
1528
1529 spin_unlock_irq(&gcwq->lock);
1530
Tejun Heo63d95a92012-07-12 14:46:37 -07001531 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001532}
1533
1534/**
1535 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001536 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001537 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001538 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001539 * have at least one idle worker on return from this function. If
1540 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001541 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001542 * possible allocation deadlock.
1543 *
1544 * On return, need_to_create_worker() is guaranteed to be false and
1545 * may_start_working() true.
1546 *
1547 * LOCKING:
1548 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1549 * multiple times. Does GFP_KERNEL allocations. Called only from
1550 * manager.
1551 *
1552 * RETURNS:
1553 * false if no action was taken and gcwq->lock stayed locked, true
1554 * otherwise.
1555 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001556static bool maybe_create_worker(struct worker_pool *pool)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001557__releases(&gcwq->lock)
1558__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001559{
Tejun Heo63d95a92012-07-12 14:46:37 -07001560 struct global_cwq *gcwq = pool->gcwq;
1561
1562 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001563 return false;
1564restart:
Tejun Heo9f9c2362010-07-14 11:31:20 +02001565 spin_unlock_irq(&gcwq->lock);
1566
Tejun Heoe22bee72010-06-29 10:07:14 +02001567 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001568 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001569
1570 while (true) {
1571 struct worker *worker;
1572
Tejun Heo63d95a92012-07-12 14:46:37 -07001573 worker = create_worker(pool, true);
Tejun Heoe22bee72010-06-29 10:07:14 +02001574 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001575 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001576 spin_lock_irq(&gcwq->lock);
1577 start_worker(worker);
Tejun Heo63d95a92012-07-12 14:46:37 -07001578 BUG_ON(need_to_create_worker(pool));
Tejun Heoe22bee72010-06-29 10:07:14 +02001579 return true;
1580 }
1581
Tejun Heo63d95a92012-07-12 14:46:37 -07001582 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001583 break;
1584
Tejun Heoe22bee72010-06-29 10:07:14 +02001585 __set_current_state(TASK_INTERRUPTIBLE);
1586 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001587
Tejun Heo63d95a92012-07-12 14:46:37 -07001588 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001589 break;
1590 }
1591
Tejun Heo63d95a92012-07-12 14:46:37 -07001592 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001593 spin_lock_irq(&gcwq->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001594 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001595 goto restart;
1596 return true;
1597}
1598
1599/**
1600 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001601 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001602 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001603 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001604 * IDLE_WORKER_TIMEOUT.
1605 *
1606 * LOCKING:
1607 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1608 * multiple times. Called only from manager.
1609 *
1610 * RETURNS:
1611 * false if no action was taken and gcwq->lock stayed locked, true
1612 * otherwise.
1613 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001614static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001615{
1616 bool ret = false;
1617
Tejun Heo63d95a92012-07-12 14:46:37 -07001618 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001619 struct worker *worker;
1620 unsigned long expires;
1621
Tejun Heo63d95a92012-07-12 14:46:37 -07001622 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001623 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1624
1625 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001626 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001627 break;
1628 }
1629
1630 destroy_worker(worker);
1631 ret = true;
1632 }
1633
1634 return ret;
1635}
1636
1637/**
1638 * manage_workers - manage worker pool
1639 * @worker: self
1640 *
1641 * Assume the manager role and manage gcwq worker pool @worker belongs
1642 * to. At any given time, there can be only zero or one manager per
1643 * gcwq. The exclusion is handled automatically by this function.
1644 *
1645 * The caller can safely start processing works on false return. On
1646 * true return, it's guaranteed that need_to_create_worker() is false
1647 * and may_start_working() is true.
1648 *
1649 * CONTEXT:
1650 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1651 * multiple times. Does GFP_KERNEL allocations.
1652 *
1653 * RETURNS:
1654 * false if no action was taken and gcwq->lock stayed locked, true if
1655 * some action was taken.
1656 */
1657static bool manage_workers(struct worker *worker)
1658{
Tejun Heo63d95a92012-07-12 14:46:37 -07001659 struct worker_pool *pool = worker->pool;
1660 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001661 bool ret = false;
1662
Tejun Heo11ebea52012-07-12 14:46:37 -07001663 if (pool->flags & POOL_MANAGING_WORKERS)
Tejun Heoe22bee72010-06-29 10:07:14 +02001664 return ret;
1665
Tejun Heo11ebea52012-07-12 14:46:37 -07001666 pool->flags &= ~POOL_MANAGE_WORKERS;
1667 pool->flags |= POOL_MANAGING_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02001668
1669 /*
1670 * Destroy and then create so that may_start_working() is true
1671 * on return.
1672 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001673 ret |= maybe_destroy_workers(pool);
1674 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001675
Tejun Heo11ebea52012-07-12 14:46:37 -07001676 pool->flags &= ~POOL_MANAGING_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02001677
1678 /*
1679 * The trustee might be waiting to take over the manager
1680 * position, tell it we're done.
1681 */
1682 if (unlikely(gcwq->trustee))
1683 wake_up_all(&gcwq->trustee_wait);
1684
1685 return ret;
1686}
1687
Tejun Heoa62428c2010-06-29 10:07:10 +02001688/**
Tejun Heoaffee4b2010-06-29 10:07:12 +02001689 * move_linked_works - move linked works to a list
1690 * @work: start of series of works to be scheduled
1691 * @head: target list to append @work to
1692 * @nextp: out paramter for nested worklist walking
1693 *
1694 * Schedule linked works starting from @work to @head. Work series to
1695 * be scheduled starts at @work and includes any consecutive work with
1696 * WORK_STRUCT_LINKED set in its predecessor.
1697 *
1698 * If @nextp is not NULL, it's updated to point to the next work of
1699 * the last scheduled work. This allows move_linked_works() to be
1700 * nested inside outer list_for_each_entry_safe().
1701 *
1702 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001703 * spin_lock_irq(gcwq->lock).
Tejun Heoaffee4b2010-06-29 10:07:12 +02001704 */
1705static void move_linked_works(struct work_struct *work, struct list_head *head,
1706 struct work_struct **nextp)
1707{
1708 struct work_struct *n;
1709
1710 /*
1711 * Linked worklist will always end before the end of the list,
1712 * use NULL for list head.
1713 */
1714 list_for_each_entry_safe_from(work, n, NULL, entry) {
1715 list_move_tail(&work->entry, head);
1716 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
1717 break;
1718 }
1719
1720 /*
1721 * If we're already inside safe list traversal and have moved
1722 * multiple works to the scheduled queue, the next position
1723 * needs to be updated.
1724 */
1725 if (nextp)
1726 *nextp = n;
1727}
1728
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001729static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
1730{
1731 struct work_struct *work = list_first_entry(&cwq->delayed_works,
1732 struct work_struct, entry);
1733
Tejun Heocdadf002010-10-05 10:49:55 +02001734 trace_workqueue_activate_work(work);
Tejun Heo32704762012-07-13 22:16:45 -07001735 move_linked_works(work, &cwq->pool->worklist, NULL);
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001736 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001737 cwq->nr_active++;
1738}
1739
Tejun Heoaffee4b2010-06-29 10:07:12 +02001740/**
Tejun Heo73f53c42010-06-29 10:07:11 +02001741 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
1742 * @cwq: cwq of interest
1743 * @color: color of work which left the queue
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001744 * @delayed: for a delayed work
Tejun Heo73f53c42010-06-29 10:07:11 +02001745 *
1746 * A work either has completed or is removed from pending queue,
1747 * decrement nr_in_flight of its cwq and handle workqueue flushing.
1748 *
1749 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001750 * spin_lock_irq(gcwq->lock).
Tejun Heo73f53c42010-06-29 10:07:11 +02001751 */
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001752static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color,
1753 bool delayed)
Tejun Heo73f53c42010-06-29 10:07:11 +02001754{
1755 /* ignore uncolored works */
1756 if (color == WORK_NO_COLOR)
1757 return;
1758
1759 cwq->nr_in_flight[color]--;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001760
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001761 if (!delayed) {
1762 cwq->nr_active--;
1763 if (!list_empty(&cwq->delayed_works)) {
1764 /* one down, submit a delayed one */
1765 if (cwq->nr_active < cwq->max_active)
1766 cwq_activate_first_delayed(cwq);
1767 }
Tejun Heo502ca9d2010-06-29 10:07:13 +02001768 }
Tejun Heo73f53c42010-06-29 10:07:11 +02001769
1770 /* is flush in progress and are we at the flushing tip? */
1771 if (likely(cwq->flush_color != color))
1772 return;
1773
1774 /* are there still in-flight works? */
1775 if (cwq->nr_in_flight[color])
1776 return;
1777
1778 /* this cwq is done, clear flush_color */
1779 cwq->flush_color = -1;
1780
1781 /*
1782 * If this was the last cwq, wake up the first flusher. It
1783 * will handle the rest.
1784 */
1785 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
1786 complete(&cwq->wq->first_flusher->done);
1787}
1788
1789/**
Tejun Heoa62428c2010-06-29 10:07:10 +02001790 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02001791 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02001792 * @work: work to process
1793 *
1794 * Process @work. This function contains all the logics necessary to
1795 * process a single work including synchronization against and
1796 * interaction with other workers on the same cpu, queueing and
1797 * flushing. As long as context requirement is met, any worker can
1798 * call this function to process a work.
1799 *
1800 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001801 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02001802 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001803static void process_one_work(struct worker *worker, struct work_struct *work)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001804__releases(&gcwq->lock)
1805__acquires(&gcwq->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02001806{
Tejun Heo7e116292010-06-29 10:07:13 +02001807 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001808 struct worker_pool *pool = worker->pool;
1809 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001810 struct hlist_head *bwh = busy_worker_head(gcwq, work);
Tejun Heofb0e7be2010-06-29 10:07:15 +02001811 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heoa62428c2010-06-29 10:07:10 +02001812 work_func_t f = work->func;
Tejun Heo73f53c42010-06-29 10:07:11 +02001813 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02001814 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02001815#ifdef CONFIG_LOCKDEP
1816 /*
1817 * It is permissible to free the struct work_struct from
1818 * inside the function that is called from it, this we need to
1819 * take into account for lockdep too. To avoid bogus "held
1820 * lock freed" warnings as well as problems when looking into
1821 * work->lockdep_map, make a copy and use that here.
1822 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07001823 struct lockdep_map lockdep_map;
1824
1825 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02001826#endif
Tejun Heo7e116292010-06-29 10:07:13 +02001827 /*
1828 * A single work shouldn't be executed concurrently by
1829 * multiple workers on a single cpu. Check whether anyone is
1830 * already processing the work. If so, defer the work to the
1831 * currently executing one.
1832 */
1833 collision = __find_worker_executing_work(gcwq, bwh, work);
1834 if (unlikely(collision)) {
1835 move_linked_works(work, &collision->scheduled, NULL);
1836 return;
1837 }
1838
Tejun Heoa62428c2010-06-29 10:07:10 +02001839 /* claim and process */
Tejun Heoa62428c2010-06-29 10:07:10 +02001840 debug_work_deactivate(work);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001841 hlist_add_head(&worker->hentry, bwh);
Tejun Heoc34056a2010-06-29 10:07:11 +02001842 worker->current_work = work;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02001843 worker->current_cwq = cwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02001844 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02001845
Tejun Heo7a22ad72010-06-29 10:07:13 +02001846 /* record the current cpu number in the work data and dequeue */
1847 set_work_cpu(work, gcwq->cpu);
Tejun Heoa62428c2010-06-29 10:07:10 +02001848 list_del_init(&work->entry);
1849
Tejun Heo649027d2010-06-29 10:07:14 +02001850 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02001851 * CPU intensive works don't participate in concurrency
1852 * management. They're the scheduler's responsibility.
1853 */
1854 if (unlikely(cpu_intensive))
1855 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
1856
Tejun Heo974271c2012-07-12 14:46:37 -07001857 /*
1858 * Unbound gcwq isn't concurrency managed and work items should be
1859 * executed ASAP. Wake up another worker if necessary.
1860 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001861 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
1862 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07001863
Tejun Heo8b03ae32010-06-29 10:07:12 +02001864 spin_unlock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02001865
Tejun Heoa62428c2010-06-29 10:07:10 +02001866 work_clear_pending(work);
Tejun Heoe1594892011-01-09 23:32:15 +01001867 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02001868 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07001869 trace_workqueue_execute_start(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02001870 f(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07001871 /*
1872 * While we must be careful to not use "work" after this, the trace
1873 * point will only record its address.
1874 */
1875 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02001876 lock_map_release(&lockdep_map);
1877 lock_map_release(&cwq->wq->lockdep_map);
1878
1879 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
1880 printk(KERN_ERR "BUG: workqueue leaked lock or atomic: "
1881 "%s/0x%08x/%d\n",
1882 current->comm, preempt_count(), task_pid_nr(current));
1883 printk(KERN_ERR " last function: ");
1884 print_symbol("%s\n", (unsigned long)f);
1885 debug_show_held_locks(current);
1886 dump_stack();
1887 }
1888
Tejun Heo8b03ae32010-06-29 10:07:12 +02001889 spin_lock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02001890
Tejun Heofb0e7be2010-06-29 10:07:15 +02001891 /* clear cpu intensive status */
1892 if (unlikely(cpu_intensive))
1893 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
1894
Tejun Heoa62428c2010-06-29 10:07:10 +02001895 /* we're done with it, release */
Tejun Heoc8e55f32010-06-29 10:07:12 +02001896 hlist_del_init(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02001897 worker->current_work = NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02001898 worker->current_cwq = NULL;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001899 cwq_dec_nr_in_flight(cwq, work_color, false);
Tejun Heoa62428c2010-06-29 10:07:10 +02001900}
1901
Tejun Heoaffee4b2010-06-29 10:07:12 +02001902/**
1903 * process_scheduled_works - process scheduled works
1904 * @worker: self
1905 *
1906 * Process all scheduled works. Please note that the scheduled list
1907 * may change while processing a work, so this function repeatedly
1908 * fetches a work from the top and executes it.
1909 *
1910 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001911 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02001912 * multiple times.
1913 */
1914static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Tejun Heoaffee4b2010-06-29 10:07:12 +02001916 while (!list_empty(&worker->scheduled)) {
1917 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02001919 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
Tejun Heo4690c4a2010-06-29 10:07:10 +02001923/**
1924 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02001925 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02001926 *
Tejun Heoe22bee72010-06-29 10:07:14 +02001927 * The gcwq worker thread function. There's a single dynamic pool of
1928 * these per each cpu. These workers process all works regardless of
1929 * their specific target workqueue. The only exception is works which
1930 * belong to workqueues with a rescuer which will be explained in
1931 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02001932 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001933static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
Tejun Heoc34056a2010-06-29 10:07:11 +02001935 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001936 struct worker_pool *pool = worker->pool;
1937 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Tejun Heoe22bee72010-06-29 10:07:14 +02001939 /* tell the scheduler that this is a workqueue worker */
1940 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001941woke_up:
Tejun Heoc8e55f32010-06-29 10:07:12 +02001942 spin_lock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Tejun Heoc8e55f32010-06-29 10:07:12 +02001944 /* DIE can be set only while we're idle, checking here is enough */
1945 if (worker->flags & WORKER_DIE) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001946 spin_unlock_irq(&gcwq->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001947 worker->task->flags &= ~PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950
Tejun Heoc8e55f32010-06-29 10:07:12 +02001951 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001952recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02001953 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07001954 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001955 goto sleep;
1956
1957 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07001958 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02001959 goto recheck;
1960
Tejun Heoc8e55f32010-06-29 10:07:12 +02001961 /*
1962 * ->scheduled list can only be filled while a worker is
1963 * preparing to process a work or actually processing it.
1964 * Make sure nobody diddled with it while I was sleeping.
1965 */
1966 BUG_ON(!list_empty(&worker->scheduled));
1967
Tejun Heoe22bee72010-06-29 10:07:14 +02001968 /*
1969 * When control reaches this point, we're guaranteed to have
1970 * at least one idle worker or that someone else has already
1971 * assumed the manager role.
1972 */
1973 worker_clr_flags(worker, WORKER_PREP);
1974
1975 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02001976 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07001977 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02001978 struct work_struct, entry);
1979
1980 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
1981 /* optimization path, not strictly necessary */
1982 process_one_work(worker, work);
1983 if (unlikely(!list_empty(&worker->scheduled)))
1984 process_scheduled_works(worker);
1985 } else {
1986 move_linked_works(work, &worker->scheduled, NULL);
1987 process_scheduled_works(worker);
1988 }
Tejun Heo63d95a92012-07-12 14:46:37 -07001989 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02001990
Tejun Heoe22bee72010-06-29 10:07:14 +02001991 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02001992sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07001993 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02001994 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02001995
Tejun Heoc8e55f32010-06-29 10:07:12 +02001996 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02001997 * gcwq->lock is held and there's no work to process and no
1998 * need to manage, sleep. Workers are woken up only while
1999 * holding gcwq->lock or from local cpu, so setting the
2000 * current state before releasing gcwq->lock is enough to
2001 * prevent losing any event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002002 */
2003 worker_enter_idle(worker);
2004 __set_current_state(TASK_INTERRUPTIBLE);
2005 spin_unlock_irq(&gcwq->lock);
2006 schedule();
2007 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008}
2009
Tejun Heoe22bee72010-06-29 10:07:14 +02002010/**
2011 * rescuer_thread - the rescuer thread function
2012 * @__wq: the associated workqueue
2013 *
2014 * Workqueue rescuer thread function. There's one rescuer for each
2015 * workqueue which has WQ_RESCUER set.
2016 *
2017 * Regular work processing on a gcwq may block trying to create a new
2018 * worker which uses GFP_KERNEL allocation which has slight chance of
2019 * developing into deadlock if some works currently on the same queue
2020 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2021 * the problem rescuer solves.
2022 *
2023 * When such condition is possible, the gcwq summons rescuers of all
2024 * workqueues which have works queued on the gcwq and let them process
2025 * those works so that forward progress can be guaranteed.
2026 *
2027 * This should happen rarely.
2028 */
2029static int rescuer_thread(void *__wq)
2030{
2031 struct workqueue_struct *wq = __wq;
2032 struct worker *rescuer = wq->rescuer;
2033 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02002034 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02002035 unsigned int cpu;
2036
2037 set_user_nice(current, RESCUER_NICE_LEVEL);
2038repeat:
2039 set_current_state(TASK_INTERRUPTIBLE);
2040
2041 if (kthread_should_stop())
2042 return 0;
2043
Tejun Heof3421792010-07-02 10:03:51 +02002044 /*
2045 * See whether any cpu is asking for help. Unbounded
2046 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2047 */
Tejun Heof2e005a2010-07-20 15:59:09 +02002048 for_each_mayday_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02002049 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
2050 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002051 struct worker_pool *pool = cwq->pool;
2052 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002053 struct work_struct *work, *n;
2054
2055 __set_current_state(TASK_RUNNING);
Tejun Heof2e005a2010-07-20 15:59:09 +02002056 mayday_clear_cpu(cpu, wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02002057
2058 /* migrate to the target cpu if possible */
Tejun Heobd7bdd42012-07-12 14:46:37 -07002059 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002060 worker_maybe_bind_and_lock(rescuer);
2061
2062 /*
2063 * Slurp in all works issued via this workqueue and
2064 * process'em.
2065 */
2066 BUG_ON(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002067 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02002068 if (get_work_cwq(work) == cwq)
2069 move_linked_works(work, scheduled, &n);
2070
2071 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002072
2073 /*
2074 * Leave this gcwq. If keep_working() is %true, notify a
2075 * regular worker; otherwise, we end up with 0 concurrency
2076 * and stalling the execution.
2077 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002078 if (keep_working(pool))
2079 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002080
Tejun Heoe22bee72010-06-29 10:07:14 +02002081 spin_unlock_irq(&gcwq->lock);
2082 }
2083
2084 schedule();
2085 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002088struct wq_barrier {
2089 struct work_struct work;
2090 struct completion done;
2091};
2092
2093static void wq_barrier_func(struct work_struct *work)
2094{
2095 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2096 complete(&barr->done);
2097}
2098
Tejun Heo4690c4a2010-06-29 10:07:10 +02002099/**
2100 * insert_wq_barrier - insert a barrier work
2101 * @cwq: cwq to insert barrier into
2102 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002103 * @target: target work to attach @barr to
2104 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002105 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002106 * @barr is linked to @target such that @barr is completed only after
2107 * @target finishes execution. Please note that the ordering
2108 * guarantee is observed only with respect to @target and on the local
2109 * cpu.
2110 *
2111 * Currently, a queued barrier can't be canceled. This is because
2112 * try_to_grab_pending() can't determine whether the work to be
2113 * grabbed is at the head of the queue and thus can't clear LINKED
2114 * flag of the previous work while there must be a valid next work
2115 * after a work with LINKED flag set.
2116 *
2117 * Note that when @worker is non-NULL, @target may be modified
2118 * underneath us, so we can't reliably determine cwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002119 *
2120 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002121 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002122 */
Oleg Nesterov83c22522007-05-09 02:33:54 -07002123static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002124 struct wq_barrier *barr,
2125 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002126{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002127 struct list_head *head;
2128 unsigned int linked = 0;
2129
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002130 /*
Tejun Heo8b03ae32010-06-29 10:07:12 +02002131 * debugobject calls are safe here even with gcwq->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002132 * as we know for sure that this will not trigger any of the
2133 * checks and call back into the fixup functions where we
2134 * might deadlock.
2135 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002136 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002137 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002138 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002139
Tejun Heoaffee4b2010-06-29 10:07:12 +02002140 /*
2141 * If @target is currently being executed, schedule the
2142 * barrier to the worker; otherwise, put it after @target.
2143 */
2144 if (worker)
2145 head = worker->scheduled.next;
2146 else {
2147 unsigned long *bits = work_data_bits(target);
2148
2149 head = target->entry.next;
2150 /* there can already be other linked works, inherit and set */
2151 linked = *bits & WORK_STRUCT_LINKED;
2152 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2153 }
2154
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002155 debug_work_activate(&barr->work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002156 insert_work(cwq, &barr->work, head,
2157 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002158}
2159
Tejun Heo73f53c42010-06-29 10:07:11 +02002160/**
2161 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2162 * @wq: workqueue being flushed
2163 * @flush_color: new flush color, < 0 for no-op
2164 * @work_color: new work color, < 0 for no-op
2165 *
2166 * Prepare cwqs for workqueue flushing.
2167 *
2168 * If @flush_color is non-negative, flush_color on all cwqs should be
2169 * -1. If no cwq has in-flight commands at the specified color, all
2170 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2171 * has in flight commands, its cwq->flush_color is set to
2172 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2173 * wakeup logic is armed and %true is returned.
2174 *
2175 * The caller should have initialized @wq->first_flusher prior to
2176 * calling this function with non-negative @flush_color. If
2177 * @flush_color is negative, no flush color update is done and %false
2178 * is returned.
2179 *
2180 * If @work_color is non-negative, all cwqs should have the same
2181 * work_color which is previous to @work_color and all will be
2182 * advanced to @work_color.
2183 *
2184 * CONTEXT:
2185 * mutex_lock(wq->flush_mutex).
2186 *
2187 * RETURNS:
2188 * %true if @flush_color >= 0 and there's something to flush. %false
2189 * otherwise.
2190 */
2191static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2192 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
Tejun Heo73f53c42010-06-29 10:07:11 +02002194 bool wait = false;
2195 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002196
Tejun Heo73f53c42010-06-29 10:07:11 +02002197 if (flush_color >= 0) {
2198 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2199 atomic_set(&wq->nr_cwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002200 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002201
Tejun Heof3421792010-07-02 10:03:51 +02002202 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002203 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002204 struct global_cwq *gcwq = cwq->pool->gcwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002205
Tejun Heo8b03ae32010-06-29 10:07:12 +02002206 spin_lock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002207
2208 if (flush_color >= 0) {
2209 BUG_ON(cwq->flush_color != -1);
2210
2211 if (cwq->nr_in_flight[flush_color]) {
2212 cwq->flush_color = flush_color;
2213 atomic_inc(&wq->nr_cwqs_to_flush);
2214 wait = true;
2215 }
2216 }
2217
2218 if (work_color >= 0) {
2219 BUG_ON(work_color != work_next_color(cwq->work_color));
2220 cwq->work_color = work_color;
2221 }
2222
Tejun Heo8b03ae32010-06-29 10:07:12 +02002223 spin_unlock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002224 }
2225
2226 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2227 complete(&wq->first_flusher->done);
2228
2229 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230}
2231
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002232/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002234 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 *
2236 * Forces execution of the workqueue and blocks until its completion.
2237 * This is typically used in driver shutdown handlers.
2238 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002239 * We sleep until all works which were queued on entry have been handled,
2240 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002242void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
Tejun Heo73f53c42010-06-29 10:07:11 +02002244 struct wq_flusher this_flusher = {
2245 .list = LIST_HEAD_INIT(this_flusher.list),
2246 .flush_color = -1,
2247 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2248 };
2249 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002250
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002251 lock_map_acquire(&wq->lockdep_map);
2252 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002253
2254 mutex_lock(&wq->flush_mutex);
2255
2256 /*
2257 * Start-to-wait phase
2258 */
2259 next_color = work_next_color(wq->work_color);
2260
2261 if (next_color != wq->flush_color) {
2262 /*
2263 * Color space is not full. The current work_color
2264 * becomes our flush_color and work_color is advanced
2265 * by one.
2266 */
2267 BUG_ON(!list_empty(&wq->flusher_overflow));
2268 this_flusher.flush_color = wq->work_color;
2269 wq->work_color = next_color;
2270
2271 if (!wq->first_flusher) {
2272 /* no flush in progress, become the first flusher */
2273 BUG_ON(wq->flush_color != this_flusher.flush_color);
2274
2275 wq->first_flusher = &this_flusher;
2276
2277 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2278 wq->work_color)) {
2279 /* nothing to flush, done */
2280 wq->flush_color = next_color;
2281 wq->first_flusher = NULL;
2282 goto out_unlock;
2283 }
2284 } else {
2285 /* wait in queue */
2286 BUG_ON(wq->flush_color == this_flusher.flush_color);
2287 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2288 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2289 }
2290 } else {
2291 /*
2292 * Oops, color space is full, wait on overflow queue.
2293 * The next flush completion will assign us
2294 * flush_color and transfer to flusher_queue.
2295 */
2296 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2297 }
2298
2299 mutex_unlock(&wq->flush_mutex);
2300
2301 wait_for_completion(&this_flusher.done);
2302
2303 /*
2304 * Wake-up-and-cascade phase
2305 *
2306 * First flushers are responsible for cascading flushes and
2307 * handling overflow. Non-first flushers can simply return.
2308 */
2309 if (wq->first_flusher != &this_flusher)
2310 return;
2311
2312 mutex_lock(&wq->flush_mutex);
2313
Tejun Heo4ce48b32010-07-02 10:03:51 +02002314 /* we might have raced, check again with mutex held */
2315 if (wq->first_flusher != &this_flusher)
2316 goto out_unlock;
2317
Tejun Heo73f53c42010-06-29 10:07:11 +02002318 wq->first_flusher = NULL;
2319
2320 BUG_ON(!list_empty(&this_flusher.list));
2321 BUG_ON(wq->flush_color != this_flusher.flush_color);
2322
2323 while (true) {
2324 struct wq_flusher *next, *tmp;
2325
2326 /* complete all the flushers sharing the current flush color */
2327 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2328 if (next->flush_color != wq->flush_color)
2329 break;
2330 list_del_init(&next->list);
2331 complete(&next->done);
2332 }
2333
2334 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2335 wq->flush_color != work_next_color(wq->work_color));
2336
2337 /* this flush_color is finished, advance by one */
2338 wq->flush_color = work_next_color(wq->flush_color);
2339
2340 /* one color has been freed, handle overflow queue */
2341 if (!list_empty(&wq->flusher_overflow)) {
2342 /*
2343 * Assign the same color to all overflowed
2344 * flushers, advance work_color and append to
2345 * flusher_queue. This is the start-to-wait
2346 * phase for these overflowed flushers.
2347 */
2348 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2349 tmp->flush_color = wq->work_color;
2350
2351 wq->work_color = work_next_color(wq->work_color);
2352
2353 list_splice_tail_init(&wq->flusher_overflow,
2354 &wq->flusher_queue);
2355 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2356 }
2357
2358 if (list_empty(&wq->flusher_queue)) {
2359 BUG_ON(wq->flush_color != wq->work_color);
2360 break;
2361 }
2362
2363 /*
2364 * Need to flush more colors. Make the next flusher
2365 * the new first flusher and arm cwqs.
2366 */
2367 BUG_ON(wq->flush_color == wq->work_color);
2368 BUG_ON(wq->flush_color != next->flush_color);
2369
2370 list_del_init(&next->list);
2371 wq->first_flusher = next;
2372
2373 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2374 break;
2375
2376 /*
2377 * Meh... this color is already done, clear first
2378 * flusher and repeat cascading.
2379 */
2380 wq->first_flusher = NULL;
2381 }
2382
2383out_unlock:
2384 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
Dave Jonesae90dd52006-06-30 01:40:45 -04002386EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002388/**
2389 * drain_workqueue - drain a workqueue
2390 * @wq: workqueue to drain
2391 *
2392 * Wait until the workqueue becomes empty. While draining is in progress,
2393 * only chain queueing is allowed. IOW, only currently pending or running
2394 * work items on @wq can queue further work items on it. @wq is flushed
2395 * repeatedly until it becomes empty. The number of flushing is detemined
2396 * by the depth of chaining and should be relatively short. Whine if it
2397 * takes too long.
2398 */
2399void drain_workqueue(struct workqueue_struct *wq)
2400{
2401 unsigned int flush_cnt = 0;
2402 unsigned int cpu;
2403
2404 /*
2405 * __queue_work() needs to test whether there are drainers, is much
2406 * hotter than drain_workqueue() and already looks at @wq->flags.
2407 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2408 */
2409 spin_lock(&workqueue_lock);
2410 if (!wq->nr_drainers++)
2411 wq->flags |= WQ_DRAINING;
2412 spin_unlock(&workqueue_lock);
2413reflush:
2414 flush_workqueue(wq);
2415
2416 for_each_cwq_cpu(cpu, wq) {
2417 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002418 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002419
Tejun Heobd7bdd42012-07-12 14:46:37 -07002420 spin_lock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002421 drained = !cwq->nr_active && list_empty(&cwq->delayed_works);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002422 spin_unlock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002423
2424 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002425 continue;
2426
2427 if (++flush_cnt == 10 ||
2428 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
2429 pr_warning("workqueue %s: flush on destruction isn't complete after %u tries\n",
2430 wq->name, flush_cnt);
2431 goto reflush;
2432 }
2433
2434 spin_lock(&workqueue_lock);
2435 if (!--wq->nr_drainers)
2436 wq->flags &= ~WQ_DRAINING;
2437 spin_unlock(&workqueue_lock);
2438}
2439EXPORT_SYMBOL_GPL(drain_workqueue);
2440
Tejun Heobaf59022010-09-16 10:42:16 +02002441static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr,
2442 bool wait_executing)
2443{
2444 struct worker *worker = NULL;
2445 struct global_cwq *gcwq;
2446 struct cpu_workqueue_struct *cwq;
2447
2448 might_sleep();
2449 gcwq = get_work_gcwq(work);
2450 if (!gcwq)
2451 return false;
2452
2453 spin_lock_irq(&gcwq->lock);
2454 if (!list_empty(&work->entry)) {
2455 /*
2456 * See the comment near try_to_grab_pending()->smp_rmb().
2457 * If it was re-queued to a different gcwq under us, we
2458 * are not going to wait.
2459 */
2460 smp_rmb();
2461 cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002462 if (unlikely(!cwq || gcwq != cwq->pool->gcwq))
Tejun Heobaf59022010-09-16 10:42:16 +02002463 goto already_gone;
2464 } else if (wait_executing) {
2465 worker = find_worker_executing_work(gcwq, work);
2466 if (!worker)
2467 goto already_gone;
2468 cwq = worker->current_cwq;
2469 } else
2470 goto already_gone;
2471
2472 insert_wq_barrier(cwq, barr, work, worker);
2473 spin_unlock_irq(&gcwq->lock);
2474
Tejun Heoe1594892011-01-09 23:32:15 +01002475 /*
2476 * If @max_active is 1 or rescuer is in use, flushing another work
2477 * item on the same workqueue may lead to deadlock. Make sure the
2478 * flusher is not running on the same workqueue by verifying write
2479 * access.
2480 */
2481 if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER)
2482 lock_map_acquire(&cwq->wq->lockdep_map);
2483 else
2484 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heobaf59022010-09-16 10:42:16 +02002485 lock_map_release(&cwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002486
Tejun Heobaf59022010-09-16 10:42:16 +02002487 return true;
2488already_gone:
2489 spin_unlock_irq(&gcwq->lock);
2490 return false;
2491}
2492
Oleg Nesterovdb700892008-07-25 01:47:49 -07002493/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002494 * flush_work - wait for a work to finish executing the last queueing instance
2495 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002496 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002497 * Wait until @work has finished execution. This function considers
2498 * only the last queueing instance of @work. If @work has been
2499 * enqueued across different CPUs on a non-reentrant workqueue or on
2500 * multiple workqueues, @work might still be executing on return on
2501 * some of the CPUs from earlier queueing.
Oleg Nesterova67da702008-07-25 01:47:52 -07002502 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002503 * If @work was queued only on a non-reentrant, ordered or unbound
2504 * workqueue, @work is guaranteed to be idle on return if it hasn't
2505 * been requeued since flush started.
2506 *
2507 * RETURNS:
2508 * %true if flush_work() waited for the work to finish execution,
2509 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002510 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002511bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002512{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002513 struct wq_barrier barr;
2514
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002515 lock_map_acquire(&work->lockdep_map);
2516 lock_map_release(&work->lockdep_map);
2517
Tejun Heobaf59022010-09-16 10:42:16 +02002518 if (start_flush_work(work, &barr, true)) {
2519 wait_for_completion(&barr.done);
2520 destroy_work_on_stack(&barr.work);
2521 return true;
2522 } else
2523 return false;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002524}
2525EXPORT_SYMBOL_GPL(flush_work);
2526
Tejun Heo401a8d02010-09-16 10:36:00 +02002527static bool wait_on_cpu_work(struct global_cwq *gcwq, struct work_struct *work)
2528{
2529 struct wq_barrier barr;
2530 struct worker *worker;
2531
2532 spin_lock_irq(&gcwq->lock);
2533
2534 worker = find_worker_executing_work(gcwq, work);
2535 if (unlikely(worker))
2536 insert_wq_barrier(worker->current_cwq, &barr, work, worker);
2537
2538 spin_unlock_irq(&gcwq->lock);
2539
2540 if (unlikely(worker)) {
2541 wait_for_completion(&barr.done);
2542 destroy_work_on_stack(&barr.work);
2543 return true;
2544 } else
2545 return false;
2546}
2547
2548static bool wait_on_work(struct work_struct *work)
2549{
2550 bool ret = false;
2551 int cpu;
2552
2553 might_sleep();
2554
2555 lock_map_acquire(&work->lockdep_map);
2556 lock_map_release(&work->lockdep_map);
2557
2558 for_each_gcwq_cpu(cpu)
2559 ret |= wait_on_cpu_work(get_gcwq(cpu), work);
2560 return ret;
2561}
2562
Tejun Heo09383492010-09-16 10:48:29 +02002563/**
2564 * flush_work_sync - wait until a work has finished execution
2565 * @work: the work to flush
2566 *
2567 * Wait until @work has finished execution. On return, it's
2568 * guaranteed that all queueing instances of @work which happened
2569 * before this function is called are finished. In other words, if
2570 * @work hasn't been requeued since this function was called, @work is
2571 * guaranteed to be idle on return.
2572 *
2573 * RETURNS:
2574 * %true if flush_work_sync() waited for the work to finish execution,
2575 * %false if it was already idle.
2576 */
2577bool flush_work_sync(struct work_struct *work)
2578{
2579 struct wq_barrier barr;
2580 bool pending, waited;
2581
2582 /* we'll wait for executions separately, queue barr only if pending */
2583 pending = start_flush_work(work, &barr, false);
2584
2585 /* wait for executions to finish */
2586 waited = wait_on_work(work);
2587
2588 /* wait for the pending one */
2589 if (pending) {
2590 wait_for_completion(&barr.done);
2591 destroy_work_on_stack(&barr.work);
2592 }
2593
2594 return pending || waited;
2595}
2596EXPORT_SYMBOL_GPL(flush_work_sync);
2597
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002598/*
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002599 * Upon a successful return (>= 0), the caller "owns" WORK_STRUCT_PENDING bit,
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002600 * so this work can't be re-armed in any way.
2601 */
2602static int try_to_grab_pending(struct work_struct *work)
2603{
Tejun Heo8b03ae32010-06-29 10:07:12 +02002604 struct global_cwq *gcwq;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002605 int ret = -1;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002606
Tejun Heo22df02b2010-06-29 10:07:10 +02002607 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002608 return 0;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002609
2610 /*
2611 * The queueing is in progress, or it is already queued. Try to
2612 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
2613 */
Tejun Heo7a22ad72010-06-29 10:07:13 +02002614 gcwq = get_work_gcwq(work);
2615 if (!gcwq)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002616 return ret;
2617
Tejun Heo8b03ae32010-06-29 10:07:12 +02002618 spin_lock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002619 if (!list_empty(&work->entry)) {
2620 /*
Tejun Heo7a22ad72010-06-29 10:07:13 +02002621 * This work is queued, but perhaps we locked the wrong gcwq.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002622 * In that case we must see the new value after rmb(), see
2623 * insert_work()->wmb().
2624 */
2625 smp_rmb();
Tejun Heo7a22ad72010-06-29 10:07:13 +02002626 if (gcwq == get_work_gcwq(work)) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002627 debug_work_deactivate(work);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002628 list_del_init(&work->entry);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002629 cwq_dec_nr_in_flight(get_work_cwq(work),
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02002630 get_work_color(work),
2631 *work_data_bits(work) & WORK_STRUCT_DELAYED);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002632 ret = 1;
2633 }
2634 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02002635 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002636
2637 return ret;
2638}
2639
Tejun Heo401a8d02010-09-16 10:36:00 +02002640static bool __cancel_work_timer(struct work_struct *work,
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002641 struct timer_list* timer)
2642{
2643 int ret;
2644
2645 do {
2646 ret = (timer && likely(del_timer(timer)));
2647 if (!ret)
2648 ret = try_to_grab_pending(work);
2649 wait_on_work(work);
2650 } while (unlikely(ret < 0));
2651
Tejun Heo7a22ad72010-06-29 10:07:13 +02002652 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002653 return ret;
2654}
2655
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002656/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002657 * cancel_work_sync - cancel a work and wait for it to finish
2658 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002659 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002660 * Cancel @work and wait for its execution to finish. This function
2661 * can be used even if the work re-queues itself or migrates to
2662 * another workqueue. On return from this function, @work is
2663 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002664 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002665 * cancel_work_sync(&delayed_work->work) must not be used for
2666 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002667 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002668 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002669 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002670 *
2671 * RETURNS:
2672 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002673 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002674bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002675{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002676 return __cancel_work_timer(work, NULL);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002677}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002678EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002679
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002680/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002681 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2682 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002683 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002684 * Delayed timer is cancelled and the pending work is queued for
2685 * immediate execution. Like flush_work(), this function only
2686 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002687 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002688 * RETURNS:
2689 * %true if flush_work() waited for the work to finish execution,
2690 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002691 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002692bool flush_delayed_work(struct delayed_work *dwork)
2693{
2694 if (del_timer_sync(&dwork->timer))
2695 __queue_work(raw_smp_processor_id(),
2696 get_work_cwq(&dwork->work)->wq, &dwork->work);
2697 return flush_work(&dwork->work);
2698}
2699EXPORT_SYMBOL(flush_delayed_work);
2700
2701/**
Tejun Heo09383492010-09-16 10:48:29 +02002702 * flush_delayed_work_sync - wait for a dwork to finish
2703 * @dwork: the delayed work to flush
2704 *
2705 * Delayed timer is cancelled and the pending work is queued for
2706 * execution immediately. Other than timer handling, its behavior
2707 * is identical to flush_work_sync().
2708 *
2709 * RETURNS:
2710 * %true if flush_work_sync() waited for the work to finish execution,
2711 * %false if it was already idle.
2712 */
2713bool flush_delayed_work_sync(struct delayed_work *dwork)
2714{
2715 if (del_timer_sync(&dwork->timer))
2716 __queue_work(raw_smp_processor_id(),
2717 get_work_cwq(&dwork->work)->wq, &dwork->work);
2718 return flush_work_sync(&dwork->work);
2719}
2720EXPORT_SYMBOL(flush_delayed_work_sync);
2721
2722/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002723 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2724 * @dwork: the delayed work cancel
2725 *
2726 * This is cancel_work_sync() for delayed works.
2727 *
2728 * RETURNS:
2729 * %true if @dwork was pending, %false otherwise.
2730 */
2731bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002732{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002733 return __cancel_work_timer(&dwork->work, &dwork->timer);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002734}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002735EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002737/**
2738 * schedule_work - put work task in global workqueue
2739 * @work: job to be done
2740 *
Bart Van Assche5b0f437d2009-07-30 19:00:53 +02002741 * Returns zero if @work was already on the kernel-global workqueue and
2742 * non-zero otherwise.
2743 *
2744 * This puts a job in the kernel-global workqueue if it was not already
2745 * queued and leaves it in the same position on the kernel-global
2746 * workqueue otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002747 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002748int schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
Tejun Heod320c032010-06-29 10:07:14 +02002750 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751}
Dave Jonesae90dd52006-06-30 01:40:45 -04002752EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Zhang Ruic1a220e2008-07-23 21:28:39 -07002754/*
2755 * schedule_work_on - put work task on a specific cpu
2756 * @cpu: cpu to put the work task on
2757 * @work: job to be done
2758 *
2759 * This puts a job on a specific cpu
2760 */
2761int schedule_work_on(int cpu, struct work_struct *work)
2762{
Tejun Heod320c032010-06-29 10:07:14 +02002763 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002764}
2765EXPORT_SYMBOL(schedule_work_on);
2766
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002767/**
2768 * schedule_delayed_work - put work task in global workqueue after delay
David Howells52bad642006-11-22 14:54:01 +00002769 * @dwork: job to be done
2770 * @delay: number of jiffies to wait or 0 for immediate execution
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002771 *
2772 * After waiting for a given time this puts a job in the kernel-global
2773 * workqueue.
2774 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002775int schedule_delayed_work(struct delayed_work *dwork,
Ingo Molnar82f67cd2007-02-16 01:28:13 -08002776 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777{
Tejun Heod320c032010-06-29 10:07:14 +02002778 return queue_delayed_work(system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779}
Dave Jonesae90dd52006-06-30 01:40:45 -04002780EXPORT_SYMBOL(schedule_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002782/**
2783 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
2784 * @cpu: cpu to use
David Howells52bad642006-11-22 14:54:01 +00002785 * @dwork: job to be done
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002786 * @delay: number of jiffies to wait
2787 *
2788 * After waiting for a given time this puts a job in the kernel-global
2789 * workqueue on the specified CPU.
2790 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791int schedule_delayed_work_on(int cpu,
David Howells52bad642006-11-22 14:54:01 +00002792 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793{
Tejun Heod320c032010-06-29 10:07:14 +02002794 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
Dave Jonesae90dd52006-06-30 01:40:45 -04002796EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Andrew Mortonb6136772006-06-25 05:47:49 -07002798/**
Tejun Heo31ddd872010-10-19 11:14:49 +02002799 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07002800 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07002801 *
Tejun Heo31ddd872010-10-19 11:14:49 +02002802 * schedule_on_each_cpu() executes @func on each online CPU using the
2803 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07002804 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02002805 *
2806 * RETURNS:
2807 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07002808 */
David Howells65f27f32006-11-22 14:55:48 +00002809int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002810{
2811 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02002812 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08002813
Andrew Mortonb6136772006-06-25 05:47:49 -07002814 works = alloc_percpu(struct work_struct);
2815 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002816 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07002817
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002818 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08002819
Christoph Lameter15316ba2006-01-08 01:00:43 -08002820 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01002821 struct work_struct *work = per_cpu_ptr(works, cpu);
2822
2823 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002824 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02002825 }
Tejun Heo93981802009-11-17 14:06:20 -08002826
2827 for_each_online_cpu(cpu)
2828 flush_work(per_cpu_ptr(works, cpu));
2829
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002830 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07002831 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08002832 return 0;
2833}
2834
Alan Sterneef6a7d2010-02-12 17:39:21 +09002835/**
2836 * flush_scheduled_work - ensure that any scheduled work has run to completion.
2837 *
2838 * Forces execution of the kernel-global workqueue and blocks until its
2839 * completion.
2840 *
2841 * Think twice before calling this function! It's very easy to get into
2842 * trouble if you don't take great care. Either of the following situations
2843 * will lead to deadlock:
2844 *
2845 * One of the work items currently on the workqueue needs to acquire
2846 * a lock held by your code or its caller.
2847 *
2848 * Your code is running in the context of a work routine.
2849 *
2850 * They will be detected by lockdep when they occur, but the first might not
2851 * occur very often. It depends on what work items are on the workqueue and
2852 * what locks they need, which you have no control over.
2853 *
2854 * In most situations flushing the entire workqueue is overkill; you merely
2855 * need to know that a particular work item isn't queued and isn't running.
2856 * In such cases you should use cancel_delayed_work_sync() or
2857 * cancel_work_sync() instead.
2858 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859void flush_scheduled_work(void)
2860{
Tejun Heod320c032010-06-29 10:07:14 +02002861 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862}
Dave Jonesae90dd52006-06-30 01:40:45 -04002863EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
2865/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06002866 * execute_in_process_context - reliably execute the routine with user context
2867 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06002868 * @ew: guaranteed storage for the execute work structure (must
2869 * be available when the work executes)
2870 *
2871 * Executes the function immediately if process context is available,
2872 * otherwise schedules the function for delayed execution.
2873 *
2874 * Returns: 0 - function was executed
2875 * 1 - function was scheduled for execution
2876 */
David Howells65f27f32006-11-22 14:55:48 +00002877int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06002878{
2879 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00002880 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06002881 return 0;
2882 }
2883
David Howells65f27f32006-11-22 14:55:48 +00002884 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06002885 schedule_work(&ew->work);
2886
2887 return 1;
2888}
2889EXPORT_SYMBOL_GPL(execute_in_process_context);
2890
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891int keventd_up(void)
2892{
Tejun Heod320c032010-06-29 10:07:14 +02002893 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894}
2895
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002896static int alloc_cwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897{
Oleg Nesterov3af244332007-05-09 02:34:09 -07002898 /*
Tejun Heo0f900042010-06-29 10:07:11 +02002899 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
2900 * Make sure that the alignment isn't lower than that of
2901 * unsigned long long.
Oleg Nesterov3af244332007-05-09 02:34:09 -07002902 */
Tejun Heo0f900042010-06-29 10:07:11 +02002903 const size_t size = sizeof(struct cpu_workqueue_struct);
2904 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
2905 __alignof__(unsigned long long));
Oleg Nesterov3af244332007-05-09 02:34:09 -07002906
Lai Jiangshane06ffa12012-03-09 18:03:20 +08002907 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02002908 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
Tejun Heo931ac772010-07-20 11:07:48 +02002909 else {
Tejun Heof3421792010-07-02 10:03:51 +02002910 void *ptr;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01002911
Tejun Heof3421792010-07-02 10:03:51 +02002912 /*
2913 * Allocate enough room to align cwq and put an extra
2914 * pointer at the end pointing back to the originally
2915 * allocated pointer which will be used for free.
2916 */
2917 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
2918 if (ptr) {
2919 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
2920 *(void **)(wq->cpu_wq.single + 1) = ptr;
2921 }
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002922 }
Tejun Heof3421792010-07-02 10:03:51 +02002923
Tejun Heo0415b00d12011-03-24 18:50:09 +01002924 /* just in case, make sure it's actually aligned */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002925 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
2926 return wq->cpu_wq.v ? 0 : -ENOMEM;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002927}
2928
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002929static void free_cwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07002930{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08002931 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02002932 free_percpu(wq->cpu_wq.pcpu);
2933 else if (wq->cpu_wq.single) {
2934 /* the pointer to free is stored right after the cwq */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002935 kfree(*(void **)(wq->cpu_wq.single + 1));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07002936 }
2937}
2938
Tejun Heof3421792010-07-02 10:03:51 +02002939static int wq_clamp_max_active(int max_active, unsigned int flags,
2940 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02002941{
Tejun Heof3421792010-07-02 10:03:51 +02002942 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
2943
2944 if (max_active < 1 || max_active > lim)
Tejun Heob71ab8c2010-06-29 10:07:14 +02002945 printk(KERN_WARNING "workqueue: max_active %d requested for %s "
2946 "is out of range, clamping between %d and %d\n",
Tejun Heof3421792010-07-02 10:03:51 +02002947 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002948
Tejun Heof3421792010-07-02 10:03:51 +02002949 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002950}
2951
Tejun Heob196be82012-01-10 15:11:35 -08002952struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02002953 unsigned int flags,
2954 int max_active,
2955 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08002956 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07002957{
Tejun Heob196be82012-01-10 15:11:35 -08002958 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002959 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02002960 unsigned int cpu;
Tejun Heob196be82012-01-10 15:11:35 -08002961 size_t namelen;
2962
2963 /* determine namelen, allocate wq and format name */
2964 va_start(args, lock_name);
2965 va_copy(args1, args);
2966 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
2967
2968 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
2969 if (!wq)
2970 goto err;
2971
2972 vsnprintf(wq->name, namelen, fmt, args1);
2973 va_end(args);
2974 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002975
Tejun Heof3421792010-07-02 10:03:51 +02002976 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02002977 * Workqueues which may be used during memory reclaim should
2978 * have a rescuer to guarantee forward progress.
2979 */
2980 if (flags & WQ_MEM_RECLAIM)
2981 flags |= WQ_RESCUER;
2982
Tejun Heod320c032010-06-29 10:07:14 +02002983 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08002984 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002985
Tejun Heob196be82012-01-10 15:11:35 -08002986 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02002987 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02002988 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02002989 mutex_init(&wq->flush_mutex);
2990 atomic_set(&wq->nr_cwqs_to_flush, 0);
2991 INIT_LIST_HEAD(&wq->flusher_queue);
2992 INIT_LIST_HEAD(&wq->flusher_overflow);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002993
Johannes Bergeb13ba82008-01-16 09:51:58 +01002994 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07002995 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002996
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002997 if (alloc_cwqs(wq) < 0)
2998 goto err;
2999
Tejun Heof3421792010-07-02 10:03:51 +02003000 for_each_cwq_cpu(cpu, wq) {
Tejun Heo15376632010-06-29 10:07:11 +02003001 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003002 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo32704762012-07-13 22:16:45 -07003003 int pool_idx = (bool)(flags & WQ_HIGHPRI);
Tejun Heo15376632010-06-29 10:07:11 +02003004
Tejun Heo0f900042010-06-29 10:07:11 +02003005 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo32704762012-07-13 22:16:45 -07003006 cwq->pool = &gcwq->pools[pool_idx];
Tejun Heoc34056a2010-06-29 10:07:11 +02003007 cwq->wq = wq;
Tejun Heo73f53c42010-06-29 10:07:11 +02003008 cwq->flush_color = -1;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003009 cwq->max_active = max_active;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003010 INIT_LIST_HEAD(&cwq->delayed_works);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003011 }
3012
Tejun Heoe22bee72010-06-29 10:07:14 +02003013 if (flags & WQ_RESCUER) {
3014 struct worker *rescuer;
3015
Tejun Heof2e005a2010-07-20 15:59:09 +02003016 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
Tejun Heoe22bee72010-06-29 10:07:14 +02003017 goto err;
3018
3019 wq->rescuer = rescuer = alloc_worker();
3020 if (!rescuer)
3021 goto err;
3022
Tejun Heob196be82012-01-10 15:11:35 -08003023 rescuer->task = kthread_create(rescuer_thread, wq, "%s",
3024 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003025 if (IS_ERR(rescuer->task))
3026 goto err;
3027
Tejun Heoe22bee72010-06-29 10:07:14 +02003028 rescuer->task->flags |= PF_THREAD_BOUND;
3029 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003030 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003031
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003032 /*
3033 * workqueue_lock protects global freeze state and workqueues
3034 * list. Grab it, set max_active accordingly and add the new
3035 * workqueue to workqueues list.
3036 */
Tejun Heo15376632010-06-29 10:07:11 +02003037 spin_lock(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003038
Tejun Heo58a69cb2011-02-16 09:25:31 +01003039 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heof3421792010-07-02 10:03:51 +02003040 for_each_cwq_cpu(cpu, wq)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003041 get_cwq(cpu, wq)->max_active = 0;
3042
Tejun Heo15376632010-06-29 10:07:11 +02003043 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003044
Tejun Heo15376632010-06-29 10:07:11 +02003045 spin_unlock(&workqueue_lock);
3046
Oleg Nesterov3af244332007-05-09 02:34:09 -07003047 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003048err:
3049 if (wq) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003050 free_cwqs(wq);
Tejun Heof2e005a2010-07-20 15:59:09 +02003051 free_mayday_mask(wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02003052 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003053 kfree(wq);
3054 }
3055 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003056}
Tejun Heod320c032010-06-29 10:07:14 +02003057EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003058
3059/**
3060 * destroy_workqueue - safely terminate a workqueue
3061 * @wq: target workqueue
3062 *
3063 * Safely destroy a workqueue. All work currently pending will be done first.
3064 */
3065void destroy_workqueue(struct workqueue_struct *wq)
3066{
Tejun Heoc8e55f32010-06-29 10:07:12 +02003067 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003068
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003069 /* drain it before proceeding with destruction */
3070 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003071
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003072 /*
3073 * wq list is used to freeze wq, remove from list after
3074 * flushing is complete in case freeze races us.
3075 */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003076 spin_lock(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003077 list_del(&wq->list);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003078 spin_unlock(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003079
Tejun Heoe22bee72010-06-29 10:07:14 +02003080 /* sanity check */
Tejun Heof3421792010-07-02 10:03:51 +02003081 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02003082 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3083 int i;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003084
Tejun Heo73f53c42010-06-29 10:07:11 +02003085 for (i = 0; i < WORK_NR_COLORS; i++)
3086 BUG_ON(cwq->nr_in_flight[i]);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003087 BUG_ON(cwq->nr_active);
3088 BUG_ON(!list_empty(&cwq->delayed_works));
Tejun Heo73f53c42010-06-29 10:07:11 +02003089 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003090
Tejun Heoe22bee72010-06-29 10:07:14 +02003091 if (wq->flags & WQ_RESCUER) {
3092 kthread_stop(wq->rescuer->task);
Tejun Heof2e005a2010-07-20 15:59:09 +02003093 free_mayday_mask(wq->mayday_mask);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003094 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003095 }
3096
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003097 free_cwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003098 kfree(wq);
3099}
3100EXPORT_SYMBOL_GPL(destroy_workqueue);
3101
Tejun Heodcd989c2010-06-29 10:07:14 +02003102/**
3103 * workqueue_set_max_active - adjust max_active of a workqueue
3104 * @wq: target workqueue
3105 * @max_active: new max_active value.
3106 *
3107 * Set max_active of @wq to @max_active.
3108 *
3109 * CONTEXT:
3110 * Don't call from IRQ context.
3111 */
3112void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3113{
3114 unsigned int cpu;
3115
Tejun Heof3421792010-07-02 10:03:51 +02003116 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003117
3118 spin_lock(&workqueue_lock);
3119
3120 wq->saved_max_active = max_active;
3121
Tejun Heof3421792010-07-02 10:03:51 +02003122 for_each_cwq_cpu(cpu, wq) {
Tejun Heodcd989c2010-06-29 10:07:14 +02003123 struct global_cwq *gcwq = get_gcwq(cpu);
3124
3125 spin_lock_irq(&gcwq->lock);
3126
Tejun Heo58a69cb2011-02-16 09:25:31 +01003127 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heodcd989c2010-06-29 10:07:14 +02003128 !(gcwq->flags & GCWQ_FREEZING))
3129 get_cwq(gcwq->cpu, wq)->max_active = max_active;
3130
3131 spin_unlock_irq(&gcwq->lock);
3132 }
3133
3134 spin_unlock(&workqueue_lock);
3135}
3136EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3137
3138/**
3139 * workqueue_congested - test whether a workqueue is congested
3140 * @cpu: CPU in question
3141 * @wq: target workqueue
3142 *
3143 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3144 * no synchronization around this function and the test result is
3145 * unreliable and only useful as advisory hints or for debugging.
3146 *
3147 * RETURNS:
3148 * %true if congested, %false otherwise.
3149 */
3150bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
3151{
3152 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3153
3154 return !list_empty(&cwq->delayed_works);
3155}
3156EXPORT_SYMBOL_GPL(workqueue_congested);
3157
3158/**
3159 * work_cpu - return the last known associated cpu for @work
3160 * @work: the work of interest
3161 *
3162 * RETURNS:
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003163 * CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
Tejun Heodcd989c2010-06-29 10:07:14 +02003164 */
3165unsigned int work_cpu(struct work_struct *work)
3166{
3167 struct global_cwq *gcwq = get_work_gcwq(work);
3168
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003169 return gcwq ? gcwq->cpu : WORK_CPU_NONE;
Tejun Heodcd989c2010-06-29 10:07:14 +02003170}
3171EXPORT_SYMBOL_GPL(work_cpu);
3172
3173/**
3174 * work_busy - test whether a work is currently pending or running
3175 * @work: the work to be tested
3176 *
3177 * Test whether @work is currently pending or running. There is no
3178 * synchronization around this function and the test result is
3179 * unreliable and only useful as advisory hints or for debugging.
3180 * Especially for reentrant wqs, the pending state might hide the
3181 * running state.
3182 *
3183 * RETURNS:
3184 * OR'd bitmask of WORK_BUSY_* bits.
3185 */
3186unsigned int work_busy(struct work_struct *work)
3187{
3188 struct global_cwq *gcwq = get_work_gcwq(work);
3189 unsigned long flags;
3190 unsigned int ret = 0;
3191
3192 if (!gcwq)
3193 return false;
3194
3195 spin_lock_irqsave(&gcwq->lock, flags);
3196
3197 if (work_pending(work))
3198 ret |= WORK_BUSY_PENDING;
3199 if (find_worker_executing_work(gcwq, work))
3200 ret |= WORK_BUSY_RUNNING;
3201
3202 spin_unlock_irqrestore(&gcwq->lock, flags);
3203
3204 return ret;
3205}
3206EXPORT_SYMBOL_GPL(work_busy);
3207
Tejun Heodb7bccf2010-06-29 10:07:12 +02003208/*
3209 * CPU hotplug.
3210 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003211 * There are two challenges in supporting CPU hotplug. Firstly, there
3212 * are a lot of assumptions on strong associations among work, cwq and
3213 * gcwq which make migrating pending and scheduled works very
3214 * difficult to implement without impacting hot paths. Secondly,
3215 * gcwqs serve mix of short, long and very long running works making
3216 * blocked draining impractical.
3217 *
3218 * This is solved by allowing a gcwq to be detached from CPU, running
3219 * it with unbound (rogue) workers and allowing it to be reattached
3220 * later if the cpu comes back online. A separate thread is created
3221 * to govern a gcwq in such state and is called the trustee of the
3222 * gcwq.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003223 *
3224 * Trustee states and their descriptions.
3225 *
3226 * START Command state used on startup. On CPU_DOWN_PREPARE, a
3227 * new trustee is started with this state.
3228 *
3229 * IN_CHARGE Once started, trustee will enter this state after
Tejun Heoe22bee72010-06-29 10:07:14 +02003230 * assuming the manager role and making all existing
3231 * workers rogue. DOWN_PREPARE waits for trustee to
3232 * enter this state. After reaching IN_CHARGE, trustee
3233 * tries to execute the pending worklist until it's empty
3234 * and the state is set to BUTCHER, or the state is set
3235 * to RELEASE.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003236 *
3237 * BUTCHER Command state which is set by the cpu callback after
3238 * the cpu has went down. Once this state is set trustee
3239 * knows that there will be no new works on the worklist
3240 * and once the worklist is empty it can proceed to
3241 * killing idle workers.
3242 *
3243 * RELEASE Command state which is set by the cpu callback if the
3244 * cpu down has been canceled or it has come online
3245 * again. After recognizing this state, trustee stops
Tejun Heoe22bee72010-06-29 10:07:14 +02003246 * trying to drain or butcher and clears ROGUE, rebinds
3247 * all remaining workers back to the cpu and releases
3248 * manager role.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003249 *
3250 * DONE Trustee will enter this state after BUTCHER or RELEASE
3251 * is complete.
3252 *
3253 * trustee CPU draining
3254 * took over down complete
3255 * START -----------> IN_CHARGE -----------> BUTCHER -----------> DONE
3256 * | | ^
3257 * | CPU is back online v return workers |
3258 * ----------------> RELEASE --------------
3259 */
3260
3261/**
3262 * trustee_wait_event_timeout - timed event wait for trustee
3263 * @cond: condition to wait for
3264 * @timeout: timeout in jiffies
3265 *
3266 * wait_event_timeout() for trustee to use. Handles locking and
3267 * checks for RELEASE request.
3268 *
3269 * CONTEXT:
3270 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3271 * multiple times. To be used by trustee.
3272 *
3273 * RETURNS:
3274 * Positive indicating left time if @cond is satisfied, 0 if timed
3275 * out, -1 if canceled.
3276 */
3277#define trustee_wait_event_timeout(cond, timeout) ({ \
3278 long __ret = (timeout); \
3279 while (!((cond) || (gcwq->trustee_state == TRUSTEE_RELEASE)) && \
3280 __ret) { \
3281 spin_unlock_irq(&gcwq->lock); \
3282 __wait_event_timeout(gcwq->trustee_wait, (cond) || \
3283 (gcwq->trustee_state == TRUSTEE_RELEASE), \
3284 __ret); \
3285 spin_lock_irq(&gcwq->lock); \
3286 } \
3287 gcwq->trustee_state == TRUSTEE_RELEASE ? -1 : (__ret); \
3288})
3289
3290/**
3291 * trustee_wait_event - event wait for trustee
3292 * @cond: condition to wait for
3293 *
3294 * wait_event() for trustee to use. Automatically handles locking and
3295 * checks for CANCEL request.
3296 *
3297 * CONTEXT:
3298 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3299 * multiple times. To be used by trustee.
3300 *
3301 * RETURNS:
3302 * 0 if @cond is satisfied, -1 if canceled.
3303 */
3304#define trustee_wait_event(cond) ({ \
3305 long __ret1; \
3306 __ret1 = trustee_wait_event_timeout(cond, MAX_SCHEDULE_TIMEOUT);\
3307 __ret1 < 0 ? -1 : 0; \
3308})
3309
Tejun Heo4ce62e92012-07-13 22:16:44 -07003310static bool gcwq_is_managing_workers(struct global_cwq *gcwq)
3311{
3312 struct worker_pool *pool;
3313
3314 for_each_worker_pool(pool, gcwq)
3315 if (pool->flags & POOL_MANAGING_WORKERS)
3316 return true;
3317 return false;
3318}
3319
3320static bool gcwq_has_idle_workers(struct global_cwq *gcwq)
3321{
3322 struct worker_pool *pool;
3323
3324 for_each_worker_pool(pool, gcwq)
3325 if (!list_empty(&pool->idle_list))
3326 return true;
3327 return false;
3328}
3329
Tejun Heodb7bccf2010-06-29 10:07:12 +02003330static int __cpuinit trustee_thread(void *__gcwq)
3331{
3332 struct global_cwq *gcwq = __gcwq;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003333 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003334 struct worker *worker;
Tejun Heoe22bee72010-06-29 10:07:14 +02003335 struct work_struct *work;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003336 struct hlist_node *pos;
Tejun Heoe22bee72010-06-29 10:07:14 +02003337 long rc;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003338 int i;
3339
3340 BUG_ON(gcwq->cpu != smp_processor_id());
3341
3342 spin_lock_irq(&gcwq->lock);
3343 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02003344 * Claim the manager position and make all workers rogue.
3345 * Trustee must be bound to the target cpu and can't be
3346 * cancelled.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003347 */
3348 BUG_ON(gcwq->cpu != smp_processor_id());
Tejun Heo4ce62e92012-07-13 22:16:44 -07003349 rc = trustee_wait_event(!gcwq_is_managing_workers(gcwq));
Tejun Heoe22bee72010-06-29 10:07:14 +02003350 BUG_ON(rc < 0);
3351
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003352 /*
3353 * We've claimed all manager positions. Make all workers unbound
3354 * and set DISASSOCIATED. Before this, all workers except for the
3355 * ones which are still executing works from before the last CPU
3356 * down must be on the cpu. After this, they may become diasporas.
3357 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003358 for_each_worker_pool(pool, gcwq) {
3359 pool->flags |= POOL_MANAGING_WORKERS;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003360
Tejun Heo4ce62e92012-07-13 22:16:44 -07003361 list_for_each_entry(worker, &pool->idle_list, entry)
3362 worker->flags |= WORKER_ROGUE;
3363 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003364
3365 for_each_busy_worker(worker, i, pos, gcwq)
Tejun Heocb444762010-07-02 10:03:50 +02003366 worker->flags |= WORKER_ROGUE;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003367
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003368 gcwq->flags |= GCWQ_DISASSOCIATED;
3369
Tejun Heodb7bccf2010-06-29 10:07:12 +02003370 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02003371 * Call schedule() so that we cross rq->lock and thus can
3372 * guarantee sched callbacks see the rogue flag. This is
3373 * necessary as scheduler callbacks may be invoked from other
3374 * cpus.
3375 */
3376 spin_unlock_irq(&gcwq->lock);
3377 schedule();
3378 spin_lock_irq(&gcwq->lock);
3379
3380 /*
Tejun Heocb444762010-07-02 10:03:50 +02003381 * Sched callbacks are disabled now. Zap nr_running. After
3382 * this, nr_running stays zero and need_more_worker() and
3383 * keep_working() are always true as long as the worklist is
3384 * not empty.
Tejun Heoe22bee72010-06-29 10:07:14 +02003385 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003386 for_each_worker_pool(pool, gcwq)
3387 atomic_set(get_pool_nr_running(pool), 0);
Tejun Heoe22bee72010-06-29 10:07:14 +02003388
3389 spin_unlock_irq(&gcwq->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003390 for_each_worker_pool(pool, gcwq)
3391 del_timer_sync(&pool->idle_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003392 spin_lock_irq(&gcwq->lock);
3393
3394 /*
Tejun Heodb7bccf2010-06-29 10:07:12 +02003395 * We're now in charge. Notify and proceed to drain. We need
3396 * to keep the gcwq running during the whole CPU down
3397 * procedure as other cpu hotunplug callbacks may need to
3398 * flush currently running tasks.
3399 */
3400 gcwq->trustee_state = TRUSTEE_IN_CHARGE;
3401 wake_up_all(&gcwq->trustee_wait);
3402
3403 /*
3404 * The original cpu is in the process of dying and may go away
3405 * anytime now. When that happens, we and all workers would
Tejun Heoe22bee72010-06-29 10:07:14 +02003406 * be migrated to other cpus. Try draining any left work. We
3407 * want to get it over with ASAP - spam rescuers, wake up as
3408 * many idlers as necessary and create new ones till the
3409 * worklist is empty. Note that if the gcwq is frozen, there
Tejun Heo58a69cb2011-02-16 09:25:31 +01003410 * may be frozen works in freezable cwqs. Don't declare
Tejun Heoe22bee72010-06-29 10:07:14 +02003411 * completion while frozen.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003412 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003413 while (true) {
3414 bool busy = false;
Tejun Heoe22bee72010-06-29 10:07:14 +02003415
Tejun Heo4ce62e92012-07-13 22:16:44 -07003416 for_each_worker_pool(pool, gcwq)
3417 busy |= pool->nr_workers != pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +02003418
Tejun Heo4ce62e92012-07-13 22:16:44 -07003419 if (!busy && !(gcwq->flags & GCWQ_FREEZING) &&
3420 gcwq->trustee_state != TRUSTEE_IN_CHARGE)
3421 break;
Tejun Heoe22bee72010-06-29 10:07:14 +02003422
Tejun Heo4ce62e92012-07-13 22:16:44 -07003423 for_each_worker_pool(pool, gcwq) {
3424 int nr_works = 0;
3425
3426 list_for_each_entry(work, &pool->worklist, entry) {
3427 send_mayday(work);
3428 nr_works++;
3429 }
3430
3431 list_for_each_entry(worker, &pool->idle_list, entry) {
3432 if (!nr_works--)
3433 break;
3434 wake_up_process(worker->task);
3435 }
3436
3437 if (need_to_create_worker(pool)) {
3438 spin_unlock_irq(&gcwq->lock);
3439 worker = create_worker(pool, false);
3440 spin_lock_irq(&gcwq->lock);
3441 if (worker) {
3442 worker->flags |= WORKER_ROGUE;
3443 start_worker(worker);
3444 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003445 }
3446 }
3447
Tejun Heodb7bccf2010-06-29 10:07:12 +02003448 /* give a breather */
3449 if (trustee_wait_event_timeout(false, TRUSTEE_COOLDOWN) < 0)
3450 break;
3451 }
3452
Tejun Heoe22bee72010-06-29 10:07:14 +02003453 /*
3454 * Either all works have been scheduled and cpu is down, or
3455 * cpu down has already been canceled. Wait for and butcher
3456 * all workers till we're canceled.
3457 */
3458 do {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003459 rc = trustee_wait_event(gcwq_has_idle_workers(gcwq));
3460
3461 i = 0;
3462 for_each_worker_pool(pool, gcwq) {
3463 while (!list_empty(&pool->idle_list)) {
3464 worker = list_first_entry(&pool->idle_list,
3465 struct worker, entry);
3466 destroy_worker(worker);
3467 }
3468 i |= pool->nr_workers;
3469 }
3470 } while (i && rc >= 0);
Tejun Heoe22bee72010-06-29 10:07:14 +02003471
3472 /*
3473 * At this point, either draining has completed and no worker
3474 * is left, or cpu down has been canceled or the cpu is being
3475 * brought back up. There shouldn't be any idle one left.
3476 * Tell the remaining busy ones to rebind once it finishes the
3477 * currently scheduled works by scheduling the rebind_work.
3478 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003479 for_each_worker_pool(pool, gcwq)
3480 WARN_ON(!list_empty(&pool->idle_list));
Tejun Heoe22bee72010-06-29 10:07:14 +02003481
3482 for_each_busy_worker(worker, i, pos, gcwq) {
3483 struct work_struct *rebind_work = &worker->rebind_work;
3484
3485 /*
3486 * Rebind_work may race with future cpu hotplug
3487 * operations. Use a separate flag to mark that
3488 * rebinding is scheduled.
3489 */
Tejun Heocb444762010-07-02 10:03:50 +02003490 worker->flags |= WORKER_REBIND;
3491 worker->flags &= ~WORKER_ROGUE;
Tejun Heoe22bee72010-06-29 10:07:14 +02003492
3493 /* queue rebind_work, wq doesn't matter, use the default one */
3494 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
3495 work_data_bits(rebind_work)))
3496 continue;
3497
3498 debug_work_activate(rebind_work);
Tejun Heod320c032010-06-29 10:07:14 +02003499 insert_work(get_cwq(gcwq->cpu, system_wq), rebind_work,
Tejun Heoe22bee72010-06-29 10:07:14 +02003500 worker->scheduled.next,
3501 work_color_to_flags(WORK_NO_COLOR));
3502 }
3503
3504 /* relinquish manager role */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003505 for_each_worker_pool(pool, gcwq)
3506 pool->flags &= ~POOL_MANAGING_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02003507
Tejun Heodb7bccf2010-06-29 10:07:12 +02003508 /* notify completion */
3509 gcwq->trustee = NULL;
3510 gcwq->trustee_state = TRUSTEE_DONE;
3511 wake_up_all(&gcwq->trustee_wait);
3512 spin_unlock_irq(&gcwq->lock);
3513 return 0;
3514}
3515
3516/**
3517 * wait_trustee_state - wait for trustee to enter the specified state
3518 * @gcwq: gcwq the trustee of interest belongs to
3519 * @state: target state to wait for
3520 *
3521 * Wait for the trustee to reach @state. DONE is already matched.
3522 *
3523 * CONTEXT:
3524 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3525 * multiple times. To be used by cpu_callback.
3526 */
3527static void __cpuinit wait_trustee_state(struct global_cwq *gcwq, int state)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09003528__releases(&gcwq->lock)
3529__acquires(&gcwq->lock)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003530{
3531 if (!(gcwq->trustee_state == state ||
3532 gcwq->trustee_state == TRUSTEE_DONE)) {
3533 spin_unlock_irq(&gcwq->lock);
3534 __wait_event(gcwq->trustee_wait,
3535 gcwq->trustee_state == state ||
3536 gcwq->trustee_state == TRUSTEE_DONE);
3537 spin_lock_irq(&gcwq->lock);
3538 }
3539}
3540
Oleg Nesterov3af244332007-05-09 02:34:09 -07003541static int __devinit workqueue_cpu_callback(struct notifier_block *nfb,
3542 unsigned long action,
3543 void *hcpu)
3544{
3545 unsigned int cpu = (unsigned long)hcpu;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003546 struct global_cwq *gcwq = get_gcwq(cpu);
3547 struct task_struct *new_trustee = NULL;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003548 struct worker *new_workers[NR_WORKER_POOLS] = { };
3549 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003550 unsigned long flags;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003551 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003553 action &= ~CPU_TASKS_FROZEN;
3554
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 switch (action) {
Tejun Heodb7bccf2010-06-29 10:07:12 +02003556 case CPU_DOWN_PREPARE:
3557 new_trustee = kthread_create(trustee_thread, gcwq,
3558 "workqueue_trustee/%d\n", cpu);
3559 if (IS_ERR(new_trustee))
3560 return notifier_from_errno(PTR_ERR(new_trustee));
3561 kthread_bind(new_trustee, cpu);
Tejun Heoe22bee72010-06-29 10:07:14 +02003562 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 case CPU_UP_PREPARE:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003564 i = 0;
3565 for_each_worker_pool(pool, gcwq) {
3566 BUG_ON(pool->first_idle);
3567 new_workers[i] = create_worker(pool, false);
3568 if (!new_workers[i++])
3569 goto err_destroy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 }
3572
Tejun Heodb7bccf2010-06-29 10:07:12 +02003573 /* some are called w/ irq disabled, don't disturb irq status */
3574 spin_lock_irqsave(&gcwq->lock, flags);
3575
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003576 switch (action) {
Tejun Heodb7bccf2010-06-29 10:07:12 +02003577 case CPU_DOWN_PREPARE:
3578 /* initialize trustee and tell it to acquire the gcwq */
3579 BUG_ON(gcwq->trustee || gcwq->trustee_state != TRUSTEE_DONE);
3580 gcwq->trustee = new_trustee;
3581 gcwq->trustee_state = TRUSTEE_START;
3582 wake_up_process(gcwq->trustee);
3583 wait_trustee_state(gcwq, TRUSTEE_IN_CHARGE);
Tejun Heoe22bee72010-06-29 10:07:14 +02003584 /* fall through */
3585 case CPU_UP_PREPARE:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003586 i = 0;
3587 for_each_worker_pool(pool, gcwq) {
3588 BUG_ON(pool->first_idle);
3589 pool->first_idle = new_workers[i++];
3590 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003591 break;
3592
Oleg Nesterov3da1c842008-07-25 01:47:50 -07003593 case CPU_POST_DEAD:
Tejun Heodb7bccf2010-06-29 10:07:12 +02003594 gcwq->trustee_state = TRUSTEE_BUTCHER;
Tejun Heoe22bee72010-06-29 10:07:14 +02003595 /* fall through */
3596 case CPU_UP_CANCELED:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003597 for_each_worker_pool(pool, gcwq) {
3598 destroy_worker(pool->first_idle);
3599 pool->first_idle = NULL;
3600 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003601 break;
3602
3603 case CPU_DOWN_FAILED:
3604 case CPU_ONLINE:
Tejun Heoe22bee72010-06-29 10:07:14 +02003605 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003606 if (gcwq->trustee_state != TRUSTEE_DONE) {
3607 gcwq->trustee_state = TRUSTEE_RELEASE;
3608 wake_up_process(gcwq->trustee);
3609 wait_trustee_state(gcwq, TRUSTEE_DONE);
3610 }
3611
Tejun Heoe22bee72010-06-29 10:07:14 +02003612 /*
3613 * Trustee is done and there might be no worker left.
3614 * Put the first_idle in and request a real manager to
3615 * take a look.
3616 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003617 for_each_worker_pool(pool, gcwq) {
3618 spin_unlock_irq(&gcwq->lock);
3619 kthread_bind(pool->first_idle->task, cpu);
3620 spin_lock_irq(&gcwq->lock);
3621 pool->flags |= POOL_MANAGE_WORKERS;
3622 start_worker(pool->first_idle);
3623 pool->first_idle = NULL;
3624 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003625 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003626 }
3627
Tejun Heodb7bccf2010-06-29 10:07:12 +02003628 spin_unlock_irqrestore(&gcwq->lock, flags);
3629
Tejun Heo15376632010-06-29 10:07:11 +02003630 return notifier_from_errno(0);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003631
3632err_destroy:
3633 if (new_trustee)
3634 kthread_stop(new_trustee);
3635
3636 spin_lock_irqsave(&gcwq->lock, flags);
3637 for (i = 0; i < NR_WORKER_POOLS; i++)
3638 if (new_workers[i])
3639 destroy_worker(new_workers[i]);
3640 spin_unlock_irqrestore(&gcwq->lock, flags);
3641
3642 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
Tejun Heo65758202012-07-17 12:39:26 -07003645/*
3646 * Workqueues should be brought up before normal priority CPU notifiers.
3647 * This will be registered high priority CPU notifier.
3648 */
3649static int __devinit workqueue_cpu_up_callback(struct notifier_block *nfb,
3650 unsigned long action,
3651 void *hcpu)
3652{
3653 switch (action & ~CPU_TASKS_FROZEN) {
3654 case CPU_UP_PREPARE:
3655 case CPU_UP_CANCELED:
3656 case CPU_DOWN_FAILED:
3657 case CPU_ONLINE:
3658 return workqueue_cpu_callback(nfb, action, hcpu);
3659 }
3660 return NOTIFY_OK;
3661}
3662
3663/*
3664 * Workqueues should be brought down after normal priority CPU notifiers.
3665 * This will be registered as low priority CPU notifier.
3666 */
3667static int __devinit workqueue_cpu_down_callback(struct notifier_block *nfb,
3668 unsigned long action,
3669 void *hcpu)
3670{
3671 switch (action & ~CPU_TASKS_FROZEN) {
3672 case CPU_DOWN_PREPARE:
Tejun Heo65758202012-07-17 12:39:26 -07003673 case CPU_POST_DEAD:
3674 return workqueue_cpu_callback(nfb, action, hcpu);
3675 }
3676 return NOTIFY_OK;
3677}
3678
Rusty Russell2d3854a2008-11-05 13:39:10 +11003679#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003680
Rusty Russell2d3854a2008-11-05 13:39:10 +11003681struct work_for_cpu {
Andrew Morton6b440032009-04-09 09:50:37 -06003682 struct completion completion;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003683 long (*fn)(void *);
3684 void *arg;
3685 long ret;
3686};
3687
Andrew Morton6b440032009-04-09 09:50:37 -06003688static int do_work_for_cpu(void *_wfc)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003689{
Andrew Morton6b440032009-04-09 09:50:37 -06003690 struct work_for_cpu *wfc = _wfc;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003691 wfc->ret = wfc->fn(wfc->arg);
Andrew Morton6b440032009-04-09 09:50:37 -06003692 complete(&wfc->completion);
3693 return 0;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003694}
3695
3696/**
3697 * work_on_cpu - run a function in user context on a particular cpu
3698 * @cpu: the cpu to run on
3699 * @fn: the function to run
3700 * @arg: the function arg
3701 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003702 * This will return the value @fn returns.
3703 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b440032009-04-09 09:50:37 -06003704 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003705 */
3706long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3707{
Andrew Morton6b440032009-04-09 09:50:37 -06003708 struct task_struct *sub_thread;
3709 struct work_for_cpu wfc = {
3710 .completion = COMPLETION_INITIALIZER_ONSTACK(wfc.completion),
3711 .fn = fn,
3712 .arg = arg,
3713 };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003714
Andrew Morton6b440032009-04-09 09:50:37 -06003715 sub_thread = kthread_create(do_work_for_cpu, &wfc, "work_for_cpu");
3716 if (IS_ERR(sub_thread))
3717 return PTR_ERR(sub_thread);
3718 kthread_bind(sub_thread, cpu);
3719 wake_up_process(sub_thread);
3720 wait_for_completion(&wfc.completion);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003721 return wfc.ret;
3722}
3723EXPORT_SYMBOL_GPL(work_on_cpu);
3724#endif /* CONFIG_SMP */
3725
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003726#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303727
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003728/**
3729 * freeze_workqueues_begin - begin freezing workqueues
3730 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003731 * Start freezing workqueues. After this function returns, all freezable
3732 * workqueues will queue new works to their frozen_works list instead of
3733 * gcwq->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003734 *
3735 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003736 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003737 */
3738void freeze_workqueues_begin(void)
3739{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003740 unsigned int cpu;
3741
3742 spin_lock(&workqueue_lock);
3743
3744 BUG_ON(workqueue_freezing);
3745 workqueue_freezing = true;
3746
Tejun Heof3421792010-07-02 10:03:51 +02003747 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003748 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003749 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003750
3751 spin_lock_irq(&gcwq->lock);
3752
Tejun Heodb7bccf2010-06-29 10:07:12 +02003753 BUG_ON(gcwq->flags & GCWQ_FREEZING);
3754 gcwq->flags |= GCWQ_FREEZING;
3755
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003756 list_for_each_entry(wq, &workqueues, list) {
3757 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3758
Tejun Heo58a69cb2011-02-16 09:25:31 +01003759 if (cwq && wq->flags & WQ_FREEZABLE)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003760 cwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003761 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003762
3763 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003764 }
3765
3766 spin_unlock(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003768
3769/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003770 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003771 *
3772 * Check whether freezing is complete. This function must be called
3773 * between freeze_workqueues_begin() and thaw_workqueues().
3774 *
3775 * CONTEXT:
3776 * Grabs and releases workqueue_lock.
3777 *
3778 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003779 * %true if some freezable workqueues are still busy. %false if freezing
3780 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003781 */
3782bool freeze_workqueues_busy(void)
3783{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003784 unsigned int cpu;
3785 bool busy = false;
3786
3787 spin_lock(&workqueue_lock);
3788
3789 BUG_ON(!workqueue_freezing);
3790
Tejun Heof3421792010-07-02 10:03:51 +02003791 for_each_gcwq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003792 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003793 /*
3794 * nr_active is monotonically decreasing. It's safe
3795 * to peek without lock.
3796 */
3797 list_for_each_entry(wq, &workqueues, list) {
3798 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3799
Tejun Heo58a69cb2011-02-16 09:25:31 +01003800 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003801 continue;
3802
3803 BUG_ON(cwq->nr_active < 0);
3804 if (cwq->nr_active) {
3805 busy = true;
3806 goto out_unlock;
3807 }
3808 }
3809 }
3810out_unlock:
3811 spin_unlock(&workqueue_lock);
3812 return busy;
3813}
3814
3815/**
3816 * thaw_workqueues - thaw workqueues
3817 *
3818 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo7e116292010-06-29 10:07:13 +02003819 * frozen works are transferred to their respective gcwq worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003820 *
3821 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003822 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003823 */
3824void thaw_workqueues(void)
3825{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003826 unsigned int cpu;
3827
3828 spin_lock(&workqueue_lock);
3829
3830 if (!workqueue_freezing)
3831 goto out_unlock;
3832
Tejun Heof3421792010-07-02 10:03:51 +02003833 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003834 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003835 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003836 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003837
3838 spin_lock_irq(&gcwq->lock);
3839
Tejun Heodb7bccf2010-06-29 10:07:12 +02003840 BUG_ON(!(gcwq->flags & GCWQ_FREEZING));
3841 gcwq->flags &= ~GCWQ_FREEZING;
3842
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003843 list_for_each_entry(wq, &workqueues, list) {
3844 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3845
Tejun Heo58a69cb2011-02-16 09:25:31 +01003846 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003847 continue;
3848
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003849 /* restore max_active and repopulate worklist */
3850 cwq->max_active = wq->saved_max_active;
3851
3852 while (!list_empty(&cwq->delayed_works) &&
3853 cwq->nr_active < cwq->max_active)
3854 cwq_activate_first_delayed(cwq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003855 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003856
Tejun Heo4ce62e92012-07-13 22:16:44 -07003857 for_each_worker_pool(pool, gcwq)
3858 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02003859
Tejun Heo8b03ae32010-06-29 10:07:12 +02003860 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003861 }
3862
3863 workqueue_freezing = false;
3864out_unlock:
3865 spin_unlock(&workqueue_lock);
3866}
3867#endif /* CONFIG_FREEZER */
3868
Suresh Siddha6ee05782010-07-30 14:57:37 -07003869static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870{
Tejun Heoc34056a2010-06-29 10:07:11 +02003871 unsigned int cpu;
Tejun Heoc8e55f32010-06-29 10:07:12 +02003872 int i;
Tejun Heoc34056a2010-06-29 10:07:11 +02003873
Tejun Heo65758202012-07-17 12:39:26 -07003874 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
3875 cpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003876
3877 /* initialize gcwqs */
Tejun Heof3421792010-07-02 10:03:51 +02003878 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003879 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003880 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003881
3882 spin_lock_init(&gcwq->lock);
3883 gcwq->cpu = cpu;
Tejun Heo477a3c32010-08-31 10:54:35 +02003884 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003885
Tejun Heoc8e55f32010-06-29 10:07:12 +02003886 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++)
3887 INIT_HLIST_HEAD(&gcwq->busy_hash[i]);
3888
Tejun Heo4ce62e92012-07-13 22:16:44 -07003889 for_each_worker_pool(pool, gcwq) {
3890 pool->gcwq = gcwq;
3891 INIT_LIST_HEAD(&pool->worklist);
3892 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoe22bee72010-06-29 10:07:14 +02003893
Tejun Heo4ce62e92012-07-13 22:16:44 -07003894 init_timer_deferrable(&pool->idle_timer);
3895 pool->idle_timer.function = idle_worker_timeout;
3896 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003897
Tejun Heo4ce62e92012-07-13 22:16:44 -07003898 setup_timer(&pool->mayday_timer, gcwq_mayday_timeout,
3899 (unsigned long)pool);
3900
3901 ida_init(&pool->worker_ida);
3902 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003903
3904 gcwq->trustee_state = TRUSTEE_DONE;
3905 init_waitqueue_head(&gcwq->trustee_wait);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003906 }
3907
Tejun Heoe22bee72010-06-29 10:07:14 +02003908 /* create the initial worker */
Tejun Heof3421792010-07-02 10:03:51 +02003909 for_each_online_gcwq_cpu(cpu) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003910 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003911 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003912
Tejun Heo477a3c32010-08-31 10:54:35 +02003913 if (cpu != WORK_CPU_UNBOUND)
3914 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003915
3916 for_each_worker_pool(pool, gcwq) {
3917 struct worker *worker;
3918
3919 worker = create_worker(pool, true);
3920 BUG_ON(!worker);
3921 spin_lock_irq(&gcwq->lock);
3922 start_worker(worker);
3923 spin_unlock_irq(&gcwq->lock);
3924 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003925 }
3926
Tejun Heod320c032010-06-29 10:07:14 +02003927 system_wq = alloc_workqueue("events", 0, 0);
3928 system_long_wq = alloc_workqueue("events_long", 0, 0);
3929 system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003930 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3931 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003932 system_freezable_wq = alloc_workqueue("events_freezable",
3933 WQ_FREEZABLE, 0);
Alan Stern62d3c542012-03-02 10:51:00 +01003934 system_nrt_freezable_wq = alloc_workqueue("events_nrt_freezable",
3935 WQ_NON_REENTRANT | WQ_FREEZABLE, 0);
Hitoshi Mitakee5cba242010-11-26 12:06:44 +01003936 BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq ||
Alan Stern62d3c542012-03-02 10:51:00 +01003937 !system_unbound_wq || !system_freezable_wq ||
3938 !system_nrt_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003939 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003941early_initcall(init_workqueues);