blob: 20d6237d7498bf389d5c9a9d95dd728d69c7781b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/workqueue.c
3 *
4 * Generic mechanism for defining kernel helper threads for running
5 * arbitrary tasks in process context.
6 *
7 * Started by Ingo Molnar, Copyright (C) 2002
8 *
9 * Derived from the taskqueue/keventd code by:
10 *
11 * David Woodhouse <dwmw2@infradead.org>
Francois Camie1f8e872008-10-15 22:01:59 -070012 * Andrew Morton
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
14 * Theodore Ts'o <tytso@mit.edu>
Christoph Lameter89ada672005-10-30 15:01:59 -080015 *
Christoph Lametercde53532008-07-04 09:59:22 -070016 * Made to use alloc_percpu by Christoph Lameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/module.h>
20#include <linux/kernel.h>
21#include <linux/sched.h>
22#include <linux/init.h>
23#include <linux/signal.h>
24#include <linux/completion.h>
25#include <linux/workqueue.h>
26#include <linux/slab.h>
27#include <linux/cpu.h>
28#include <linux/notifier.h>
29#include <linux/kthread.h>
James Bottomley1fa44ec2006-02-23 12:43:43 -060030#include <linux/hardirq.h>
Christoph Lameter46934022006-10-11 01:21:26 -070031#include <linux/mempolicy.h>
Rafael J. Wysocki341a5952006-12-06 20:34:49 -080032#include <linux/freezer.h>
Peter Zijlstrad5abe662006-12-06 20:37:26 -080033#include <linux/kallsyms.h>
34#include <linux/debug_locks.h>
Johannes Berg4e6045f2007-10-18 23:39:55 -070035#include <linux/lockdep.h>
Tejun Heoc34056a2010-06-29 10:07:11 +020036#include <linux/idr.h>
Tejun Heoe22bee72010-06-29 10:07:14 +020037
38#include "workqueue_sched.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Tejun Heoc8e55f32010-06-29 10:07:12 +020040enum {
Tejun Heodb7bccf2010-06-29 10:07:12 +020041 /* global_cwq flags */
Tejun Heoe22bee72010-06-29 10:07:14 +020042 GCWQ_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
43 GCWQ_MANAGING_WORKERS = 1 << 1, /* managing workers */
44 GCWQ_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020045 GCWQ_FREEZING = 1 << 3, /* freeze in progress */
Tejun Heo649027d2010-06-29 10:07:14 +020046 GCWQ_HIGHPRI_PENDING = 1 << 4, /* highpri works on queue */
Tejun Heodb7bccf2010-06-29 10:07:12 +020047
Tejun Heoc8e55f32010-06-29 10:07:12 +020048 /* worker flags */
49 WORKER_STARTED = 1 << 0, /* started */
50 WORKER_DIE = 1 << 1, /* die die die */
51 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020052 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heodb7bccf2010-06-29 10:07:12 +020053 WORKER_ROGUE = 1 << 4, /* not bound to any cpu */
Tejun Heoe22bee72010-06-29 10:07:14 +020054 WORKER_REBIND = 1 << 5, /* mom is home, come back */
Tejun Heofb0e7be2010-06-29 10:07:15 +020055 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020056 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020057
Tejun Heofb0e7be2010-06-29 10:07:15 +020058 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_ROGUE | WORKER_REBIND |
Tejun Heof3421792010-07-02 10:03:51 +020059 WORKER_CPU_INTENSIVE | WORKER_UNBOUND,
Tejun Heodb7bccf2010-06-29 10:07:12 +020060
61 /* gcwq->trustee_state */
62 TRUSTEE_START = 0, /* start */
63 TRUSTEE_IN_CHARGE = 1, /* trustee in charge of gcwq */
64 TRUSTEE_BUTCHER = 2, /* butcher workers */
65 TRUSTEE_RELEASE = 3, /* release workers */
66 TRUSTEE_DONE = 4, /* trustee is done */
Tejun Heoc8e55f32010-06-29 10:07:12 +020067
68 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
69 BUSY_WORKER_HASH_SIZE = 1 << BUSY_WORKER_HASH_ORDER,
70 BUSY_WORKER_HASH_MASK = BUSY_WORKER_HASH_SIZE - 1,
Tejun Heodb7bccf2010-06-29 10:07:12 +020071
Tejun Heoe22bee72010-06-29 10:07:14 +020072 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
73 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
74
75 MAYDAY_INITIAL_TIMEOUT = HZ / 100, /* call for help after 10ms */
76 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
77 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heodb7bccf2010-06-29 10:07:12 +020078 TRUSTEE_COOLDOWN = HZ / 10, /* for trustee draining */
Tejun Heoe22bee72010-06-29 10:07:14 +020079
80 /*
81 * Rescue workers are used only on emergencies and shared by
82 * all cpus. Give -20.
83 */
84 RESCUER_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +020085};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
Tejun Heo4690c4a2010-06-29 10:07:10 +020088 * Structure fields follow one of the following exclusion rules.
89 *
90 * I: Set during initialization and read-only afterwards.
91 *
Tejun Heoe22bee72010-06-29 10:07:14 +020092 * P: Preemption protected. Disabling preemption is enough and should
93 * only be modified and accessed from the local cpu.
94 *
Tejun Heo8b03ae32010-06-29 10:07:12 +020095 * L: gcwq->lock protected. Access with gcwq->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +020096 *
Tejun Heoe22bee72010-06-29 10:07:14 +020097 * X: During normal operation, modification requires gcwq->lock and
98 * should be done only from local cpu. Either disabling preemption
99 * on local cpu or grabbing gcwq->lock is enough for read access.
Tejun Heof3421792010-07-02 10:03:51 +0200100 * If GCWQ_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200101 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200102 * F: wq->flush_mutex protected.
103 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200104 * W: workqueue_lock protected.
105 */
106
Tejun Heo8b03ae32010-06-29 10:07:12 +0200107struct global_cwq;
Tejun Heoc34056a2010-06-29 10:07:11 +0200108
Tejun Heoe22bee72010-06-29 10:07:14 +0200109/*
110 * The poor guys doing the actual heavy lifting. All on-duty workers
111 * are either serving the manager role, on idle list or on busy hash.
112 */
Tejun Heoc34056a2010-06-29 10:07:11 +0200113struct worker {
Tejun Heoc8e55f32010-06-29 10:07:12 +0200114 /* on idle list while idle, on busy hash table while busy */
115 union {
116 struct list_head entry; /* L: while idle */
117 struct hlist_node hentry; /* L: while busy */
118 };
119
Tejun Heoc34056a2010-06-29 10:07:11 +0200120 struct work_struct *current_work; /* L: work being processed */
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200121 struct cpu_workqueue_struct *current_cwq; /* L: current_work's cwq */
Tejun Heoaffee4b2010-06-29 10:07:12 +0200122 struct list_head scheduled; /* L: scheduled works */
Tejun Heoc34056a2010-06-29 10:07:11 +0200123 struct task_struct *task; /* I: worker task */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200124 struct global_cwq *gcwq; /* I: the associated gcwq */
Tejun Heoe22bee72010-06-29 10:07:14 +0200125 /* 64 bytes boundary on 64bit, 32 on 32bit */
126 unsigned long last_active; /* L: last active timestamp */
127 unsigned int flags; /* X: flags */
Tejun Heoc34056a2010-06-29 10:07:11 +0200128 int id; /* I: worker id */
Tejun Heoe22bee72010-06-29 10:07:14 +0200129 struct work_struct rebind_work; /* L: rebind worker to cpu */
Tejun Heoc34056a2010-06-29 10:07:11 +0200130};
131
Tejun Heo4690c4a2010-06-29 10:07:10 +0200132/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200133 * Global per-cpu workqueue. There's one and only one for each cpu
134 * and all works are queued and processed here regardless of their
135 * target workqueues.
Tejun Heo8b03ae32010-06-29 10:07:12 +0200136 */
137struct global_cwq {
138 spinlock_t lock; /* the gcwq lock */
Tejun Heo7e116292010-06-29 10:07:13 +0200139 struct list_head worklist; /* L: list of pending works */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200140 unsigned int cpu; /* I: the associated cpu */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200141 unsigned int flags; /* L: GCWQ_* flags */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200142
143 int nr_workers; /* L: total number of workers */
144 int nr_idle; /* L: currently idle ones */
145
146 /* workers are chained either in the idle_list or busy_hash */
Tejun Heoe22bee72010-06-29 10:07:14 +0200147 struct list_head idle_list; /* X: list of idle workers */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200148 struct hlist_head busy_hash[BUSY_WORKER_HASH_SIZE];
149 /* L: hash of busy workers */
150
Tejun Heoe22bee72010-06-29 10:07:14 +0200151 struct timer_list idle_timer; /* L: worker idle timeout */
152 struct timer_list mayday_timer; /* L: SOS timer for dworkers */
153
Tejun Heo8b03ae32010-06-29 10:07:12 +0200154 struct ida worker_ida; /* L: for worker IDs */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200155
156 struct task_struct *trustee; /* L: for gcwq shutdown */
157 unsigned int trustee_state; /* L: trustee state */
158 wait_queue_head_t trustee_wait; /* trustee wait */
Tejun Heoe22bee72010-06-29 10:07:14 +0200159 struct worker *first_idle; /* L: first idle worker */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200160} ____cacheline_aligned_in_smp;
161
162/*
Tejun Heo502ca9d2010-06-29 10:07:13 +0200163 * The per-CPU workqueue. The lower WORK_STRUCT_FLAG_BITS of
Tejun Heo0f900042010-06-29 10:07:11 +0200164 * work_struct->data are used for flags and thus cwqs need to be
165 * aligned at two's power of the number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 */
167struct cpu_workqueue_struct {
Tejun Heo8b03ae32010-06-29 10:07:12 +0200168 struct global_cwq *gcwq; /* I: the associated gcwq */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200169 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200170 int work_color; /* L: current color */
171 int flush_color; /* L: flushing color */
172 int nr_in_flight[WORK_NR_COLORS];
173 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200174 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200175 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200176 struct list_head delayed_works; /* L: delayed works */
Tejun Heo0f900042010-06-29 10:07:11 +0200177};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200180 * Structure used to wait for workqueue flush.
181 */
182struct wq_flusher {
183 struct list_head list; /* F: list of flushers */
184 int flush_color; /* F: flush color waiting for */
185 struct completion done; /* flush completion */
186};
187
188/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * The externally visible workqueue abstraction is an array of
190 * per-CPU workqueues:
191 */
192struct workqueue_struct {
Tejun Heo97e37d72010-06-29 10:07:10 +0200193 unsigned int flags; /* I: WQ_* flags */
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200194 union {
195 struct cpu_workqueue_struct __percpu *pcpu;
196 struct cpu_workqueue_struct *single;
197 unsigned long v;
198 } cpu_wq; /* I: cwq's */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200199 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200200
201 struct mutex flush_mutex; /* protects wq flushing */
202 int work_color; /* F: current work color */
203 int flush_color; /* F: current flush color */
204 atomic_t nr_cwqs_to_flush; /* flush in progress */
205 struct wq_flusher *first_flusher; /* F: first flusher */
206 struct list_head flusher_queue; /* F: flush waiters */
207 struct list_head flusher_overflow; /* F: flush overflow list */
208
Tejun Heoe22bee72010-06-29 10:07:14 +0200209 cpumask_var_t mayday_mask; /* cpus requesting rescue */
210 struct worker *rescuer; /* I: rescue worker */
211
Tejun Heodcd989c2010-06-29 10:07:14 +0200212 int saved_max_active; /* W: saved cwq max_active */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200213 const char *name; /* I: workqueue name */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700214#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200215 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700216#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
Tejun Heod320c032010-06-29 10:07:14 +0200219struct workqueue_struct *system_wq __read_mostly;
220struct workqueue_struct *system_long_wq __read_mostly;
221struct workqueue_struct *system_nrt_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200222struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200223EXPORT_SYMBOL_GPL(system_wq);
224EXPORT_SYMBOL_GPL(system_long_wq);
225EXPORT_SYMBOL_GPL(system_nrt_wq);
Tejun Heof3421792010-07-02 10:03:51 +0200226EXPORT_SYMBOL_GPL(system_unbound_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200227
Tejun Heodb7bccf2010-06-29 10:07:12 +0200228#define for_each_busy_worker(worker, i, pos, gcwq) \
229 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++) \
230 hlist_for_each_entry(worker, pos, &gcwq->busy_hash[i], hentry)
231
Tejun Heof3421792010-07-02 10:03:51 +0200232static inline int __next_gcwq_cpu(int cpu, const struct cpumask *mask,
233 unsigned int sw)
234{
235 if (cpu < nr_cpu_ids) {
236 if (sw & 1) {
237 cpu = cpumask_next(cpu, mask);
238 if (cpu < nr_cpu_ids)
239 return cpu;
240 }
241 if (sw & 2)
242 return WORK_CPU_UNBOUND;
243 }
244 return WORK_CPU_NONE;
245}
246
247static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
248 struct workqueue_struct *wq)
249{
250 return __next_gcwq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
251}
252
253#define for_each_gcwq_cpu(cpu) \
254 for ((cpu) = __next_gcwq_cpu(-1, cpu_possible_mask, 3); \
255 (cpu) < WORK_CPU_NONE; \
256 (cpu) = __next_gcwq_cpu((cpu), cpu_possible_mask, 3))
257
258#define for_each_online_gcwq_cpu(cpu) \
259 for ((cpu) = __next_gcwq_cpu(-1, cpu_online_mask, 3); \
260 (cpu) < WORK_CPU_NONE; \
261 (cpu) = __next_gcwq_cpu((cpu), cpu_online_mask, 3))
262
263#define for_each_cwq_cpu(cpu, wq) \
264 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, (wq)); \
265 (cpu) < WORK_CPU_NONE; \
266 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, (wq)))
267
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900268#ifdef CONFIG_DEBUG_OBJECTS_WORK
269
270static struct debug_obj_descr work_debug_descr;
271
272/*
273 * fixup_init is called when:
274 * - an active object is initialized
275 */
276static int work_fixup_init(void *addr, enum debug_obj_state state)
277{
278 struct work_struct *work = addr;
279
280 switch (state) {
281 case ODEBUG_STATE_ACTIVE:
282 cancel_work_sync(work);
283 debug_object_init(work, &work_debug_descr);
284 return 1;
285 default:
286 return 0;
287 }
288}
289
290/*
291 * fixup_activate is called when:
292 * - an active object is activated
293 * - an unknown object is activated (might be a statically initialized object)
294 */
295static int work_fixup_activate(void *addr, enum debug_obj_state state)
296{
297 struct work_struct *work = addr;
298
299 switch (state) {
300
301 case ODEBUG_STATE_NOTAVAILABLE:
302 /*
303 * This is not really a fixup. The work struct was
304 * statically initialized. We just make sure that it
305 * is tracked in the object tracker.
306 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200307 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900308 debug_object_init(work, &work_debug_descr);
309 debug_object_activate(work, &work_debug_descr);
310 return 0;
311 }
312 WARN_ON_ONCE(1);
313 return 0;
314
315 case ODEBUG_STATE_ACTIVE:
316 WARN_ON(1);
317
318 default:
319 return 0;
320 }
321}
322
323/*
324 * fixup_free is called when:
325 * - an active object is freed
326 */
327static int work_fixup_free(void *addr, enum debug_obj_state state)
328{
329 struct work_struct *work = addr;
330
331 switch (state) {
332 case ODEBUG_STATE_ACTIVE:
333 cancel_work_sync(work);
334 debug_object_free(work, &work_debug_descr);
335 return 1;
336 default:
337 return 0;
338 }
339}
340
341static struct debug_obj_descr work_debug_descr = {
342 .name = "work_struct",
343 .fixup_init = work_fixup_init,
344 .fixup_activate = work_fixup_activate,
345 .fixup_free = work_fixup_free,
346};
347
348static inline void debug_work_activate(struct work_struct *work)
349{
350 debug_object_activate(work, &work_debug_descr);
351}
352
353static inline void debug_work_deactivate(struct work_struct *work)
354{
355 debug_object_deactivate(work, &work_debug_descr);
356}
357
358void __init_work(struct work_struct *work, int onstack)
359{
360 if (onstack)
361 debug_object_init_on_stack(work, &work_debug_descr);
362 else
363 debug_object_init(work, &work_debug_descr);
364}
365EXPORT_SYMBOL_GPL(__init_work);
366
367void destroy_work_on_stack(struct work_struct *work)
368{
369 debug_object_free(work, &work_debug_descr);
370}
371EXPORT_SYMBOL_GPL(destroy_work_on_stack);
372
373#else
374static inline void debug_work_activate(struct work_struct *work) { }
375static inline void debug_work_deactivate(struct work_struct *work) { }
376#endif
377
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100378/* Serializes the accesses to the list of workqueues. */
379static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200381static bool workqueue_freezing; /* W: have wqs started freezing? */
Tejun Heoc34056a2010-06-29 10:07:11 +0200382
Tejun Heoe22bee72010-06-29 10:07:14 +0200383/*
384 * The almighty global cpu workqueues. nr_running is the only field
385 * which is expected to be used frequently by other cpus via
386 * try_to_wake_up(). Put it in a separate cacheline.
387 */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200388static DEFINE_PER_CPU(struct global_cwq, global_cwq);
Tejun Heoe22bee72010-06-29 10:07:14 +0200389static DEFINE_PER_CPU_SHARED_ALIGNED(atomic_t, gcwq_nr_running);
Tejun Heo8b03ae32010-06-29 10:07:12 +0200390
Tejun Heof3421792010-07-02 10:03:51 +0200391/*
392 * Global cpu workqueue and nr_running counter for unbound gcwq. The
393 * gcwq is always online, has GCWQ_DISASSOCIATED set, and all its
394 * workers have WORKER_UNBOUND set.
395 */
396static struct global_cwq unbound_global_cwq;
397static atomic_t unbound_gcwq_nr_running = ATOMIC_INIT(0); /* always 0 */
398
Tejun Heoc34056a2010-06-29 10:07:11 +0200399static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Tejun Heo8b03ae32010-06-29 10:07:12 +0200401static struct global_cwq *get_gcwq(unsigned int cpu)
402{
Tejun Heof3421792010-07-02 10:03:51 +0200403 if (cpu != WORK_CPU_UNBOUND)
404 return &per_cpu(global_cwq, cpu);
405 else
406 return &unbound_global_cwq;
Tejun Heo8b03ae32010-06-29 10:07:12 +0200407}
408
Tejun Heoe22bee72010-06-29 10:07:14 +0200409static atomic_t *get_gcwq_nr_running(unsigned int cpu)
410{
Tejun Heof3421792010-07-02 10:03:51 +0200411 if (cpu != WORK_CPU_UNBOUND)
412 return &per_cpu(gcwq_nr_running, cpu);
413 else
414 return &unbound_gcwq_nr_running;
Tejun Heoe22bee72010-06-29 10:07:14 +0200415}
416
Tejun Heo4690c4a2010-06-29 10:07:10 +0200417static struct cpu_workqueue_struct *get_cwq(unsigned int cpu,
418 struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700419{
Tejun Heof3421792010-07-02 10:03:51 +0200420 if (!(wq->flags & WQ_UNBOUND)) {
421 if (likely(cpu < nr_cpu_ids)) {
422#ifdef CONFIG_SMP
423 return per_cpu_ptr(wq->cpu_wq.pcpu, cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200424#else
Tejun Heof3421792010-07-02 10:03:51 +0200425 return wq->cpu_wq.single;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200426#endif
Tejun Heof3421792010-07-02 10:03:51 +0200427 }
428 } else if (likely(cpu == WORK_CPU_UNBOUND))
429 return wq->cpu_wq.single;
430 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700431}
432
Tejun Heo73f53c42010-06-29 10:07:11 +0200433static unsigned int work_color_to_flags(int color)
434{
435 return color << WORK_STRUCT_COLOR_SHIFT;
436}
437
438static int get_work_color(struct work_struct *work)
439{
440 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
441 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
442}
443
444static int work_next_color(int color)
445{
446 return (color + 1) % WORK_NR_COLORS;
447}
448
David Howells4594bf12006-12-07 11:33:26 +0000449/*
Tejun Heo7a22ad72010-06-29 10:07:13 +0200450 * Work data points to the cwq while a work is on queue. Once
451 * execution starts, it points to the cpu the work was last on. This
452 * can be distinguished by comparing the data value against
453 * PAGE_OFFSET.
454 *
455 * set_work_{cwq|cpu}() and clear_work_data() can be used to set the
456 * cwq, cpu or clear work->data. These functions should only be
457 * called while the work is owned - ie. while the PENDING bit is set.
458 *
459 * get_work_[g]cwq() can be used to obtain the gcwq or cwq
460 * corresponding to a work. gcwq is available once the work has been
461 * queued anywhere after initialization. cwq is available only from
462 * queueing until execution starts.
David Howells4594bf12006-12-07 11:33:26 +0000463 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200464static inline void set_work_data(struct work_struct *work, unsigned long data,
465 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000466{
David Howells4594bf12006-12-07 11:33:26 +0000467 BUG_ON(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200468 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000469}
470
Tejun Heo7a22ad72010-06-29 10:07:13 +0200471static void set_work_cwq(struct work_struct *work,
472 struct cpu_workqueue_struct *cwq,
473 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200474{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200475 set_work_data(work, (unsigned long)cwq,
476 WORK_STRUCT_PENDING | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200477}
478
Tejun Heo7a22ad72010-06-29 10:07:13 +0200479static void set_work_cpu(struct work_struct *work, unsigned int cpu)
David Howells365970a2006-11-22 14:54:49 +0000480{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200481 set_work_data(work, cpu << WORK_STRUCT_FLAG_BITS, WORK_STRUCT_PENDING);
482}
483
484static void clear_work_data(struct work_struct *work)
485{
486 set_work_data(work, WORK_STRUCT_NO_CPU, 0);
487}
488
489static inline unsigned long get_work_data(struct work_struct *work)
490{
491 return atomic_long_read(&work->data) & WORK_STRUCT_WQ_DATA_MASK;
492}
493
494static struct cpu_workqueue_struct *get_work_cwq(struct work_struct *work)
495{
496 unsigned long data = get_work_data(work);
497
498 return data >= PAGE_OFFSET ? (void *)data : NULL;
499}
500
501static struct global_cwq *get_work_gcwq(struct work_struct *work)
502{
503 unsigned long data = get_work_data(work);
504 unsigned int cpu;
505
506 if (data >= PAGE_OFFSET)
507 return ((struct cpu_workqueue_struct *)data)->gcwq;
508
509 cpu = data >> WORK_STRUCT_FLAG_BITS;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200510 if (cpu == WORK_CPU_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200511 return NULL;
512
Tejun Heof3421792010-07-02 10:03:51 +0200513 BUG_ON(cpu >= nr_cpu_ids && cpu != WORK_CPU_UNBOUND);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200514 return get_gcwq(cpu);
David Howells365970a2006-11-22 14:54:49 +0000515}
516
Tejun Heoe22bee72010-06-29 10:07:14 +0200517/*
518 * Policy functions. These define the policies on how the global
519 * worker pool is managed. Unless noted otherwise, these functions
520 * assume that they're being called with gcwq->lock held.
521 */
522
Tejun Heo649027d2010-06-29 10:07:14 +0200523static bool __need_more_worker(struct global_cwq *gcwq)
524{
525 return !atomic_read(get_gcwq_nr_running(gcwq->cpu)) ||
526 gcwq->flags & GCWQ_HIGHPRI_PENDING;
527}
528
Tejun Heoe22bee72010-06-29 10:07:14 +0200529/*
530 * Need to wake up a worker? Called from anything but currently
531 * running workers.
532 */
533static bool need_more_worker(struct global_cwq *gcwq)
534{
Tejun Heo649027d2010-06-29 10:07:14 +0200535 return !list_empty(&gcwq->worklist) && __need_more_worker(gcwq);
Tejun Heoe22bee72010-06-29 10:07:14 +0200536}
537
538/* Can I start working? Called from busy but !running workers. */
539static bool may_start_working(struct global_cwq *gcwq)
540{
541 return gcwq->nr_idle;
542}
543
544/* Do I need to keep working? Called from currently running workers. */
545static bool keep_working(struct global_cwq *gcwq)
546{
547 atomic_t *nr_running = get_gcwq_nr_running(gcwq->cpu);
548
549 return !list_empty(&gcwq->worklist) && atomic_read(nr_running) <= 1;
550}
551
552/* Do we need a new worker? Called from manager. */
553static bool need_to_create_worker(struct global_cwq *gcwq)
554{
555 return need_more_worker(gcwq) && !may_start_working(gcwq);
556}
557
558/* Do I need to be the manager? */
559static bool need_to_manage_workers(struct global_cwq *gcwq)
560{
561 return need_to_create_worker(gcwq) || gcwq->flags & GCWQ_MANAGE_WORKERS;
562}
563
564/* Do we have too many workers and should some go away? */
565static bool too_many_workers(struct global_cwq *gcwq)
566{
567 bool managing = gcwq->flags & GCWQ_MANAGING_WORKERS;
568 int nr_idle = gcwq->nr_idle + managing; /* manager is considered idle */
569 int nr_busy = gcwq->nr_workers - nr_idle;
570
571 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
572}
573
574/*
575 * Wake up functions.
576 */
577
Tejun Heo7e116292010-06-29 10:07:13 +0200578/* Return the first worker. Safe with preemption disabled */
579static struct worker *first_worker(struct global_cwq *gcwq)
580{
581 if (unlikely(list_empty(&gcwq->idle_list)))
582 return NULL;
583
584 return list_first_entry(&gcwq->idle_list, struct worker, entry);
585}
586
587/**
588 * wake_up_worker - wake up an idle worker
589 * @gcwq: gcwq to wake worker for
590 *
591 * Wake up the first idle worker of @gcwq.
592 *
593 * CONTEXT:
594 * spin_lock_irq(gcwq->lock).
595 */
596static void wake_up_worker(struct global_cwq *gcwq)
597{
598 struct worker *worker = first_worker(gcwq);
599
600 if (likely(worker))
601 wake_up_process(worker->task);
602}
603
Tejun Heo4690c4a2010-06-29 10:07:10 +0200604/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200605 * wq_worker_waking_up - a worker is waking up
606 * @task: task waking up
607 * @cpu: CPU @task is waking up to
608 *
609 * This function is called during try_to_wake_up() when a worker is
610 * being awoken.
611 *
612 * CONTEXT:
613 * spin_lock_irq(rq->lock)
614 */
615void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
616{
617 struct worker *worker = kthread_data(task);
618
619 if (likely(!(worker->flags & WORKER_NOT_RUNNING)))
620 atomic_inc(get_gcwq_nr_running(cpu));
621}
622
623/**
624 * wq_worker_sleeping - a worker is going to sleep
625 * @task: task going to sleep
626 * @cpu: CPU in question, must be the current CPU number
627 *
628 * This function is called during schedule() when a busy worker is
629 * going to sleep. Worker on the same cpu can be woken up by
630 * returning pointer to its task.
631 *
632 * CONTEXT:
633 * spin_lock_irq(rq->lock)
634 *
635 * RETURNS:
636 * Worker task on @cpu to wake up, %NULL if none.
637 */
638struct task_struct *wq_worker_sleeping(struct task_struct *task,
639 unsigned int cpu)
640{
641 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
642 struct global_cwq *gcwq = get_gcwq(cpu);
643 atomic_t *nr_running = get_gcwq_nr_running(cpu);
644
645 if (unlikely(worker->flags & WORKER_NOT_RUNNING))
646 return NULL;
647
648 /* this can only happen on the local cpu */
649 BUG_ON(cpu != raw_smp_processor_id());
650
651 /*
652 * The counterpart of the following dec_and_test, implied mb,
653 * worklist not empty test sequence is in insert_work().
654 * Please read comment there.
655 *
656 * NOT_RUNNING is clear. This means that trustee is not in
657 * charge and we're running on the local cpu w/ rq lock held
658 * and preemption disabled, which in turn means that none else
659 * could be manipulating idle_list, so dereferencing idle_list
660 * without gcwq lock is safe.
661 */
662 if (atomic_dec_and_test(nr_running) && !list_empty(&gcwq->worklist))
663 to_wakeup = first_worker(gcwq);
664 return to_wakeup ? to_wakeup->task : NULL;
665}
666
667/**
668 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200669 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200670 * @flags: flags to set
671 * @wakeup: wakeup an idle worker if necessary
672 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200673 * Set @flags in @worker->flags and adjust nr_running accordingly. If
674 * nr_running becomes zero and @wakeup is %true, an idle worker is
675 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200676 *
Tejun Heocb444762010-07-02 10:03:50 +0200677 * CONTEXT:
678 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200679 */
680static inline void worker_set_flags(struct worker *worker, unsigned int flags,
681 bool wakeup)
682{
Tejun Heoe22bee72010-06-29 10:07:14 +0200683 struct global_cwq *gcwq = worker->gcwq;
684
Tejun Heocb444762010-07-02 10:03:50 +0200685 WARN_ON_ONCE(worker->task != current);
686
Tejun Heoe22bee72010-06-29 10:07:14 +0200687 /*
688 * If transitioning into NOT_RUNNING, adjust nr_running and
689 * wake up an idle worker as necessary if requested by
690 * @wakeup.
691 */
692 if ((flags & WORKER_NOT_RUNNING) &&
693 !(worker->flags & WORKER_NOT_RUNNING)) {
694 atomic_t *nr_running = get_gcwq_nr_running(gcwq->cpu);
695
696 if (wakeup) {
697 if (atomic_dec_and_test(nr_running) &&
698 !list_empty(&gcwq->worklist))
699 wake_up_worker(gcwq);
700 } else
701 atomic_dec(nr_running);
702 }
703
Tejun Heod302f012010-06-29 10:07:13 +0200704 worker->flags |= flags;
705}
706
707/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200708 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200709 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200710 * @flags: flags to clear
711 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200712 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200713 *
Tejun Heocb444762010-07-02 10:03:50 +0200714 * CONTEXT:
715 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200716 */
717static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
718{
Tejun Heoe22bee72010-06-29 10:07:14 +0200719 struct global_cwq *gcwq = worker->gcwq;
720 unsigned int oflags = worker->flags;
721
Tejun Heocb444762010-07-02 10:03:50 +0200722 WARN_ON_ONCE(worker->task != current);
723
Tejun Heod302f012010-06-29 10:07:13 +0200724 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200725
726 /* if transitioning out of NOT_RUNNING, increment nr_running */
727 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
728 if (!(worker->flags & WORKER_NOT_RUNNING))
729 atomic_inc(get_gcwq_nr_running(gcwq->cpu));
Tejun Heod302f012010-06-29 10:07:13 +0200730}
731
732/**
Tejun Heoc8e55f32010-06-29 10:07:12 +0200733 * busy_worker_head - return the busy hash head for a work
734 * @gcwq: gcwq of interest
735 * @work: work to be hashed
736 *
737 * Return hash head of @gcwq for @work.
738 *
739 * CONTEXT:
740 * spin_lock_irq(gcwq->lock).
741 *
742 * RETURNS:
743 * Pointer to the hash head.
744 */
745static struct hlist_head *busy_worker_head(struct global_cwq *gcwq,
746 struct work_struct *work)
747{
748 const int base_shift = ilog2(sizeof(struct work_struct));
749 unsigned long v = (unsigned long)work;
750
751 /* simple shift and fold hash, do we need something better? */
752 v >>= base_shift;
753 v += v >> BUSY_WORKER_HASH_ORDER;
754 v &= BUSY_WORKER_HASH_MASK;
755
756 return &gcwq->busy_hash[v];
757}
758
759/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200760 * __find_worker_executing_work - find worker which is executing a work
761 * @gcwq: gcwq of interest
762 * @bwh: hash head as returned by busy_worker_head()
763 * @work: work to find worker for
764 *
765 * Find a worker which is executing @work on @gcwq. @bwh should be
766 * the hash head obtained by calling busy_worker_head() with the same
767 * work.
768 *
769 * CONTEXT:
770 * spin_lock_irq(gcwq->lock).
771 *
772 * RETURNS:
773 * Pointer to worker which is executing @work if found, NULL
774 * otherwise.
775 */
776static struct worker *__find_worker_executing_work(struct global_cwq *gcwq,
777 struct hlist_head *bwh,
778 struct work_struct *work)
779{
780 struct worker *worker;
781 struct hlist_node *tmp;
782
783 hlist_for_each_entry(worker, tmp, bwh, hentry)
784 if (worker->current_work == work)
785 return worker;
786 return NULL;
787}
788
789/**
790 * find_worker_executing_work - find worker which is executing a work
791 * @gcwq: gcwq of interest
792 * @work: work to find worker for
793 *
794 * Find a worker which is executing @work on @gcwq. This function is
795 * identical to __find_worker_executing_work() except that this
796 * function calculates @bwh itself.
797 *
798 * CONTEXT:
799 * spin_lock_irq(gcwq->lock).
800 *
801 * RETURNS:
802 * Pointer to worker which is executing @work if found, NULL
803 * otherwise.
804 */
805static struct worker *find_worker_executing_work(struct global_cwq *gcwq,
806 struct work_struct *work)
807{
808 return __find_worker_executing_work(gcwq, busy_worker_head(gcwq, work),
809 work);
810}
811
812/**
Tejun Heo649027d2010-06-29 10:07:14 +0200813 * gcwq_determine_ins_pos - find insertion position
814 * @gcwq: gcwq of interest
815 * @cwq: cwq a work is being queued for
816 *
817 * A work for @cwq is about to be queued on @gcwq, determine insertion
818 * position for the work. If @cwq is for HIGHPRI wq, the work is
819 * queued at the head of the queue but in FIFO order with respect to
820 * other HIGHPRI works; otherwise, at the end of the queue. This
821 * function also sets GCWQ_HIGHPRI_PENDING flag to hint @gcwq that
822 * there are HIGHPRI works pending.
823 *
824 * CONTEXT:
825 * spin_lock_irq(gcwq->lock).
826 *
827 * RETURNS:
828 * Pointer to inserstion position.
829 */
830static inline struct list_head *gcwq_determine_ins_pos(struct global_cwq *gcwq,
831 struct cpu_workqueue_struct *cwq)
832{
833 struct work_struct *twork;
834
835 if (likely(!(cwq->wq->flags & WQ_HIGHPRI)))
836 return &gcwq->worklist;
837
838 list_for_each_entry(twork, &gcwq->worklist, entry) {
839 struct cpu_workqueue_struct *tcwq = get_work_cwq(twork);
840
841 if (!(tcwq->wq->flags & WQ_HIGHPRI))
842 break;
843 }
844
845 gcwq->flags |= GCWQ_HIGHPRI_PENDING;
846 return &twork->entry;
847}
848
849/**
Tejun Heo7e116292010-06-29 10:07:13 +0200850 * insert_work - insert a work into gcwq
Tejun Heo4690c4a2010-06-29 10:07:10 +0200851 * @cwq: cwq @work belongs to
852 * @work: work to insert
853 * @head: insertion point
854 * @extra_flags: extra WORK_STRUCT_* flags to set
855 *
Tejun Heo7e116292010-06-29 10:07:13 +0200856 * Insert @work which belongs to @cwq into @gcwq after @head.
857 * @extra_flags is or'd to work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200858 *
859 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +0200860 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +0200861 */
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700862static void insert_work(struct cpu_workqueue_struct *cwq,
Tejun Heo4690c4a2010-06-29 10:07:10 +0200863 struct work_struct *work, struct list_head *head,
864 unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700865{
Tejun Heoe22bee72010-06-29 10:07:14 +0200866 struct global_cwq *gcwq = cwq->gcwq;
867
Tejun Heo4690c4a2010-06-29 10:07:10 +0200868 /* we own @work, set data and link */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200869 set_work_cwq(work, cwq, extra_flags);
Tejun Heo4690c4a2010-06-29 10:07:10 +0200870
Oleg Nesterov6e84d642007-05-09 02:34:46 -0700871 /*
872 * Ensure that we get the right work->data if we see the
873 * result of list_add() below, see try_to_grab_pending().
874 */
875 smp_wmb();
Tejun Heo4690c4a2010-06-29 10:07:10 +0200876
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -0700877 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +0200878
879 /*
880 * Ensure either worker_sched_deactivated() sees the above
881 * list_add_tail() or we see zero nr_running to avoid workers
882 * lying around lazily while there are works to be processed.
883 */
884 smp_mb();
885
Tejun Heo649027d2010-06-29 10:07:14 +0200886 if (__need_more_worker(gcwq))
Tejun Heoe22bee72010-06-29 10:07:14 +0200887 wake_up_worker(gcwq);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700888}
889
Tejun Heo4690c4a2010-06-29 10:07:10 +0200890static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 struct work_struct *work)
892{
Tejun Heo502ca9d2010-06-29 10:07:13 +0200893 struct global_cwq *gcwq;
894 struct cpu_workqueue_struct *cwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200895 struct list_head *worklist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 unsigned long flags;
897
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900898 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200899
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200900 /* determine gcwq to use */
901 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200902 struct global_cwq *last_gcwq;
903
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200904 if (unlikely(cpu == WORK_CPU_UNBOUND))
905 cpu = raw_smp_processor_id();
906
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200907 /*
908 * It's multi cpu. If @wq is non-reentrant and @work
909 * was previously on a different cpu, it might still
910 * be running there, in which case the work needs to
911 * be queued on that cpu to guarantee non-reentrance.
912 */
Tejun Heo502ca9d2010-06-29 10:07:13 +0200913 gcwq = get_gcwq(cpu);
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200914 if (wq->flags & WQ_NON_REENTRANT &&
915 (last_gcwq = get_work_gcwq(work)) && last_gcwq != gcwq) {
916 struct worker *worker;
917
918 spin_lock_irqsave(&last_gcwq->lock, flags);
919
920 worker = find_worker_executing_work(last_gcwq, work);
921
922 if (worker && worker->current_cwq->wq == wq)
923 gcwq = last_gcwq;
924 else {
925 /* meh... not running there, queue here */
926 spin_unlock_irqrestore(&last_gcwq->lock, flags);
927 spin_lock_irqsave(&gcwq->lock, flags);
928 }
929 } else
930 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heof3421792010-07-02 10:03:51 +0200931 } else {
932 gcwq = get_gcwq(WORK_CPU_UNBOUND);
933 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heo502ca9d2010-06-29 10:07:13 +0200934 }
935
936 /* gcwq determined, get cwq and queue */
937 cwq = get_cwq(gcwq->cpu, wq);
938
Tejun Heo4690c4a2010-06-29 10:07:10 +0200939 BUG_ON(!list_empty(&work->entry));
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200940
Tejun Heo73f53c42010-06-29 10:07:11 +0200941 cwq->nr_in_flight[cwq->work_color]++;
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200942
943 if (likely(cwq->nr_active < cwq->max_active)) {
944 cwq->nr_active++;
Tejun Heo649027d2010-06-29 10:07:14 +0200945 worklist = gcwq_determine_ins_pos(gcwq, cwq);
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200946 } else
947 worklist = &cwq->delayed_works;
948
949 insert_work(cwq, work, worklist, work_color_to_flags(cwq->work_color));
950
Tejun Heo8b03ae32010-06-29 10:07:12 +0200951 spin_unlock_irqrestore(&gcwq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -0700954/**
955 * queue_work - queue work on a workqueue
956 * @wq: workqueue to use
957 * @work: work to queue
958 *
Alan Stern057647f2006-10-28 10:38:58 -0700959 * Returns 0 if @work was already on a queue, non-zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 *
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -0700961 * We queue the work to the CPU on which it was submitted, but if the CPU dies
962 * it can be processed by another CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800964int queue_work(struct workqueue_struct *wq, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Oleg Nesterovef1ca232008-07-25 01:47:53 -0700966 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Oleg Nesterovef1ca232008-07-25 01:47:53 -0700968 ret = queue_work_on(get_cpu(), wq, work);
969 put_cpu();
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return ret;
972}
Dave Jonesae90dd52006-06-30 01:40:45 -0400973EXPORT_SYMBOL_GPL(queue_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Zhang Ruic1a220e2008-07-23 21:28:39 -0700975/**
976 * queue_work_on - queue work on specific cpu
977 * @cpu: CPU number to execute work on
978 * @wq: workqueue to use
979 * @work: work to queue
980 *
981 * Returns 0 if @work was already on a queue, non-zero otherwise.
982 *
983 * We queue the work to a specific CPU, the caller must ensure it
984 * can't go away.
985 */
986int
987queue_work_on(int cpu, struct workqueue_struct *wq, struct work_struct *work)
988{
989 int ret = 0;
990
Tejun Heo22df02b2010-06-29 10:07:10 +0200991 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +0200992 __queue_work(cpu, wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -0700993 ret = 1;
994 }
995 return ret;
996}
997EXPORT_SYMBOL_GPL(queue_work_on);
998
Li Zefan6d141c32008-02-08 04:21:09 -0800999static void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
David Howells52bad642006-11-22 14:54:01 +00001001 struct delayed_work *dwork = (struct delayed_work *)__data;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001002 struct cpu_workqueue_struct *cwq = get_work_cwq(&dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Tejun Heo4690c4a2010-06-29 10:07:10 +02001004 __queue_work(smp_processor_id(), cwq->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001007/**
1008 * queue_delayed_work - queue work on a workqueue after delay
1009 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001010 * @dwork: delayable work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001011 * @delay: number of jiffies to wait before queueing
1012 *
Alan Stern057647f2006-10-28 10:38:58 -07001013 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001014 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001015int queue_delayed_work(struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001016 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
David Howells52bad642006-11-22 14:54:01 +00001018 if (delay == 0)
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001019 return queue_work(wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001021 return queue_delayed_work_on(-1, wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
Dave Jonesae90dd52006-06-30 01:40:45 -04001023EXPORT_SYMBOL_GPL(queue_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001025/**
1026 * queue_delayed_work_on - queue work on specific CPU after delay
1027 * @cpu: CPU number to execute work on
1028 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001029 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001030 * @delay: number of jiffies to wait before queueing
1031 *
Alan Stern057647f2006-10-28 10:38:58 -07001032 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001033 */
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001034int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001035 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001036{
1037 int ret = 0;
David Howells52bad642006-11-22 14:54:01 +00001038 struct timer_list *timer = &dwork->timer;
1039 struct work_struct *work = &dwork->work;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001040
Tejun Heo22df02b2010-06-29 10:07:10 +02001041 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001042 unsigned int lcpu;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001043
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001044 BUG_ON(timer_pending(timer));
1045 BUG_ON(!list_empty(&work->entry));
1046
Andrew Liu8a3e77c2008-05-01 04:35:14 -07001047 timer_stats_timer_set_start_info(&dwork->timer);
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001048
Tejun Heo7a22ad72010-06-29 10:07:13 +02001049 /*
1050 * This stores cwq for the moment, for the timer_fn.
1051 * Note that the work's gcwq is preserved to allow
1052 * reentrance detection for delayed works.
1053 */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001054 if (!(wq->flags & WQ_UNBOUND)) {
1055 struct global_cwq *gcwq = get_work_gcwq(work);
1056
1057 if (gcwq && gcwq->cpu != WORK_CPU_UNBOUND)
1058 lcpu = gcwq->cpu;
1059 else
1060 lcpu = raw_smp_processor_id();
1061 } else
1062 lcpu = WORK_CPU_UNBOUND;
1063
Tejun Heo7a22ad72010-06-29 10:07:13 +02001064 set_work_cwq(work, get_cwq(lcpu, wq), 0);
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001065
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001066 timer->expires = jiffies + delay;
David Howells52bad642006-11-22 14:54:01 +00001067 timer->data = (unsigned long)dwork;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001068 timer->function = delayed_work_timer_fn;
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001069
1070 if (unlikely(cpu >= 0))
1071 add_timer_on(timer, cpu);
1072 else
1073 add_timer(timer);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001074 ret = 1;
1075 }
1076 return ret;
1077}
Dave Jonesae90dd52006-06-30 01:40:45 -04001078EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Tejun Heoc8e55f32010-06-29 10:07:12 +02001080/**
1081 * worker_enter_idle - enter idle state
1082 * @worker: worker which is entering idle state
1083 *
1084 * @worker is entering idle state. Update stats and idle timer if
1085 * necessary.
1086 *
1087 * LOCKING:
1088 * spin_lock_irq(gcwq->lock).
1089 */
1090static void worker_enter_idle(struct worker *worker)
1091{
1092 struct global_cwq *gcwq = worker->gcwq;
1093
1094 BUG_ON(worker->flags & WORKER_IDLE);
1095 BUG_ON(!list_empty(&worker->entry) &&
1096 (worker->hentry.next || worker->hentry.pprev));
1097
Tejun Heocb444762010-07-02 10:03:50 +02001098 /* can't use worker_set_flags(), also called from start_worker() */
1099 worker->flags |= WORKER_IDLE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001100 gcwq->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001101 worker->last_active = jiffies;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001102
1103 /* idle_list is LIFO */
1104 list_add(&worker->entry, &gcwq->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001105
Tejun Heoe22bee72010-06-29 10:07:14 +02001106 if (likely(!(worker->flags & WORKER_ROGUE))) {
1107 if (too_many_workers(gcwq) && !timer_pending(&gcwq->idle_timer))
1108 mod_timer(&gcwq->idle_timer,
1109 jiffies + IDLE_WORKER_TIMEOUT);
1110 } else
Tejun Heodb7bccf2010-06-29 10:07:12 +02001111 wake_up_all(&gcwq->trustee_wait);
Tejun Heocb444762010-07-02 10:03:50 +02001112
1113 /* sanity check nr_running */
1114 WARN_ON_ONCE(gcwq->nr_workers == gcwq->nr_idle &&
1115 atomic_read(get_gcwq_nr_running(gcwq->cpu)));
Tejun Heoc8e55f32010-06-29 10:07:12 +02001116}
1117
1118/**
1119 * worker_leave_idle - leave idle state
1120 * @worker: worker which is leaving idle state
1121 *
1122 * @worker is leaving idle state. Update stats.
1123 *
1124 * LOCKING:
1125 * spin_lock_irq(gcwq->lock).
1126 */
1127static void worker_leave_idle(struct worker *worker)
1128{
1129 struct global_cwq *gcwq = worker->gcwq;
1130
1131 BUG_ON(!(worker->flags & WORKER_IDLE));
Tejun Heod302f012010-06-29 10:07:13 +02001132 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001133 gcwq->nr_idle--;
1134 list_del_init(&worker->entry);
1135}
1136
Tejun Heoe22bee72010-06-29 10:07:14 +02001137/**
1138 * worker_maybe_bind_and_lock - bind worker to its cpu if possible and lock gcwq
1139 * @worker: self
1140 *
1141 * Works which are scheduled while the cpu is online must at least be
1142 * scheduled to a worker which is bound to the cpu so that if they are
1143 * flushed from cpu callbacks while cpu is going down, they are
1144 * guaranteed to execute on the cpu.
1145 *
1146 * This function is to be used by rogue workers and rescuers to bind
1147 * themselves to the target cpu and may race with cpu going down or
1148 * coming online. kthread_bind() can't be used because it may put the
1149 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
1150 * verbatim as it's best effort and blocking and gcwq may be
1151 * [dis]associated in the meantime.
1152 *
1153 * This function tries set_cpus_allowed() and locks gcwq and verifies
1154 * the binding against GCWQ_DISASSOCIATED which is set during
1155 * CPU_DYING and cleared during CPU_ONLINE, so if the worker enters
1156 * idle state or fetches works without dropping lock, it can guarantee
1157 * the scheduling requirement described in the first paragraph.
1158 *
1159 * CONTEXT:
1160 * Might sleep. Called without any lock but returns with gcwq->lock
1161 * held.
1162 *
1163 * RETURNS:
1164 * %true if the associated gcwq is online (@worker is successfully
1165 * bound), %false if offline.
1166 */
1167static bool worker_maybe_bind_and_lock(struct worker *worker)
1168{
1169 struct global_cwq *gcwq = worker->gcwq;
1170 struct task_struct *task = worker->task;
1171
1172 while (true) {
1173 /*
1174 * The following call may fail, succeed or succeed
1175 * without actually migrating the task to the cpu if
1176 * it races with cpu hotunplug operation. Verify
1177 * against GCWQ_DISASSOCIATED.
1178 */
Tejun Heof3421792010-07-02 10:03:51 +02001179 if (!(gcwq->flags & GCWQ_DISASSOCIATED))
1180 set_cpus_allowed_ptr(task, get_cpu_mask(gcwq->cpu));
Tejun Heoe22bee72010-06-29 10:07:14 +02001181
1182 spin_lock_irq(&gcwq->lock);
1183 if (gcwq->flags & GCWQ_DISASSOCIATED)
1184 return false;
1185 if (task_cpu(task) == gcwq->cpu &&
1186 cpumask_equal(&current->cpus_allowed,
1187 get_cpu_mask(gcwq->cpu)))
1188 return true;
1189 spin_unlock_irq(&gcwq->lock);
1190
1191 /* CPU has come up inbetween, retry migration */
1192 cpu_relax();
1193 }
1194}
1195
1196/*
1197 * Function for worker->rebind_work used to rebind rogue busy workers
1198 * to the associated cpu which is coming back online. This is
1199 * scheduled by cpu up but can race with other cpu hotplug operations
1200 * and may be executed twice without intervening cpu down.
1201 */
1202static void worker_rebind_fn(struct work_struct *work)
1203{
1204 struct worker *worker = container_of(work, struct worker, rebind_work);
1205 struct global_cwq *gcwq = worker->gcwq;
1206
1207 if (worker_maybe_bind_and_lock(worker))
1208 worker_clr_flags(worker, WORKER_REBIND);
1209
1210 spin_unlock_irq(&gcwq->lock);
1211}
1212
Tejun Heoc34056a2010-06-29 10:07:11 +02001213static struct worker *alloc_worker(void)
1214{
1215 struct worker *worker;
1216
1217 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001218 if (worker) {
1219 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001220 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heoe22bee72010-06-29 10:07:14 +02001221 INIT_WORK(&worker->rebind_work, worker_rebind_fn);
1222 /* on creation a worker is in !idle && prep state */
1223 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001224 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001225 return worker;
1226}
1227
1228/**
1229 * create_worker - create a new workqueue worker
Tejun Heo7e116292010-06-29 10:07:13 +02001230 * @gcwq: gcwq the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001231 * @bind: whether to set affinity to @cpu or not
1232 *
Tejun Heo7e116292010-06-29 10:07:13 +02001233 * Create a new worker which is bound to @gcwq. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001234 * can be started by calling start_worker() or destroyed using
1235 * destroy_worker().
1236 *
1237 * CONTEXT:
1238 * Might sleep. Does GFP_KERNEL allocations.
1239 *
1240 * RETURNS:
1241 * Pointer to the newly created worker.
1242 */
Tejun Heo7e116292010-06-29 10:07:13 +02001243static struct worker *create_worker(struct global_cwq *gcwq, bool bind)
Tejun Heoc34056a2010-06-29 10:07:11 +02001244{
Tejun Heof3421792010-07-02 10:03:51 +02001245 bool on_unbound_cpu = gcwq->cpu == WORK_CPU_UNBOUND;
Tejun Heoc34056a2010-06-29 10:07:11 +02001246 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001247 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001248
Tejun Heo8b03ae32010-06-29 10:07:12 +02001249 spin_lock_irq(&gcwq->lock);
1250 while (ida_get_new(&gcwq->worker_ida, &id)) {
1251 spin_unlock_irq(&gcwq->lock);
1252 if (!ida_pre_get(&gcwq->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001253 goto fail;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001254 spin_lock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001255 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02001256 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001257
1258 worker = alloc_worker();
1259 if (!worker)
1260 goto fail;
1261
Tejun Heo8b03ae32010-06-29 10:07:12 +02001262 worker->gcwq = gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001263 worker->id = id;
1264
Tejun Heof3421792010-07-02 10:03:51 +02001265 if (!on_unbound_cpu)
1266 worker->task = kthread_create(worker_thread, worker,
1267 "kworker/%u:%d", gcwq->cpu, id);
1268 else
1269 worker->task = kthread_create(worker_thread, worker,
1270 "kworker/u:%d", id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001271 if (IS_ERR(worker->task))
1272 goto fail;
1273
Tejun Heodb7bccf2010-06-29 10:07:12 +02001274 /*
1275 * A rogue worker will become a regular one if CPU comes
1276 * online later on. Make sure every worker has
1277 * PF_THREAD_BOUND set.
1278 */
Tejun Heof3421792010-07-02 10:03:51 +02001279 if (bind && !on_unbound_cpu)
Tejun Heo8b03ae32010-06-29 10:07:12 +02001280 kthread_bind(worker->task, gcwq->cpu);
Tejun Heof3421792010-07-02 10:03:51 +02001281 else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001282 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heof3421792010-07-02 10:03:51 +02001283 if (on_unbound_cpu)
1284 worker->flags |= WORKER_UNBOUND;
1285 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001286
1287 return worker;
1288fail:
1289 if (id >= 0) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001290 spin_lock_irq(&gcwq->lock);
1291 ida_remove(&gcwq->worker_ida, id);
1292 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001293 }
1294 kfree(worker);
1295 return NULL;
1296}
1297
1298/**
1299 * start_worker - start a newly created worker
1300 * @worker: worker to start
1301 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001302 * Make the gcwq aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001303 *
1304 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001305 * spin_lock_irq(gcwq->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001306 */
1307static void start_worker(struct worker *worker)
1308{
Tejun Heocb444762010-07-02 10:03:50 +02001309 worker->flags |= WORKER_STARTED;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001310 worker->gcwq->nr_workers++;
1311 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001312 wake_up_process(worker->task);
1313}
1314
1315/**
1316 * destroy_worker - destroy a workqueue worker
1317 * @worker: worker to be destroyed
1318 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001319 * Destroy @worker and adjust @gcwq stats accordingly.
1320 *
1321 * CONTEXT:
1322 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001323 */
1324static void destroy_worker(struct worker *worker)
1325{
Tejun Heo8b03ae32010-06-29 10:07:12 +02001326 struct global_cwq *gcwq = worker->gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001327 int id = worker->id;
1328
1329 /* sanity check frenzy */
1330 BUG_ON(worker->current_work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001331 BUG_ON(!list_empty(&worker->scheduled));
Tejun Heoc34056a2010-06-29 10:07:11 +02001332
Tejun Heoc8e55f32010-06-29 10:07:12 +02001333 if (worker->flags & WORKER_STARTED)
1334 gcwq->nr_workers--;
1335 if (worker->flags & WORKER_IDLE)
1336 gcwq->nr_idle--;
1337
1338 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001339 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001340
1341 spin_unlock_irq(&gcwq->lock);
1342
Tejun Heoc34056a2010-06-29 10:07:11 +02001343 kthread_stop(worker->task);
1344 kfree(worker);
1345
Tejun Heo8b03ae32010-06-29 10:07:12 +02001346 spin_lock_irq(&gcwq->lock);
1347 ida_remove(&gcwq->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001348}
1349
Tejun Heoe22bee72010-06-29 10:07:14 +02001350static void idle_worker_timeout(unsigned long __gcwq)
1351{
1352 struct global_cwq *gcwq = (void *)__gcwq;
1353
1354 spin_lock_irq(&gcwq->lock);
1355
1356 if (too_many_workers(gcwq)) {
1357 struct worker *worker;
1358 unsigned long expires;
1359
1360 /* idle_list is kept in LIFO order, check the last one */
1361 worker = list_entry(gcwq->idle_list.prev, struct worker, entry);
1362 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1363
1364 if (time_before(jiffies, expires))
1365 mod_timer(&gcwq->idle_timer, expires);
1366 else {
1367 /* it's been idle for too long, wake up manager */
1368 gcwq->flags |= GCWQ_MANAGE_WORKERS;
1369 wake_up_worker(gcwq);
1370 }
1371 }
1372
1373 spin_unlock_irq(&gcwq->lock);
1374}
1375
1376static bool send_mayday(struct work_struct *work)
1377{
1378 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1379 struct workqueue_struct *wq = cwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001380 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001381
1382 if (!(wq->flags & WQ_RESCUER))
1383 return false;
1384
1385 /* mayday mayday mayday */
Tejun Heof3421792010-07-02 10:03:51 +02001386 cpu = cwq->gcwq->cpu;
1387 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1388 if (cpu == WORK_CPU_UNBOUND)
1389 cpu = 0;
1390 if (!cpumask_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001391 wake_up_process(wq->rescuer->task);
1392 return true;
1393}
1394
1395static void gcwq_mayday_timeout(unsigned long __gcwq)
1396{
1397 struct global_cwq *gcwq = (void *)__gcwq;
1398 struct work_struct *work;
1399
1400 spin_lock_irq(&gcwq->lock);
1401
1402 if (need_to_create_worker(gcwq)) {
1403 /*
1404 * We've been trying to create a new worker but
1405 * haven't been successful. We might be hitting an
1406 * allocation deadlock. Send distress signals to
1407 * rescuers.
1408 */
1409 list_for_each_entry(work, &gcwq->worklist, entry)
1410 send_mayday(work);
1411 }
1412
1413 spin_unlock_irq(&gcwq->lock);
1414
1415 mod_timer(&gcwq->mayday_timer, jiffies + MAYDAY_INTERVAL);
1416}
1417
1418/**
1419 * maybe_create_worker - create a new worker if necessary
1420 * @gcwq: gcwq to create a new worker for
1421 *
1422 * Create a new worker for @gcwq if necessary. @gcwq is guaranteed to
1423 * have at least one idle worker on return from this function. If
1424 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
1425 * sent to all rescuers with works scheduled on @gcwq to resolve
1426 * possible allocation deadlock.
1427 *
1428 * On return, need_to_create_worker() is guaranteed to be false and
1429 * may_start_working() true.
1430 *
1431 * LOCKING:
1432 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1433 * multiple times. Does GFP_KERNEL allocations. Called only from
1434 * manager.
1435 *
1436 * RETURNS:
1437 * false if no action was taken and gcwq->lock stayed locked, true
1438 * otherwise.
1439 */
1440static bool maybe_create_worker(struct global_cwq *gcwq)
1441{
1442 if (!need_to_create_worker(gcwq))
1443 return false;
1444restart:
1445 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
1446 mod_timer(&gcwq->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
1447
1448 while (true) {
1449 struct worker *worker;
1450
1451 spin_unlock_irq(&gcwq->lock);
1452
1453 worker = create_worker(gcwq, true);
1454 if (worker) {
1455 del_timer_sync(&gcwq->mayday_timer);
1456 spin_lock_irq(&gcwq->lock);
1457 start_worker(worker);
1458 BUG_ON(need_to_create_worker(gcwq));
1459 return true;
1460 }
1461
1462 if (!need_to_create_worker(gcwq))
1463 break;
1464
1465 spin_unlock_irq(&gcwq->lock);
1466 __set_current_state(TASK_INTERRUPTIBLE);
1467 schedule_timeout(CREATE_COOLDOWN);
1468 spin_lock_irq(&gcwq->lock);
1469 if (!need_to_create_worker(gcwq))
1470 break;
1471 }
1472
1473 spin_unlock_irq(&gcwq->lock);
1474 del_timer_sync(&gcwq->mayday_timer);
1475 spin_lock_irq(&gcwq->lock);
1476 if (need_to_create_worker(gcwq))
1477 goto restart;
1478 return true;
1479}
1480
1481/**
1482 * maybe_destroy_worker - destroy workers which have been idle for a while
1483 * @gcwq: gcwq to destroy workers for
1484 *
1485 * Destroy @gcwq workers which have been idle for longer than
1486 * IDLE_WORKER_TIMEOUT.
1487 *
1488 * LOCKING:
1489 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1490 * multiple times. Called only from manager.
1491 *
1492 * RETURNS:
1493 * false if no action was taken and gcwq->lock stayed locked, true
1494 * otherwise.
1495 */
1496static bool maybe_destroy_workers(struct global_cwq *gcwq)
1497{
1498 bool ret = false;
1499
1500 while (too_many_workers(gcwq)) {
1501 struct worker *worker;
1502 unsigned long expires;
1503
1504 worker = list_entry(gcwq->idle_list.prev, struct worker, entry);
1505 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1506
1507 if (time_before(jiffies, expires)) {
1508 mod_timer(&gcwq->idle_timer, expires);
1509 break;
1510 }
1511
1512 destroy_worker(worker);
1513 ret = true;
1514 }
1515
1516 return ret;
1517}
1518
1519/**
1520 * manage_workers - manage worker pool
1521 * @worker: self
1522 *
1523 * Assume the manager role and manage gcwq worker pool @worker belongs
1524 * to. At any given time, there can be only zero or one manager per
1525 * gcwq. The exclusion is handled automatically by this function.
1526 *
1527 * The caller can safely start processing works on false return. On
1528 * true return, it's guaranteed that need_to_create_worker() is false
1529 * and may_start_working() is true.
1530 *
1531 * CONTEXT:
1532 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1533 * multiple times. Does GFP_KERNEL allocations.
1534 *
1535 * RETURNS:
1536 * false if no action was taken and gcwq->lock stayed locked, true if
1537 * some action was taken.
1538 */
1539static bool manage_workers(struct worker *worker)
1540{
1541 struct global_cwq *gcwq = worker->gcwq;
1542 bool ret = false;
1543
1544 if (gcwq->flags & GCWQ_MANAGING_WORKERS)
1545 return ret;
1546
1547 gcwq->flags &= ~GCWQ_MANAGE_WORKERS;
1548 gcwq->flags |= GCWQ_MANAGING_WORKERS;
1549
1550 /*
1551 * Destroy and then create so that may_start_working() is true
1552 * on return.
1553 */
1554 ret |= maybe_destroy_workers(gcwq);
1555 ret |= maybe_create_worker(gcwq);
1556
1557 gcwq->flags &= ~GCWQ_MANAGING_WORKERS;
1558
1559 /*
1560 * The trustee might be waiting to take over the manager
1561 * position, tell it we're done.
1562 */
1563 if (unlikely(gcwq->trustee))
1564 wake_up_all(&gcwq->trustee_wait);
1565
1566 return ret;
1567}
1568
Tejun Heoa62428c2010-06-29 10:07:10 +02001569/**
Tejun Heoaffee4b2010-06-29 10:07:12 +02001570 * move_linked_works - move linked works to a list
1571 * @work: start of series of works to be scheduled
1572 * @head: target list to append @work to
1573 * @nextp: out paramter for nested worklist walking
1574 *
1575 * Schedule linked works starting from @work to @head. Work series to
1576 * be scheduled starts at @work and includes any consecutive work with
1577 * WORK_STRUCT_LINKED set in its predecessor.
1578 *
1579 * If @nextp is not NULL, it's updated to point to the next work of
1580 * the last scheduled work. This allows move_linked_works() to be
1581 * nested inside outer list_for_each_entry_safe().
1582 *
1583 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001584 * spin_lock_irq(gcwq->lock).
Tejun Heoaffee4b2010-06-29 10:07:12 +02001585 */
1586static void move_linked_works(struct work_struct *work, struct list_head *head,
1587 struct work_struct **nextp)
1588{
1589 struct work_struct *n;
1590
1591 /*
1592 * Linked worklist will always end before the end of the list,
1593 * use NULL for list head.
1594 */
1595 list_for_each_entry_safe_from(work, n, NULL, entry) {
1596 list_move_tail(&work->entry, head);
1597 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
1598 break;
1599 }
1600
1601 /*
1602 * If we're already inside safe list traversal and have moved
1603 * multiple works to the scheduled queue, the next position
1604 * needs to be updated.
1605 */
1606 if (nextp)
1607 *nextp = n;
1608}
1609
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001610static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
1611{
1612 struct work_struct *work = list_first_entry(&cwq->delayed_works,
1613 struct work_struct, entry);
Tejun Heo649027d2010-06-29 10:07:14 +02001614 struct list_head *pos = gcwq_determine_ins_pos(cwq->gcwq, cwq);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001615
Tejun Heo649027d2010-06-29 10:07:14 +02001616 move_linked_works(work, pos, NULL);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001617 cwq->nr_active++;
1618}
1619
Tejun Heoaffee4b2010-06-29 10:07:12 +02001620/**
Tejun Heo73f53c42010-06-29 10:07:11 +02001621 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
1622 * @cwq: cwq of interest
1623 * @color: color of work which left the queue
1624 *
1625 * A work either has completed or is removed from pending queue,
1626 * decrement nr_in_flight of its cwq and handle workqueue flushing.
1627 *
1628 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001629 * spin_lock_irq(gcwq->lock).
Tejun Heo73f53c42010-06-29 10:07:11 +02001630 */
1631static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color)
1632{
1633 /* ignore uncolored works */
1634 if (color == WORK_NO_COLOR)
1635 return;
1636
1637 cwq->nr_in_flight[color]--;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001638 cwq->nr_active--;
1639
Tejun Heo502ca9d2010-06-29 10:07:13 +02001640 if (!list_empty(&cwq->delayed_works)) {
1641 /* one down, submit a delayed one */
1642 if (cwq->nr_active < cwq->max_active)
1643 cwq_activate_first_delayed(cwq);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001644 }
Tejun Heo73f53c42010-06-29 10:07:11 +02001645
1646 /* is flush in progress and are we at the flushing tip? */
1647 if (likely(cwq->flush_color != color))
1648 return;
1649
1650 /* are there still in-flight works? */
1651 if (cwq->nr_in_flight[color])
1652 return;
1653
1654 /* this cwq is done, clear flush_color */
1655 cwq->flush_color = -1;
1656
1657 /*
1658 * If this was the last cwq, wake up the first flusher. It
1659 * will handle the rest.
1660 */
1661 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
1662 complete(&cwq->wq->first_flusher->done);
1663}
1664
1665/**
Tejun Heoa62428c2010-06-29 10:07:10 +02001666 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02001667 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02001668 * @work: work to process
1669 *
1670 * Process @work. This function contains all the logics necessary to
1671 * process a single work including synchronization against and
1672 * interaction with other workers on the same cpu, queueing and
1673 * flushing. As long as context requirement is met, any worker can
1674 * call this function to process a work.
1675 *
1676 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001677 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02001678 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001679static void process_one_work(struct worker *worker, struct work_struct *work)
Tejun Heoa62428c2010-06-29 10:07:10 +02001680{
Tejun Heo7e116292010-06-29 10:07:13 +02001681 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heo8b03ae32010-06-29 10:07:12 +02001682 struct global_cwq *gcwq = cwq->gcwq;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001683 struct hlist_head *bwh = busy_worker_head(gcwq, work);
Tejun Heofb0e7be2010-06-29 10:07:15 +02001684 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heoa62428c2010-06-29 10:07:10 +02001685 work_func_t f = work->func;
Tejun Heo73f53c42010-06-29 10:07:11 +02001686 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02001687 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02001688#ifdef CONFIG_LOCKDEP
1689 /*
1690 * It is permissible to free the struct work_struct from
1691 * inside the function that is called from it, this we need to
1692 * take into account for lockdep too. To avoid bogus "held
1693 * lock freed" warnings as well as problems when looking into
1694 * work->lockdep_map, make a copy and use that here.
1695 */
1696 struct lockdep_map lockdep_map = work->lockdep_map;
1697#endif
Tejun Heo7e116292010-06-29 10:07:13 +02001698 /*
1699 * A single work shouldn't be executed concurrently by
1700 * multiple workers on a single cpu. Check whether anyone is
1701 * already processing the work. If so, defer the work to the
1702 * currently executing one.
1703 */
1704 collision = __find_worker_executing_work(gcwq, bwh, work);
1705 if (unlikely(collision)) {
1706 move_linked_works(work, &collision->scheduled, NULL);
1707 return;
1708 }
1709
Tejun Heoa62428c2010-06-29 10:07:10 +02001710 /* claim and process */
Tejun Heoa62428c2010-06-29 10:07:10 +02001711 debug_work_deactivate(work);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001712 hlist_add_head(&worker->hentry, bwh);
Tejun Heoc34056a2010-06-29 10:07:11 +02001713 worker->current_work = work;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02001714 worker->current_cwq = cwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02001715 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02001716
Tejun Heo7a22ad72010-06-29 10:07:13 +02001717 /* record the current cpu number in the work data and dequeue */
1718 set_work_cpu(work, gcwq->cpu);
Tejun Heoa62428c2010-06-29 10:07:10 +02001719 list_del_init(&work->entry);
1720
Tejun Heo649027d2010-06-29 10:07:14 +02001721 /*
1722 * If HIGHPRI_PENDING, check the next work, and, if HIGHPRI,
1723 * wake up another worker; otherwise, clear HIGHPRI_PENDING.
1724 */
1725 if (unlikely(gcwq->flags & GCWQ_HIGHPRI_PENDING)) {
1726 struct work_struct *nwork = list_first_entry(&gcwq->worklist,
1727 struct work_struct, entry);
1728
1729 if (!list_empty(&gcwq->worklist) &&
1730 get_work_cwq(nwork)->wq->flags & WQ_HIGHPRI)
1731 wake_up_worker(gcwq);
1732 else
1733 gcwq->flags &= ~GCWQ_HIGHPRI_PENDING;
1734 }
1735
Tejun Heofb0e7be2010-06-29 10:07:15 +02001736 /*
1737 * CPU intensive works don't participate in concurrency
1738 * management. They're the scheduler's responsibility.
1739 */
1740 if (unlikely(cpu_intensive))
1741 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
1742
Tejun Heo8b03ae32010-06-29 10:07:12 +02001743 spin_unlock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02001744
Tejun Heoa62428c2010-06-29 10:07:10 +02001745 work_clear_pending(work);
1746 lock_map_acquire(&cwq->wq->lockdep_map);
1747 lock_map_acquire(&lockdep_map);
1748 f(work);
1749 lock_map_release(&lockdep_map);
1750 lock_map_release(&cwq->wq->lockdep_map);
1751
1752 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
1753 printk(KERN_ERR "BUG: workqueue leaked lock or atomic: "
1754 "%s/0x%08x/%d\n",
1755 current->comm, preempt_count(), task_pid_nr(current));
1756 printk(KERN_ERR " last function: ");
1757 print_symbol("%s\n", (unsigned long)f);
1758 debug_show_held_locks(current);
1759 dump_stack();
1760 }
1761
Tejun Heo8b03ae32010-06-29 10:07:12 +02001762 spin_lock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02001763
Tejun Heofb0e7be2010-06-29 10:07:15 +02001764 /* clear cpu intensive status */
1765 if (unlikely(cpu_intensive))
1766 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
1767
Tejun Heoa62428c2010-06-29 10:07:10 +02001768 /* we're done with it, release */
Tejun Heoc8e55f32010-06-29 10:07:12 +02001769 hlist_del_init(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02001770 worker->current_work = NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02001771 worker->current_cwq = NULL;
Tejun Heo73f53c42010-06-29 10:07:11 +02001772 cwq_dec_nr_in_flight(cwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02001773}
1774
Tejun Heoaffee4b2010-06-29 10:07:12 +02001775/**
1776 * process_scheduled_works - process scheduled works
1777 * @worker: self
1778 *
1779 * Process all scheduled works. Please note that the scheduled list
1780 * may change while processing a work, so this function repeatedly
1781 * fetches a work from the top and executes it.
1782 *
1783 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001784 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02001785 * multiple times.
1786 */
1787static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
Tejun Heoaffee4b2010-06-29 10:07:12 +02001789 while (!list_empty(&worker->scheduled)) {
1790 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02001792 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
Tejun Heo4690c4a2010-06-29 10:07:10 +02001796/**
1797 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02001798 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02001799 *
Tejun Heoe22bee72010-06-29 10:07:14 +02001800 * The gcwq worker thread function. There's a single dynamic pool of
1801 * these per each cpu. These workers process all works regardless of
1802 * their specific target workqueue. The only exception is works which
1803 * belong to workqueues with a rescuer which will be explained in
1804 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02001805 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001806static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
Tejun Heoc34056a2010-06-29 10:07:11 +02001808 struct worker *worker = __worker;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001809 struct global_cwq *gcwq = worker->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Tejun Heoe22bee72010-06-29 10:07:14 +02001811 /* tell the scheduler that this is a workqueue worker */
1812 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001813woke_up:
Tejun Heoc8e55f32010-06-29 10:07:12 +02001814 spin_lock_irq(&gcwq->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001815
Tejun Heoc8e55f32010-06-29 10:07:12 +02001816 /* DIE can be set only while we're idle, checking here is enough */
1817 if (worker->flags & WORKER_DIE) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001818 spin_unlock_irq(&gcwq->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001819 worker->task->flags &= ~PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001822
Tejun Heoc8e55f32010-06-29 10:07:12 +02001823 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001824recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02001825 /* no more worker necessary? */
1826 if (!need_more_worker(gcwq))
1827 goto sleep;
1828
1829 /* do we need to manage? */
1830 if (unlikely(!may_start_working(gcwq)) && manage_workers(worker))
1831 goto recheck;
1832
Tejun Heoc8e55f32010-06-29 10:07:12 +02001833 /*
1834 * ->scheduled list can only be filled while a worker is
1835 * preparing to process a work or actually processing it.
1836 * Make sure nobody diddled with it while I was sleeping.
1837 */
1838 BUG_ON(!list_empty(&worker->scheduled));
1839
Tejun Heoe22bee72010-06-29 10:07:14 +02001840 /*
1841 * When control reaches this point, we're guaranteed to have
1842 * at least one idle worker or that someone else has already
1843 * assumed the manager role.
1844 */
1845 worker_clr_flags(worker, WORKER_PREP);
1846
1847 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02001848 struct work_struct *work =
Tejun Heo7e116292010-06-29 10:07:13 +02001849 list_first_entry(&gcwq->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02001850 struct work_struct, entry);
1851
1852 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
1853 /* optimization path, not strictly necessary */
1854 process_one_work(worker, work);
1855 if (unlikely(!list_empty(&worker->scheduled)))
1856 process_scheduled_works(worker);
1857 } else {
1858 move_linked_works(work, &worker->scheduled, NULL);
1859 process_scheduled_works(worker);
1860 }
Tejun Heoe22bee72010-06-29 10:07:14 +02001861 } while (keep_working(gcwq));
Tejun Heoc8e55f32010-06-29 10:07:12 +02001862
Tejun Heoe22bee72010-06-29 10:07:14 +02001863 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02001864sleep:
Tejun Heoe22bee72010-06-29 10:07:14 +02001865 if (unlikely(need_to_manage_workers(gcwq)) && manage_workers(worker))
1866 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02001867
Tejun Heoc8e55f32010-06-29 10:07:12 +02001868 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02001869 * gcwq->lock is held and there's no work to process and no
1870 * need to manage, sleep. Workers are woken up only while
1871 * holding gcwq->lock or from local cpu, so setting the
1872 * current state before releasing gcwq->lock is enough to
1873 * prevent losing any event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001874 */
1875 worker_enter_idle(worker);
1876 __set_current_state(TASK_INTERRUPTIBLE);
1877 spin_unlock_irq(&gcwq->lock);
1878 schedule();
1879 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
Tejun Heoe22bee72010-06-29 10:07:14 +02001882/**
1883 * rescuer_thread - the rescuer thread function
1884 * @__wq: the associated workqueue
1885 *
1886 * Workqueue rescuer thread function. There's one rescuer for each
1887 * workqueue which has WQ_RESCUER set.
1888 *
1889 * Regular work processing on a gcwq may block trying to create a new
1890 * worker which uses GFP_KERNEL allocation which has slight chance of
1891 * developing into deadlock if some works currently on the same queue
1892 * need to be processed to satisfy the GFP_KERNEL allocation. This is
1893 * the problem rescuer solves.
1894 *
1895 * When such condition is possible, the gcwq summons rescuers of all
1896 * workqueues which have works queued on the gcwq and let them process
1897 * those works so that forward progress can be guaranteed.
1898 *
1899 * This should happen rarely.
1900 */
1901static int rescuer_thread(void *__wq)
1902{
1903 struct workqueue_struct *wq = __wq;
1904 struct worker *rescuer = wq->rescuer;
1905 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02001906 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02001907 unsigned int cpu;
1908
1909 set_user_nice(current, RESCUER_NICE_LEVEL);
1910repeat:
1911 set_current_state(TASK_INTERRUPTIBLE);
1912
1913 if (kthread_should_stop())
1914 return 0;
1915
Tejun Heof3421792010-07-02 10:03:51 +02001916 /*
1917 * See whether any cpu is asking for help. Unbounded
1918 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
1919 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001920 for_each_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02001921 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
1922 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
Tejun Heoe22bee72010-06-29 10:07:14 +02001923 struct global_cwq *gcwq = cwq->gcwq;
1924 struct work_struct *work, *n;
1925
1926 __set_current_state(TASK_RUNNING);
1927 cpumask_clear_cpu(cpu, wq->mayday_mask);
1928
1929 /* migrate to the target cpu if possible */
1930 rescuer->gcwq = gcwq;
1931 worker_maybe_bind_and_lock(rescuer);
1932
1933 /*
1934 * Slurp in all works issued via this workqueue and
1935 * process'em.
1936 */
1937 BUG_ON(!list_empty(&rescuer->scheduled));
1938 list_for_each_entry_safe(work, n, &gcwq->worklist, entry)
1939 if (get_work_cwq(work) == cwq)
1940 move_linked_works(work, scheduled, &n);
1941
1942 process_scheduled_works(rescuer);
1943 spin_unlock_irq(&gcwq->lock);
1944 }
1945
1946 schedule();
1947 goto repeat;
1948}
1949
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07001950struct wq_barrier {
1951 struct work_struct work;
1952 struct completion done;
1953};
1954
1955static void wq_barrier_func(struct work_struct *work)
1956{
1957 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
1958 complete(&barr->done);
1959}
1960
Tejun Heo4690c4a2010-06-29 10:07:10 +02001961/**
1962 * insert_wq_barrier - insert a barrier work
1963 * @cwq: cwq to insert barrier into
1964 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02001965 * @target: target work to attach @barr to
1966 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02001967 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02001968 * @barr is linked to @target such that @barr is completed only after
1969 * @target finishes execution. Please note that the ordering
1970 * guarantee is observed only with respect to @target and on the local
1971 * cpu.
1972 *
1973 * Currently, a queued barrier can't be canceled. This is because
1974 * try_to_grab_pending() can't determine whether the work to be
1975 * grabbed is at the head of the queue and thus can't clear LINKED
1976 * flag of the previous work while there must be a valid next work
1977 * after a work with LINKED flag set.
1978 *
1979 * Note that when @worker is non-NULL, @target may be modified
1980 * underneath us, so we can't reliably determine cwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001981 *
1982 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001983 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001984 */
Oleg Nesterov83c22522007-05-09 02:33:54 -07001985static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02001986 struct wq_barrier *barr,
1987 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07001988{
Tejun Heoaffee4b2010-06-29 10:07:12 +02001989 struct list_head *head;
1990 unsigned int linked = 0;
1991
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001992 /*
Tejun Heo8b03ae32010-06-29 10:07:12 +02001993 * debugobject calls are safe here even with gcwq->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001994 * as we know for sure that this will not trigger any of the
1995 * checks and call back into the fixup functions where we
1996 * might deadlock.
1997 */
1998 INIT_WORK_ON_STACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02001999 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002000 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002001
Tejun Heoaffee4b2010-06-29 10:07:12 +02002002 /*
2003 * If @target is currently being executed, schedule the
2004 * barrier to the worker; otherwise, put it after @target.
2005 */
2006 if (worker)
2007 head = worker->scheduled.next;
2008 else {
2009 unsigned long *bits = work_data_bits(target);
2010
2011 head = target->entry.next;
2012 /* there can already be other linked works, inherit and set */
2013 linked = *bits & WORK_STRUCT_LINKED;
2014 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2015 }
2016
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002017 debug_work_activate(&barr->work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002018 insert_work(cwq, &barr->work, head,
2019 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002020}
2021
Tejun Heo73f53c42010-06-29 10:07:11 +02002022/**
2023 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2024 * @wq: workqueue being flushed
2025 * @flush_color: new flush color, < 0 for no-op
2026 * @work_color: new work color, < 0 for no-op
2027 *
2028 * Prepare cwqs for workqueue flushing.
2029 *
2030 * If @flush_color is non-negative, flush_color on all cwqs should be
2031 * -1. If no cwq has in-flight commands at the specified color, all
2032 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2033 * has in flight commands, its cwq->flush_color is set to
2034 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2035 * wakeup logic is armed and %true is returned.
2036 *
2037 * The caller should have initialized @wq->first_flusher prior to
2038 * calling this function with non-negative @flush_color. If
2039 * @flush_color is negative, no flush color update is done and %false
2040 * is returned.
2041 *
2042 * If @work_color is non-negative, all cwqs should have the same
2043 * work_color which is previous to @work_color and all will be
2044 * advanced to @work_color.
2045 *
2046 * CONTEXT:
2047 * mutex_lock(wq->flush_mutex).
2048 *
2049 * RETURNS:
2050 * %true if @flush_color >= 0 and there's something to flush. %false
2051 * otherwise.
2052 */
2053static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2054 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Tejun Heo73f53c42010-06-29 10:07:11 +02002056 bool wait = false;
2057 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002058
Tejun Heo73f53c42010-06-29 10:07:11 +02002059 if (flush_color >= 0) {
2060 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2061 atomic_set(&wq->nr_cwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002062 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002063
Tejun Heof3421792010-07-02 10:03:51 +02002064 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002065 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02002066 struct global_cwq *gcwq = cwq->gcwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002067
Tejun Heo8b03ae32010-06-29 10:07:12 +02002068 spin_lock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002069
2070 if (flush_color >= 0) {
2071 BUG_ON(cwq->flush_color != -1);
2072
2073 if (cwq->nr_in_flight[flush_color]) {
2074 cwq->flush_color = flush_color;
2075 atomic_inc(&wq->nr_cwqs_to_flush);
2076 wait = true;
2077 }
2078 }
2079
2080 if (work_color >= 0) {
2081 BUG_ON(work_color != work_next_color(cwq->work_color));
2082 cwq->work_color = work_color;
2083 }
2084
Tejun Heo8b03ae32010-06-29 10:07:12 +02002085 spin_unlock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002086 }
2087
2088 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2089 complete(&wq->first_flusher->done);
2090
2091 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
2093
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002094/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002096 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 *
2098 * Forces execution of the workqueue and blocks until its completion.
2099 * This is typically used in driver shutdown handlers.
2100 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002101 * We sleep until all works which were queued on entry have been handled,
2102 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002104void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
Tejun Heo73f53c42010-06-29 10:07:11 +02002106 struct wq_flusher this_flusher = {
2107 .list = LIST_HEAD_INIT(this_flusher.list),
2108 .flush_color = -1,
2109 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2110 };
2111 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002112
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002113 lock_map_acquire(&wq->lockdep_map);
2114 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002115
2116 mutex_lock(&wq->flush_mutex);
2117
2118 /*
2119 * Start-to-wait phase
2120 */
2121 next_color = work_next_color(wq->work_color);
2122
2123 if (next_color != wq->flush_color) {
2124 /*
2125 * Color space is not full. The current work_color
2126 * becomes our flush_color and work_color is advanced
2127 * by one.
2128 */
2129 BUG_ON(!list_empty(&wq->flusher_overflow));
2130 this_flusher.flush_color = wq->work_color;
2131 wq->work_color = next_color;
2132
2133 if (!wq->first_flusher) {
2134 /* no flush in progress, become the first flusher */
2135 BUG_ON(wq->flush_color != this_flusher.flush_color);
2136
2137 wq->first_flusher = &this_flusher;
2138
2139 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2140 wq->work_color)) {
2141 /* nothing to flush, done */
2142 wq->flush_color = next_color;
2143 wq->first_flusher = NULL;
2144 goto out_unlock;
2145 }
2146 } else {
2147 /* wait in queue */
2148 BUG_ON(wq->flush_color == this_flusher.flush_color);
2149 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2150 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2151 }
2152 } else {
2153 /*
2154 * Oops, color space is full, wait on overflow queue.
2155 * The next flush completion will assign us
2156 * flush_color and transfer to flusher_queue.
2157 */
2158 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2159 }
2160
2161 mutex_unlock(&wq->flush_mutex);
2162
2163 wait_for_completion(&this_flusher.done);
2164
2165 /*
2166 * Wake-up-and-cascade phase
2167 *
2168 * First flushers are responsible for cascading flushes and
2169 * handling overflow. Non-first flushers can simply return.
2170 */
2171 if (wq->first_flusher != &this_flusher)
2172 return;
2173
2174 mutex_lock(&wq->flush_mutex);
2175
Tejun Heo4ce48b32010-07-02 10:03:51 +02002176 /* we might have raced, check again with mutex held */
2177 if (wq->first_flusher != &this_flusher)
2178 goto out_unlock;
2179
Tejun Heo73f53c42010-06-29 10:07:11 +02002180 wq->first_flusher = NULL;
2181
2182 BUG_ON(!list_empty(&this_flusher.list));
2183 BUG_ON(wq->flush_color != this_flusher.flush_color);
2184
2185 while (true) {
2186 struct wq_flusher *next, *tmp;
2187
2188 /* complete all the flushers sharing the current flush color */
2189 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2190 if (next->flush_color != wq->flush_color)
2191 break;
2192 list_del_init(&next->list);
2193 complete(&next->done);
2194 }
2195
2196 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2197 wq->flush_color != work_next_color(wq->work_color));
2198
2199 /* this flush_color is finished, advance by one */
2200 wq->flush_color = work_next_color(wq->flush_color);
2201
2202 /* one color has been freed, handle overflow queue */
2203 if (!list_empty(&wq->flusher_overflow)) {
2204 /*
2205 * Assign the same color to all overflowed
2206 * flushers, advance work_color and append to
2207 * flusher_queue. This is the start-to-wait
2208 * phase for these overflowed flushers.
2209 */
2210 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2211 tmp->flush_color = wq->work_color;
2212
2213 wq->work_color = work_next_color(wq->work_color);
2214
2215 list_splice_tail_init(&wq->flusher_overflow,
2216 &wq->flusher_queue);
2217 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2218 }
2219
2220 if (list_empty(&wq->flusher_queue)) {
2221 BUG_ON(wq->flush_color != wq->work_color);
2222 break;
2223 }
2224
2225 /*
2226 * Need to flush more colors. Make the next flusher
2227 * the new first flusher and arm cwqs.
2228 */
2229 BUG_ON(wq->flush_color == wq->work_color);
2230 BUG_ON(wq->flush_color != next->flush_color);
2231
2232 list_del_init(&next->list);
2233 wq->first_flusher = next;
2234
2235 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2236 break;
2237
2238 /*
2239 * Meh... this color is already done, clear first
2240 * flusher and repeat cascading.
2241 */
2242 wq->first_flusher = NULL;
2243 }
2244
2245out_unlock:
2246 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247}
Dave Jonesae90dd52006-06-30 01:40:45 -04002248EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Oleg Nesterovdb700892008-07-25 01:47:49 -07002250/**
2251 * flush_work - block until a work_struct's callback has terminated
2252 * @work: the work which is to be flushed
2253 *
Oleg Nesterova67da702008-07-25 01:47:52 -07002254 * Returns false if @work has already terminated.
2255 *
Oleg Nesterovdb700892008-07-25 01:47:49 -07002256 * It is expected that, prior to calling flush_work(), the caller has
2257 * arranged for the work to not be requeued, otherwise it doesn't make
2258 * sense to use this function.
2259 */
2260int flush_work(struct work_struct *work)
2261{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002262 struct worker *worker = NULL;
Tejun Heo8b03ae32010-06-29 10:07:12 +02002263 struct global_cwq *gcwq;
Tejun Heo7a22ad72010-06-29 10:07:13 +02002264 struct cpu_workqueue_struct *cwq;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002265 struct wq_barrier barr;
2266
2267 might_sleep();
Tejun Heo7a22ad72010-06-29 10:07:13 +02002268 gcwq = get_work_gcwq(work);
2269 if (!gcwq)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002270 return 0;
Oleg Nesterova67da702008-07-25 01:47:52 -07002271
Tejun Heo8b03ae32010-06-29 10:07:12 +02002272 spin_lock_irq(&gcwq->lock);
Oleg Nesterovdb700892008-07-25 01:47:49 -07002273 if (!list_empty(&work->entry)) {
2274 /*
2275 * See the comment near try_to_grab_pending()->smp_rmb().
Tejun Heo7a22ad72010-06-29 10:07:13 +02002276 * If it was re-queued to a different gcwq under us, we
2277 * are not going to wait.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002278 */
2279 smp_rmb();
Tejun Heo7a22ad72010-06-29 10:07:13 +02002280 cwq = get_work_cwq(work);
2281 if (unlikely(!cwq || gcwq != cwq->gcwq))
Tejun Heo4690c4a2010-06-29 10:07:10 +02002282 goto already_gone;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002283 } else {
Tejun Heo7a22ad72010-06-29 10:07:13 +02002284 worker = find_worker_executing_work(gcwq, work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002285 if (!worker)
Tejun Heo4690c4a2010-06-29 10:07:10 +02002286 goto already_gone;
Tejun Heo7a22ad72010-06-29 10:07:13 +02002287 cwq = worker->current_cwq;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002288 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002289
Tejun Heoaffee4b2010-06-29 10:07:12 +02002290 insert_wq_barrier(cwq, &barr, work, worker);
Tejun Heo8b03ae32010-06-29 10:07:12 +02002291 spin_unlock_irq(&gcwq->lock);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002292
2293 lock_map_acquire(&cwq->wq->lockdep_map);
2294 lock_map_release(&cwq->wq->lockdep_map);
2295
Oleg Nesterovdb700892008-07-25 01:47:49 -07002296 wait_for_completion(&barr.done);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002297 destroy_work_on_stack(&barr.work);
Oleg Nesterovdb700892008-07-25 01:47:49 -07002298 return 1;
Tejun Heo4690c4a2010-06-29 10:07:10 +02002299already_gone:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002300 spin_unlock_irq(&gcwq->lock);
Tejun Heo4690c4a2010-06-29 10:07:10 +02002301 return 0;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002302}
2303EXPORT_SYMBOL_GPL(flush_work);
2304
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002305/*
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002306 * Upon a successful return (>= 0), the caller "owns" WORK_STRUCT_PENDING bit,
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002307 * so this work can't be re-armed in any way.
2308 */
2309static int try_to_grab_pending(struct work_struct *work)
2310{
Tejun Heo8b03ae32010-06-29 10:07:12 +02002311 struct global_cwq *gcwq;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002312 int ret = -1;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002313
Tejun Heo22df02b2010-06-29 10:07:10 +02002314 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002315 return 0;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002316
2317 /*
2318 * The queueing is in progress, or it is already queued. Try to
2319 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
2320 */
Tejun Heo7a22ad72010-06-29 10:07:13 +02002321 gcwq = get_work_gcwq(work);
2322 if (!gcwq)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002323 return ret;
2324
Tejun Heo8b03ae32010-06-29 10:07:12 +02002325 spin_lock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002326 if (!list_empty(&work->entry)) {
2327 /*
Tejun Heo7a22ad72010-06-29 10:07:13 +02002328 * This work is queued, but perhaps we locked the wrong gcwq.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002329 * In that case we must see the new value after rmb(), see
2330 * insert_work()->wmb().
2331 */
2332 smp_rmb();
Tejun Heo7a22ad72010-06-29 10:07:13 +02002333 if (gcwq == get_work_gcwq(work)) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002334 debug_work_deactivate(work);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002335 list_del_init(&work->entry);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002336 cwq_dec_nr_in_flight(get_work_cwq(work),
2337 get_work_color(work));
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002338 ret = 1;
2339 }
2340 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02002341 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002342
2343 return ret;
2344}
2345
Tejun Heo7a22ad72010-06-29 10:07:13 +02002346static void wait_on_cpu_work(struct global_cwq *gcwq, struct work_struct *work)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002347{
2348 struct wq_barrier barr;
Tejun Heoaffee4b2010-06-29 10:07:12 +02002349 struct worker *worker;
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002350
Tejun Heo8b03ae32010-06-29 10:07:12 +02002351 spin_lock_irq(&gcwq->lock);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002352
Tejun Heo7a22ad72010-06-29 10:07:13 +02002353 worker = find_worker_executing_work(gcwq, work);
2354 if (unlikely(worker))
2355 insert_wq_barrier(worker->current_cwq, &barr, work, worker);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002356
Tejun Heo8b03ae32010-06-29 10:07:12 +02002357 spin_unlock_irq(&gcwq->lock);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002358
Tejun Heoaffee4b2010-06-29 10:07:12 +02002359 if (unlikely(worker)) {
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002360 wait_for_completion(&barr.done);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002361 destroy_work_on_stack(&barr.work);
2362 }
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002363}
2364
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002365static void wait_on_work(struct work_struct *work)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002366{
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002367 int cpu;
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002368
Oleg Nesterovf293ea92007-05-09 02:34:10 -07002369 might_sleep();
2370
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002371 lock_map_acquire(&work->lockdep_map);
2372 lock_map_release(&work->lockdep_map);
Johannes Berg4e6045f2007-10-18 23:39:55 -07002373
Tejun Heof3421792010-07-02 10:03:51 +02002374 for_each_gcwq_cpu(cpu)
Tejun Heo7a22ad72010-06-29 10:07:13 +02002375 wait_on_cpu_work(get_gcwq(cpu), work);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002376}
2377
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002378static int __cancel_work_timer(struct work_struct *work,
2379 struct timer_list* timer)
2380{
2381 int ret;
2382
2383 do {
2384 ret = (timer && likely(del_timer(timer)));
2385 if (!ret)
2386 ret = try_to_grab_pending(work);
2387 wait_on_work(work);
2388 } while (unlikely(ret < 0));
2389
Tejun Heo7a22ad72010-06-29 10:07:13 +02002390 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002391 return ret;
2392}
2393
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002394/**
2395 * cancel_work_sync - block until a work_struct's callback has terminated
2396 * @work: the work which is to be flushed
2397 *
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002398 * Returns true if @work was pending.
2399 *
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002400 * cancel_work_sync() will cancel the work if it is queued. If the work's
2401 * callback appears to be running, cancel_work_sync() will block until it
2402 * has completed.
2403 *
2404 * It is possible to use this function if the work re-queues itself. It can
2405 * cancel the work even if it migrates to another workqueue, however in that
2406 * case it only guarantees that work->func() has completed on the last queued
2407 * workqueue.
2408 *
2409 * cancel_work_sync(&delayed_work->work) should be used only if ->timer is not
2410 * pending, otherwise it goes into a busy-wait loop until the timer expires.
2411 *
2412 * The caller must ensure that workqueue_struct on which this work was last
2413 * queued can't be destroyed before this function returns.
2414 */
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002415int cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002416{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002417 return __cancel_work_timer(work, NULL);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002418}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002419EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002420
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002421/**
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002422 * cancel_delayed_work_sync - reliably kill off a delayed work.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002423 * @dwork: the delayed work struct
2424 *
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002425 * Returns true if @dwork was pending.
2426 *
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002427 * It is possible to use this function if @dwork rearms itself via queue_work()
2428 * or queue_delayed_work(). See also the comment for cancel_work_sync().
2429 */
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002430int cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002431{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002432 return __cancel_work_timer(&dwork->work, &dwork->timer);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002433}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002434EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002436/**
2437 * schedule_work - put work task in global workqueue
2438 * @work: job to be done
2439 *
Bart Van Assche5b0f437d2009-07-30 19:00:53 +02002440 * Returns zero if @work was already on the kernel-global workqueue and
2441 * non-zero otherwise.
2442 *
2443 * This puts a job in the kernel-global workqueue if it was not already
2444 * queued and leaves it in the same position on the kernel-global
2445 * workqueue otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002446 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002447int schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
Tejun Heod320c032010-06-29 10:07:14 +02002449 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450}
Dave Jonesae90dd52006-06-30 01:40:45 -04002451EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Zhang Ruic1a220e2008-07-23 21:28:39 -07002453/*
2454 * schedule_work_on - put work task on a specific cpu
2455 * @cpu: cpu to put the work task on
2456 * @work: job to be done
2457 *
2458 * This puts a job on a specific cpu
2459 */
2460int schedule_work_on(int cpu, struct work_struct *work)
2461{
Tejun Heod320c032010-06-29 10:07:14 +02002462 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002463}
2464EXPORT_SYMBOL(schedule_work_on);
2465
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002466/**
2467 * schedule_delayed_work - put work task in global workqueue after delay
David Howells52bad642006-11-22 14:54:01 +00002468 * @dwork: job to be done
2469 * @delay: number of jiffies to wait or 0 for immediate execution
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002470 *
2471 * After waiting for a given time this puts a job in the kernel-global
2472 * workqueue.
2473 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002474int schedule_delayed_work(struct delayed_work *dwork,
Ingo Molnar82f67cd2007-02-16 01:28:13 -08002475 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
Tejun Heod320c032010-06-29 10:07:14 +02002477 return queue_delayed_work(system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
Dave Jonesae90dd52006-06-30 01:40:45 -04002479EXPORT_SYMBOL(schedule_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002481/**
Linus Torvalds8c53e462009-10-14 09:16:42 -07002482 * flush_delayed_work - block until a dwork_struct's callback has terminated
2483 * @dwork: the delayed work which is to be flushed
2484 *
2485 * Any timeout is cancelled, and any pending work is run immediately.
2486 */
2487void flush_delayed_work(struct delayed_work *dwork)
2488{
2489 if (del_timer_sync(&dwork->timer)) {
Tejun Heo7a22ad72010-06-29 10:07:13 +02002490 __queue_work(get_cpu(), get_work_cwq(&dwork->work)->wq,
Tejun Heo4690c4a2010-06-29 10:07:10 +02002491 &dwork->work);
Linus Torvalds8c53e462009-10-14 09:16:42 -07002492 put_cpu();
2493 }
2494 flush_work(&dwork->work);
2495}
2496EXPORT_SYMBOL(flush_delayed_work);
2497
2498/**
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002499 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
2500 * @cpu: cpu to use
David Howells52bad642006-11-22 14:54:01 +00002501 * @dwork: job to be done
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002502 * @delay: number of jiffies to wait
2503 *
2504 * After waiting for a given time this puts a job in the kernel-global
2505 * workqueue on the specified CPU.
2506 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507int schedule_delayed_work_on(int cpu,
David Howells52bad642006-11-22 14:54:01 +00002508 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
Tejun Heod320c032010-06-29 10:07:14 +02002510 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511}
Dave Jonesae90dd52006-06-30 01:40:45 -04002512EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Andrew Mortonb6136772006-06-25 05:47:49 -07002514/**
2515 * schedule_on_each_cpu - call a function on each online CPU from keventd
2516 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07002517 *
2518 * Returns zero on success.
2519 * Returns -ve errno on failure.
2520 *
Andrew Mortonb6136772006-06-25 05:47:49 -07002521 * schedule_on_each_cpu() is very slow.
2522 */
David Howells65f27f32006-11-22 14:55:48 +00002523int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002524{
2525 int cpu;
Andrew Mortonb6136772006-06-25 05:47:49 -07002526 struct work_struct *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08002527
Andrew Mortonb6136772006-06-25 05:47:49 -07002528 works = alloc_percpu(struct work_struct);
2529 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002530 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07002531
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002532 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08002533
Christoph Lameter15316ba2006-01-08 01:00:43 -08002534 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01002535 struct work_struct *work = per_cpu_ptr(works, cpu);
2536
2537 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002538 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02002539 }
Tejun Heo93981802009-11-17 14:06:20 -08002540
2541 for_each_online_cpu(cpu)
2542 flush_work(per_cpu_ptr(works, cpu));
2543
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002544 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07002545 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08002546 return 0;
2547}
2548
Alan Sterneef6a7d2010-02-12 17:39:21 +09002549/**
2550 * flush_scheduled_work - ensure that any scheduled work has run to completion.
2551 *
2552 * Forces execution of the kernel-global workqueue and blocks until its
2553 * completion.
2554 *
2555 * Think twice before calling this function! It's very easy to get into
2556 * trouble if you don't take great care. Either of the following situations
2557 * will lead to deadlock:
2558 *
2559 * One of the work items currently on the workqueue needs to acquire
2560 * a lock held by your code or its caller.
2561 *
2562 * Your code is running in the context of a work routine.
2563 *
2564 * They will be detected by lockdep when they occur, but the first might not
2565 * occur very often. It depends on what work items are on the workqueue and
2566 * what locks they need, which you have no control over.
2567 *
2568 * In most situations flushing the entire workqueue is overkill; you merely
2569 * need to know that a particular work item isn't queued and isn't running.
2570 * In such cases you should use cancel_delayed_work_sync() or
2571 * cancel_work_sync() instead.
2572 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573void flush_scheduled_work(void)
2574{
Tejun Heod320c032010-06-29 10:07:14 +02002575 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576}
Dave Jonesae90dd52006-06-30 01:40:45 -04002577EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
2579/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06002580 * execute_in_process_context - reliably execute the routine with user context
2581 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06002582 * @ew: guaranteed storage for the execute work structure (must
2583 * be available when the work executes)
2584 *
2585 * Executes the function immediately if process context is available,
2586 * otherwise schedules the function for delayed execution.
2587 *
2588 * Returns: 0 - function was executed
2589 * 1 - function was scheduled for execution
2590 */
David Howells65f27f32006-11-22 14:55:48 +00002591int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06002592{
2593 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00002594 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06002595 return 0;
2596 }
2597
David Howells65f27f32006-11-22 14:55:48 +00002598 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06002599 schedule_work(&ew->work);
2600
2601 return 1;
2602}
2603EXPORT_SYMBOL_GPL(execute_in_process_context);
2604
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605int keventd_up(void)
2606{
Tejun Heod320c032010-06-29 10:07:14 +02002607 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608}
2609
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002610static int alloc_cwqs(struct workqueue_struct *wq)
Tejun Heo0f900042010-06-29 10:07:11 +02002611{
2612 /*
2613 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
2614 * Make sure that the alignment isn't lower than that of
2615 * unsigned long long.
2616 */
2617 const size_t size = sizeof(struct cpu_workqueue_struct);
2618 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
2619 __alignof__(unsigned long long));
Tejun Heo0f900042010-06-29 10:07:11 +02002620
Tejun Heof3421792010-07-02 10:03:51 +02002621 if (CONFIG_SMP && !(wq->flags & WQ_UNBOUND)) {
2622 /* on SMP, percpu allocator can align itself */
2623 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
2624 } else {
2625 void *ptr;
2626
2627 /*
2628 * Allocate enough room to align cwq and put an extra
2629 * pointer at the end pointing back to the originally
2630 * allocated pointer which will be used for free.
2631 */
2632 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
2633 if (ptr) {
2634 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
2635 *(void **)(wq->cpu_wq.single + 1) = ptr;
2636 }
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002637 }
Tejun Heof3421792010-07-02 10:03:51 +02002638
Tejun Heo0f900042010-06-29 10:07:11 +02002639 /* just in case, make sure it's actually aligned */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002640 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
2641 return wq->cpu_wq.v ? 0 : -ENOMEM;
Tejun Heo0f900042010-06-29 10:07:11 +02002642}
2643
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002644static void free_cwqs(struct workqueue_struct *wq)
Tejun Heo0f900042010-06-29 10:07:11 +02002645{
Tejun Heof3421792010-07-02 10:03:51 +02002646 if (CONFIG_SMP && !(wq->flags & WQ_UNBOUND))
2647 free_percpu(wq->cpu_wq.pcpu);
2648 else if (wq->cpu_wq.single) {
2649 /* the pointer to free is stored right after the cwq */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002650 kfree(*(void **)(wq->cpu_wq.single + 1));
Tejun Heof3421792010-07-02 10:03:51 +02002651 }
Tejun Heo0f900042010-06-29 10:07:11 +02002652}
2653
Tejun Heof3421792010-07-02 10:03:51 +02002654static int wq_clamp_max_active(int max_active, unsigned int flags,
2655 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02002656{
Tejun Heof3421792010-07-02 10:03:51 +02002657 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
2658
2659 if (max_active < 1 || max_active > lim)
Tejun Heob71ab8c2010-06-29 10:07:14 +02002660 printk(KERN_WARNING "workqueue: max_active %d requested for %s "
2661 "is out of range, clamping between %d and %d\n",
Tejun Heof3421792010-07-02 10:03:51 +02002662 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002663
Tejun Heof3421792010-07-02 10:03:51 +02002664 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002665}
2666
Tejun Heod320c032010-06-29 10:07:14 +02002667struct workqueue_struct *__alloc_workqueue_key(const char *name,
2668 unsigned int flags,
2669 int max_active,
2670 struct lock_class_key *key,
2671 const char *lock_name)
Oleg Nesterov3af244332007-05-09 02:34:09 -07002672{
2673 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02002674 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002675
Tejun Heof3421792010-07-02 10:03:51 +02002676 /*
2677 * Unbound workqueues aren't concurrency managed and should be
2678 * dispatched to workers immediately.
2679 */
2680 if (flags & WQ_UNBOUND)
2681 flags |= WQ_HIGHPRI;
2682
Tejun Heod320c032010-06-29 10:07:14 +02002683 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heof3421792010-07-02 10:03:51 +02002684 max_active = wq_clamp_max_active(max_active, flags, name);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02002685
Oleg Nesterov3af244332007-05-09 02:34:09 -07002686 wq = kzalloc(sizeof(*wq), GFP_KERNEL);
2687 if (!wq)
Tejun Heo4690c4a2010-06-29 10:07:10 +02002688 goto err;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002689
Tejun Heo97e37d72010-06-29 10:07:10 +02002690 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02002691 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02002692 mutex_init(&wq->flush_mutex);
2693 atomic_set(&wq->nr_cwqs_to_flush, 0);
2694 INIT_LIST_HEAD(&wq->flusher_queue);
2695 INIT_LIST_HEAD(&wq->flusher_overflow);
Tejun Heo502ca9d2010-06-29 10:07:13 +02002696
Oleg Nesterov3af244332007-05-09 02:34:09 -07002697 wq->name = name;
Johannes Bergeb13ba82008-01-16 09:51:58 +01002698 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07002699 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002700
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002701 if (alloc_cwqs(wq) < 0)
2702 goto err;
2703
Tejun Heof3421792010-07-02 10:03:51 +02002704 for_each_cwq_cpu(cpu, wq) {
Tejun Heo15376632010-06-29 10:07:11 +02002705 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02002706 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo15376632010-06-29 10:07:11 +02002707
Tejun Heo0f900042010-06-29 10:07:11 +02002708 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo8b03ae32010-06-29 10:07:12 +02002709 cwq->gcwq = gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02002710 cwq->wq = wq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002711 cwq->flush_color = -1;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02002712 cwq->max_active = max_active;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02002713 INIT_LIST_HEAD(&cwq->delayed_works);
Tejun Heoe22bee72010-06-29 10:07:14 +02002714 }
Tejun Heo15376632010-06-29 10:07:11 +02002715
Tejun Heoe22bee72010-06-29 10:07:14 +02002716 if (flags & WQ_RESCUER) {
2717 struct worker *rescuer;
2718
2719 if (!alloc_cpumask_var(&wq->mayday_mask, GFP_KERNEL))
2720 goto err;
2721
2722 wq->rescuer = rescuer = alloc_worker();
2723 if (!rescuer)
2724 goto err;
2725
2726 rescuer->task = kthread_create(rescuer_thread, wq, "%s", name);
2727 if (IS_ERR(rescuer->task))
2728 goto err;
2729
2730 wq->rescuer = rescuer;
2731 rescuer->task->flags |= PF_THREAD_BOUND;
2732 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002733 }
2734
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02002735 /*
2736 * workqueue_lock protects global freeze state and workqueues
2737 * list. Grab it, set max_active accordingly and add the new
2738 * workqueue to workqueues list.
2739 */
Tejun Heo15376632010-06-29 10:07:11 +02002740 spin_lock(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02002741
2742 if (workqueue_freezing && wq->flags & WQ_FREEZEABLE)
Tejun Heof3421792010-07-02 10:03:51 +02002743 for_each_cwq_cpu(cpu, wq)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02002744 get_cwq(cpu, wq)->max_active = 0;
2745
Tejun Heo15376632010-06-29 10:07:11 +02002746 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02002747
Tejun Heo15376632010-06-29 10:07:11 +02002748 spin_unlock(&workqueue_lock);
2749
Oleg Nesterov3af244332007-05-09 02:34:09 -07002750 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02002751err:
2752 if (wq) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002753 free_cwqs(wq);
Tejun Heoe22bee72010-06-29 10:07:14 +02002754 free_cpumask_var(wq->mayday_mask);
2755 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02002756 kfree(wq);
2757 }
2758 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002759}
Tejun Heod320c032010-06-29 10:07:14 +02002760EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002761
Oleg Nesterov3af244332007-05-09 02:34:09 -07002762/**
2763 * destroy_workqueue - safely terminate a workqueue
2764 * @wq: target workqueue
2765 *
2766 * Safely destroy a workqueue. All work currently pending will be done first.
2767 */
2768void destroy_workqueue(struct workqueue_struct *wq)
2769{
Tejun Heoc8e55f32010-06-29 10:07:12 +02002770 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002771
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02002772 flush_workqueue(wq);
2773
2774 /*
2775 * wq list is used to freeze wq, remove from list after
2776 * flushing is complete in case freeze races us.
2777 */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002778 spin_lock(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002779 list_del(&wq->list);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002780 spin_unlock(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002781
Tejun Heoe22bee72010-06-29 10:07:14 +02002782 /* sanity check */
Tejun Heof3421792010-07-02 10:03:51 +02002783 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002784 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
2785 int i;
2786
Tejun Heo73f53c42010-06-29 10:07:11 +02002787 for (i = 0; i < WORK_NR_COLORS; i++)
2788 BUG_ON(cwq->nr_in_flight[i]);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02002789 BUG_ON(cwq->nr_active);
2790 BUG_ON(!list_empty(&cwq->delayed_works));
Tejun Heo73f53c42010-06-29 10:07:11 +02002791 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07002792
Tejun Heoe22bee72010-06-29 10:07:14 +02002793 if (wq->flags & WQ_RESCUER) {
2794 kthread_stop(wq->rescuer->task);
2795 free_cpumask_var(wq->mayday_mask);
2796 }
2797
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002798 free_cwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002799 kfree(wq);
2800}
2801EXPORT_SYMBOL_GPL(destroy_workqueue);
2802
Tejun Heodcd989c2010-06-29 10:07:14 +02002803/**
2804 * workqueue_set_max_active - adjust max_active of a workqueue
2805 * @wq: target workqueue
2806 * @max_active: new max_active value.
2807 *
2808 * Set max_active of @wq to @max_active.
2809 *
2810 * CONTEXT:
2811 * Don't call from IRQ context.
2812 */
2813void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
2814{
2815 unsigned int cpu;
2816
Tejun Heof3421792010-07-02 10:03:51 +02002817 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02002818
2819 spin_lock(&workqueue_lock);
2820
2821 wq->saved_max_active = max_active;
2822
Tejun Heof3421792010-07-02 10:03:51 +02002823 for_each_cwq_cpu(cpu, wq) {
Tejun Heodcd989c2010-06-29 10:07:14 +02002824 struct global_cwq *gcwq = get_gcwq(cpu);
2825
2826 spin_lock_irq(&gcwq->lock);
2827
2828 if (!(wq->flags & WQ_FREEZEABLE) ||
2829 !(gcwq->flags & GCWQ_FREEZING))
2830 get_cwq(gcwq->cpu, wq)->max_active = max_active;
2831
2832 spin_unlock_irq(&gcwq->lock);
2833 }
2834
2835 spin_unlock(&workqueue_lock);
2836}
2837EXPORT_SYMBOL_GPL(workqueue_set_max_active);
2838
2839/**
2840 * workqueue_congested - test whether a workqueue is congested
2841 * @cpu: CPU in question
2842 * @wq: target workqueue
2843 *
2844 * Test whether @wq's cpu workqueue for @cpu is congested. There is
2845 * no synchronization around this function and the test result is
2846 * unreliable and only useful as advisory hints or for debugging.
2847 *
2848 * RETURNS:
2849 * %true if congested, %false otherwise.
2850 */
2851bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
2852{
2853 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
2854
2855 return !list_empty(&cwq->delayed_works);
2856}
2857EXPORT_SYMBOL_GPL(workqueue_congested);
2858
2859/**
2860 * work_cpu - return the last known associated cpu for @work
2861 * @work: the work of interest
2862 *
2863 * RETURNS:
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002864 * CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
Tejun Heodcd989c2010-06-29 10:07:14 +02002865 */
2866unsigned int work_cpu(struct work_struct *work)
2867{
2868 struct global_cwq *gcwq = get_work_gcwq(work);
2869
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002870 return gcwq ? gcwq->cpu : WORK_CPU_NONE;
Tejun Heodcd989c2010-06-29 10:07:14 +02002871}
2872EXPORT_SYMBOL_GPL(work_cpu);
2873
2874/**
2875 * work_busy - test whether a work is currently pending or running
2876 * @work: the work to be tested
2877 *
2878 * Test whether @work is currently pending or running. There is no
2879 * synchronization around this function and the test result is
2880 * unreliable and only useful as advisory hints or for debugging.
2881 * Especially for reentrant wqs, the pending state might hide the
2882 * running state.
2883 *
2884 * RETURNS:
2885 * OR'd bitmask of WORK_BUSY_* bits.
2886 */
2887unsigned int work_busy(struct work_struct *work)
2888{
2889 struct global_cwq *gcwq = get_work_gcwq(work);
2890 unsigned long flags;
2891 unsigned int ret = 0;
2892
2893 if (!gcwq)
2894 return false;
2895
2896 spin_lock_irqsave(&gcwq->lock, flags);
2897
2898 if (work_pending(work))
2899 ret |= WORK_BUSY_PENDING;
2900 if (find_worker_executing_work(gcwq, work))
2901 ret |= WORK_BUSY_RUNNING;
2902
2903 spin_unlock_irqrestore(&gcwq->lock, flags);
2904
2905 return ret;
2906}
2907EXPORT_SYMBOL_GPL(work_busy);
2908
Tejun Heodb7bccf2010-06-29 10:07:12 +02002909/*
2910 * CPU hotplug.
2911 *
Tejun Heoe22bee72010-06-29 10:07:14 +02002912 * There are two challenges in supporting CPU hotplug. Firstly, there
2913 * are a lot of assumptions on strong associations among work, cwq and
2914 * gcwq which make migrating pending and scheduled works very
2915 * difficult to implement without impacting hot paths. Secondly,
2916 * gcwqs serve mix of short, long and very long running works making
2917 * blocked draining impractical.
2918 *
2919 * This is solved by allowing a gcwq to be detached from CPU, running
2920 * it with unbound (rogue) workers and allowing it to be reattached
2921 * later if the cpu comes back online. A separate thread is created
2922 * to govern a gcwq in such state and is called the trustee of the
2923 * gcwq.
Tejun Heodb7bccf2010-06-29 10:07:12 +02002924 *
2925 * Trustee states and their descriptions.
2926 *
2927 * START Command state used on startup. On CPU_DOWN_PREPARE, a
2928 * new trustee is started with this state.
2929 *
2930 * IN_CHARGE Once started, trustee will enter this state after
Tejun Heoe22bee72010-06-29 10:07:14 +02002931 * assuming the manager role and making all existing
2932 * workers rogue. DOWN_PREPARE waits for trustee to
2933 * enter this state. After reaching IN_CHARGE, trustee
2934 * tries to execute the pending worklist until it's empty
2935 * and the state is set to BUTCHER, or the state is set
2936 * to RELEASE.
Tejun Heodb7bccf2010-06-29 10:07:12 +02002937 *
2938 * BUTCHER Command state which is set by the cpu callback after
2939 * the cpu has went down. Once this state is set trustee
2940 * knows that there will be no new works on the worklist
2941 * and once the worklist is empty it can proceed to
2942 * killing idle workers.
2943 *
2944 * RELEASE Command state which is set by the cpu callback if the
2945 * cpu down has been canceled or it has come online
2946 * again. After recognizing this state, trustee stops
Tejun Heoe22bee72010-06-29 10:07:14 +02002947 * trying to drain or butcher and clears ROGUE, rebinds
2948 * all remaining workers back to the cpu and releases
2949 * manager role.
Tejun Heodb7bccf2010-06-29 10:07:12 +02002950 *
2951 * DONE Trustee will enter this state after BUTCHER or RELEASE
2952 * is complete.
2953 *
2954 * trustee CPU draining
2955 * took over down complete
2956 * START -----------> IN_CHARGE -----------> BUTCHER -----------> DONE
2957 * | | ^
2958 * | CPU is back online v return workers |
2959 * ----------------> RELEASE --------------
2960 */
2961
2962/**
2963 * trustee_wait_event_timeout - timed event wait for trustee
2964 * @cond: condition to wait for
2965 * @timeout: timeout in jiffies
2966 *
2967 * wait_event_timeout() for trustee to use. Handles locking and
2968 * checks for RELEASE request.
2969 *
2970 * CONTEXT:
2971 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
2972 * multiple times. To be used by trustee.
2973 *
2974 * RETURNS:
2975 * Positive indicating left time if @cond is satisfied, 0 if timed
2976 * out, -1 if canceled.
2977 */
2978#define trustee_wait_event_timeout(cond, timeout) ({ \
2979 long __ret = (timeout); \
2980 while (!((cond) || (gcwq->trustee_state == TRUSTEE_RELEASE)) && \
2981 __ret) { \
2982 spin_unlock_irq(&gcwq->lock); \
2983 __wait_event_timeout(gcwq->trustee_wait, (cond) || \
2984 (gcwq->trustee_state == TRUSTEE_RELEASE), \
2985 __ret); \
2986 spin_lock_irq(&gcwq->lock); \
2987 } \
2988 gcwq->trustee_state == TRUSTEE_RELEASE ? -1 : (__ret); \
2989})
2990
2991/**
2992 * trustee_wait_event - event wait for trustee
2993 * @cond: condition to wait for
2994 *
2995 * wait_event() for trustee to use. Automatically handles locking and
2996 * checks for CANCEL request.
2997 *
2998 * CONTEXT:
2999 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3000 * multiple times. To be used by trustee.
3001 *
3002 * RETURNS:
3003 * 0 if @cond is satisfied, -1 if canceled.
3004 */
3005#define trustee_wait_event(cond) ({ \
3006 long __ret1; \
3007 __ret1 = trustee_wait_event_timeout(cond, MAX_SCHEDULE_TIMEOUT);\
3008 __ret1 < 0 ? -1 : 0; \
3009})
3010
3011static int __cpuinit trustee_thread(void *__gcwq)
3012{
3013 struct global_cwq *gcwq = __gcwq;
3014 struct worker *worker;
Tejun Heoe22bee72010-06-29 10:07:14 +02003015 struct work_struct *work;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003016 struct hlist_node *pos;
Tejun Heoe22bee72010-06-29 10:07:14 +02003017 long rc;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003018 int i;
3019
3020 BUG_ON(gcwq->cpu != smp_processor_id());
3021
3022 spin_lock_irq(&gcwq->lock);
3023 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02003024 * Claim the manager position and make all workers rogue.
3025 * Trustee must be bound to the target cpu and can't be
3026 * cancelled.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003027 */
3028 BUG_ON(gcwq->cpu != smp_processor_id());
Tejun Heoe22bee72010-06-29 10:07:14 +02003029 rc = trustee_wait_event(!(gcwq->flags & GCWQ_MANAGING_WORKERS));
3030 BUG_ON(rc < 0);
3031
3032 gcwq->flags |= GCWQ_MANAGING_WORKERS;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003033
3034 list_for_each_entry(worker, &gcwq->idle_list, entry)
Tejun Heocb444762010-07-02 10:03:50 +02003035 worker->flags |= WORKER_ROGUE;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003036
3037 for_each_busy_worker(worker, i, pos, gcwq)
Tejun Heocb444762010-07-02 10:03:50 +02003038 worker->flags |= WORKER_ROGUE;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003039
3040 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02003041 * Call schedule() so that we cross rq->lock and thus can
3042 * guarantee sched callbacks see the rogue flag. This is
3043 * necessary as scheduler callbacks may be invoked from other
3044 * cpus.
3045 */
3046 spin_unlock_irq(&gcwq->lock);
3047 schedule();
3048 spin_lock_irq(&gcwq->lock);
3049
3050 /*
Tejun Heocb444762010-07-02 10:03:50 +02003051 * Sched callbacks are disabled now. Zap nr_running. After
3052 * this, nr_running stays zero and need_more_worker() and
3053 * keep_working() are always true as long as the worklist is
3054 * not empty.
Tejun Heoe22bee72010-06-29 10:07:14 +02003055 */
Tejun Heocb444762010-07-02 10:03:50 +02003056 atomic_set(get_gcwq_nr_running(gcwq->cpu), 0);
Tejun Heoe22bee72010-06-29 10:07:14 +02003057
3058 spin_unlock_irq(&gcwq->lock);
3059 del_timer_sync(&gcwq->idle_timer);
3060 spin_lock_irq(&gcwq->lock);
3061
3062 /*
Tejun Heodb7bccf2010-06-29 10:07:12 +02003063 * We're now in charge. Notify and proceed to drain. We need
3064 * to keep the gcwq running during the whole CPU down
3065 * procedure as other cpu hotunplug callbacks may need to
3066 * flush currently running tasks.
3067 */
3068 gcwq->trustee_state = TRUSTEE_IN_CHARGE;
3069 wake_up_all(&gcwq->trustee_wait);
3070
3071 /*
3072 * The original cpu is in the process of dying and may go away
3073 * anytime now. When that happens, we and all workers would
Tejun Heoe22bee72010-06-29 10:07:14 +02003074 * be migrated to other cpus. Try draining any left work. We
3075 * want to get it over with ASAP - spam rescuers, wake up as
3076 * many idlers as necessary and create new ones till the
3077 * worklist is empty. Note that if the gcwq is frozen, there
3078 * may be frozen works in freezeable cwqs. Don't declare
3079 * completion while frozen.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003080 */
3081 while (gcwq->nr_workers != gcwq->nr_idle ||
3082 gcwq->flags & GCWQ_FREEZING ||
3083 gcwq->trustee_state == TRUSTEE_IN_CHARGE) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003084 int nr_works = 0;
3085
3086 list_for_each_entry(work, &gcwq->worklist, entry) {
3087 send_mayday(work);
3088 nr_works++;
3089 }
3090
3091 list_for_each_entry(worker, &gcwq->idle_list, entry) {
3092 if (!nr_works--)
3093 break;
3094 wake_up_process(worker->task);
3095 }
3096
3097 if (need_to_create_worker(gcwq)) {
3098 spin_unlock_irq(&gcwq->lock);
3099 worker = create_worker(gcwq, false);
3100 spin_lock_irq(&gcwq->lock);
3101 if (worker) {
Tejun Heocb444762010-07-02 10:03:50 +02003102 worker->flags |= WORKER_ROGUE;
Tejun Heoe22bee72010-06-29 10:07:14 +02003103 start_worker(worker);
3104 }
3105 }
3106
Tejun Heodb7bccf2010-06-29 10:07:12 +02003107 /* give a breather */
3108 if (trustee_wait_event_timeout(false, TRUSTEE_COOLDOWN) < 0)
3109 break;
3110 }
3111
Tejun Heoe22bee72010-06-29 10:07:14 +02003112 /*
3113 * Either all works have been scheduled and cpu is down, or
3114 * cpu down has already been canceled. Wait for and butcher
3115 * all workers till we're canceled.
3116 */
3117 do {
3118 rc = trustee_wait_event(!list_empty(&gcwq->idle_list));
3119 while (!list_empty(&gcwq->idle_list))
3120 destroy_worker(list_first_entry(&gcwq->idle_list,
3121 struct worker, entry));
3122 } while (gcwq->nr_workers && rc >= 0);
3123
3124 /*
3125 * At this point, either draining has completed and no worker
3126 * is left, or cpu down has been canceled or the cpu is being
3127 * brought back up. There shouldn't be any idle one left.
3128 * Tell the remaining busy ones to rebind once it finishes the
3129 * currently scheduled works by scheduling the rebind_work.
3130 */
3131 WARN_ON(!list_empty(&gcwq->idle_list));
3132
3133 for_each_busy_worker(worker, i, pos, gcwq) {
3134 struct work_struct *rebind_work = &worker->rebind_work;
3135
3136 /*
3137 * Rebind_work may race with future cpu hotplug
3138 * operations. Use a separate flag to mark that
3139 * rebinding is scheduled.
3140 */
Tejun Heocb444762010-07-02 10:03:50 +02003141 worker->flags |= WORKER_REBIND;
3142 worker->flags &= ~WORKER_ROGUE;
Tejun Heoe22bee72010-06-29 10:07:14 +02003143
3144 /* queue rebind_work, wq doesn't matter, use the default one */
3145 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
3146 work_data_bits(rebind_work)))
3147 continue;
3148
3149 debug_work_activate(rebind_work);
Tejun Heod320c032010-06-29 10:07:14 +02003150 insert_work(get_cwq(gcwq->cpu, system_wq), rebind_work,
Tejun Heoe22bee72010-06-29 10:07:14 +02003151 worker->scheduled.next,
3152 work_color_to_flags(WORK_NO_COLOR));
3153 }
3154
3155 /* relinquish manager role */
3156 gcwq->flags &= ~GCWQ_MANAGING_WORKERS;
3157
Tejun Heodb7bccf2010-06-29 10:07:12 +02003158 /* notify completion */
3159 gcwq->trustee = NULL;
3160 gcwq->trustee_state = TRUSTEE_DONE;
3161 wake_up_all(&gcwq->trustee_wait);
3162 spin_unlock_irq(&gcwq->lock);
3163 return 0;
3164}
3165
3166/**
3167 * wait_trustee_state - wait for trustee to enter the specified state
3168 * @gcwq: gcwq the trustee of interest belongs to
3169 * @state: target state to wait for
3170 *
3171 * Wait for the trustee to reach @state. DONE is already matched.
3172 *
3173 * CONTEXT:
3174 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3175 * multiple times. To be used by cpu_callback.
3176 */
3177static void __cpuinit wait_trustee_state(struct global_cwq *gcwq, int state)
3178{
3179 if (!(gcwq->trustee_state == state ||
3180 gcwq->trustee_state == TRUSTEE_DONE)) {
3181 spin_unlock_irq(&gcwq->lock);
3182 __wait_event(gcwq->trustee_wait,
3183 gcwq->trustee_state == state ||
3184 gcwq->trustee_state == TRUSTEE_DONE);
3185 spin_lock_irq(&gcwq->lock);
3186 }
3187}
3188
Oleg Nesterov3af244332007-05-09 02:34:09 -07003189static int __devinit workqueue_cpu_callback(struct notifier_block *nfb,
3190 unsigned long action,
3191 void *hcpu)
3192{
3193 unsigned int cpu = (unsigned long)hcpu;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003194 struct global_cwq *gcwq = get_gcwq(cpu);
3195 struct task_struct *new_trustee = NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +02003196 struct worker *uninitialized_var(new_worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003197 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003199 action &= ~CPU_TASKS_FROZEN;
3200
Tejun Heodb7bccf2010-06-29 10:07:12 +02003201 switch (action) {
3202 case CPU_DOWN_PREPARE:
3203 new_trustee = kthread_create(trustee_thread, gcwq,
3204 "workqueue_trustee/%d\n", cpu);
3205 if (IS_ERR(new_trustee))
3206 return notifier_from_errno(PTR_ERR(new_trustee));
3207 kthread_bind(new_trustee, cpu);
Tejun Heoe22bee72010-06-29 10:07:14 +02003208 /* fall through */
3209 case CPU_UP_PREPARE:
3210 BUG_ON(gcwq->first_idle);
3211 new_worker = create_worker(gcwq, false);
3212 if (!new_worker) {
3213 if (new_trustee)
3214 kthread_stop(new_trustee);
3215 return NOTIFY_BAD;
3216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 }
3218
Tejun Heodb7bccf2010-06-29 10:07:12 +02003219 /* some are called w/ irq disabled, don't disturb irq status */
3220 spin_lock_irqsave(&gcwq->lock, flags);
3221
3222 switch (action) {
3223 case CPU_DOWN_PREPARE:
3224 /* initialize trustee and tell it to acquire the gcwq */
3225 BUG_ON(gcwq->trustee || gcwq->trustee_state != TRUSTEE_DONE);
3226 gcwq->trustee = new_trustee;
3227 gcwq->trustee_state = TRUSTEE_START;
3228 wake_up_process(gcwq->trustee);
3229 wait_trustee_state(gcwq, TRUSTEE_IN_CHARGE);
Tejun Heoe22bee72010-06-29 10:07:14 +02003230 /* fall through */
3231 case CPU_UP_PREPARE:
3232 BUG_ON(gcwq->first_idle);
3233 gcwq->first_idle = new_worker;
3234 break;
3235
3236 case CPU_DYING:
3237 /*
3238 * Before this, the trustee and all workers except for
3239 * the ones which are still executing works from
3240 * before the last CPU down must be on the cpu. After
3241 * this, they'll all be diasporas.
3242 */
3243 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003244 break;
3245
3246 case CPU_POST_DEAD:
3247 gcwq->trustee_state = TRUSTEE_BUTCHER;
Tejun Heoe22bee72010-06-29 10:07:14 +02003248 /* fall through */
3249 case CPU_UP_CANCELED:
3250 destroy_worker(gcwq->first_idle);
3251 gcwq->first_idle = NULL;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003252 break;
3253
3254 case CPU_DOWN_FAILED:
3255 case CPU_ONLINE:
Tejun Heoe22bee72010-06-29 10:07:14 +02003256 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003257 if (gcwq->trustee_state != TRUSTEE_DONE) {
3258 gcwq->trustee_state = TRUSTEE_RELEASE;
3259 wake_up_process(gcwq->trustee);
3260 wait_trustee_state(gcwq, TRUSTEE_DONE);
3261 }
3262
Tejun Heoe22bee72010-06-29 10:07:14 +02003263 /*
3264 * Trustee is done and there might be no worker left.
3265 * Put the first_idle in and request a real manager to
3266 * take a look.
3267 */
3268 spin_unlock_irq(&gcwq->lock);
3269 kthread_bind(gcwq->first_idle->task, cpu);
3270 spin_lock_irq(&gcwq->lock);
3271 gcwq->flags |= GCWQ_MANAGE_WORKERS;
3272 start_worker(gcwq->first_idle);
3273 gcwq->first_idle = NULL;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003274 break;
3275 }
3276
3277 spin_unlock_irqrestore(&gcwq->lock, flags);
3278
Tejun Heo15376632010-06-29 10:07:11 +02003279 return notifier_from_errno(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Rusty Russell2d3854a2008-11-05 13:39:10 +11003282#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003283
Rusty Russell2d3854a2008-11-05 13:39:10 +11003284struct work_for_cpu {
Andrew Morton6b440032009-04-09 09:50:37 -06003285 struct completion completion;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003286 long (*fn)(void *);
3287 void *arg;
3288 long ret;
3289};
3290
Andrew Morton6b440032009-04-09 09:50:37 -06003291static int do_work_for_cpu(void *_wfc)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003292{
Andrew Morton6b440032009-04-09 09:50:37 -06003293 struct work_for_cpu *wfc = _wfc;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003294 wfc->ret = wfc->fn(wfc->arg);
Andrew Morton6b440032009-04-09 09:50:37 -06003295 complete(&wfc->completion);
3296 return 0;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003297}
3298
3299/**
3300 * work_on_cpu - run a function in user context on a particular cpu
3301 * @cpu: the cpu to run on
3302 * @fn: the function to run
3303 * @arg: the function arg
3304 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003305 * This will return the value @fn returns.
3306 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b440032009-04-09 09:50:37 -06003307 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003308 */
3309long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3310{
Andrew Morton6b440032009-04-09 09:50:37 -06003311 struct task_struct *sub_thread;
3312 struct work_for_cpu wfc = {
3313 .completion = COMPLETION_INITIALIZER_ONSTACK(wfc.completion),
3314 .fn = fn,
3315 .arg = arg,
3316 };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003317
Andrew Morton6b440032009-04-09 09:50:37 -06003318 sub_thread = kthread_create(do_work_for_cpu, &wfc, "work_for_cpu");
3319 if (IS_ERR(sub_thread))
3320 return PTR_ERR(sub_thread);
3321 kthread_bind(sub_thread, cpu);
3322 wake_up_process(sub_thread);
3323 wait_for_completion(&wfc.completion);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003324 return wfc.ret;
3325}
3326EXPORT_SYMBOL_GPL(work_on_cpu);
3327#endif /* CONFIG_SMP */
3328
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003329#ifdef CONFIG_FREEZER
3330
3331/**
3332 * freeze_workqueues_begin - begin freezing workqueues
3333 *
3334 * Start freezing workqueues. After this function returns, all
3335 * freezeable workqueues will queue new works to their frozen_works
Tejun Heo7e116292010-06-29 10:07:13 +02003336 * list instead of gcwq->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003337 *
3338 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003339 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003340 */
3341void freeze_workqueues_begin(void)
3342{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003343 unsigned int cpu;
3344
3345 spin_lock(&workqueue_lock);
3346
3347 BUG_ON(workqueue_freezing);
3348 workqueue_freezing = true;
3349
Tejun Heof3421792010-07-02 10:03:51 +02003350 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003351 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003352 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003353
3354 spin_lock_irq(&gcwq->lock);
3355
Tejun Heodb7bccf2010-06-29 10:07:12 +02003356 BUG_ON(gcwq->flags & GCWQ_FREEZING);
3357 gcwq->flags |= GCWQ_FREEZING;
3358
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003359 list_for_each_entry(wq, &workqueues, list) {
3360 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3361
Tejun Heof3421792010-07-02 10:03:51 +02003362 if (cwq && wq->flags & WQ_FREEZEABLE)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003363 cwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003364 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003365
3366 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003367 }
3368
3369 spin_unlock(&workqueue_lock);
3370}
3371
3372/**
3373 * freeze_workqueues_busy - are freezeable workqueues still busy?
3374 *
3375 * Check whether freezing is complete. This function must be called
3376 * between freeze_workqueues_begin() and thaw_workqueues().
3377 *
3378 * CONTEXT:
3379 * Grabs and releases workqueue_lock.
3380 *
3381 * RETURNS:
3382 * %true if some freezeable workqueues are still busy. %false if
3383 * freezing is complete.
3384 */
3385bool freeze_workqueues_busy(void)
3386{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003387 unsigned int cpu;
3388 bool busy = false;
3389
3390 spin_lock(&workqueue_lock);
3391
3392 BUG_ON(!workqueue_freezing);
3393
Tejun Heof3421792010-07-02 10:03:51 +02003394 for_each_gcwq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003395 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003396 /*
3397 * nr_active is monotonically decreasing. It's safe
3398 * to peek without lock.
3399 */
3400 list_for_each_entry(wq, &workqueues, list) {
3401 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3402
Tejun Heof3421792010-07-02 10:03:51 +02003403 if (!cwq || !(wq->flags & WQ_FREEZEABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003404 continue;
3405
3406 BUG_ON(cwq->nr_active < 0);
3407 if (cwq->nr_active) {
3408 busy = true;
3409 goto out_unlock;
3410 }
3411 }
3412 }
3413out_unlock:
3414 spin_unlock(&workqueue_lock);
3415 return busy;
3416}
3417
3418/**
3419 * thaw_workqueues - thaw workqueues
3420 *
3421 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo7e116292010-06-29 10:07:13 +02003422 * frozen works are transferred to their respective gcwq worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003423 *
3424 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003425 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003426 */
3427void thaw_workqueues(void)
3428{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003429 unsigned int cpu;
3430
3431 spin_lock(&workqueue_lock);
3432
3433 if (!workqueue_freezing)
3434 goto out_unlock;
3435
Tejun Heof3421792010-07-02 10:03:51 +02003436 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003437 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003438 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003439
3440 spin_lock_irq(&gcwq->lock);
3441
Tejun Heodb7bccf2010-06-29 10:07:12 +02003442 BUG_ON(!(gcwq->flags & GCWQ_FREEZING));
3443 gcwq->flags &= ~GCWQ_FREEZING;
3444
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003445 list_for_each_entry(wq, &workqueues, list) {
3446 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3447
Tejun Heof3421792010-07-02 10:03:51 +02003448 if (!cwq || !(wq->flags & WQ_FREEZEABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003449 continue;
3450
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003451 /* restore max_active and repopulate worklist */
3452 cwq->max_active = wq->saved_max_active;
3453
3454 while (!list_empty(&cwq->delayed_works) &&
3455 cwq->nr_active < cwq->max_active)
3456 cwq_activate_first_delayed(cwq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003457 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003458
Tejun Heoe22bee72010-06-29 10:07:14 +02003459 wake_up_worker(gcwq);
3460
Tejun Heo8b03ae32010-06-29 10:07:12 +02003461 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003462 }
3463
3464 workqueue_freezing = false;
3465out_unlock:
3466 spin_unlock(&workqueue_lock);
3467}
3468#endif /* CONFIG_FREEZER */
3469
Oleg Nesterovc12920d2007-05-09 02:34:14 -07003470void __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471{
Tejun Heoc34056a2010-06-29 10:07:11 +02003472 unsigned int cpu;
Tejun Heoc8e55f32010-06-29 10:07:12 +02003473 int i;
Tejun Heoc34056a2010-06-29 10:07:11 +02003474
Tejun Heo7a22ad72010-06-29 10:07:13 +02003475 /*
3476 * The pointer part of work->data is either pointing to the
3477 * cwq or contains the cpu number the work ran last on. Make
3478 * sure cpu number won't overflow into kernel pointer area so
3479 * that they can be distinguished.
3480 */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003481 BUILD_BUG_ON(WORK_CPU_LAST << WORK_STRUCT_FLAG_BITS >= PAGE_OFFSET);
Tejun Heo7a22ad72010-06-29 10:07:13 +02003482
Tejun Heodb7bccf2010-06-29 10:07:12 +02003483 hotcpu_notifier(workqueue_cpu_callback, CPU_PRI_WORKQUEUE);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003484
3485 /* initialize gcwqs */
Tejun Heof3421792010-07-02 10:03:51 +02003486 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003487 struct global_cwq *gcwq = get_gcwq(cpu);
3488
3489 spin_lock_init(&gcwq->lock);
Tejun Heo7e116292010-06-29 10:07:13 +02003490 INIT_LIST_HEAD(&gcwq->worklist);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003491 gcwq->cpu = cpu;
Tejun Heof3421792010-07-02 10:03:51 +02003492 if (cpu == WORK_CPU_UNBOUND)
3493 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003494
Tejun Heoc8e55f32010-06-29 10:07:12 +02003495 INIT_LIST_HEAD(&gcwq->idle_list);
3496 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++)
3497 INIT_HLIST_HEAD(&gcwq->busy_hash[i]);
3498
Tejun Heoe22bee72010-06-29 10:07:14 +02003499 init_timer_deferrable(&gcwq->idle_timer);
3500 gcwq->idle_timer.function = idle_worker_timeout;
3501 gcwq->idle_timer.data = (unsigned long)gcwq;
3502
3503 setup_timer(&gcwq->mayday_timer, gcwq_mayday_timeout,
3504 (unsigned long)gcwq);
3505
Tejun Heo8b03ae32010-06-29 10:07:12 +02003506 ida_init(&gcwq->worker_ida);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003507
3508 gcwq->trustee_state = TRUSTEE_DONE;
3509 init_waitqueue_head(&gcwq->trustee_wait);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003510 }
3511
Tejun Heoe22bee72010-06-29 10:07:14 +02003512 /* create the initial worker */
Tejun Heof3421792010-07-02 10:03:51 +02003513 for_each_online_gcwq_cpu(cpu) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003514 struct global_cwq *gcwq = get_gcwq(cpu);
3515 struct worker *worker;
3516
3517 worker = create_worker(gcwq, true);
3518 BUG_ON(!worker);
3519 spin_lock_irq(&gcwq->lock);
3520 start_worker(worker);
3521 spin_unlock_irq(&gcwq->lock);
3522 }
3523
Tejun Heod320c032010-06-29 10:07:14 +02003524 system_wq = alloc_workqueue("events", 0, 0);
3525 system_long_wq = alloc_workqueue("events_long", 0, 0);
3526 system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003527 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3528 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heod320c032010-06-29 10:07:14 +02003529 BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530}