blob: bec7b5b53e03db1d443a2f221255fd22344f4de4 [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 Heoe22bee72010-06-29 10:07:14 +020049 GCWQ_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
50 GCWQ_MANAGING_WORKERS = 1 << 1, /* managing workers */
51 GCWQ_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020052 GCWQ_FREEZING = 1 << 3, /* freeze in progress */
Tejun Heo649027d2010-06-29 10:07:14 +020053 GCWQ_HIGHPRI_PENDING = 1 << 4, /* highpri works on queue */
Tejun Heodb7bccf2010-06-29 10:07:12 +020054
Tejun Heoc8e55f32010-06-29 10:07:12 +020055 /* worker flags */
56 WORKER_STARTED = 1 << 0, /* started */
57 WORKER_DIE = 1 << 1, /* die die die */
58 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020059 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heodb7bccf2010-06-29 10:07:12 +020060 WORKER_ROGUE = 1 << 4, /* not bound to any cpu */
Tejun Heoe22bee72010-06-29 10:07:14 +020061 WORKER_REBIND = 1 << 5, /* mom is home, come back */
Tejun Heofb0e7be2010-06-29 10:07:15 +020062 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020063 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020064
Tejun Heofb0e7be2010-06-29 10:07:15 +020065 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_ROGUE | WORKER_REBIND |
Tejun Heof3421792010-07-02 10:03:51 +020066 WORKER_CPU_INTENSIVE | WORKER_UNBOUND,
Tejun Heodb7bccf2010-06-29 10:07:12 +020067
68 /* gcwq->trustee_state */
69 TRUSTEE_START = 0, /* start */
70 TRUSTEE_IN_CHARGE = 1, /* trustee in charge of gcwq */
71 TRUSTEE_BUTCHER = 2, /* butcher workers */
72 TRUSTEE_RELEASE = 3, /* release workers */
73 TRUSTEE_DONE = 4, /* trustee is done */
Tejun Heoc8e55f32010-06-29 10:07:12 +020074
75 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
76 BUSY_WORKER_HASH_SIZE = 1 << BUSY_WORKER_HASH_ORDER,
77 BUSY_WORKER_HASH_MASK = BUSY_WORKER_HASH_SIZE - 1,
Tejun Heodb7bccf2010-06-29 10:07:12 +020078
Tejun Heoe22bee72010-06-29 10:07:14 +020079 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
80 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
81
Tejun Heo3233cdb2011-02-16 18:10:19 +010082 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
83 /* call for help after 10ms
84 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020085 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
86 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heodb7bccf2010-06-29 10:07:12 +020087 TRUSTEE_COOLDOWN = HZ / 10, /* for trustee draining */
Tejun Heoe22bee72010-06-29 10:07:14 +020088
89 /*
90 * Rescue workers are used only on emergencies and shared by
91 * all cpus. Give -20.
92 */
93 RESCUER_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +020094};
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/*
Tejun Heo4690c4a2010-06-29 10:07:10 +020097 * Structure fields follow one of the following exclusion rules.
98 *
Tejun Heoe41e7042010-08-24 14:22:47 +020099 * I: Modifiable by initialization/destruction paths and read-only for
100 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200101 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200102 * P: Preemption protected. Disabling preemption is enough and should
103 * only be modified and accessed from the local cpu.
104 *
Tejun Heo8b03ae32010-06-29 10:07:12 +0200105 * L: gcwq->lock protected. Access with gcwq->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200106 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200107 * X: During normal operation, modification requires gcwq->lock and
108 * should be done only from local cpu. Either disabling preemption
109 * on local cpu or grabbing gcwq->lock is enough for read access.
Tejun Heof3421792010-07-02 10:03:51 +0200110 * If GCWQ_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200111 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200112 * F: wq->flush_mutex protected.
113 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200114 * W: workqueue_lock protected.
115 */
116
Tejun Heo8b03ae32010-06-29 10:07:12 +0200117struct global_cwq;
Tejun Heoc34056a2010-06-29 10:07:11 +0200118
Tejun Heoe22bee72010-06-29 10:07:14 +0200119/*
120 * The poor guys doing the actual heavy lifting. All on-duty workers
121 * are either serving the manager role, on idle list or on busy hash.
122 */
Tejun Heoc34056a2010-06-29 10:07:11 +0200123struct worker {
Tejun Heoc8e55f32010-06-29 10:07:12 +0200124 /* on idle list while idle, on busy hash table while busy */
125 union {
126 struct list_head entry; /* L: while idle */
127 struct hlist_node hentry; /* L: while busy */
128 };
129
Tejun Heoc34056a2010-06-29 10:07:11 +0200130 struct work_struct *current_work; /* L: work being processed */
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200131 struct cpu_workqueue_struct *current_cwq; /* L: current_work's cwq */
Tejun Heoaffee4b2010-06-29 10:07:12 +0200132 struct list_head scheduled; /* L: scheduled works */
Tejun Heoc34056a2010-06-29 10:07:11 +0200133 struct task_struct *task; /* I: worker task */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200134 struct global_cwq *gcwq; /* I: the associated gcwq */
Tejun Heoe22bee72010-06-29 10:07:14 +0200135 /* 64 bytes boundary on 64bit, 32 on 32bit */
136 unsigned long last_active; /* L: last active timestamp */
137 unsigned int flags; /* X: flags */
Tejun Heoc34056a2010-06-29 10:07:11 +0200138 int id; /* I: worker id */
Tejun Heoe22bee72010-06-29 10:07:14 +0200139 struct work_struct rebind_work; /* L: rebind worker to cpu */
Tejun Heoc34056a2010-06-29 10:07:11 +0200140};
141
Tejun Heo4690c4a2010-06-29 10:07:10 +0200142/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200143 * Global per-cpu workqueue. There's one and only one for each cpu
144 * and all works are queued and processed here regardless of their
145 * target workqueues.
Tejun Heo8b03ae32010-06-29 10:07:12 +0200146 */
147struct global_cwq {
148 spinlock_t lock; /* the gcwq lock */
Tejun Heo7e116292010-06-29 10:07:13 +0200149 struct list_head worklist; /* L: list of pending works */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200150 unsigned int cpu; /* I: the associated cpu */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200151 unsigned int flags; /* L: GCWQ_* flags */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200152
153 int nr_workers; /* L: total number of workers */
154 int nr_idle; /* L: currently idle ones */
155
156 /* workers are chained either in the idle_list or busy_hash */
Tejun Heoe22bee72010-06-29 10:07:14 +0200157 struct list_head idle_list; /* X: list of idle workers */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200158 struct hlist_head busy_hash[BUSY_WORKER_HASH_SIZE];
159 /* L: hash of busy workers */
160
Tejun Heoe22bee72010-06-29 10:07:14 +0200161 struct timer_list idle_timer; /* L: worker idle timeout */
162 struct timer_list mayday_timer; /* L: SOS timer for dworkers */
163
Tejun Heo8b03ae32010-06-29 10:07:12 +0200164 struct ida worker_ida; /* L: for worker IDs */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200165
166 struct task_struct *trustee; /* L: for gcwq shutdown */
167 unsigned int trustee_state; /* L: trustee state */
168 wait_queue_head_t trustee_wait; /* trustee wait */
Tejun Heoe22bee72010-06-29 10:07:14 +0200169 struct worker *first_idle; /* L: first idle worker */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200170} ____cacheline_aligned_in_smp;
171
172/*
Tejun Heo502ca9d2010-06-29 10:07:13 +0200173 * The per-CPU workqueue. The lower WORK_STRUCT_FLAG_BITS of
Tejun Heo0f900042010-06-29 10:07:11 +0200174 * work_struct->data are used for flags and thus cwqs need to be
175 * aligned at two's power of the number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 */
177struct cpu_workqueue_struct {
Tejun Heo8b03ae32010-06-29 10:07:12 +0200178 struct global_cwq *gcwq; /* I: the associated gcwq */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200179 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200180 int work_color; /* L: current color */
181 int flush_color; /* L: flushing color */
182 int nr_in_flight[WORK_NR_COLORS];
183 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200184 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200185 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200186 struct list_head delayed_works; /* L: delayed works */
Tejun Heo0f900042010-06-29 10:07:11 +0200187};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200190 * Structure used to wait for workqueue flush.
191 */
192struct wq_flusher {
193 struct list_head list; /* F: list of flushers */
194 int flush_color; /* F: flush color waiting for */
195 struct completion done; /* flush completion */
196};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Tejun Heo73f53c42010-06-29 10:07:11 +0200198/*
Tejun Heof2e005a2010-07-20 15:59:09 +0200199 * All cpumasks are assumed to be always set on UP and thus can't be
200 * used to determine whether there's something to be done.
201 */
202#ifdef CONFIG_SMP
203typedef cpumask_var_t mayday_mask_t;
204#define mayday_test_and_set_cpu(cpu, mask) \
205 cpumask_test_and_set_cpu((cpu), (mask))
206#define mayday_clear_cpu(cpu, mask) cpumask_clear_cpu((cpu), (mask))
207#define for_each_mayday_cpu(cpu, mask) for_each_cpu((cpu), (mask))
Tejun Heo9c375472010-08-31 11:18:34 +0200208#define alloc_mayday_mask(maskp, gfp) zalloc_cpumask_var((maskp), (gfp))
Tejun Heof2e005a2010-07-20 15:59:09 +0200209#define free_mayday_mask(mask) free_cpumask_var((mask))
210#else
211typedef unsigned long mayday_mask_t;
212#define mayday_test_and_set_cpu(cpu, mask) test_and_set_bit(0, &(mask))
213#define mayday_clear_cpu(cpu, mask) clear_bit(0, &(mask))
214#define for_each_mayday_cpu(cpu, mask) if ((cpu) = 0, (mask))
215#define alloc_mayday_mask(maskp, gfp) true
216#define free_mayday_mask(mask) do { } while (0)
217#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219/*
220 * The externally visible workqueue abstraction is an array of
221 * per-CPU workqueues:
222 */
223struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200224 unsigned int flags; /* W: WQ_* flags */
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200225 union {
226 struct cpu_workqueue_struct __percpu *pcpu;
227 struct cpu_workqueue_struct *single;
228 unsigned long v;
229 } cpu_wq; /* I: cwq's */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200230 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200231
232 struct mutex flush_mutex; /* protects wq flushing */
233 int work_color; /* F: current work color */
234 int flush_color; /* F: current flush color */
235 atomic_t nr_cwqs_to_flush; /* flush in progress */
236 struct wq_flusher *first_flusher; /* F: first flusher */
237 struct list_head flusher_queue; /* F: flush waiters */
238 struct list_head flusher_overflow; /* F: flush overflow list */
239
Tejun Heof2e005a2010-07-20 15:59:09 +0200240 mayday_mask_t mayday_mask; /* cpus requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200241 struct worker *rescuer; /* I: rescue worker */
242
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200243 int nr_drainers; /* W: drain in progress */
Tejun Heodcd989c2010-06-29 10:07:14 +0200244 int saved_max_active; /* W: saved cwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700245#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200246 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700247#endif
Tejun Heob196be82012-01-10 15:11:35 -0800248 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
Tejun Heod320c032010-06-29 10:07:14 +0200251struct workqueue_struct *system_wq __read_mostly;
252struct workqueue_struct *system_long_wq __read_mostly;
253struct workqueue_struct *system_nrt_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200254struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100255struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200256EXPORT_SYMBOL_GPL(system_wq);
257EXPORT_SYMBOL_GPL(system_long_wq);
258EXPORT_SYMBOL_GPL(system_nrt_wq);
Tejun Heof3421792010-07-02 10:03:51 +0200259EXPORT_SYMBOL_GPL(system_unbound_wq);
Tejun Heo24d51ad2011-02-21 09:52:50 +0100260EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200261
Tejun Heo97bd2342010-10-05 10:41:14 +0200262#define CREATE_TRACE_POINTS
263#include <trace/events/workqueue.h>
264
Tejun Heodb7bccf2010-06-29 10:07:12 +0200265#define for_each_busy_worker(worker, i, pos, gcwq) \
266 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++) \
267 hlist_for_each_entry(worker, pos, &gcwq->busy_hash[i], hentry)
268
Tejun Heof3421792010-07-02 10:03:51 +0200269static inline int __next_gcwq_cpu(int cpu, const struct cpumask *mask,
270 unsigned int sw)
271{
272 if (cpu < nr_cpu_ids) {
273 if (sw & 1) {
274 cpu = cpumask_next(cpu, mask);
275 if (cpu < nr_cpu_ids)
276 return cpu;
277 }
278 if (sw & 2)
279 return WORK_CPU_UNBOUND;
280 }
281 return WORK_CPU_NONE;
282}
283
284static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
285 struct workqueue_struct *wq)
286{
287 return __next_gcwq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
288}
289
Tejun Heo09884952010-08-01 11:50:12 +0200290/*
291 * CPU iterators
292 *
293 * An extra gcwq is defined for an invalid cpu number
294 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
295 * specific CPU. The following iterators are similar to
296 * for_each_*_cpu() iterators but also considers the unbound gcwq.
297 *
298 * for_each_gcwq_cpu() : possible CPUs + WORK_CPU_UNBOUND
299 * for_each_online_gcwq_cpu() : online CPUs + WORK_CPU_UNBOUND
300 * for_each_cwq_cpu() : possible CPUs for bound workqueues,
301 * WORK_CPU_UNBOUND for unbound workqueues
302 */
Tejun Heof3421792010-07-02 10:03:51 +0200303#define for_each_gcwq_cpu(cpu) \
304 for ((cpu) = __next_gcwq_cpu(-1, cpu_possible_mask, 3); \
305 (cpu) < WORK_CPU_NONE; \
306 (cpu) = __next_gcwq_cpu((cpu), cpu_possible_mask, 3))
307
308#define for_each_online_gcwq_cpu(cpu) \
309 for ((cpu) = __next_gcwq_cpu(-1, cpu_online_mask, 3); \
310 (cpu) < WORK_CPU_NONE; \
311 (cpu) = __next_gcwq_cpu((cpu), cpu_online_mask, 3))
312
313#define for_each_cwq_cpu(cpu, wq) \
314 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, (wq)); \
315 (cpu) < WORK_CPU_NONE; \
316 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, (wq)))
317
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900318#ifdef CONFIG_DEBUG_OBJECTS_WORK
319
320static struct debug_obj_descr work_debug_descr;
321
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100322static void *work_debug_hint(void *addr)
323{
324 return ((struct work_struct *) addr)->func;
325}
326
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900327/*
328 * fixup_init is called when:
329 * - an active object is initialized
330 */
331static int work_fixup_init(void *addr, enum debug_obj_state state)
332{
333 struct work_struct *work = addr;
334
335 switch (state) {
336 case ODEBUG_STATE_ACTIVE:
337 cancel_work_sync(work);
338 debug_object_init(work, &work_debug_descr);
339 return 1;
340 default:
341 return 0;
342 }
343}
344
345/*
346 * fixup_activate is called when:
347 * - an active object is activated
348 * - an unknown object is activated (might be a statically initialized object)
349 */
350static int work_fixup_activate(void *addr, enum debug_obj_state state)
351{
352 struct work_struct *work = addr;
353
354 switch (state) {
355
356 case ODEBUG_STATE_NOTAVAILABLE:
357 /*
358 * This is not really a fixup. The work struct was
359 * statically initialized. We just make sure that it
360 * is tracked in the object tracker.
361 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200362 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900363 debug_object_init(work, &work_debug_descr);
364 debug_object_activate(work, &work_debug_descr);
365 return 0;
366 }
367 WARN_ON_ONCE(1);
368 return 0;
369
370 case ODEBUG_STATE_ACTIVE:
371 WARN_ON(1);
372
373 default:
374 return 0;
375 }
376}
377
378/*
379 * fixup_free is called when:
380 * - an active object is freed
381 */
382static int work_fixup_free(void *addr, enum debug_obj_state state)
383{
384 struct work_struct *work = addr;
385
386 switch (state) {
387 case ODEBUG_STATE_ACTIVE:
388 cancel_work_sync(work);
389 debug_object_free(work, &work_debug_descr);
390 return 1;
391 default:
392 return 0;
393 }
394}
395
396static struct debug_obj_descr work_debug_descr = {
397 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100398 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900399 .fixup_init = work_fixup_init,
400 .fixup_activate = work_fixup_activate,
401 .fixup_free = work_fixup_free,
402};
403
404static inline void debug_work_activate(struct work_struct *work)
405{
406 debug_object_activate(work, &work_debug_descr);
407}
408
409static inline void debug_work_deactivate(struct work_struct *work)
410{
411 debug_object_deactivate(work, &work_debug_descr);
412}
413
414void __init_work(struct work_struct *work, int onstack)
415{
416 if (onstack)
417 debug_object_init_on_stack(work, &work_debug_descr);
418 else
419 debug_object_init(work, &work_debug_descr);
420}
421EXPORT_SYMBOL_GPL(__init_work);
422
423void destroy_work_on_stack(struct work_struct *work)
424{
425 debug_object_free(work, &work_debug_descr);
426}
427EXPORT_SYMBOL_GPL(destroy_work_on_stack);
428
429#else
430static inline void debug_work_activate(struct work_struct *work) { }
431static inline void debug_work_deactivate(struct work_struct *work) { }
432#endif
433
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100434/* Serializes the accesses to the list of workqueues. */
435static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200437static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Oleg Nesterov14441962007-05-23 13:57:57 -0700439/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200440 * The almighty global cpu workqueues. nr_running is the only field
441 * which is expected to be used frequently by other cpus via
442 * try_to_wake_up(). Put it in a separate cacheline.
Oleg Nesterov14441962007-05-23 13:57:57 -0700443 */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200444static DEFINE_PER_CPU(struct global_cwq, global_cwq);
Tejun Heoe22bee72010-06-29 10:07:14 +0200445static DEFINE_PER_CPU_SHARED_ALIGNED(atomic_t, gcwq_nr_running);
Nathan Lynchf756d5e2006-01-08 01:05:12 -0800446
Tejun Heof3421792010-07-02 10:03:51 +0200447/*
448 * Global cpu workqueue and nr_running counter for unbound gcwq. The
449 * gcwq is always online, has GCWQ_DISASSOCIATED set, and all its
450 * workers have WORKER_UNBOUND set.
451 */
452static struct global_cwq unbound_global_cwq;
453static atomic_t unbound_gcwq_nr_running = ATOMIC_INIT(0); /* always 0 */
454
Tejun Heoc34056a2010-06-29 10:07:11 +0200455static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Tejun Heo8b03ae32010-06-29 10:07:12 +0200457static struct global_cwq *get_gcwq(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Tejun Heof3421792010-07-02 10:03:51 +0200459 if (cpu != WORK_CPU_UNBOUND)
460 return &per_cpu(global_cwq, cpu);
461 else
462 return &unbound_global_cwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Tejun Heoe22bee72010-06-29 10:07:14 +0200465static atomic_t *get_gcwq_nr_running(unsigned int cpu)
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700466{
Tejun Heof3421792010-07-02 10:03:51 +0200467 if (cpu != WORK_CPU_UNBOUND)
468 return &per_cpu(gcwq_nr_running, cpu);
469 else
470 return &unbound_gcwq_nr_running;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700471}
472
Tejun Heo4690c4a2010-06-29 10:07:10 +0200473static struct cpu_workqueue_struct *get_cwq(unsigned int cpu,
474 struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700475{
Tejun Heof3421792010-07-02 10:03:51 +0200476 if (!(wq->flags & WQ_UNBOUND)) {
477 if (likely(cpu < nr_cpu_ids)) {
478#ifdef CONFIG_SMP
479 return per_cpu_ptr(wq->cpu_wq.pcpu, cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200480#else
Tejun Heof3421792010-07-02 10:03:51 +0200481 return wq->cpu_wq.single;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200482#endif
Tejun Heof3421792010-07-02 10:03:51 +0200483 }
484 } else if (likely(cpu == WORK_CPU_UNBOUND))
485 return wq->cpu_wq.single;
486 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700487}
488
Tejun Heo73f53c42010-06-29 10:07:11 +0200489static unsigned int work_color_to_flags(int color)
490{
491 return color << WORK_STRUCT_COLOR_SHIFT;
492}
493
494static int get_work_color(struct work_struct *work)
495{
496 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
497 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
498}
499
500static int work_next_color(int color)
501{
502 return (color + 1) % WORK_NR_COLORS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
David Howells4594bf12006-12-07 11:33:26 +0000505/*
Tejun Heoe1201532010-07-22 14:14:25 +0200506 * A work's data points to the cwq with WORK_STRUCT_CWQ set while the
507 * work is on queue. Once execution starts, WORK_STRUCT_CWQ is
508 * cleared and the work data contains the cpu number it was last on.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200509 *
510 * set_work_{cwq|cpu}() and clear_work_data() can be used to set the
511 * cwq, cpu or clear work->data. These functions should only be
512 * called while the work is owned - ie. while the PENDING bit is set.
513 *
514 * get_work_[g]cwq() can be used to obtain the gcwq or cwq
515 * corresponding to a work. gcwq is available once the work has been
516 * queued anywhere after initialization. cwq is available only from
517 * queueing until execution starts.
David Howells4594bf12006-12-07 11:33:26 +0000518 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200519static inline void set_work_data(struct work_struct *work, unsigned long data,
520 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000521{
David Howells4594bf12006-12-07 11:33:26 +0000522 BUG_ON(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200523 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000524}
David Howells365970a2006-11-22 14:54:49 +0000525
Tejun Heo7a22ad72010-06-29 10:07:13 +0200526static void set_work_cwq(struct work_struct *work,
527 struct cpu_workqueue_struct *cwq,
528 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200529{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200530 set_work_data(work, (unsigned long)cwq,
Tejun Heoe1201532010-07-22 14:14:25 +0200531 WORK_STRUCT_PENDING | WORK_STRUCT_CWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200532}
533
Tejun Heo7a22ad72010-06-29 10:07:13 +0200534static void set_work_cpu(struct work_struct *work, unsigned int cpu)
David Howells365970a2006-11-22 14:54:49 +0000535{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200536 set_work_data(work, cpu << WORK_STRUCT_FLAG_BITS, WORK_STRUCT_PENDING);
537}
538
539static void clear_work_data(struct work_struct *work)
540{
541 set_work_data(work, WORK_STRUCT_NO_CPU, 0);
542}
543
Tejun Heo7a22ad72010-06-29 10:07:13 +0200544static struct cpu_workqueue_struct *get_work_cwq(struct work_struct *work)
545{
Tejun Heoe1201532010-07-22 14:14:25 +0200546 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200547
Tejun Heoe1201532010-07-22 14:14:25 +0200548 if (data & WORK_STRUCT_CWQ)
549 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
550 else
551 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200552}
553
554static struct global_cwq *get_work_gcwq(struct work_struct *work)
555{
Tejun Heoe1201532010-07-22 14:14:25 +0200556 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200557 unsigned int cpu;
558
Tejun Heoe1201532010-07-22 14:14:25 +0200559 if (data & WORK_STRUCT_CWQ)
560 return ((struct cpu_workqueue_struct *)
561 (data & WORK_STRUCT_WQ_DATA_MASK))->gcwq;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200562
563 cpu = data >> WORK_STRUCT_FLAG_BITS;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200564 if (cpu == WORK_CPU_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200565 return NULL;
566
Tejun Heof3421792010-07-02 10:03:51 +0200567 BUG_ON(cpu >= nr_cpu_ids && cpu != WORK_CPU_UNBOUND);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200568 return get_gcwq(cpu);
David Howells365970a2006-11-22 14:54:49 +0000569}
570
571/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200572 * Policy functions. These define the policies on how the global
573 * worker pool is managed. Unless noted otherwise, these functions
574 * assume that they're being called with gcwq->lock held.
David Howells365970a2006-11-22 14:54:49 +0000575 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200576
Tejun Heo649027d2010-06-29 10:07:14 +0200577static bool __need_more_worker(struct global_cwq *gcwq)
David Howells365970a2006-11-22 14:54:49 +0000578{
Tejun Heo649027d2010-06-29 10:07:14 +0200579 return !atomic_read(get_gcwq_nr_running(gcwq->cpu)) ||
580 gcwq->flags & GCWQ_HIGHPRI_PENDING;
David Howells365970a2006-11-22 14:54:49 +0000581}
582
Tejun Heoe22bee72010-06-29 10:07:14 +0200583/*
584 * Need to wake up a worker? Called from anything but currently
585 * running workers.
586 */
587static bool need_more_worker(struct global_cwq *gcwq)
David Howells365970a2006-11-22 14:54:49 +0000588{
Tejun Heo649027d2010-06-29 10:07:14 +0200589 return !list_empty(&gcwq->worklist) && __need_more_worker(gcwq);
David Howells365970a2006-11-22 14:54:49 +0000590}
591
Tejun Heoe22bee72010-06-29 10:07:14 +0200592/* Can I start working? Called from busy but !running workers. */
593static bool may_start_working(struct global_cwq *gcwq)
594{
595 return gcwq->nr_idle;
596}
597
598/* Do I need to keep working? Called from currently running workers. */
599static bool keep_working(struct global_cwq *gcwq)
600{
601 atomic_t *nr_running = get_gcwq_nr_running(gcwq->cpu);
602
Tejun Heo30310042010-10-11 11:51:57 +0200603 return !list_empty(&gcwq->worklist) &&
604 (atomic_read(nr_running) <= 1 ||
605 gcwq->flags & GCWQ_HIGHPRI_PENDING);
Tejun Heoe22bee72010-06-29 10:07:14 +0200606}
607
608/* Do we need a new worker? Called from manager. */
609static bool need_to_create_worker(struct global_cwq *gcwq)
610{
611 return need_more_worker(gcwq) && !may_start_working(gcwq);
612}
613
614/* Do I need to be the manager? */
615static bool need_to_manage_workers(struct global_cwq *gcwq)
616{
617 return need_to_create_worker(gcwq) || gcwq->flags & GCWQ_MANAGE_WORKERS;
618}
619
620/* Do we have too many workers and should some go away? */
621static bool too_many_workers(struct global_cwq *gcwq)
622{
623 bool managing = gcwq->flags & GCWQ_MANAGING_WORKERS;
624 int nr_idle = gcwq->nr_idle + managing; /* manager is considered idle */
625 int nr_busy = gcwq->nr_workers - nr_idle;
626
627 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
628}
629
630/*
631 * Wake up functions.
632 */
633
Tejun Heo7e116292010-06-29 10:07:13 +0200634/* Return the first worker. Safe with preemption disabled */
635static struct worker *first_worker(struct global_cwq *gcwq)
636{
637 if (unlikely(list_empty(&gcwq->idle_list)))
638 return NULL;
639
640 return list_first_entry(&gcwq->idle_list, struct worker, entry);
641}
642
643/**
644 * wake_up_worker - wake up an idle worker
645 * @gcwq: gcwq to wake worker for
646 *
647 * Wake up the first idle worker of @gcwq.
648 *
649 * CONTEXT:
650 * spin_lock_irq(gcwq->lock).
651 */
652static void wake_up_worker(struct global_cwq *gcwq)
653{
654 struct worker *worker = first_worker(gcwq);
655
656 if (likely(worker))
657 wake_up_process(worker->task);
658}
659
Tejun Heo4690c4a2010-06-29 10:07:10 +0200660/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200661 * wq_worker_waking_up - a worker is waking up
662 * @task: task waking up
663 * @cpu: CPU @task is waking up to
664 *
665 * This function is called during try_to_wake_up() when a worker is
666 * being awoken.
667 *
668 * CONTEXT:
669 * spin_lock_irq(rq->lock)
670 */
671void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
672{
673 struct worker *worker = kthread_data(task);
674
Steven Rostedt2d646722010-12-03 23:12:33 -0500675 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heoe22bee72010-06-29 10:07:14 +0200676 atomic_inc(get_gcwq_nr_running(cpu));
677}
678
679/**
680 * wq_worker_sleeping - a worker is going to sleep
681 * @task: task going to sleep
682 * @cpu: CPU in question, must be the current CPU number
683 *
684 * This function is called during schedule() when a busy worker is
685 * going to sleep. Worker on the same cpu can be woken up by
686 * returning pointer to its task.
687 *
688 * CONTEXT:
689 * spin_lock_irq(rq->lock)
690 *
691 * RETURNS:
692 * Worker task on @cpu to wake up, %NULL if none.
693 */
694struct task_struct *wq_worker_sleeping(struct task_struct *task,
695 unsigned int cpu)
696{
697 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
698 struct global_cwq *gcwq = get_gcwq(cpu);
699 atomic_t *nr_running = get_gcwq_nr_running(cpu);
700
Steven Rostedt2d646722010-12-03 23:12:33 -0500701 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200702 return NULL;
703
704 /* this can only happen on the local cpu */
705 BUG_ON(cpu != raw_smp_processor_id());
706
707 /*
708 * The counterpart of the following dec_and_test, implied mb,
709 * worklist not empty test sequence is in insert_work().
710 * Please read comment there.
711 *
712 * NOT_RUNNING is clear. This means that trustee is not in
713 * charge and we're running on the local cpu w/ rq lock held
714 * and preemption disabled, which in turn means that none else
715 * could be manipulating idle_list, so dereferencing idle_list
716 * without gcwq lock is safe.
717 */
718 if (atomic_dec_and_test(nr_running) && !list_empty(&gcwq->worklist))
719 to_wakeup = first_worker(gcwq);
720 return to_wakeup ? to_wakeup->task : NULL;
721}
722
723/**
724 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200725 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200726 * @flags: flags to set
727 * @wakeup: wakeup an idle worker if necessary
728 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200729 * Set @flags in @worker->flags and adjust nr_running accordingly. If
730 * nr_running becomes zero and @wakeup is %true, an idle worker is
731 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200732 *
Tejun Heocb444762010-07-02 10:03:50 +0200733 * CONTEXT:
734 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200735 */
736static inline void worker_set_flags(struct worker *worker, unsigned int flags,
737 bool wakeup)
738{
Tejun Heoe22bee72010-06-29 10:07:14 +0200739 struct global_cwq *gcwq = worker->gcwq;
740
Tejun Heocb444762010-07-02 10:03:50 +0200741 WARN_ON_ONCE(worker->task != current);
742
Tejun Heoe22bee72010-06-29 10:07:14 +0200743 /*
744 * If transitioning into NOT_RUNNING, adjust nr_running and
745 * wake up an idle worker as necessary if requested by
746 * @wakeup.
747 */
748 if ((flags & WORKER_NOT_RUNNING) &&
749 !(worker->flags & WORKER_NOT_RUNNING)) {
750 atomic_t *nr_running = get_gcwq_nr_running(gcwq->cpu);
751
752 if (wakeup) {
753 if (atomic_dec_and_test(nr_running) &&
754 !list_empty(&gcwq->worklist))
755 wake_up_worker(gcwq);
756 } else
757 atomic_dec(nr_running);
758 }
759
Tejun Heod302f012010-06-29 10:07:13 +0200760 worker->flags |= flags;
761}
762
763/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200764 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200765 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200766 * @flags: flags to clear
767 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200768 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200769 *
Tejun Heocb444762010-07-02 10:03:50 +0200770 * CONTEXT:
771 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200772 */
773static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
774{
Tejun Heoe22bee72010-06-29 10:07:14 +0200775 struct global_cwq *gcwq = worker->gcwq;
776 unsigned int oflags = worker->flags;
777
Tejun Heocb444762010-07-02 10:03:50 +0200778 WARN_ON_ONCE(worker->task != current);
779
Tejun Heod302f012010-06-29 10:07:13 +0200780 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200781
Tejun Heo42c025f2011-01-11 15:58:49 +0100782 /*
783 * If transitioning out of NOT_RUNNING, increment nr_running. Note
784 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
785 * of multiple flags, not a single flag.
786 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200787 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
788 if (!(worker->flags & WORKER_NOT_RUNNING))
789 atomic_inc(get_gcwq_nr_running(gcwq->cpu));
Tejun Heod302f012010-06-29 10:07:13 +0200790}
791
792/**
Tejun Heoc8e55f32010-06-29 10:07:12 +0200793 * busy_worker_head - return the busy hash head for a work
794 * @gcwq: gcwq of interest
795 * @work: work to be hashed
796 *
797 * Return hash head of @gcwq for @work.
798 *
799 * CONTEXT:
800 * spin_lock_irq(gcwq->lock).
801 *
802 * RETURNS:
803 * Pointer to the hash head.
804 */
805static struct hlist_head *busy_worker_head(struct global_cwq *gcwq,
806 struct work_struct *work)
807{
808 const int base_shift = ilog2(sizeof(struct work_struct));
809 unsigned long v = (unsigned long)work;
810
811 /* simple shift and fold hash, do we need something better? */
812 v >>= base_shift;
813 v += v >> BUSY_WORKER_HASH_ORDER;
814 v &= BUSY_WORKER_HASH_MASK;
815
816 return &gcwq->busy_hash[v];
817}
818
819/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200820 * __find_worker_executing_work - find worker which is executing a work
821 * @gcwq: gcwq of interest
822 * @bwh: hash head as returned by busy_worker_head()
823 * @work: work to find worker for
824 *
825 * Find a worker which is executing @work on @gcwq. @bwh should be
826 * the hash head obtained by calling busy_worker_head() with the same
827 * work.
828 *
829 * CONTEXT:
830 * spin_lock_irq(gcwq->lock).
831 *
832 * RETURNS:
833 * Pointer to worker which is executing @work if found, NULL
834 * otherwise.
835 */
836static struct worker *__find_worker_executing_work(struct global_cwq *gcwq,
837 struct hlist_head *bwh,
838 struct work_struct *work)
839{
840 struct worker *worker;
841 struct hlist_node *tmp;
842
843 hlist_for_each_entry(worker, tmp, bwh, hentry)
844 if (worker->current_work == work)
845 return worker;
846 return NULL;
847}
848
849/**
850 * find_worker_executing_work - find worker which is executing a work
851 * @gcwq: gcwq of interest
852 * @work: work to find worker for
853 *
854 * Find a worker which is executing @work on @gcwq. This function is
855 * identical to __find_worker_executing_work() except that this
856 * function calculates @bwh itself.
857 *
858 * CONTEXT:
859 * spin_lock_irq(gcwq->lock).
860 *
861 * RETURNS:
862 * Pointer to worker which is executing @work if found, NULL
863 * otherwise.
864 */
865static struct worker *find_worker_executing_work(struct global_cwq *gcwq,
866 struct work_struct *work)
867{
868 return __find_worker_executing_work(gcwq, busy_worker_head(gcwq, work),
869 work);
870}
871
872/**
Tejun Heo649027d2010-06-29 10:07:14 +0200873 * gcwq_determine_ins_pos - find insertion position
874 * @gcwq: gcwq of interest
875 * @cwq: cwq a work is being queued for
876 *
877 * A work for @cwq is about to be queued on @gcwq, determine insertion
878 * position for the work. If @cwq is for HIGHPRI wq, the work is
879 * queued at the head of the queue but in FIFO order with respect to
880 * other HIGHPRI works; otherwise, at the end of the queue. This
881 * function also sets GCWQ_HIGHPRI_PENDING flag to hint @gcwq that
882 * there are HIGHPRI works pending.
883 *
884 * CONTEXT:
885 * spin_lock_irq(gcwq->lock).
886 *
887 * RETURNS:
888 * Pointer to inserstion position.
889 */
890static inline struct list_head *gcwq_determine_ins_pos(struct global_cwq *gcwq,
891 struct cpu_workqueue_struct *cwq)
892{
893 struct work_struct *twork;
894
895 if (likely(!(cwq->wq->flags & WQ_HIGHPRI)))
896 return &gcwq->worklist;
897
898 list_for_each_entry(twork, &gcwq->worklist, entry) {
899 struct cpu_workqueue_struct *tcwq = get_work_cwq(twork);
900
901 if (!(tcwq->wq->flags & WQ_HIGHPRI))
902 break;
903 }
904
905 gcwq->flags |= GCWQ_HIGHPRI_PENDING;
906 return &twork->entry;
907}
908
909/**
Tejun Heo7e116292010-06-29 10:07:13 +0200910 * insert_work - insert a work into gcwq
Tejun Heo4690c4a2010-06-29 10:07:10 +0200911 * @cwq: cwq @work belongs to
912 * @work: work to insert
913 * @head: insertion point
914 * @extra_flags: extra WORK_STRUCT_* flags to set
915 *
Tejun Heo7e116292010-06-29 10:07:13 +0200916 * Insert @work which belongs to @cwq into @gcwq after @head.
917 * @extra_flags is or'd to work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200918 *
919 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +0200920 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +0200921 */
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700922static void insert_work(struct cpu_workqueue_struct *cwq,
Tejun Heo4690c4a2010-06-29 10:07:10 +0200923 struct work_struct *work, struct list_head *head,
924 unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700925{
Tejun Heoe22bee72010-06-29 10:07:14 +0200926 struct global_cwq *gcwq = cwq->gcwq;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +0100927
Tejun Heo4690c4a2010-06-29 10:07:10 +0200928 /* we own @work, set data and link */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200929 set_work_cwq(work, cwq, extra_flags);
Tejun Heo4690c4a2010-06-29 10:07:10 +0200930
Oleg Nesterov6e84d642007-05-09 02:34:46 -0700931 /*
932 * Ensure that we get the right work->data if we see the
933 * result of list_add() below, see try_to_grab_pending().
934 */
935 smp_wmb();
Tejun Heo4690c4a2010-06-29 10:07:10 +0200936
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -0700937 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +0200938
939 /*
940 * Ensure either worker_sched_deactivated() sees the above
941 * list_add_tail() or we see zero nr_running to avoid workers
942 * lying around lazily while there are works to be processed.
943 */
944 smp_mb();
945
Tejun Heo649027d2010-06-29 10:07:14 +0200946 if (__need_more_worker(gcwq))
Tejun Heoe22bee72010-06-29 10:07:14 +0200947 wake_up_worker(gcwq);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700948}
949
Tejun Heoc8efcc22010-12-20 19:32:04 +0100950/*
951 * Test whether @work is being queued from another work executing on the
952 * same workqueue. This is rather expensive and should only be used from
953 * cold paths.
954 */
955static bool is_chained_work(struct workqueue_struct *wq)
956{
957 unsigned long flags;
958 unsigned int cpu;
959
960 for_each_gcwq_cpu(cpu) {
961 struct global_cwq *gcwq = get_gcwq(cpu);
962 struct worker *worker;
963 struct hlist_node *pos;
964 int i;
965
966 spin_lock_irqsave(&gcwq->lock, flags);
967 for_each_busy_worker(worker, i, pos, gcwq) {
968 if (worker->task != current)
969 continue;
970 spin_unlock_irqrestore(&gcwq->lock, flags);
971 /*
972 * I'm @worker, no locking necessary. See if @work
973 * is headed to the same workqueue.
974 */
975 return worker->current_cwq->wq == wq;
976 }
977 spin_unlock_irqrestore(&gcwq->lock, flags);
978 }
979 return false;
980}
981
Tejun Heo4690c4a2010-06-29 10:07:10 +0200982static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 struct work_struct *work)
984{
Tejun Heo502ca9d2010-06-29 10:07:13 +0200985 struct global_cwq *gcwq;
986 struct cpu_workqueue_struct *cwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200987 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +0200988 unsigned int work_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 unsigned long flags;
990
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900991 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200992
Tejun Heoc8efcc22010-12-20 19:32:04 +0100993 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200994 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +0100995 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +0200996 return;
997
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200998 /* determine gcwq to use */
999 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001000 struct global_cwq *last_gcwq;
1001
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001002 if (unlikely(cpu == WORK_CPU_UNBOUND))
1003 cpu = raw_smp_processor_id();
1004
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001005 /*
1006 * It's multi cpu. If @wq is non-reentrant and @work
1007 * was previously on a different cpu, it might still
1008 * be running there, in which case the work needs to
1009 * be queued on that cpu to guarantee non-reentrance.
1010 */
Tejun Heo502ca9d2010-06-29 10:07:13 +02001011 gcwq = get_gcwq(cpu);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001012 if (wq->flags & WQ_NON_REENTRANT &&
1013 (last_gcwq = get_work_gcwq(work)) && last_gcwq != gcwq) {
1014 struct worker *worker;
1015
1016 spin_lock_irqsave(&last_gcwq->lock, flags);
1017
1018 worker = find_worker_executing_work(last_gcwq, work);
1019
1020 if (worker && worker->current_cwq->wq == wq)
1021 gcwq = last_gcwq;
1022 else {
1023 /* meh... not running there, queue here */
1024 spin_unlock_irqrestore(&last_gcwq->lock, flags);
1025 spin_lock_irqsave(&gcwq->lock, flags);
1026 }
1027 } else
1028 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heof3421792010-07-02 10:03:51 +02001029 } else {
1030 gcwq = get_gcwq(WORK_CPU_UNBOUND);
1031 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001032 }
1033
1034 /* gcwq determined, get cwq and queue */
1035 cwq = get_cwq(gcwq->cpu, wq);
Tejun Heocdadf002010-10-05 10:49:55 +02001036 trace_workqueue_queue_work(cpu, cwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001037
Tejun Heo4690c4a2010-06-29 10:07:10 +02001038 BUG_ON(!list_empty(&work->entry));
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001039
Tejun Heo73f53c42010-06-29 10:07:11 +02001040 cwq->nr_in_flight[cwq->work_color]++;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001041 work_flags = work_color_to_flags(cwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001042
1043 if (likely(cwq->nr_active < cwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001044 trace_workqueue_activate_work(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001045 cwq->nr_active++;
Tejun Heo649027d2010-06-29 10:07:14 +02001046 worklist = gcwq_determine_ins_pos(gcwq, cwq);
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001047 } else {
1048 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001049 worklist = &cwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001050 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001051
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001052 insert_work(cwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001053
Tejun Heo8b03ae32010-06-29 10:07:12 +02001054 spin_unlock_irqrestore(&gcwq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001057/**
1058 * queue_work - queue work on a workqueue
1059 * @wq: workqueue to use
1060 * @work: work to queue
1061 *
Alan Stern057647f2006-10-28 10:38:58 -07001062 * Returns 0 if @work was already on a queue, non-zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 *
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07001064 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1065 * it can be processed by another CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001067int queue_work(struct workqueue_struct *wq, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Oleg Nesterovef1ca232008-07-25 01:47:53 -07001069 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Oleg Nesterovef1ca232008-07-25 01:47:53 -07001071 ret = queue_work_on(get_cpu(), wq, work);
1072 put_cpu();
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return ret;
1075}
Dave Jonesae90dd52006-06-30 01:40:45 -04001076EXPORT_SYMBOL_GPL(queue_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Zhang Ruic1a220e2008-07-23 21:28:39 -07001078/**
1079 * queue_work_on - queue work on specific cpu
1080 * @cpu: CPU number to execute work on
1081 * @wq: workqueue to use
1082 * @work: work to queue
1083 *
1084 * Returns 0 if @work was already on a queue, non-zero otherwise.
1085 *
1086 * We queue the work to a specific CPU, the caller must ensure it
1087 * can't go away.
1088 */
1089int
1090queue_work_on(int cpu, struct workqueue_struct *wq, struct work_struct *work)
1091{
1092 int ret = 0;
1093
Tejun Heo22df02b2010-06-29 10:07:10 +02001094 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001095 __queue_work(cpu, wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001096 ret = 1;
1097 }
1098 return ret;
1099}
1100EXPORT_SYMBOL_GPL(queue_work_on);
1101
Li Zefan6d141c32008-02-08 04:21:09 -08001102static void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
David Howells52bad642006-11-22 14:54:01 +00001104 struct delayed_work *dwork = (struct delayed_work *)__data;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001105 struct cpu_workqueue_struct *cwq = get_work_cwq(&dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Tejun Heo4690c4a2010-06-29 10:07:10 +02001107 __queue_work(smp_processor_id(), cwq->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001110/**
1111 * queue_delayed_work - queue work on a workqueue after delay
1112 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001113 * @dwork: delayable work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001114 * @delay: number of jiffies to wait before queueing
1115 *
Alan Stern057647f2006-10-28 10:38:58 -07001116 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001117 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001118int queue_delayed_work(struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001119 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
David Howells52bad642006-11-22 14:54:01 +00001121 if (delay == 0)
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001122 return queue_work(wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001124 return queue_delayed_work_on(-1, wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
Dave Jonesae90dd52006-06-30 01:40:45 -04001126EXPORT_SYMBOL_GPL(queue_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001128/**
1129 * queue_delayed_work_on - queue work on specific CPU after delay
1130 * @cpu: CPU number to execute work on
1131 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001132 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001133 * @delay: number of jiffies to wait before queueing
1134 *
Alan Stern057647f2006-10-28 10:38:58 -07001135 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001136 */
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001137int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001138 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001139{
1140 int ret = 0;
David Howells52bad642006-11-22 14:54:01 +00001141 struct timer_list *timer = &dwork->timer;
1142 struct work_struct *work = &dwork->work;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001143
Tejun Heo22df02b2010-06-29 10:07:10 +02001144 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001145 unsigned int lcpu;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001146
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001147 BUG_ON(timer_pending(timer));
1148 BUG_ON(!list_empty(&work->entry));
1149
Andrew Liu8a3e77c2008-05-01 04:35:14 -07001150 timer_stats_timer_set_start_info(&dwork->timer);
1151
Tejun Heo7a22ad72010-06-29 10:07:13 +02001152 /*
1153 * This stores cwq for the moment, for the timer_fn.
1154 * Note that the work's gcwq is preserved to allow
1155 * reentrance detection for delayed works.
1156 */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001157 if (!(wq->flags & WQ_UNBOUND)) {
1158 struct global_cwq *gcwq = get_work_gcwq(work);
1159
1160 if (gcwq && gcwq->cpu != WORK_CPU_UNBOUND)
1161 lcpu = gcwq->cpu;
1162 else
1163 lcpu = raw_smp_processor_id();
1164 } else
1165 lcpu = WORK_CPU_UNBOUND;
1166
Tejun Heo7a22ad72010-06-29 10:07:13 +02001167 set_work_cwq(work, get_cwq(lcpu, wq), 0);
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001168
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001169 timer->expires = jiffies + delay;
David Howells52bad642006-11-22 14:54:01 +00001170 timer->data = (unsigned long)dwork;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001171 timer->function = delayed_work_timer_fn;
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001172
1173 if (unlikely(cpu >= 0))
1174 add_timer_on(timer, cpu);
1175 else
1176 add_timer(timer);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001177 ret = 1;
1178 }
1179 return ret;
1180}
Dave Jonesae90dd52006-06-30 01:40:45 -04001181EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Tejun Heoc8e55f32010-06-29 10:07:12 +02001183/**
1184 * worker_enter_idle - enter idle state
1185 * @worker: worker which is entering idle state
1186 *
1187 * @worker is entering idle state. Update stats and idle timer if
1188 * necessary.
1189 *
1190 * LOCKING:
1191 * spin_lock_irq(gcwq->lock).
1192 */
1193static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Tejun Heoc8e55f32010-06-29 10:07:12 +02001195 struct global_cwq *gcwq = worker->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Tejun Heoc8e55f32010-06-29 10:07:12 +02001197 BUG_ON(worker->flags & WORKER_IDLE);
1198 BUG_ON(!list_empty(&worker->entry) &&
1199 (worker->hentry.next || worker->hentry.pprev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Tejun Heocb444762010-07-02 10:03:50 +02001201 /* can't use worker_set_flags(), also called from start_worker() */
1202 worker->flags |= WORKER_IDLE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001203 gcwq->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001204 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001205
Tejun Heoc8e55f32010-06-29 10:07:12 +02001206 /* idle_list is LIFO */
1207 list_add(&worker->entry, &gcwq->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001208
Tejun Heoe22bee72010-06-29 10:07:14 +02001209 if (likely(!(worker->flags & WORKER_ROGUE))) {
1210 if (too_many_workers(gcwq) && !timer_pending(&gcwq->idle_timer))
1211 mod_timer(&gcwq->idle_timer,
1212 jiffies + IDLE_WORKER_TIMEOUT);
1213 } else
Tejun Heodb7bccf2010-06-29 10:07:12 +02001214 wake_up_all(&gcwq->trustee_wait);
Tejun Heocb444762010-07-02 10:03:50 +02001215
1216 /* sanity check nr_running */
1217 WARN_ON_ONCE(gcwq->nr_workers == gcwq->nr_idle &&
1218 atomic_read(get_gcwq_nr_running(gcwq->cpu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Tejun Heoc8e55f32010-06-29 10:07:12 +02001221/**
1222 * worker_leave_idle - leave idle state
1223 * @worker: worker which is leaving idle state
1224 *
1225 * @worker is leaving idle state. Update stats.
1226 *
1227 * LOCKING:
1228 * spin_lock_irq(gcwq->lock).
1229 */
1230static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Tejun Heoc8e55f32010-06-29 10:07:12 +02001232 struct global_cwq *gcwq = worker->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Tejun Heoc8e55f32010-06-29 10:07:12 +02001234 BUG_ON(!(worker->flags & WORKER_IDLE));
Tejun Heod302f012010-06-29 10:07:13 +02001235 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001236 gcwq->nr_idle--;
1237 list_del_init(&worker->entry);
1238}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Tejun Heoe22bee72010-06-29 10:07:14 +02001240/**
1241 * worker_maybe_bind_and_lock - bind worker to its cpu if possible and lock gcwq
1242 * @worker: self
1243 *
1244 * Works which are scheduled while the cpu is online must at least be
1245 * scheduled to a worker which is bound to the cpu so that if they are
1246 * flushed from cpu callbacks while cpu is going down, they are
1247 * guaranteed to execute on the cpu.
1248 *
1249 * This function is to be used by rogue workers and rescuers to bind
1250 * themselves to the target cpu and may race with cpu going down or
1251 * coming online. kthread_bind() can't be used because it may put the
1252 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
1253 * verbatim as it's best effort and blocking and gcwq may be
1254 * [dis]associated in the meantime.
1255 *
1256 * This function tries set_cpus_allowed() and locks gcwq and verifies
1257 * the binding against GCWQ_DISASSOCIATED which is set during
1258 * CPU_DYING and cleared during CPU_ONLINE, so if the worker enters
1259 * idle state or fetches works without dropping lock, it can guarantee
1260 * the scheduling requirement described in the first paragraph.
1261 *
1262 * CONTEXT:
1263 * Might sleep. Called without any lock but returns with gcwq->lock
1264 * held.
1265 *
1266 * RETURNS:
1267 * %true if the associated gcwq is online (@worker is successfully
1268 * bound), %false if offline.
1269 */
1270static bool worker_maybe_bind_and_lock(struct worker *worker)
Namhyung Kim972fa1c2010-08-22 23:19:43 +09001271__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001272{
1273 struct global_cwq *gcwq = worker->gcwq;
1274 struct task_struct *task = worker->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Tejun Heoe22bee72010-06-29 10:07:14 +02001276 while (true) {
1277 /*
1278 * The following call may fail, succeed or succeed
1279 * without actually migrating the task to the cpu if
1280 * it races with cpu hotunplug operation. Verify
1281 * against GCWQ_DISASSOCIATED.
1282 */
Tejun Heof3421792010-07-02 10:03:51 +02001283 if (!(gcwq->flags & GCWQ_DISASSOCIATED))
1284 set_cpus_allowed_ptr(task, get_cpu_mask(gcwq->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001285
Tejun Heoe22bee72010-06-29 10:07:14 +02001286 spin_lock_irq(&gcwq->lock);
1287 if (gcwq->flags & GCWQ_DISASSOCIATED)
1288 return false;
1289 if (task_cpu(task) == gcwq->cpu &&
1290 cpumask_equal(&current->cpus_allowed,
1291 get_cpu_mask(gcwq->cpu)))
1292 return true;
1293 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001294
Tejun Heo5035b202011-04-29 18:08:37 +02001295 /*
1296 * We've raced with CPU hot[un]plug. Give it a breather
1297 * and retry migration. cond_resched() is required here;
1298 * otherwise, we might deadlock against cpu_stop trying to
1299 * bring down the CPU on non-preemptive kernel.
1300 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001301 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001302 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001303 }
1304}
1305
1306/*
1307 * Function for worker->rebind_work used to rebind rogue busy workers
1308 * to the associated cpu which is coming back online. This is
1309 * scheduled by cpu up but can race with other cpu hotplug operations
1310 * and may be executed twice without intervening cpu down.
1311 */
1312static void worker_rebind_fn(struct work_struct *work)
1313{
1314 struct worker *worker = container_of(work, struct worker, rebind_work);
1315 struct global_cwq *gcwq = worker->gcwq;
1316
1317 if (worker_maybe_bind_and_lock(worker))
1318 worker_clr_flags(worker, WORKER_REBIND);
1319
1320 spin_unlock_irq(&gcwq->lock);
1321}
1322
Tejun Heoc34056a2010-06-29 10:07:11 +02001323static struct worker *alloc_worker(void)
1324{
1325 struct worker *worker;
1326
1327 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001328 if (worker) {
1329 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001330 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heoe22bee72010-06-29 10:07:14 +02001331 INIT_WORK(&worker->rebind_work, worker_rebind_fn);
1332 /* on creation a worker is in !idle && prep state */
1333 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001334 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001335 return worker;
1336}
1337
1338/**
1339 * create_worker - create a new workqueue worker
Tejun Heo7e116292010-06-29 10:07:13 +02001340 * @gcwq: gcwq the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001341 * @bind: whether to set affinity to @cpu or not
1342 *
Tejun Heo7e116292010-06-29 10:07:13 +02001343 * Create a new worker which is bound to @gcwq. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001344 * can be started by calling start_worker() or destroyed using
1345 * destroy_worker().
1346 *
1347 * CONTEXT:
1348 * Might sleep. Does GFP_KERNEL allocations.
1349 *
1350 * RETURNS:
1351 * Pointer to the newly created worker.
1352 */
Tejun Heo7e116292010-06-29 10:07:13 +02001353static struct worker *create_worker(struct global_cwq *gcwq, bool bind)
Tejun Heoc34056a2010-06-29 10:07:11 +02001354{
Tejun Heof3421792010-07-02 10:03:51 +02001355 bool on_unbound_cpu = gcwq->cpu == WORK_CPU_UNBOUND;
Tejun Heoc34056a2010-06-29 10:07:11 +02001356 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001357 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001358
Tejun Heo8b03ae32010-06-29 10:07:12 +02001359 spin_lock_irq(&gcwq->lock);
1360 while (ida_get_new(&gcwq->worker_ida, &id)) {
1361 spin_unlock_irq(&gcwq->lock);
1362 if (!ida_pre_get(&gcwq->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001363 goto fail;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001364 spin_lock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001365 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02001366 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001367
1368 worker = alloc_worker();
1369 if (!worker)
1370 goto fail;
1371
Tejun Heo8b03ae32010-06-29 10:07:12 +02001372 worker->gcwq = gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001373 worker->id = id;
1374
Tejun Heof3421792010-07-02 10:03:51 +02001375 if (!on_unbound_cpu)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001376 worker->task = kthread_create_on_node(worker_thread,
1377 worker,
1378 cpu_to_node(gcwq->cpu),
1379 "kworker/%u:%d", gcwq->cpu, id);
Tejun Heof3421792010-07-02 10:03:51 +02001380 else
1381 worker->task = kthread_create(worker_thread, worker,
1382 "kworker/u:%d", id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001383 if (IS_ERR(worker->task))
1384 goto fail;
1385
Tejun Heodb7bccf2010-06-29 10:07:12 +02001386 /*
1387 * A rogue worker will become a regular one if CPU comes
1388 * online later on. Make sure every worker has
1389 * PF_THREAD_BOUND set.
1390 */
Tejun Heof3421792010-07-02 10:03:51 +02001391 if (bind && !on_unbound_cpu)
Tejun Heo8b03ae32010-06-29 10:07:12 +02001392 kthread_bind(worker->task, gcwq->cpu);
Tejun Heof3421792010-07-02 10:03:51 +02001393 else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001394 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heof3421792010-07-02 10:03:51 +02001395 if (on_unbound_cpu)
1396 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001398
Tejun Heoc34056a2010-06-29 10:07:11 +02001399 return worker;
1400fail:
1401 if (id >= 0) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001402 spin_lock_irq(&gcwq->lock);
1403 ida_remove(&gcwq->worker_ida, id);
1404 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001405 }
1406 kfree(worker);
1407 return NULL;
1408}
1409
1410/**
1411 * start_worker - start a newly created worker
1412 * @worker: worker to start
1413 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001414 * Make the gcwq aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001415 *
1416 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001417 * spin_lock_irq(gcwq->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001418 */
1419static void start_worker(struct worker *worker)
1420{
Tejun Heocb444762010-07-02 10:03:50 +02001421 worker->flags |= WORKER_STARTED;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001422 worker->gcwq->nr_workers++;
1423 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001424 wake_up_process(worker->task);
1425}
1426
1427/**
1428 * destroy_worker - destroy a workqueue worker
1429 * @worker: worker to be destroyed
1430 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001431 * Destroy @worker and adjust @gcwq stats accordingly.
1432 *
1433 * CONTEXT:
1434 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001435 */
1436static void destroy_worker(struct worker *worker)
1437{
Tejun Heo8b03ae32010-06-29 10:07:12 +02001438 struct global_cwq *gcwq = worker->gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001439 int id = worker->id;
1440
1441 /* sanity check frenzy */
1442 BUG_ON(worker->current_work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001443 BUG_ON(!list_empty(&worker->scheduled));
Tejun Heoc34056a2010-06-29 10:07:11 +02001444
Tejun Heoc8e55f32010-06-29 10:07:12 +02001445 if (worker->flags & WORKER_STARTED)
1446 gcwq->nr_workers--;
1447 if (worker->flags & WORKER_IDLE)
1448 gcwq->nr_idle--;
1449
1450 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001451 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001452
1453 spin_unlock_irq(&gcwq->lock);
1454
Tejun Heoc34056a2010-06-29 10:07:11 +02001455 kthread_stop(worker->task);
1456 kfree(worker);
1457
Tejun Heo8b03ae32010-06-29 10:07:12 +02001458 spin_lock_irq(&gcwq->lock);
1459 ida_remove(&gcwq->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001460}
1461
Tejun Heoe22bee72010-06-29 10:07:14 +02001462static void idle_worker_timeout(unsigned long __gcwq)
1463{
1464 struct global_cwq *gcwq = (void *)__gcwq;
1465
1466 spin_lock_irq(&gcwq->lock);
1467
1468 if (too_many_workers(gcwq)) {
1469 struct worker *worker;
1470 unsigned long expires;
1471
1472 /* idle_list is kept in LIFO order, check the last one */
1473 worker = list_entry(gcwq->idle_list.prev, struct worker, entry);
1474 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1475
1476 if (time_before(jiffies, expires))
1477 mod_timer(&gcwq->idle_timer, expires);
1478 else {
1479 /* it's been idle for too long, wake up manager */
1480 gcwq->flags |= GCWQ_MANAGE_WORKERS;
1481 wake_up_worker(gcwq);
1482 }
1483 }
1484
1485 spin_unlock_irq(&gcwq->lock);
1486}
1487
1488static bool send_mayday(struct work_struct *work)
1489{
1490 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1491 struct workqueue_struct *wq = cwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001492 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001493
1494 if (!(wq->flags & WQ_RESCUER))
1495 return false;
1496
1497 /* mayday mayday mayday */
Tejun Heof3421792010-07-02 10:03:51 +02001498 cpu = cwq->gcwq->cpu;
1499 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1500 if (cpu == WORK_CPU_UNBOUND)
1501 cpu = 0;
Tejun Heof2e005a2010-07-20 15:59:09 +02001502 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001503 wake_up_process(wq->rescuer->task);
1504 return true;
1505}
1506
1507static void gcwq_mayday_timeout(unsigned long __gcwq)
1508{
1509 struct global_cwq *gcwq = (void *)__gcwq;
1510 struct work_struct *work;
1511
1512 spin_lock_irq(&gcwq->lock);
1513
1514 if (need_to_create_worker(gcwq)) {
1515 /*
1516 * We've been trying to create a new worker but
1517 * haven't been successful. We might be hitting an
1518 * allocation deadlock. Send distress signals to
1519 * rescuers.
1520 */
1521 list_for_each_entry(work, &gcwq->worklist, entry)
1522 send_mayday(work);
1523 }
1524
1525 spin_unlock_irq(&gcwq->lock);
1526
1527 mod_timer(&gcwq->mayday_timer, jiffies + MAYDAY_INTERVAL);
1528}
1529
1530/**
1531 * maybe_create_worker - create a new worker if necessary
1532 * @gcwq: gcwq to create a new worker for
1533 *
1534 * Create a new worker for @gcwq if necessary. @gcwq is guaranteed to
1535 * have at least one idle worker on return from this function. If
1536 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
1537 * sent to all rescuers with works scheduled on @gcwq to resolve
1538 * possible allocation deadlock.
1539 *
1540 * On return, need_to_create_worker() is guaranteed to be false and
1541 * may_start_working() true.
1542 *
1543 * LOCKING:
1544 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1545 * multiple times. Does GFP_KERNEL allocations. Called only from
1546 * manager.
1547 *
1548 * RETURNS:
1549 * false if no action was taken and gcwq->lock stayed locked, true
1550 * otherwise.
1551 */
1552static bool maybe_create_worker(struct global_cwq *gcwq)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001553__releases(&gcwq->lock)
1554__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001555{
1556 if (!need_to_create_worker(gcwq))
1557 return false;
1558restart:
Tejun Heo9f9c2362010-07-14 11:31:20 +02001559 spin_unlock_irq(&gcwq->lock);
1560
Tejun Heoe22bee72010-06-29 10:07:14 +02001561 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
1562 mod_timer(&gcwq->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
1563
1564 while (true) {
1565 struct worker *worker;
1566
Tejun Heoe22bee72010-06-29 10:07:14 +02001567 worker = create_worker(gcwq, true);
1568 if (worker) {
1569 del_timer_sync(&gcwq->mayday_timer);
1570 spin_lock_irq(&gcwq->lock);
1571 start_worker(worker);
1572 BUG_ON(need_to_create_worker(gcwq));
1573 return true;
1574 }
1575
1576 if (!need_to_create_worker(gcwq))
1577 break;
1578
Tejun Heoe22bee72010-06-29 10:07:14 +02001579 __set_current_state(TASK_INTERRUPTIBLE);
1580 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001581
Tejun Heoe22bee72010-06-29 10:07:14 +02001582 if (!need_to_create_worker(gcwq))
1583 break;
1584 }
1585
Tejun Heoe22bee72010-06-29 10:07:14 +02001586 del_timer_sync(&gcwq->mayday_timer);
1587 spin_lock_irq(&gcwq->lock);
1588 if (need_to_create_worker(gcwq))
1589 goto restart;
1590 return true;
1591}
1592
1593/**
1594 * maybe_destroy_worker - destroy workers which have been idle for a while
1595 * @gcwq: gcwq to destroy workers for
1596 *
1597 * Destroy @gcwq workers which have been idle for longer than
1598 * IDLE_WORKER_TIMEOUT.
1599 *
1600 * LOCKING:
1601 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1602 * multiple times. Called only from manager.
1603 *
1604 * RETURNS:
1605 * false if no action was taken and gcwq->lock stayed locked, true
1606 * otherwise.
1607 */
1608static bool maybe_destroy_workers(struct global_cwq *gcwq)
1609{
1610 bool ret = false;
1611
1612 while (too_many_workers(gcwq)) {
1613 struct worker *worker;
1614 unsigned long expires;
1615
1616 worker = list_entry(gcwq->idle_list.prev, struct worker, entry);
1617 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1618
1619 if (time_before(jiffies, expires)) {
1620 mod_timer(&gcwq->idle_timer, expires);
1621 break;
1622 }
1623
1624 destroy_worker(worker);
1625 ret = true;
1626 }
1627
1628 return ret;
1629}
1630
1631/**
1632 * manage_workers - manage worker pool
1633 * @worker: self
1634 *
1635 * Assume the manager role and manage gcwq worker pool @worker belongs
1636 * to. At any given time, there can be only zero or one manager per
1637 * gcwq. The exclusion is handled automatically by this function.
1638 *
1639 * The caller can safely start processing works on false return. On
1640 * true return, it's guaranteed that need_to_create_worker() is false
1641 * and may_start_working() is true.
1642 *
1643 * CONTEXT:
1644 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1645 * multiple times. Does GFP_KERNEL allocations.
1646 *
1647 * RETURNS:
1648 * false if no action was taken and gcwq->lock stayed locked, true if
1649 * some action was taken.
1650 */
1651static bool manage_workers(struct worker *worker)
1652{
1653 struct global_cwq *gcwq = worker->gcwq;
1654 bool ret = false;
1655
1656 if (gcwq->flags & GCWQ_MANAGING_WORKERS)
1657 return ret;
1658
1659 gcwq->flags &= ~GCWQ_MANAGE_WORKERS;
1660 gcwq->flags |= GCWQ_MANAGING_WORKERS;
1661
1662 /*
1663 * Destroy and then create so that may_start_working() is true
1664 * on return.
1665 */
1666 ret |= maybe_destroy_workers(gcwq);
1667 ret |= maybe_create_worker(gcwq);
1668
1669 gcwq->flags &= ~GCWQ_MANAGING_WORKERS;
1670
1671 /*
1672 * The trustee might be waiting to take over the manager
1673 * position, tell it we're done.
1674 */
1675 if (unlikely(gcwq->trustee))
1676 wake_up_all(&gcwq->trustee_wait);
1677
1678 return ret;
1679}
1680
Tejun Heoa62428c2010-06-29 10:07:10 +02001681/**
Tejun Heoaffee4b2010-06-29 10:07:12 +02001682 * move_linked_works - move linked works to a list
1683 * @work: start of series of works to be scheduled
1684 * @head: target list to append @work to
1685 * @nextp: out paramter for nested worklist walking
1686 *
1687 * Schedule linked works starting from @work to @head. Work series to
1688 * be scheduled starts at @work and includes any consecutive work with
1689 * WORK_STRUCT_LINKED set in its predecessor.
1690 *
1691 * If @nextp is not NULL, it's updated to point to the next work of
1692 * the last scheduled work. This allows move_linked_works() to be
1693 * nested inside outer list_for_each_entry_safe().
1694 *
1695 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001696 * spin_lock_irq(gcwq->lock).
Tejun Heoaffee4b2010-06-29 10:07:12 +02001697 */
1698static void move_linked_works(struct work_struct *work, struct list_head *head,
1699 struct work_struct **nextp)
1700{
1701 struct work_struct *n;
1702
1703 /*
1704 * Linked worklist will always end before the end of the list,
1705 * use NULL for list head.
1706 */
1707 list_for_each_entry_safe_from(work, n, NULL, entry) {
1708 list_move_tail(&work->entry, head);
1709 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
1710 break;
1711 }
1712
1713 /*
1714 * If we're already inside safe list traversal and have moved
1715 * multiple works to the scheduled queue, the next position
1716 * needs to be updated.
1717 */
1718 if (nextp)
1719 *nextp = n;
1720}
1721
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001722static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
1723{
1724 struct work_struct *work = list_first_entry(&cwq->delayed_works,
1725 struct work_struct, entry);
Tejun Heo649027d2010-06-29 10:07:14 +02001726 struct list_head *pos = gcwq_determine_ins_pos(cwq->gcwq, cwq);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001727
Tejun Heocdadf002010-10-05 10:49:55 +02001728 trace_workqueue_activate_work(work);
Tejun Heo649027d2010-06-29 10:07:14 +02001729 move_linked_works(work, pos, NULL);
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001730 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001731 cwq->nr_active++;
1732}
1733
Tejun Heoaffee4b2010-06-29 10:07:12 +02001734/**
Tejun Heo73f53c42010-06-29 10:07:11 +02001735 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
1736 * @cwq: cwq of interest
1737 * @color: color of work which left the queue
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001738 * @delayed: for a delayed work
Tejun Heo73f53c42010-06-29 10:07:11 +02001739 *
1740 * A work either has completed or is removed from pending queue,
1741 * decrement nr_in_flight of its cwq and handle workqueue flushing.
1742 *
1743 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001744 * spin_lock_irq(gcwq->lock).
Tejun Heo73f53c42010-06-29 10:07:11 +02001745 */
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001746static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color,
1747 bool delayed)
Tejun Heo73f53c42010-06-29 10:07:11 +02001748{
1749 /* ignore uncolored works */
1750 if (color == WORK_NO_COLOR)
1751 return;
1752
1753 cwq->nr_in_flight[color]--;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001754
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001755 if (!delayed) {
1756 cwq->nr_active--;
1757 if (!list_empty(&cwq->delayed_works)) {
1758 /* one down, submit a delayed one */
1759 if (cwq->nr_active < cwq->max_active)
1760 cwq_activate_first_delayed(cwq);
1761 }
Tejun Heo502ca9d2010-06-29 10:07:13 +02001762 }
Tejun Heo73f53c42010-06-29 10:07:11 +02001763
1764 /* is flush in progress and are we at the flushing tip? */
1765 if (likely(cwq->flush_color != color))
1766 return;
1767
1768 /* are there still in-flight works? */
1769 if (cwq->nr_in_flight[color])
1770 return;
1771
1772 /* this cwq is done, clear flush_color */
1773 cwq->flush_color = -1;
1774
1775 /*
1776 * If this was the last cwq, wake up the first flusher. It
1777 * will handle the rest.
1778 */
1779 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
1780 complete(&cwq->wq->first_flusher->done);
1781}
1782
1783/**
Tejun Heoa62428c2010-06-29 10:07:10 +02001784 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02001785 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02001786 * @work: work to process
1787 *
1788 * Process @work. This function contains all the logics necessary to
1789 * process a single work including synchronization against and
1790 * interaction with other workers on the same cpu, queueing and
1791 * flushing. As long as context requirement is met, any worker can
1792 * call this function to process a work.
1793 *
1794 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001795 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02001796 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001797static void process_one_work(struct worker *worker, struct work_struct *work)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001798__releases(&gcwq->lock)
1799__acquires(&gcwq->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02001800{
Tejun Heo7e116292010-06-29 10:07:13 +02001801 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heo8b03ae32010-06-29 10:07:12 +02001802 struct global_cwq *gcwq = cwq->gcwq;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001803 struct hlist_head *bwh = busy_worker_head(gcwq, work);
Tejun Heofb0e7be2010-06-29 10:07:15 +02001804 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heoa62428c2010-06-29 10:07:10 +02001805 work_func_t f = work->func;
Tejun Heo73f53c42010-06-29 10:07:11 +02001806 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02001807 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02001808#ifdef CONFIG_LOCKDEP
1809 /*
1810 * It is permissible to free the struct work_struct from
1811 * inside the function that is called from it, this we need to
1812 * take into account for lockdep too. To avoid bogus "held
1813 * lock freed" warnings as well as problems when looking into
1814 * work->lockdep_map, make a copy and use that here.
1815 */
1816 struct lockdep_map lockdep_map = work->lockdep_map;
1817#endif
Tejun Heo7e116292010-06-29 10:07:13 +02001818 /*
1819 * A single work shouldn't be executed concurrently by
1820 * multiple workers on a single cpu. Check whether anyone is
1821 * already processing the work. If so, defer the work to the
1822 * currently executing one.
1823 */
1824 collision = __find_worker_executing_work(gcwq, bwh, work);
1825 if (unlikely(collision)) {
1826 move_linked_works(work, &collision->scheduled, NULL);
1827 return;
1828 }
1829
Tejun Heoa62428c2010-06-29 10:07:10 +02001830 /* claim and process */
Tejun Heoa62428c2010-06-29 10:07:10 +02001831 debug_work_deactivate(work);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001832 hlist_add_head(&worker->hentry, bwh);
Tejun Heoc34056a2010-06-29 10:07:11 +02001833 worker->current_work = work;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02001834 worker->current_cwq = cwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02001835 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02001836
Tejun Heo7a22ad72010-06-29 10:07:13 +02001837 /* record the current cpu number in the work data and dequeue */
1838 set_work_cpu(work, gcwq->cpu);
Tejun Heoa62428c2010-06-29 10:07:10 +02001839 list_del_init(&work->entry);
1840
Tejun Heo649027d2010-06-29 10:07:14 +02001841 /*
1842 * If HIGHPRI_PENDING, check the next work, and, if HIGHPRI,
1843 * wake up another worker; otherwise, clear HIGHPRI_PENDING.
1844 */
1845 if (unlikely(gcwq->flags & GCWQ_HIGHPRI_PENDING)) {
1846 struct work_struct *nwork = list_first_entry(&gcwq->worklist,
1847 struct work_struct, entry);
1848
1849 if (!list_empty(&gcwq->worklist) &&
1850 get_work_cwq(nwork)->wq->flags & WQ_HIGHPRI)
1851 wake_up_worker(gcwq);
1852 else
1853 gcwq->flags &= ~GCWQ_HIGHPRI_PENDING;
1854 }
1855
Tejun Heofb0e7be2010-06-29 10:07:15 +02001856 /*
1857 * CPU intensive works don't participate in concurrency
1858 * management. They're the scheduler's responsibility.
1859 */
1860 if (unlikely(cpu_intensive))
1861 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
1862
Tejun Heo8b03ae32010-06-29 10:07:12 +02001863 spin_unlock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02001864
Tejun Heoa62428c2010-06-29 10:07:10 +02001865 work_clear_pending(work);
Tejun Heoe1594892011-01-09 23:32:15 +01001866 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02001867 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07001868 trace_workqueue_execute_start(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02001869 f(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07001870 /*
1871 * While we must be careful to not use "work" after this, the trace
1872 * point will only record its address.
1873 */
1874 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02001875 lock_map_release(&lockdep_map);
1876 lock_map_release(&cwq->wq->lockdep_map);
1877
1878 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
1879 printk(KERN_ERR "BUG: workqueue leaked lock or atomic: "
1880 "%s/0x%08x/%d\n",
1881 current->comm, preempt_count(), task_pid_nr(current));
1882 printk(KERN_ERR " last function: ");
1883 print_symbol("%s\n", (unsigned long)f);
1884 debug_show_held_locks(current);
1885 dump_stack();
1886 }
1887
Tejun Heo8b03ae32010-06-29 10:07:12 +02001888 spin_lock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02001889
Tejun Heofb0e7be2010-06-29 10:07:15 +02001890 /* clear cpu intensive status */
1891 if (unlikely(cpu_intensive))
1892 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
1893
Tejun Heoa62428c2010-06-29 10:07:10 +02001894 /* we're done with it, release */
Tejun Heoc8e55f32010-06-29 10:07:12 +02001895 hlist_del_init(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02001896 worker->current_work = NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02001897 worker->current_cwq = NULL;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001898 cwq_dec_nr_in_flight(cwq, work_color, false);
Tejun Heoa62428c2010-06-29 10:07:10 +02001899}
1900
Tejun Heoaffee4b2010-06-29 10:07:12 +02001901/**
1902 * process_scheduled_works - process scheduled works
1903 * @worker: self
1904 *
1905 * Process all scheduled works. Please note that the scheduled list
1906 * may change while processing a work, so this function repeatedly
1907 * fetches a work from the top and executes it.
1908 *
1909 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001910 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02001911 * multiple times.
1912 */
1913static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
Tejun Heoaffee4b2010-06-29 10:07:12 +02001915 while (!list_empty(&worker->scheduled)) {
1916 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02001918 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921
Tejun Heo4690c4a2010-06-29 10:07:10 +02001922/**
1923 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02001924 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02001925 *
Tejun Heoe22bee72010-06-29 10:07:14 +02001926 * The gcwq worker thread function. There's a single dynamic pool of
1927 * these per each cpu. These workers process all works regardless of
1928 * their specific target workqueue. The only exception is works which
1929 * belong to workqueues with a rescuer which will be explained in
1930 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02001931 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001932static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Tejun Heoc34056a2010-06-29 10:07:11 +02001934 struct worker *worker = __worker;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001935 struct global_cwq *gcwq = worker->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Tejun Heoe22bee72010-06-29 10:07:14 +02001937 /* tell the scheduler that this is a workqueue worker */
1938 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001939woke_up:
Tejun Heoc8e55f32010-06-29 10:07:12 +02001940 spin_lock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Tejun Heoc8e55f32010-06-29 10:07:12 +02001942 /* DIE can be set only while we're idle, checking here is enough */
1943 if (worker->flags & WORKER_DIE) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001944 spin_unlock_irq(&gcwq->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001945 worker->task->flags &= ~PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001946 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 }
1948
Tejun Heoc8e55f32010-06-29 10:07:12 +02001949 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001950recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02001951 /* no more worker necessary? */
1952 if (!need_more_worker(gcwq))
1953 goto sleep;
1954
1955 /* do we need to manage? */
1956 if (unlikely(!may_start_working(gcwq)) && manage_workers(worker))
1957 goto recheck;
1958
Tejun Heoc8e55f32010-06-29 10:07:12 +02001959 /*
1960 * ->scheduled list can only be filled while a worker is
1961 * preparing to process a work or actually processing it.
1962 * Make sure nobody diddled with it while I was sleeping.
1963 */
1964 BUG_ON(!list_empty(&worker->scheduled));
1965
Tejun Heoe22bee72010-06-29 10:07:14 +02001966 /*
1967 * When control reaches this point, we're guaranteed to have
1968 * at least one idle worker or that someone else has already
1969 * assumed the manager role.
1970 */
1971 worker_clr_flags(worker, WORKER_PREP);
1972
1973 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02001974 struct work_struct *work =
Tejun Heo7e116292010-06-29 10:07:13 +02001975 list_first_entry(&gcwq->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02001976 struct work_struct, entry);
1977
1978 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
1979 /* optimization path, not strictly necessary */
1980 process_one_work(worker, work);
1981 if (unlikely(!list_empty(&worker->scheduled)))
1982 process_scheduled_works(worker);
1983 } else {
1984 move_linked_works(work, &worker->scheduled, NULL);
1985 process_scheduled_works(worker);
1986 }
Tejun Heoe22bee72010-06-29 10:07:14 +02001987 } while (keep_working(gcwq));
Tejun Heoc8e55f32010-06-29 10:07:12 +02001988
Tejun Heoe22bee72010-06-29 10:07:14 +02001989 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02001990sleep:
Tejun Heoe22bee72010-06-29 10:07:14 +02001991 if (unlikely(need_to_manage_workers(gcwq)) && manage_workers(worker))
1992 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02001993
Tejun Heoc8e55f32010-06-29 10:07:12 +02001994 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02001995 * gcwq->lock is held and there's no work to process and no
1996 * need to manage, sleep. Workers are woken up only while
1997 * holding gcwq->lock or from local cpu, so setting the
1998 * current state before releasing gcwq->lock is enough to
1999 * prevent losing any event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002000 */
2001 worker_enter_idle(worker);
2002 __set_current_state(TASK_INTERRUPTIBLE);
2003 spin_unlock_irq(&gcwq->lock);
2004 schedule();
2005 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
2007
Tejun Heoe22bee72010-06-29 10:07:14 +02002008/**
2009 * rescuer_thread - the rescuer thread function
2010 * @__wq: the associated workqueue
2011 *
2012 * Workqueue rescuer thread function. There's one rescuer for each
2013 * workqueue which has WQ_RESCUER set.
2014 *
2015 * Regular work processing on a gcwq may block trying to create a new
2016 * worker which uses GFP_KERNEL allocation which has slight chance of
2017 * developing into deadlock if some works currently on the same queue
2018 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2019 * the problem rescuer solves.
2020 *
2021 * When such condition is possible, the gcwq summons rescuers of all
2022 * workqueues which have works queued on the gcwq and let them process
2023 * those works so that forward progress can be guaranteed.
2024 *
2025 * This should happen rarely.
2026 */
2027static int rescuer_thread(void *__wq)
2028{
2029 struct workqueue_struct *wq = __wq;
2030 struct worker *rescuer = wq->rescuer;
2031 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02002032 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02002033 unsigned int cpu;
2034
2035 set_user_nice(current, RESCUER_NICE_LEVEL);
2036repeat:
2037 set_current_state(TASK_INTERRUPTIBLE);
2038
2039 if (kthread_should_stop())
2040 return 0;
2041
Tejun Heof3421792010-07-02 10:03:51 +02002042 /*
2043 * See whether any cpu is asking for help. Unbounded
2044 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2045 */
Tejun Heof2e005a2010-07-20 15:59:09 +02002046 for_each_mayday_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02002047 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
2048 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
Tejun Heoe22bee72010-06-29 10:07:14 +02002049 struct global_cwq *gcwq = cwq->gcwq;
2050 struct work_struct *work, *n;
2051
2052 __set_current_state(TASK_RUNNING);
Tejun Heof2e005a2010-07-20 15:59:09 +02002053 mayday_clear_cpu(cpu, wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02002054
2055 /* migrate to the target cpu if possible */
2056 rescuer->gcwq = gcwq;
2057 worker_maybe_bind_and_lock(rescuer);
2058
2059 /*
2060 * Slurp in all works issued via this workqueue and
2061 * process'em.
2062 */
2063 BUG_ON(!list_empty(&rescuer->scheduled));
2064 list_for_each_entry_safe(work, n, &gcwq->worklist, entry)
2065 if (get_work_cwq(work) == cwq)
2066 move_linked_works(work, scheduled, &n);
2067
2068 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002069
2070 /*
2071 * Leave this gcwq. If keep_working() is %true, notify a
2072 * regular worker; otherwise, we end up with 0 concurrency
2073 * and stalling the execution.
2074 */
2075 if (keep_working(gcwq))
2076 wake_up_worker(gcwq);
2077
Tejun Heoe22bee72010-06-29 10:07:14 +02002078 spin_unlock_irq(&gcwq->lock);
2079 }
2080
2081 schedule();
2082 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
2084
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002085struct wq_barrier {
2086 struct work_struct work;
2087 struct completion done;
2088};
2089
2090static void wq_barrier_func(struct work_struct *work)
2091{
2092 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2093 complete(&barr->done);
2094}
2095
Tejun Heo4690c4a2010-06-29 10:07:10 +02002096/**
2097 * insert_wq_barrier - insert a barrier work
2098 * @cwq: cwq to insert barrier into
2099 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002100 * @target: target work to attach @barr to
2101 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002102 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002103 * @barr is linked to @target such that @barr is completed only after
2104 * @target finishes execution. Please note that the ordering
2105 * guarantee is observed only with respect to @target and on the local
2106 * cpu.
2107 *
2108 * Currently, a queued barrier can't be canceled. This is because
2109 * try_to_grab_pending() can't determine whether the work to be
2110 * grabbed is at the head of the queue and thus can't clear LINKED
2111 * flag of the previous work while there must be a valid next work
2112 * after a work with LINKED flag set.
2113 *
2114 * Note that when @worker is non-NULL, @target may be modified
2115 * underneath us, so we can't reliably determine cwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002116 *
2117 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002118 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002119 */
Oleg Nesterov83c22522007-05-09 02:33:54 -07002120static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002121 struct wq_barrier *barr,
2122 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002123{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002124 struct list_head *head;
2125 unsigned int linked = 0;
2126
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002127 /*
Tejun Heo8b03ae32010-06-29 10:07:12 +02002128 * debugobject calls are safe here even with gcwq->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002129 * as we know for sure that this will not trigger any of the
2130 * checks and call back into the fixup functions where we
2131 * might deadlock.
2132 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002133 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002134 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002135 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002136
Tejun Heoaffee4b2010-06-29 10:07:12 +02002137 /*
2138 * If @target is currently being executed, schedule the
2139 * barrier to the worker; otherwise, put it after @target.
2140 */
2141 if (worker)
2142 head = worker->scheduled.next;
2143 else {
2144 unsigned long *bits = work_data_bits(target);
2145
2146 head = target->entry.next;
2147 /* there can already be other linked works, inherit and set */
2148 linked = *bits & WORK_STRUCT_LINKED;
2149 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2150 }
2151
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002152 debug_work_activate(&barr->work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002153 insert_work(cwq, &barr->work, head,
2154 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002155}
2156
Tejun Heo73f53c42010-06-29 10:07:11 +02002157/**
2158 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2159 * @wq: workqueue being flushed
2160 * @flush_color: new flush color, < 0 for no-op
2161 * @work_color: new work color, < 0 for no-op
2162 *
2163 * Prepare cwqs for workqueue flushing.
2164 *
2165 * If @flush_color is non-negative, flush_color on all cwqs should be
2166 * -1. If no cwq has in-flight commands at the specified color, all
2167 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2168 * has in flight commands, its cwq->flush_color is set to
2169 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2170 * wakeup logic is armed and %true is returned.
2171 *
2172 * The caller should have initialized @wq->first_flusher prior to
2173 * calling this function with non-negative @flush_color. If
2174 * @flush_color is negative, no flush color update is done and %false
2175 * is returned.
2176 *
2177 * If @work_color is non-negative, all cwqs should have the same
2178 * work_color which is previous to @work_color and all will be
2179 * advanced to @work_color.
2180 *
2181 * CONTEXT:
2182 * mutex_lock(wq->flush_mutex).
2183 *
2184 * RETURNS:
2185 * %true if @flush_color >= 0 and there's something to flush. %false
2186 * otherwise.
2187 */
2188static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2189 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
Tejun Heo73f53c42010-06-29 10:07:11 +02002191 bool wait = false;
2192 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002193
Tejun Heo73f53c42010-06-29 10:07:11 +02002194 if (flush_color >= 0) {
2195 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2196 atomic_set(&wq->nr_cwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002197 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002198
Tejun Heof3421792010-07-02 10:03:51 +02002199 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002200 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02002201 struct global_cwq *gcwq = cwq->gcwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002202
Tejun Heo8b03ae32010-06-29 10:07:12 +02002203 spin_lock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002204
2205 if (flush_color >= 0) {
2206 BUG_ON(cwq->flush_color != -1);
2207
2208 if (cwq->nr_in_flight[flush_color]) {
2209 cwq->flush_color = flush_color;
2210 atomic_inc(&wq->nr_cwqs_to_flush);
2211 wait = true;
2212 }
2213 }
2214
2215 if (work_color >= 0) {
2216 BUG_ON(work_color != work_next_color(cwq->work_color));
2217 cwq->work_color = work_color;
2218 }
2219
Tejun Heo8b03ae32010-06-29 10:07:12 +02002220 spin_unlock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002221 }
2222
2223 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2224 complete(&wq->first_flusher->done);
2225
2226 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002229/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002231 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 *
2233 * Forces execution of the workqueue and blocks until its completion.
2234 * This is typically used in driver shutdown handlers.
2235 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002236 * We sleep until all works which were queued on entry have been handled,
2237 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002239void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Tejun Heo73f53c42010-06-29 10:07:11 +02002241 struct wq_flusher this_flusher = {
2242 .list = LIST_HEAD_INIT(this_flusher.list),
2243 .flush_color = -1,
2244 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2245 };
2246 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002247
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002248 lock_map_acquire(&wq->lockdep_map);
2249 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002250
2251 mutex_lock(&wq->flush_mutex);
2252
2253 /*
2254 * Start-to-wait phase
2255 */
2256 next_color = work_next_color(wq->work_color);
2257
2258 if (next_color != wq->flush_color) {
2259 /*
2260 * Color space is not full. The current work_color
2261 * becomes our flush_color and work_color is advanced
2262 * by one.
2263 */
2264 BUG_ON(!list_empty(&wq->flusher_overflow));
2265 this_flusher.flush_color = wq->work_color;
2266 wq->work_color = next_color;
2267
2268 if (!wq->first_flusher) {
2269 /* no flush in progress, become the first flusher */
2270 BUG_ON(wq->flush_color != this_flusher.flush_color);
2271
2272 wq->first_flusher = &this_flusher;
2273
2274 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2275 wq->work_color)) {
2276 /* nothing to flush, done */
2277 wq->flush_color = next_color;
2278 wq->first_flusher = NULL;
2279 goto out_unlock;
2280 }
2281 } else {
2282 /* wait in queue */
2283 BUG_ON(wq->flush_color == this_flusher.flush_color);
2284 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2285 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2286 }
2287 } else {
2288 /*
2289 * Oops, color space is full, wait on overflow queue.
2290 * The next flush completion will assign us
2291 * flush_color and transfer to flusher_queue.
2292 */
2293 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2294 }
2295
2296 mutex_unlock(&wq->flush_mutex);
2297
2298 wait_for_completion(&this_flusher.done);
2299
2300 /*
2301 * Wake-up-and-cascade phase
2302 *
2303 * First flushers are responsible for cascading flushes and
2304 * handling overflow. Non-first flushers can simply return.
2305 */
2306 if (wq->first_flusher != &this_flusher)
2307 return;
2308
2309 mutex_lock(&wq->flush_mutex);
2310
Tejun Heo4ce48b32010-07-02 10:03:51 +02002311 /* we might have raced, check again with mutex held */
2312 if (wq->first_flusher != &this_flusher)
2313 goto out_unlock;
2314
Tejun Heo73f53c42010-06-29 10:07:11 +02002315 wq->first_flusher = NULL;
2316
2317 BUG_ON(!list_empty(&this_flusher.list));
2318 BUG_ON(wq->flush_color != this_flusher.flush_color);
2319
2320 while (true) {
2321 struct wq_flusher *next, *tmp;
2322
2323 /* complete all the flushers sharing the current flush color */
2324 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2325 if (next->flush_color != wq->flush_color)
2326 break;
2327 list_del_init(&next->list);
2328 complete(&next->done);
2329 }
2330
2331 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2332 wq->flush_color != work_next_color(wq->work_color));
2333
2334 /* this flush_color is finished, advance by one */
2335 wq->flush_color = work_next_color(wq->flush_color);
2336
2337 /* one color has been freed, handle overflow queue */
2338 if (!list_empty(&wq->flusher_overflow)) {
2339 /*
2340 * Assign the same color to all overflowed
2341 * flushers, advance work_color and append to
2342 * flusher_queue. This is the start-to-wait
2343 * phase for these overflowed flushers.
2344 */
2345 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2346 tmp->flush_color = wq->work_color;
2347
2348 wq->work_color = work_next_color(wq->work_color);
2349
2350 list_splice_tail_init(&wq->flusher_overflow,
2351 &wq->flusher_queue);
2352 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2353 }
2354
2355 if (list_empty(&wq->flusher_queue)) {
2356 BUG_ON(wq->flush_color != wq->work_color);
2357 break;
2358 }
2359
2360 /*
2361 * Need to flush more colors. Make the next flusher
2362 * the new first flusher and arm cwqs.
2363 */
2364 BUG_ON(wq->flush_color == wq->work_color);
2365 BUG_ON(wq->flush_color != next->flush_color);
2366
2367 list_del_init(&next->list);
2368 wq->first_flusher = next;
2369
2370 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2371 break;
2372
2373 /*
2374 * Meh... this color is already done, clear first
2375 * flusher and repeat cascading.
2376 */
2377 wq->first_flusher = NULL;
2378 }
2379
2380out_unlock:
2381 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382}
Dave Jonesae90dd52006-06-30 01:40:45 -04002383EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002385/**
2386 * drain_workqueue - drain a workqueue
2387 * @wq: workqueue to drain
2388 *
2389 * Wait until the workqueue becomes empty. While draining is in progress,
2390 * only chain queueing is allowed. IOW, only currently pending or running
2391 * work items on @wq can queue further work items on it. @wq is flushed
2392 * repeatedly until it becomes empty. The number of flushing is detemined
2393 * by the depth of chaining and should be relatively short. Whine if it
2394 * takes too long.
2395 */
2396void drain_workqueue(struct workqueue_struct *wq)
2397{
2398 unsigned int flush_cnt = 0;
2399 unsigned int cpu;
2400
2401 /*
2402 * __queue_work() needs to test whether there are drainers, is much
2403 * hotter than drain_workqueue() and already looks at @wq->flags.
2404 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2405 */
2406 spin_lock(&workqueue_lock);
2407 if (!wq->nr_drainers++)
2408 wq->flags |= WQ_DRAINING;
2409 spin_unlock(&workqueue_lock);
2410reflush:
2411 flush_workqueue(wq);
2412
2413 for_each_cwq_cpu(cpu, wq) {
2414 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002415 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002416
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002417 spin_lock_irq(&cwq->gcwq->lock);
2418 drained = !cwq->nr_active && list_empty(&cwq->delayed_works);
2419 spin_unlock_irq(&cwq->gcwq->lock);
2420
2421 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002422 continue;
2423
2424 if (++flush_cnt == 10 ||
2425 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
2426 pr_warning("workqueue %s: flush on destruction isn't complete after %u tries\n",
2427 wq->name, flush_cnt);
2428 goto reflush;
2429 }
2430
2431 spin_lock(&workqueue_lock);
2432 if (!--wq->nr_drainers)
2433 wq->flags &= ~WQ_DRAINING;
2434 spin_unlock(&workqueue_lock);
2435}
2436EXPORT_SYMBOL_GPL(drain_workqueue);
2437
Tejun Heobaf59022010-09-16 10:42:16 +02002438static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr,
2439 bool wait_executing)
2440{
2441 struct worker *worker = NULL;
2442 struct global_cwq *gcwq;
2443 struct cpu_workqueue_struct *cwq;
2444
2445 might_sleep();
2446 gcwq = get_work_gcwq(work);
2447 if (!gcwq)
2448 return false;
2449
2450 spin_lock_irq(&gcwq->lock);
2451 if (!list_empty(&work->entry)) {
2452 /*
2453 * See the comment near try_to_grab_pending()->smp_rmb().
2454 * If it was re-queued to a different gcwq under us, we
2455 * are not going to wait.
2456 */
2457 smp_rmb();
2458 cwq = get_work_cwq(work);
2459 if (unlikely(!cwq || gcwq != cwq->gcwq))
2460 goto already_gone;
2461 } else if (wait_executing) {
2462 worker = find_worker_executing_work(gcwq, work);
2463 if (!worker)
2464 goto already_gone;
2465 cwq = worker->current_cwq;
2466 } else
2467 goto already_gone;
2468
2469 insert_wq_barrier(cwq, barr, work, worker);
2470 spin_unlock_irq(&gcwq->lock);
2471
Tejun Heoe1594892011-01-09 23:32:15 +01002472 /*
2473 * If @max_active is 1 or rescuer is in use, flushing another work
2474 * item on the same workqueue may lead to deadlock. Make sure the
2475 * flusher is not running on the same workqueue by verifying write
2476 * access.
2477 */
2478 if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER)
2479 lock_map_acquire(&cwq->wq->lockdep_map);
2480 else
2481 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heobaf59022010-09-16 10:42:16 +02002482 lock_map_release(&cwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002483
Tejun Heobaf59022010-09-16 10:42:16 +02002484 return true;
2485already_gone:
2486 spin_unlock_irq(&gcwq->lock);
2487 return false;
2488}
2489
Oleg Nesterovdb700892008-07-25 01:47:49 -07002490/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002491 * flush_work - wait for a work to finish executing the last queueing instance
2492 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002493 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002494 * Wait until @work has finished execution. This function considers
2495 * only the last queueing instance of @work. If @work has been
2496 * enqueued across different CPUs on a non-reentrant workqueue or on
2497 * multiple workqueues, @work might still be executing on return on
2498 * some of the CPUs from earlier queueing.
Oleg Nesterova67da702008-07-25 01:47:52 -07002499 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002500 * If @work was queued only on a non-reentrant, ordered or unbound
2501 * workqueue, @work is guaranteed to be idle on return if it hasn't
2502 * been requeued since flush started.
2503 *
2504 * RETURNS:
2505 * %true if flush_work() waited for the work to finish execution,
2506 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002507 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002508bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002509{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002510 struct wq_barrier barr;
2511
Tejun Heobaf59022010-09-16 10:42:16 +02002512 if (start_flush_work(work, &barr, true)) {
2513 wait_for_completion(&barr.done);
2514 destroy_work_on_stack(&barr.work);
2515 return true;
2516 } else
2517 return false;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002518}
2519EXPORT_SYMBOL_GPL(flush_work);
2520
Tejun Heo401a8d02010-09-16 10:36:00 +02002521static bool wait_on_cpu_work(struct global_cwq *gcwq, struct work_struct *work)
2522{
2523 struct wq_barrier barr;
2524 struct worker *worker;
2525
2526 spin_lock_irq(&gcwq->lock);
2527
2528 worker = find_worker_executing_work(gcwq, work);
2529 if (unlikely(worker))
2530 insert_wq_barrier(worker->current_cwq, &barr, work, worker);
2531
2532 spin_unlock_irq(&gcwq->lock);
2533
2534 if (unlikely(worker)) {
2535 wait_for_completion(&barr.done);
2536 destroy_work_on_stack(&barr.work);
2537 return true;
2538 } else
2539 return false;
2540}
2541
2542static bool wait_on_work(struct work_struct *work)
2543{
2544 bool ret = false;
2545 int cpu;
2546
2547 might_sleep();
2548
2549 lock_map_acquire(&work->lockdep_map);
2550 lock_map_release(&work->lockdep_map);
2551
2552 for_each_gcwq_cpu(cpu)
2553 ret |= wait_on_cpu_work(get_gcwq(cpu), work);
2554 return ret;
2555}
2556
Tejun Heo09383492010-09-16 10:48:29 +02002557/**
2558 * flush_work_sync - wait until a work has finished execution
2559 * @work: the work to flush
2560 *
2561 * Wait until @work has finished execution. On return, it's
2562 * guaranteed that all queueing instances of @work which happened
2563 * before this function is called are finished. In other words, if
2564 * @work hasn't been requeued since this function was called, @work is
2565 * guaranteed to be idle on return.
2566 *
2567 * RETURNS:
2568 * %true if flush_work_sync() waited for the work to finish execution,
2569 * %false if it was already idle.
2570 */
2571bool flush_work_sync(struct work_struct *work)
2572{
2573 struct wq_barrier barr;
2574 bool pending, waited;
2575
2576 /* we'll wait for executions separately, queue barr only if pending */
2577 pending = start_flush_work(work, &barr, false);
2578
2579 /* wait for executions to finish */
2580 waited = wait_on_work(work);
2581
2582 /* wait for the pending one */
2583 if (pending) {
2584 wait_for_completion(&barr.done);
2585 destroy_work_on_stack(&barr.work);
2586 }
2587
2588 return pending || waited;
2589}
2590EXPORT_SYMBOL_GPL(flush_work_sync);
2591
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002592/*
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002593 * Upon a successful return (>= 0), the caller "owns" WORK_STRUCT_PENDING bit,
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002594 * so this work can't be re-armed in any way.
2595 */
2596static int try_to_grab_pending(struct work_struct *work)
2597{
Tejun Heo8b03ae32010-06-29 10:07:12 +02002598 struct global_cwq *gcwq;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002599 int ret = -1;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002600
Tejun Heo22df02b2010-06-29 10:07:10 +02002601 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002602 return 0;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002603
2604 /*
2605 * The queueing is in progress, or it is already queued. Try to
2606 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
2607 */
Tejun Heo7a22ad72010-06-29 10:07:13 +02002608 gcwq = get_work_gcwq(work);
2609 if (!gcwq)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002610 return ret;
2611
Tejun Heo8b03ae32010-06-29 10:07:12 +02002612 spin_lock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002613 if (!list_empty(&work->entry)) {
2614 /*
Tejun Heo7a22ad72010-06-29 10:07:13 +02002615 * This work is queued, but perhaps we locked the wrong gcwq.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002616 * In that case we must see the new value after rmb(), see
2617 * insert_work()->wmb().
2618 */
2619 smp_rmb();
Tejun Heo7a22ad72010-06-29 10:07:13 +02002620 if (gcwq == get_work_gcwq(work)) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002621 debug_work_deactivate(work);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002622 list_del_init(&work->entry);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002623 cwq_dec_nr_in_flight(get_work_cwq(work),
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02002624 get_work_color(work),
2625 *work_data_bits(work) & WORK_STRUCT_DELAYED);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002626 ret = 1;
2627 }
2628 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02002629 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002630
2631 return ret;
2632}
2633
Tejun Heo401a8d02010-09-16 10:36:00 +02002634static bool __cancel_work_timer(struct work_struct *work,
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002635 struct timer_list* timer)
2636{
2637 int ret;
2638
2639 do {
2640 ret = (timer && likely(del_timer(timer)));
2641 if (!ret)
2642 ret = try_to_grab_pending(work);
2643 wait_on_work(work);
2644 } while (unlikely(ret < 0));
2645
Tejun Heo7a22ad72010-06-29 10:07:13 +02002646 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002647 return ret;
2648}
2649
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002650/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002651 * cancel_work_sync - cancel a work and wait for it to finish
2652 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002653 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002654 * Cancel @work and wait for its execution to finish. This function
2655 * can be used even if the work re-queues itself or migrates to
2656 * another workqueue. On return from this function, @work is
2657 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002658 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002659 * cancel_work_sync(&delayed_work->work) must not be used for
2660 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002661 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002662 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002663 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002664 *
2665 * RETURNS:
2666 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002667 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002668bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002669{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002670 return __cancel_work_timer(work, NULL);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002671}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002672EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002673
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002674/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002675 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2676 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002677 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002678 * Delayed timer is cancelled and the pending work is queued for
2679 * immediate execution. Like flush_work(), this function only
2680 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002681 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002682 * RETURNS:
2683 * %true if flush_work() waited for the work to finish execution,
2684 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002685 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002686bool flush_delayed_work(struct delayed_work *dwork)
2687{
2688 if (del_timer_sync(&dwork->timer))
2689 __queue_work(raw_smp_processor_id(),
2690 get_work_cwq(&dwork->work)->wq, &dwork->work);
2691 return flush_work(&dwork->work);
2692}
2693EXPORT_SYMBOL(flush_delayed_work);
2694
2695/**
Tejun Heo09383492010-09-16 10:48:29 +02002696 * flush_delayed_work_sync - wait for a dwork to finish
2697 * @dwork: the delayed work to flush
2698 *
2699 * Delayed timer is cancelled and the pending work is queued for
2700 * execution immediately. Other than timer handling, its behavior
2701 * is identical to flush_work_sync().
2702 *
2703 * RETURNS:
2704 * %true if flush_work_sync() waited for the work to finish execution,
2705 * %false if it was already idle.
2706 */
2707bool flush_delayed_work_sync(struct delayed_work *dwork)
2708{
2709 if (del_timer_sync(&dwork->timer))
2710 __queue_work(raw_smp_processor_id(),
2711 get_work_cwq(&dwork->work)->wq, &dwork->work);
2712 return flush_work_sync(&dwork->work);
2713}
2714EXPORT_SYMBOL(flush_delayed_work_sync);
2715
2716/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002717 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2718 * @dwork: the delayed work cancel
2719 *
2720 * This is cancel_work_sync() for delayed works.
2721 *
2722 * RETURNS:
2723 * %true if @dwork was pending, %false otherwise.
2724 */
2725bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002726{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002727 return __cancel_work_timer(&dwork->work, &dwork->timer);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002728}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002729EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002731/**
2732 * schedule_work - put work task in global workqueue
2733 * @work: job to be done
2734 *
Bart Van Assche5b0f437d2009-07-30 19:00:53 +02002735 * Returns zero if @work was already on the kernel-global workqueue and
2736 * non-zero otherwise.
2737 *
2738 * This puts a job in the kernel-global workqueue if it was not already
2739 * queued and leaves it in the same position on the kernel-global
2740 * workqueue otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002741 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002742int schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
Tejun Heod320c032010-06-29 10:07:14 +02002744 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745}
Dave Jonesae90dd52006-06-30 01:40:45 -04002746EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Zhang Ruic1a220e2008-07-23 21:28:39 -07002748/*
2749 * schedule_work_on - put work task on a specific cpu
2750 * @cpu: cpu to put the work task on
2751 * @work: job to be done
2752 *
2753 * This puts a job on a specific cpu
2754 */
2755int schedule_work_on(int cpu, struct work_struct *work)
2756{
Tejun Heod320c032010-06-29 10:07:14 +02002757 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002758}
2759EXPORT_SYMBOL(schedule_work_on);
2760
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002761/**
2762 * schedule_delayed_work - put work task in global workqueue after delay
David Howells52bad642006-11-22 14:54:01 +00002763 * @dwork: job to be done
2764 * @delay: number of jiffies to wait or 0 for immediate execution
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002765 *
2766 * After waiting for a given time this puts a job in the kernel-global
2767 * workqueue.
2768 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002769int schedule_delayed_work(struct delayed_work *dwork,
Ingo Molnar82f67cd2007-02-16 01:28:13 -08002770 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771{
Tejun Heod320c032010-06-29 10:07:14 +02002772 return queue_delayed_work(system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773}
Dave Jonesae90dd52006-06-30 01:40:45 -04002774EXPORT_SYMBOL(schedule_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002776/**
2777 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
2778 * @cpu: cpu to use
David Howells52bad642006-11-22 14:54:01 +00002779 * @dwork: job to be done
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002780 * @delay: number of jiffies to wait
2781 *
2782 * After waiting for a given time this puts a job in the kernel-global
2783 * workqueue on the specified CPU.
2784 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785int schedule_delayed_work_on(int cpu,
David Howells52bad642006-11-22 14:54:01 +00002786 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787{
Tejun Heod320c032010-06-29 10:07:14 +02002788 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789}
Dave Jonesae90dd52006-06-30 01:40:45 -04002790EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Andrew Mortonb6136772006-06-25 05:47:49 -07002792/**
Tejun Heo31ddd872010-10-19 11:14:49 +02002793 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07002794 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07002795 *
Tejun Heo31ddd872010-10-19 11:14:49 +02002796 * schedule_on_each_cpu() executes @func on each online CPU using the
2797 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07002798 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02002799 *
2800 * RETURNS:
2801 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07002802 */
David Howells65f27f32006-11-22 14:55:48 +00002803int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002804{
2805 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02002806 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08002807
Andrew Mortonb6136772006-06-25 05:47:49 -07002808 works = alloc_percpu(struct work_struct);
2809 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002810 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07002811
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002812 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08002813
Christoph Lameter15316ba2006-01-08 01:00:43 -08002814 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01002815 struct work_struct *work = per_cpu_ptr(works, cpu);
2816
2817 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002818 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02002819 }
Tejun Heo93981802009-11-17 14:06:20 -08002820
2821 for_each_online_cpu(cpu)
2822 flush_work(per_cpu_ptr(works, cpu));
2823
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002824 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07002825 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08002826 return 0;
2827}
2828
Alan Sterneef6a7d2010-02-12 17:39:21 +09002829/**
2830 * flush_scheduled_work - ensure that any scheduled work has run to completion.
2831 *
2832 * Forces execution of the kernel-global workqueue and blocks until its
2833 * completion.
2834 *
2835 * Think twice before calling this function! It's very easy to get into
2836 * trouble if you don't take great care. Either of the following situations
2837 * will lead to deadlock:
2838 *
2839 * One of the work items currently on the workqueue needs to acquire
2840 * a lock held by your code or its caller.
2841 *
2842 * Your code is running in the context of a work routine.
2843 *
2844 * They will be detected by lockdep when they occur, but the first might not
2845 * occur very often. It depends on what work items are on the workqueue and
2846 * what locks they need, which you have no control over.
2847 *
2848 * In most situations flushing the entire workqueue is overkill; you merely
2849 * need to know that a particular work item isn't queued and isn't running.
2850 * In such cases you should use cancel_delayed_work_sync() or
2851 * cancel_work_sync() instead.
2852 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853void flush_scheduled_work(void)
2854{
Tejun Heod320c032010-06-29 10:07:14 +02002855 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856}
Dave Jonesae90dd52006-06-30 01:40:45 -04002857EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06002860 * execute_in_process_context - reliably execute the routine with user context
2861 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06002862 * @ew: guaranteed storage for the execute work structure (must
2863 * be available when the work executes)
2864 *
2865 * Executes the function immediately if process context is available,
2866 * otherwise schedules the function for delayed execution.
2867 *
2868 * Returns: 0 - function was executed
2869 * 1 - function was scheduled for execution
2870 */
David Howells65f27f32006-11-22 14:55:48 +00002871int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06002872{
2873 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00002874 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06002875 return 0;
2876 }
2877
David Howells65f27f32006-11-22 14:55:48 +00002878 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06002879 schedule_work(&ew->work);
2880
2881 return 1;
2882}
2883EXPORT_SYMBOL_GPL(execute_in_process_context);
2884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885int keventd_up(void)
2886{
Tejun Heod320c032010-06-29 10:07:14 +02002887 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002890static int alloc_cwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
Oleg Nesterov3af244332007-05-09 02:34:09 -07002892 /*
Tejun Heo0f900042010-06-29 10:07:11 +02002893 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
2894 * Make sure that the alignment isn't lower than that of
2895 * unsigned long long.
Oleg Nesterov3af244332007-05-09 02:34:09 -07002896 */
Tejun Heo0f900042010-06-29 10:07:11 +02002897 const size_t size = sizeof(struct cpu_workqueue_struct);
2898 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
2899 __alignof__(unsigned long long));
Tejun Heo931ac772010-07-20 11:07:48 +02002900#ifdef CONFIG_SMP
2901 bool percpu = !(wq->flags & WQ_UNBOUND);
2902#else
2903 bool percpu = false;
2904#endif
Oleg Nesterov3af244332007-05-09 02:34:09 -07002905
Tejun Heo931ac772010-07-20 11:07:48 +02002906 if (percpu)
Tejun Heof3421792010-07-02 10:03:51 +02002907 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
Tejun Heo931ac772010-07-20 11:07:48 +02002908 else {
Tejun Heof3421792010-07-02 10:03:51 +02002909 void *ptr;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01002910
Tejun Heof3421792010-07-02 10:03:51 +02002911 /*
2912 * Allocate enough room to align cwq and put an extra
2913 * pointer at the end pointing back to the originally
2914 * allocated pointer which will be used for free.
2915 */
2916 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
2917 if (ptr) {
2918 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
2919 *(void **)(wq->cpu_wq.single + 1) = ptr;
2920 }
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002921 }
Tejun Heof3421792010-07-02 10:03:51 +02002922
Tejun Heo0415b00d12011-03-24 18:50:09 +01002923 /* just in case, make sure it's actually aligned */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002924 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
2925 return wq->cpu_wq.v ? 0 : -ENOMEM;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002926}
2927
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002928static void free_cwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07002929{
Tejun Heo931ac772010-07-20 11:07:48 +02002930#ifdef CONFIG_SMP
2931 bool percpu = !(wq->flags & WQ_UNBOUND);
2932#else
2933 bool percpu = false;
2934#endif
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07002935
Tejun Heo931ac772010-07-20 11:07:48 +02002936 if (percpu)
Tejun Heof3421792010-07-02 10:03:51 +02002937 free_percpu(wq->cpu_wq.pcpu);
2938 else if (wq->cpu_wq.single) {
2939 /* the pointer to free is stored right after the cwq */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002940 kfree(*(void **)(wq->cpu_wq.single + 1));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07002941 }
2942}
2943
Tejun Heof3421792010-07-02 10:03:51 +02002944static int wq_clamp_max_active(int max_active, unsigned int flags,
2945 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02002946{
Tejun Heof3421792010-07-02 10:03:51 +02002947 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
2948
2949 if (max_active < 1 || max_active > lim)
Tejun Heob71ab8c2010-06-29 10:07:14 +02002950 printk(KERN_WARNING "workqueue: max_active %d requested for %s "
2951 "is out of range, clamping between %d and %d\n",
Tejun Heof3421792010-07-02 10:03:51 +02002952 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002953
Tejun Heof3421792010-07-02 10:03:51 +02002954 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002955}
2956
Tejun Heob196be82012-01-10 15:11:35 -08002957struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02002958 unsigned int flags,
2959 int max_active,
2960 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08002961 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07002962{
Tejun Heob196be82012-01-10 15:11:35 -08002963 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002964 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02002965 unsigned int cpu;
Tejun Heob196be82012-01-10 15:11:35 -08002966 size_t namelen;
2967
2968 /* determine namelen, allocate wq and format name */
2969 va_start(args, lock_name);
2970 va_copy(args1, args);
2971 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
2972
2973 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
2974 if (!wq)
2975 goto err;
2976
2977 vsnprintf(wq->name, namelen, fmt, args1);
2978 va_end(args);
2979 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002980
Tejun Heof3421792010-07-02 10:03:51 +02002981 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02002982 * Workqueues which may be used during memory reclaim should
2983 * have a rescuer to guarantee forward progress.
2984 */
2985 if (flags & WQ_MEM_RECLAIM)
2986 flags |= WQ_RESCUER;
2987
2988 /*
Tejun Heof3421792010-07-02 10:03:51 +02002989 * Unbound workqueues aren't concurrency managed and should be
2990 * dispatched to workers immediately.
2991 */
2992 if (flags & WQ_UNBOUND)
2993 flags |= WQ_HIGHPRI;
2994
Tejun Heod320c032010-06-29 10:07:14 +02002995 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08002996 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002997
Tejun Heob196be82012-01-10 15:11:35 -08002998 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02002999 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003000 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003001 mutex_init(&wq->flush_mutex);
3002 atomic_set(&wq->nr_cwqs_to_flush, 0);
3003 INIT_LIST_HEAD(&wq->flusher_queue);
3004 INIT_LIST_HEAD(&wq->flusher_overflow);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003005
Johannes Bergeb13ba82008-01-16 09:51:58 +01003006 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003007 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003008
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003009 if (alloc_cwqs(wq) < 0)
3010 goto err;
3011
Tejun Heof3421792010-07-02 10:03:51 +02003012 for_each_cwq_cpu(cpu, wq) {
Tejun Heo15376632010-06-29 10:07:11 +02003013 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003014 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo15376632010-06-29 10:07:11 +02003015
Tejun Heo0f900042010-06-29 10:07:11 +02003016 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003017 cwq->gcwq = gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02003018 cwq->wq = wq;
Tejun Heo73f53c42010-06-29 10:07:11 +02003019 cwq->flush_color = -1;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003020 cwq->max_active = max_active;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003021 INIT_LIST_HEAD(&cwq->delayed_works);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003022 }
3023
Tejun Heoe22bee72010-06-29 10:07:14 +02003024 if (flags & WQ_RESCUER) {
3025 struct worker *rescuer;
3026
Tejun Heof2e005a2010-07-20 15:59:09 +02003027 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
Tejun Heoe22bee72010-06-29 10:07:14 +02003028 goto err;
3029
3030 wq->rescuer = rescuer = alloc_worker();
3031 if (!rescuer)
3032 goto err;
3033
Tejun Heob196be82012-01-10 15:11:35 -08003034 rescuer->task = kthread_create(rescuer_thread, wq, "%s",
3035 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003036 if (IS_ERR(rescuer->task))
3037 goto err;
3038
Tejun Heoe22bee72010-06-29 10:07:14 +02003039 rescuer->task->flags |= PF_THREAD_BOUND;
3040 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003041 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003042
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003043 /*
3044 * workqueue_lock protects global freeze state and workqueues
3045 * list. Grab it, set max_active accordingly and add the new
3046 * workqueue to workqueues list.
3047 */
Tejun Heo15376632010-06-29 10:07:11 +02003048 spin_lock(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003049
Tejun Heo58a69cb2011-02-16 09:25:31 +01003050 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heof3421792010-07-02 10:03:51 +02003051 for_each_cwq_cpu(cpu, wq)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003052 get_cwq(cpu, wq)->max_active = 0;
3053
Tejun Heo15376632010-06-29 10:07:11 +02003054 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003055
Tejun Heo15376632010-06-29 10:07:11 +02003056 spin_unlock(&workqueue_lock);
3057
Oleg Nesterov3af244332007-05-09 02:34:09 -07003058 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003059err:
3060 if (wq) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003061 free_cwqs(wq);
Tejun Heof2e005a2010-07-20 15:59:09 +02003062 free_mayday_mask(wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02003063 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003064 kfree(wq);
3065 }
3066 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003067}
Tejun Heod320c032010-06-29 10:07:14 +02003068EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003069
3070/**
3071 * destroy_workqueue - safely terminate a workqueue
3072 * @wq: target workqueue
3073 *
3074 * Safely destroy a workqueue. All work currently pending will be done first.
3075 */
3076void destroy_workqueue(struct workqueue_struct *wq)
3077{
Tejun Heoc8e55f32010-06-29 10:07:12 +02003078 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003079
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003080 /* drain it before proceeding with destruction */
3081 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003082
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003083 /*
3084 * wq list is used to freeze wq, remove from list after
3085 * flushing is complete in case freeze races us.
3086 */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003087 spin_lock(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003088 list_del(&wq->list);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003089 spin_unlock(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003090
Tejun Heoe22bee72010-06-29 10:07:14 +02003091 /* sanity check */
Tejun Heof3421792010-07-02 10:03:51 +02003092 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02003093 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3094 int i;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003095
Tejun Heo73f53c42010-06-29 10:07:11 +02003096 for (i = 0; i < WORK_NR_COLORS; i++)
3097 BUG_ON(cwq->nr_in_flight[i]);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003098 BUG_ON(cwq->nr_active);
3099 BUG_ON(!list_empty(&cwq->delayed_works));
Tejun Heo73f53c42010-06-29 10:07:11 +02003100 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003101
Tejun Heoe22bee72010-06-29 10:07:14 +02003102 if (wq->flags & WQ_RESCUER) {
3103 kthread_stop(wq->rescuer->task);
Tejun Heof2e005a2010-07-20 15:59:09 +02003104 free_mayday_mask(wq->mayday_mask);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003105 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003106 }
3107
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003108 free_cwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003109 kfree(wq);
3110}
3111EXPORT_SYMBOL_GPL(destroy_workqueue);
3112
Tejun Heodcd989c2010-06-29 10:07:14 +02003113/**
3114 * workqueue_set_max_active - adjust max_active of a workqueue
3115 * @wq: target workqueue
3116 * @max_active: new max_active value.
3117 *
3118 * Set max_active of @wq to @max_active.
3119 *
3120 * CONTEXT:
3121 * Don't call from IRQ context.
3122 */
3123void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3124{
3125 unsigned int cpu;
3126
Tejun Heof3421792010-07-02 10:03:51 +02003127 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003128
3129 spin_lock(&workqueue_lock);
3130
3131 wq->saved_max_active = max_active;
3132
Tejun Heof3421792010-07-02 10:03:51 +02003133 for_each_cwq_cpu(cpu, wq) {
Tejun Heodcd989c2010-06-29 10:07:14 +02003134 struct global_cwq *gcwq = get_gcwq(cpu);
3135
3136 spin_lock_irq(&gcwq->lock);
3137
Tejun Heo58a69cb2011-02-16 09:25:31 +01003138 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heodcd989c2010-06-29 10:07:14 +02003139 !(gcwq->flags & GCWQ_FREEZING))
3140 get_cwq(gcwq->cpu, wq)->max_active = max_active;
3141
3142 spin_unlock_irq(&gcwq->lock);
3143 }
3144
3145 spin_unlock(&workqueue_lock);
3146}
3147EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3148
3149/**
3150 * workqueue_congested - test whether a workqueue is congested
3151 * @cpu: CPU in question
3152 * @wq: target workqueue
3153 *
3154 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3155 * no synchronization around this function and the test result is
3156 * unreliable and only useful as advisory hints or for debugging.
3157 *
3158 * RETURNS:
3159 * %true if congested, %false otherwise.
3160 */
3161bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
3162{
3163 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3164
3165 return !list_empty(&cwq->delayed_works);
3166}
3167EXPORT_SYMBOL_GPL(workqueue_congested);
3168
3169/**
3170 * work_cpu - return the last known associated cpu for @work
3171 * @work: the work of interest
3172 *
3173 * RETURNS:
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003174 * CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
Tejun Heodcd989c2010-06-29 10:07:14 +02003175 */
3176unsigned int work_cpu(struct work_struct *work)
3177{
3178 struct global_cwq *gcwq = get_work_gcwq(work);
3179
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003180 return gcwq ? gcwq->cpu : WORK_CPU_NONE;
Tejun Heodcd989c2010-06-29 10:07:14 +02003181}
3182EXPORT_SYMBOL_GPL(work_cpu);
3183
3184/**
3185 * work_busy - test whether a work is currently pending or running
3186 * @work: the work to be tested
3187 *
3188 * Test whether @work is currently pending or running. There is no
3189 * synchronization around this function and the test result is
3190 * unreliable and only useful as advisory hints or for debugging.
3191 * Especially for reentrant wqs, the pending state might hide the
3192 * running state.
3193 *
3194 * RETURNS:
3195 * OR'd bitmask of WORK_BUSY_* bits.
3196 */
3197unsigned int work_busy(struct work_struct *work)
3198{
3199 struct global_cwq *gcwq = get_work_gcwq(work);
3200 unsigned long flags;
3201 unsigned int ret = 0;
3202
3203 if (!gcwq)
3204 return false;
3205
3206 spin_lock_irqsave(&gcwq->lock, flags);
3207
3208 if (work_pending(work))
3209 ret |= WORK_BUSY_PENDING;
3210 if (find_worker_executing_work(gcwq, work))
3211 ret |= WORK_BUSY_RUNNING;
3212
3213 spin_unlock_irqrestore(&gcwq->lock, flags);
3214
3215 return ret;
3216}
3217EXPORT_SYMBOL_GPL(work_busy);
3218
Tejun Heodb7bccf2010-06-29 10:07:12 +02003219/*
3220 * CPU hotplug.
3221 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003222 * There are two challenges in supporting CPU hotplug. Firstly, there
3223 * are a lot of assumptions on strong associations among work, cwq and
3224 * gcwq which make migrating pending and scheduled works very
3225 * difficult to implement without impacting hot paths. Secondly,
3226 * gcwqs serve mix of short, long and very long running works making
3227 * blocked draining impractical.
3228 *
3229 * This is solved by allowing a gcwq to be detached from CPU, running
3230 * it with unbound (rogue) workers and allowing it to be reattached
3231 * later if the cpu comes back online. A separate thread is created
3232 * to govern a gcwq in such state and is called the trustee of the
3233 * gcwq.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003234 *
3235 * Trustee states and their descriptions.
3236 *
3237 * START Command state used on startup. On CPU_DOWN_PREPARE, a
3238 * new trustee is started with this state.
3239 *
3240 * IN_CHARGE Once started, trustee will enter this state after
Tejun Heoe22bee72010-06-29 10:07:14 +02003241 * assuming the manager role and making all existing
3242 * workers rogue. DOWN_PREPARE waits for trustee to
3243 * enter this state. After reaching IN_CHARGE, trustee
3244 * tries to execute the pending worklist until it's empty
3245 * and the state is set to BUTCHER, or the state is set
3246 * to RELEASE.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003247 *
3248 * BUTCHER Command state which is set by the cpu callback after
3249 * the cpu has went down. Once this state is set trustee
3250 * knows that there will be no new works on the worklist
3251 * and once the worklist is empty it can proceed to
3252 * killing idle workers.
3253 *
3254 * RELEASE Command state which is set by the cpu callback if the
3255 * cpu down has been canceled or it has come online
3256 * again. After recognizing this state, trustee stops
Tejun Heoe22bee72010-06-29 10:07:14 +02003257 * trying to drain or butcher and clears ROGUE, rebinds
3258 * all remaining workers back to the cpu and releases
3259 * manager role.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003260 *
3261 * DONE Trustee will enter this state after BUTCHER or RELEASE
3262 * is complete.
3263 *
3264 * trustee CPU draining
3265 * took over down complete
3266 * START -----------> IN_CHARGE -----------> BUTCHER -----------> DONE
3267 * | | ^
3268 * | CPU is back online v return workers |
3269 * ----------------> RELEASE --------------
3270 */
3271
3272/**
3273 * trustee_wait_event_timeout - timed event wait for trustee
3274 * @cond: condition to wait for
3275 * @timeout: timeout in jiffies
3276 *
3277 * wait_event_timeout() for trustee to use. Handles locking and
3278 * checks for RELEASE request.
3279 *
3280 * CONTEXT:
3281 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3282 * multiple times. To be used by trustee.
3283 *
3284 * RETURNS:
3285 * Positive indicating left time if @cond is satisfied, 0 if timed
3286 * out, -1 if canceled.
3287 */
3288#define trustee_wait_event_timeout(cond, timeout) ({ \
3289 long __ret = (timeout); \
3290 while (!((cond) || (gcwq->trustee_state == TRUSTEE_RELEASE)) && \
3291 __ret) { \
3292 spin_unlock_irq(&gcwq->lock); \
3293 __wait_event_timeout(gcwq->trustee_wait, (cond) || \
3294 (gcwq->trustee_state == TRUSTEE_RELEASE), \
3295 __ret); \
3296 spin_lock_irq(&gcwq->lock); \
3297 } \
3298 gcwq->trustee_state == TRUSTEE_RELEASE ? -1 : (__ret); \
3299})
3300
3301/**
3302 * trustee_wait_event - event wait for trustee
3303 * @cond: condition to wait for
3304 *
3305 * wait_event() for trustee to use. Automatically handles locking and
3306 * checks for CANCEL request.
3307 *
3308 * CONTEXT:
3309 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3310 * multiple times. To be used by trustee.
3311 *
3312 * RETURNS:
3313 * 0 if @cond is satisfied, -1 if canceled.
3314 */
3315#define trustee_wait_event(cond) ({ \
3316 long __ret1; \
3317 __ret1 = trustee_wait_event_timeout(cond, MAX_SCHEDULE_TIMEOUT);\
3318 __ret1 < 0 ? -1 : 0; \
3319})
3320
3321static int __cpuinit trustee_thread(void *__gcwq)
3322{
3323 struct global_cwq *gcwq = __gcwq;
3324 struct worker *worker;
Tejun Heoe22bee72010-06-29 10:07:14 +02003325 struct work_struct *work;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003326 struct hlist_node *pos;
Tejun Heoe22bee72010-06-29 10:07:14 +02003327 long rc;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003328 int i;
3329
3330 BUG_ON(gcwq->cpu != smp_processor_id());
3331
3332 spin_lock_irq(&gcwq->lock);
3333 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02003334 * Claim the manager position and make all workers rogue.
3335 * Trustee must be bound to the target cpu and can't be
3336 * cancelled.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003337 */
3338 BUG_ON(gcwq->cpu != smp_processor_id());
Tejun Heoe22bee72010-06-29 10:07:14 +02003339 rc = trustee_wait_event(!(gcwq->flags & GCWQ_MANAGING_WORKERS));
3340 BUG_ON(rc < 0);
3341
3342 gcwq->flags |= GCWQ_MANAGING_WORKERS;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003343
3344 list_for_each_entry(worker, &gcwq->idle_list, entry)
Tejun Heocb444762010-07-02 10:03:50 +02003345 worker->flags |= WORKER_ROGUE;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003346
3347 for_each_busy_worker(worker, i, pos, gcwq)
Tejun Heocb444762010-07-02 10:03:50 +02003348 worker->flags |= WORKER_ROGUE;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003349
3350 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02003351 * Call schedule() so that we cross rq->lock and thus can
3352 * guarantee sched callbacks see the rogue flag. This is
3353 * necessary as scheduler callbacks may be invoked from other
3354 * cpus.
3355 */
3356 spin_unlock_irq(&gcwq->lock);
3357 schedule();
3358 spin_lock_irq(&gcwq->lock);
3359
3360 /*
Tejun Heocb444762010-07-02 10:03:50 +02003361 * Sched callbacks are disabled now. Zap nr_running. After
3362 * this, nr_running stays zero and need_more_worker() and
3363 * keep_working() are always true as long as the worklist is
3364 * not empty.
Tejun Heoe22bee72010-06-29 10:07:14 +02003365 */
Tejun Heocb444762010-07-02 10:03:50 +02003366 atomic_set(get_gcwq_nr_running(gcwq->cpu), 0);
Tejun Heoe22bee72010-06-29 10:07:14 +02003367
3368 spin_unlock_irq(&gcwq->lock);
3369 del_timer_sync(&gcwq->idle_timer);
3370 spin_lock_irq(&gcwq->lock);
3371
3372 /*
Tejun Heodb7bccf2010-06-29 10:07:12 +02003373 * We're now in charge. Notify and proceed to drain. We need
3374 * to keep the gcwq running during the whole CPU down
3375 * procedure as other cpu hotunplug callbacks may need to
3376 * flush currently running tasks.
3377 */
3378 gcwq->trustee_state = TRUSTEE_IN_CHARGE;
3379 wake_up_all(&gcwq->trustee_wait);
3380
3381 /*
3382 * The original cpu is in the process of dying and may go away
3383 * anytime now. When that happens, we and all workers would
Tejun Heoe22bee72010-06-29 10:07:14 +02003384 * be migrated to other cpus. Try draining any left work. We
3385 * want to get it over with ASAP - spam rescuers, wake up as
3386 * many idlers as necessary and create new ones till the
3387 * worklist is empty. Note that if the gcwq is frozen, there
Tejun Heo58a69cb2011-02-16 09:25:31 +01003388 * may be frozen works in freezable cwqs. Don't declare
Tejun Heoe22bee72010-06-29 10:07:14 +02003389 * completion while frozen.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003390 */
3391 while (gcwq->nr_workers != gcwq->nr_idle ||
3392 gcwq->flags & GCWQ_FREEZING ||
3393 gcwq->trustee_state == TRUSTEE_IN_CHARGE) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003394 int nr_works = 0;
3395
3396 list_for_each_entry(work, &gcwq->worklist, entry) {
3397 send_mayday(work);
3398 nr_works++;
3399 }
3400
3401 list_for_each_entry(worker, &gcwq->idle_list, entry) {
3402 if (!nr_works--)
3403 break;
3404 wake_up_process(worker->task);
3405 }
3406
3407 if (need_to_create_worker(gcwq)) {
3408 spin_unlock_irq(&gcwq->lock);
3409 worker = create_worker(gcwq, false);
3410 spin_lock_irq(&gcwq->lock);
3411 if (worker) {
Tejun Heocb444762010-07-02 10:03:50 +02003412 worker->flags |= WORKER_ROGUE;
Tejun Heoe22bee72010-06-29 10:07:14 +02003413 start_worker(worker);
3414 }
3415 }
3416
Tejun Heodb7bccf2010-06-29 10:07:12 +02003417 /* give a breather */
3418 if (trustee_wait_event_timeout(false, TRUSTEE_COOLDOWN) < 0)
3419 break;
3420 }
3421
Tejun Heoe22bee72010-06-29 10:07:14 +02003422 /*
3423 * Either all works have been scheduled and cpu is down, or
3424 * cpu down has already been canceled. Wait for and butcher
3425 * all workers till we're canceled.
3426 */
3427 do {
3428 rc = trustee_wait_event(!list_empty(&gcwq->idle_list));
3429 while (!list_empty(&gcwq->idle_list))
3430 destroy_worker(list_first_entry(&gcwq->idle_list,
3431 struct worker, entry));
3432 } while (gcwq->nr_workers && rc >= 0);
3433
3434 /*
3435 * At this point, either draining has completed and no worker
3436 * is left, or cpu down has been canceled or the cpu is being
3437 * brought back up. There shouldn't be any idle one left.
3438 * Tell the remaining busy ones to rebind once it finishes the
3439 * currently scheduled works by scheduling the rebind_work.
3440 */
3441 WARN_ON(!list_empty(&gcwq->idle_list));
3442
3443 for_each_busy_worker(worker, i, pos, gcwq) {
3444 struct work_struct *rebind_work = &worker->rebind_work;
3445
3446 /*
3447 * Rebind_work may race with future cpu hotplug
3448 * operations. Use a separate flag to mark that
3449 * rebinding is scheduled.
3450 */
Tejun Heocb444762010-07-02 10:03:50 +02003451 worker->flags |= WORKER_REBIND;
3452 worker->flags &= ~WORKER_ROGUE;
Tejun Heoe22bee72010-06-29 10:07:14 +02003453
3454 /* queue rebind_work, wq doesn't matter, use the default one */
3455 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
3456 work_data_bits(rebind_work)))
3457 continue;
3458
3459 debug_work_activate(rebind_work);
Tejun Heod320c032010-06-29 10:07:14 +02003460 insert_work(get_cwq(gcwq->cpu, system_wq), rebind_work,
Tejun Heoe22bee72010-06-29 10:07:14 +02003461 worker->scheduled.next,
3462 work_color_to_flags(WORK_NO_COLOR));
3463 }
3464
3465 /* relinquish manager role */
3466 gcwq->flags &= ~GCWQ_MANAGING_WORKERS;
3467
Tejun Heodb7bccf2010-06-29 10:07:12 +02003468 /* notify completion */
3469 gcwq->trustee = NULL;
3470 gcwq->trustee_state = TRUSTEE_DONE;
3471 wake_up_all(&gcwq->trustee_wait);
3472 spin_unlock_irq(&gcwq->lock);
3473 return 0;
3474}
3475
3476/**
3477 * wait_trustee_state - wait for trustee to enter the specified state
3478 * @gcwq: gcwq the trustee of interest belongs to
3479 * @state: target state to wait for
3480 *
3481 * Wait for the trustee to reach @state. DONE is already matched.
3482 *
3483 * CONTEXT:
3484 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3485 * multiple times. To be used by cpu_callback.
3486 */
3487static void __cpuinit wait_trustee_state(struct global_cwq *gcwq, int state)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09003488__releases(&gcwq->lock)
3489__acquires(&gcwq->lock)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003490{
3491 if (!(gcwq->trustee_state == state ||
3492 gcwq->trustee_state == TRUSTEE_DONE)) {
3493 spin_unlock_irq(&gcwq->lock);
3494 __wait_event(gcwq->trustee_wait,
3495 gcwq->trustee_state == state ||
3496 gcwq->trustee_state == TRUSTEE_DONE);
3497 spin_lock_irq(&gcwq->lock);
3498 }
3499}
3500
Oleg Nesterov3af244332007-05-09 02:34:09 -07003501static int __devinit workqueue_cpu_callback(struct notifier_block *nfb,
3502 unsigned long action,
3503 void *hcpu)
3504{
3505 unsigned int cpu = (unsigned long)hcpu;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003506 struct global_cwq *gcwq = get_gcwq(cpu);
3507 struct task_struct *new_trustee = NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +02003508 struct worker *uninitialized_var(new_worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003509 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003511 action &= ~CPU_TASKS_FROZEN;
3512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 switch (action) {
Tejun Heodb7bccf2010-06-29 10:07:12 +02003514 case CPU_DOWN_PREPARE:
3515 new_trustee = kthread_create(trustee_thread, gcwq,
3516 "workqueue_trustee/%d\n", cpu);
3517 if (IS_ERR(new_trustee))
3518 return notifier_from_errno(PTR_ERR(new_trustee));
3519 kthread_bind(new_trustee, cpu);
Tejun Heoe22bee72010-06-29 10:07:14 +02003520 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 case CPU_UP_PREPARE:
Tejun Heoe22bee72010-06-29 10:07:14 +02003522 BUG_ON(gcwq->first_idle);
3523 new_worker = create_worker(gcwq, false);
3524 if (!new_worker) {
3525 if (new_trustee)
3526 kthread_stop(new_trustee);
3527 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 }
3530
Tejun Heodb7bccf2010-06-29 10:07:12 +02003531 /* some are called w/ irq disabled, don't disturb irq status */
3532 spin_lock_irqsave(&gcwq->lock, flags);
3533
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003534 switch (action) {
Tejun Heodb7bccf2010-06-29 10:07:12 +02003535 case CPU_DOWN_PREPARE:
3536 /* initialize trustee and tell it to acquire the gcwq */
3537 BUG_ON(gcwq->trustee || gcwq->trustee_state != TRUSTEE_DONE);
3538 gcwq->trustee = new_trustee;
3539 gcwq->trustee_state = TRUSTEE_START;
3540 wake_up_process(gcwq->trustee);
3541 wait_trustee_state(gcwq, TRUSTEE_IN_CHARGE);
Tejun Heoe22bee72010-06-29 10:07:14 +02003542 /* fall through */
3543 case CPU_UP_PREPARE:
3544 BUG_ON(gcwq->first_idle);
3545 gcwq->first_idle = new_worker;
3546 break;
3547
3548 case CPU_DYING:
3549 /*
3550 * Before this, the trustee and all workers except for
3551 * the ones which are still executing works from
3552 * before the last CPU down must be on the cpu. After
3553 * this, they'll all be diasporas.
3554 */
3555 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003556 break;
3557
Oleg Nesterov3da1c842008-07-25 01:47:50 -07003558 case CPU_POST_DEAD:
Tejun Heodb7bccf2010-06-29 10:07:12 +02003559 gcwq->trustee_state = TRUSTEE_BUTCHER;
Tejun Heoe22bee72010-06-29 10:07:14 +02003560 /* fall through */
3561 case CPU_UP_CANCELED:
3562 destroy_worker(gcwq->first_idle);
3563 gcwq->first_idle = NULL;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003564 break;
3565
3566 case CPU_DOWN_FAILED:
3567 case CPU_ONLINE:
Tejun Heoe22bee72010-06-29 10:07:14 +02003568 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003569 if (gcwq->trustee_state != TRUSTEE_DONE) {
3570 gcwq->trustee_state = TRUSTEE_RELEASE;
3571 wake_up_process(gcwq->trustee);
3572 wait_trustee_state(gcwq, TRUSTEE_DONE);
3573 }
3574
Tejun Heoe22bee72010-06-29 10:07:14 +02003575 /*
3576 * Trustee is done and there might be no worker left.
3577 * Put the first_idle in and request a real manager to
3578 * take a look.
3579 */
3580 spin_unlock_irq(&gcwq->lock);
3581 kthread_bind(gcwq->first_idle->task, cpu);
3582 spin_lock_irq(&gcwq->lock);
3583 gcwq->flags |= GCWQ_MANAGE_WORKERS;
3584 start_worker(gcwq->first_idle);
3585 gcwq->first_idle = NULL;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003586 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003587 }
3588
Tejun Heodb7bccf2010-06-29 10:07:12 +02003589 spin_unlock_irqrestore(&gcwq->lock, flags);
3590
Tejun Heo15376632010-06-29 10:07:11 +02003591 return notifier_from_errno(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
Rusty Russell2d3854a2008-11-05 13:39:10 +11003594#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003595
Rusty Russell2d3854a2008-11-05 13:39:10 +11003596struct work_for_cpu {
Andrew Morton6b44003e2009-04-09 09:50:37 -06003597 struct completion completion;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003598 long (*fn)(void *);
3599 void *arg;
3600 long ret;
3601};
3602
Andrew Morton6b44003e2009-04-09 09:50:37 -06003603static int do_work_for_cpu(void *_wfc)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003604{
Andrew Morton6b44003e2009-04-09 09:50:37 -06003605 struct work_for_cpu *wfc = _wfc;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003606 wfc->ret = wfc->fn(wfc->arg);
Andrew Morton6b44003e2009-04-09 09:50:37 -06003607 complete(&wfc->completion);
3608 return 0;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003609}
3610
3611/**
3612 * work_on_cpu - run a function in user context on a particular cpu
3613 * @cpu: the cpu to run on
3614 * @fn: the function to run
3615 * @arg: the function arg
3616 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003617 * This will return the value @fn returns.
3618 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b44003e2009-04-09 09:50:37 -06003619 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003620 */
3621long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3622{
Andrew Morton6b44003e2009-04-09 09:50:37 -06003623 struct task_struct *sub_thread;
3624 struct work_for_cpu wfc = {
3625 .completion = COMPLETION_INITIALIZER_ONSTACK(wfc.completion),
3626 .fn = fn,
3627 .arg = arg,
3628 };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003629
Andrew Morton6b44003e2009-04-09 09:50:37 -06003630 sub_thread = kthread_create(do_work_for_cpu, &wfc, "work_for_cpu");
3631 if (IS_ERR(sub_thread))
3632 return PTR_ERR(sub_thread);
3633 kthread_bind(sub_thread, cpu);
3634 wake_up_process(sub_thread);
3635 wait_for_completion(&wfc.completion);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003636 return wfc.ret;
3637}
3638EXPORT_SYMBOL_GPL(work_on_cpu);
3639#endif /* CONFIG_SMP */
3640
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003641#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303642
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003643/**
3644 * freeze_workqueues_begin - begin freezing workqueues
3645 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003646 * Start freezing workqueues. After this function returns, all freezable
3647 * workqueues will queue new works to their frozen_works list instead of
3648 * gcwq->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003649 *
3650 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003651 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003652 */
3653void freeze_workqueues_begin(void)
3654{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003655 unsigned int cpu;
3656
3657 spin_lock(&workqueue_lock);
3658
3659 BUG_ON(workqueue_freezing);
3660 workqueue_freezing = true;
3661
Tejun Heof3421792010-07-02 10:03:51 +02003662 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003663 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003664 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003665
3666 spin_lock_irq(&gcwq->lock);
3667
Tejun Heodb7bccf2010-06-29 10:07:12 +02003668 BUG_ON(gcwq->flags & GCWQ_FREEZING);
3669 gcwq->flags |= GCWQ_FREEZING;
3670
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003671 list_for_each_entry(wq, &workqueues, list) {
3672 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3673
Tejun Heo58a69cb2011-02-16 09:25:31 +01003674 if (cwq && wq->flags & WQ_FREEZABLE)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003675 cwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003676 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003677
3678 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003679 }
3680
3681 spin_unlock(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003683
3684/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003685 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003686 *
3687 * Check whether freezing is complete. This function must be called
3688 * between freeze_workqueues_begin() and thaw_workqueues().
3689 *
3690 * CONTEXT:
3691 * Grabs and releases workqueue_lock.
3692 *
3693 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003694 * %true if some freezable workqueues are still busy. %false if freezing
3695 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003696 */
3697bool freeze_workqueues_busy(void)
3698{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003699 unsigned int cpu;
3700 bool busy = false;
3701
3702 spin_lock(&workqueue_lock);
3703
3704 BUG_ON(!workqueue_freezing);
3705
Tejun Heof3421792010-07-02 10:03:51 +02003706 for_each_gcwq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003707 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003708 /*
3709 * nr_active is monotonically decreasing. It's safe
3710 * to peek without lock.
3711 */
3712 list_for_each_entry(wq, &workqueues, list) {
3713 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3714
Tejun Heo58a69cb2011-02-16 09:25:31 +01003715 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003716 continue;
3717
3718 BUG_ON(cwq->nr_active < 0);
3719 if (cwq->nr_active) {
3720 busy = true;
3721 goto out_unlock;
3722 }
3723 }
3724 }
3725out_unlock:
3726 spin_unlock(&workqueue_lock);
3727 return busy;
3728}
3729
3730/**
3731 * thaw_workqueues - thaw workqueues
3732 *
3733 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo7e116292010-06-29 10:07:13 +02003734 * frozen works are transferred to their respective gcwq worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003735 *
3736 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003737 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003738 */
3739void thaw_workqueues(void)
3740{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003741 unsigned int cpu;
3742
3743 spin_lock(&workqueue_lock);
3744
3745 if (!workqueue_freezing)
3746 goto out_unlock;
3747
Tejun Heof3421792010-07-02 10:03:51 +02003748 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003749 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003750 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003751
3752 spin_lock_irq(&gcwq->lock);
3753
Tejun Heodb7bccf2010-06-29 10:07:12 +02003754 BUG_ON(!(gcwq->flags & GCWQ_FREEZING));
3755 gcwq->flags &= ~GCWQ_FREEZING;
3756
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003757 list_for_each_entry(wq, &workqueues, list) {
3758 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3759
Tejun Heo58a69cb2011-02-16 09:25:31 +01003760 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003761 continue;
3762
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003763 /* restore max_active and repopulate worklist */
3764 cwq->max_active = wq->saved_max_active;
3765
3766 while (!list_empty(&cwq->delayed_works) &&
3767 cwq->nr_active < cwq->max_active)
3768 cwq_activate_first_delayed(cwq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003769 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003770
Tejun Heoe22bee72010-06-29 10:07:14 +02003771 wake_up_worker(gcwq);
3772
Tejun Heo8b03ae32010-06-29 10:07:12 +02003773 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003774 }
3775
3776 workqueue_freezing = false;
3777out_unlock:
3778 spin_unlock(&workqueue_lock);
3779}
3780#endif /* CONFIG_FREEZER */
3781
Suresh Siddha6ee05782010-07-30 14:57:37 -07003782static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783{
Tejun Heoc34056a2010-06-29 10:07:11 +02003784 unsigned int cpu;
Tejun Heoc8e55f32010-06-29 10:07:12 +02003785 int i;
Tejun Heoc34056a2010-06-29 10:07:11 +02003786
Tejun Heof6500942010-08-09 11:50:34 +02003787 cpu_notifier(workqueue_cpu_callback, CPU_PRI_WORKQUEUE);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003788
3789 /* initialize gcwqs */
Tejun Heof3421792010-07-02 10:03:51 +02003790 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003791 struct global_cwq *gcwq = get_gcwq(cpu);
3792
3793 spin_lock_init(&gcwq->lock);
Tejun Heo7e116292010-06-29 10:07:13 +02003794 INIT_LIST_HEAD(&gcwq->worklist);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003795 gcwq->cpu = cpu;
Tejun Heo477a3c32010-08-31 10:54:35 +02003796 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003797
Tejun Heoc8e55f32010-06-29 10:07:12 +02003798 INIT_LIST_HEAD(&gcwq->idle_list);
3799 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++)
3800 INIT_HLIST_HEAD(&gcwq->busy_hash[i]);
3801
Tejun Heoe22bee72010-06-29 10:07:14 +02003802 init_timer_deferrable(&gcwq->idle_timer);
3803 gcwq->idle_timer.function = idle_worker_timeout;
3804 gcwq->idle_timer.data = (unsigned long)gcwq;
3805
3806 setup_timer(&gcwq->mayday_timer, gcwq_mayday_timeout,
3807 (unsigned long)gcwq);
3808
Tejun Heo8b03ae32010-06-29 10:07:12 +02003809 ida_init(&gcwq->worker_ida);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003810
3811 gcwq->trustee_state = TRUSTEE_DONE;
3812 init_waitqueue_head(&gcwq->trustee_wait);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003813 }
3814
Tejun Heoe22bee72010-06-29 10:07:14 +02003815 /* create the initial worker */
Tejun Heof3421792010-07-02 10:03:51 +02003816 for_each_online_gcwq_cpu(cpu) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003817 struct global_cwq *gcwq = get_gcwq(cpu);
3818 struct worker *worker;
3819
Tejun Heo477a3c32010-08-31 10:54:35 +02003820 if (cpu != WORK_CPU_UNBOUND)
3821 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heoe22bee72010-06-29 10:07:14 +02003822 worker = create_worker(gcwq, true);
3823 BUG_ON(!worker);
3824 spin_lock_irq(&gcwq->lock);
3825 start_worker(worker);
3826 spin_unlock_irq(&gcwq->lock);
3827 }
3828
Tejun Heod320c032010-06-29 10:07:14 +02003829 system_wq = alloc_workqueue("events", 0, 0);
3830 system_long_wq = alloc_workqueue("events_long", 0, 0);
3831 system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003832 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3833 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003834 system_freezable_wq = alloc_workqueue("events_freezable",
3835 WQ_FREEZABLE, 0);
Hitoshi Mitakee5cba242010-11-26 12:06:44 +01003836 BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq ||
Tejun Heo24d51ad2011-02-21 09:52:50 +01003837 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003840early_initcall(init_workqueues);