blob: f7a00697d150f1dd6b4a92cedff8f57e7c575a17 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heoc54fce62010-09-10 16:51:36 +02002 * kernel/workqueue.c - generic async execution with shared worker pool
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Tejun Heoc54fce62010-09-10 16:51:36 +02004 * Copyright (C) 2002 Ingo Molnar
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Tejun Heoc54fce62010-09-10 16:51:36 +02006 * Derived from the taskqueue/keventd code by:
7 * David Woodhouse <dwmw2@infradead.org>
8 * Andrew Morton
9 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
10 * Theodore Ts'o <tytso@mit.edu>
Christoph Lameter89ada672005-10-30 15:01:59 -080011 *
Christoph Lametercde53532008-07-04 09:59:22 -070012 * Made to use alloc_percpu by Christoph Lameter.
Tejun Heoc54fce62010-09-10 16:51:36 +020013 *
14 * Copyright (C) 2010 SUSE Linux Products GmbH
15 * Copyright (C) 2010 Tejun Heo <tj@kernel.org>
16 *
17 * This is the generic async execution mechanism. Work items as are
18 * executed in process context. The worker pool is shared and
19 * automatically managed. There is one worker pool for each CPU and
20 * one extra for works which are better served by workers which are
21 * not bound to any specific CPU.
22 *
23 * Please read Documentation/workqueue.txt for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Paul Gortmaker9984de12011-05-23 14:51:41 -040026#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/init.h>
30#include <linux/signal.h>
31#include <linux/completion.h>
32#include <linux/workqueue.h>
33#include <linux/slab.h>
34#include <linux/cpu.h>
35#include <linux/notifier.h>
36#include <linux/kthread.h>
James Bottomley1fa44ec2006-02-23 12:43:43 -060037#include <linux/hardirq.h>
Christoph Lameter46934022006-10-11 01:21:26 -070038#include <linux/mempolicy.h>
Rafael J. Wysocki341a5952006-12-06 20:34:49 -080039#include <linux/freezer.h>
Peter Zijlstrad5abe662006-12-06 20:37:26 -080040#include <linux/kallsyms.h>
41#include <linux/debug_locks.h>
Johannes Berg4e6045f2007-10-18 23:39:55 -070042#include <linux/lockdep.h>
Tejun Heoc34056a2010-06-29 10:07:11 +020043#include <linux/idr.h>
Tejun Heoe22bee72010-06-29 10:07:14 +020044
45#include "workqueue_sched.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Tejun Heoc8e55f32010-06-29 10:07:12 +020047enum {
Tejun Heodb7bccf2010-06-29 10:07:12 +020048 /* global_cwq flags */
Tejun Heo11ebea52012-07-12 14:46:37 -070049 GCWQ_DISASSOCIATED = 1 << 0, /* cpu can't serve workers */
50 GCWQ_FREEZING = 1 << 1, /* freeze in progress */
51
52 /* pool flags */
53 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020054
Tejun Heoc8e55f32010-06-29 10:07:12 +020055 /* worker flags */
56 WORKER_STARTED = 1 << 0, /* started */
57 WORKER_DIE = 1 << 1, /* die die die */
58 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020059 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heoe22bee72010-06-29 10:07:14 +020060 WORKER_REBIND = 1 << 5, /* mom is home, come back */
Tejun Heofb0e7be2010-06-29 10:07:15 +020061 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020062 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020063
Tejun Heo403c8212012-07-17 12:39:27 -070064 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_REBIND | WORKER_UNBOUND |
65 WORKER_CPU_INTENSIVE,
Tejun Heodb7bccf2010-06-29 10:07:12 +020066
67 /* gcwq->trustee_state */
68 TRUSTEE_START = 0, /* start */
69 TRUSTEE_IN_CHARGE = 1, /* trustee in charge of gcwq */
70 TRUSTEE_BUTCHER = 2, /* butcher workers */
71 TRUSTEE_RELEASE = 3, /* release workers */
72 TRUSTEE_DONE = 4, /* trustee is done */
Tejun Heoc8e55f32010-06-29 10:07:12 +020073
Tejun Heo32704762012-07-13 22:16:45 -070074 NR_WORKER_POOLS = 2, /* # worker pools per gcwq */
Tejun Heo4ce62e92012-07-13 22:16:44 -070075
Tejun Heoc8e55f32010-06-29 10:07:12 +020076 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
77 BUSY_WORKER_HASH_SIZE = 1 << BUSY_WORKER_HASH_ORDER,
78 BUSY_WORKER_HASH_MASK = BUSY_WORKER_HASH_SIZE - 1,
Tejun Heodb7bccf2010-06-29 10:07:12 +020079
Tejun Heoe22bee72010-06-29 10:07:14 +020080 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
81 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
82
Tejun Heo3233cdb2011-02-16 18:10:19 +010083 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
84 /* call for help after 10ms
85 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020086 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
87 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heodb7bccf2010-06-29 10:07:12 +020088 TRUSTEE_COOLDOWN = HZ / 10, /* for trustee draining */
Tejun Heoe22bee72010-06-29 10:07:14 +020089
90 /*
91 * Rescue workers are used only on emergencies and shared by
92 * all cpus. Give -20.
93 */
94 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -070095 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +020096};
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
Tejun Heo4690c4a2010-06-29 10:07:10 +020099 * Structure fields follow one of the following exclusion rules.
100 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200101 * I: Modifiable by initialization/destruction paths and read-only for
102 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200103 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200104 * P: Preemption protected. Disabling preemption is enough and should
105 * only be modified and accessed from the local cpu.
106 *
Tejun Heo8b03ae32010-06-29 10:07:12 +0200107 * L: gcwq->lock protected. Access with gcwq->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200108 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200109 * X: During normal operation, modification requires gcwq->lock and
110 * should be done only from local cpu. Either disabling preemption
111 * on local cpu or grabbing gcwq->lock is enough for read access.
Tejun Heof3421792010-07-02 10:03:51 +0200112 * If GCWQ_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200113 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200114 * F: wq->flush_mutex protected.
115 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200116 * W: workqueue_lock protected.
117 */
118
Tejun Heo8b03ae32010-06-29 10:07:12 +0200119struct global_cwq;
Tejun Heobd7bdd42012-07-12 14:46:37 -0700120struct worker_pool;
Tejun Heoc34056a2010-06-29 10:07:11 +0200121
Tejun Heoe22bee72010-06-29 10:07:14 +0200122/*
123 * The poor guys doing the actual heavy lifting. All on-duty workers
124 * are either serving the manager role, on idle list or on busy hash.
125 */
Tejun Heoc34056a2010-06-29 10:07:11 +0200126struct worker {
Tejun Heoc8e55f32010-06-29 10:07:12 +0200127 /* on idle list while idle, on busy hash table while busy */
128 union {
129 struct list_head entry; /* L: while idle */
130 struct hlist_node hentry; /* L: while busy */
131 };
132
Tejun Heoc34056a2010-06-29 10:07:11 +0200133 struct work_struct *current_work; /* L: work being processed */
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200134 struct cpu_workqueue_struct *current_cwq; /* L: current_work's cwq */
Tejun Heoaffee4b2010-06-29 10:07:12 +0200135 struct list_head scheduled; /* L: scheduled works */
Tejun Heoc34056a2010-06-29 10:07:11 +0200136 struct task_struct *task; /* I: worker task */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700137 struct worker_pool *pool; /* I: the associated pool */
Tejun Heoe22bee72010-06-29 10:07:14 +0200138 /* 64 bytes boundary on 64bit, 32 on 32bit */
139 unsigned long last_active; /* L: last active timestamp */
140 unsigned int flags; /* X: flags */
Tejun Heoc34056a2010-06-29 10:07:11 +0200141 int id; /* I: worker id */
Tejun Heoe22bee72010-06-29 10:07:14 +0200142 struct work_struct rebind_work; /* L: rebind worker to cpu */
Tejun Heoc34056a2010-06-29 10:07:11 +0200143};
144
Tejun Heobd7bdd42012-07-12 14:46:37 -0700145struct worker_pool {
146 struct global_cwq *gcwq; /* I: the owning gcwq */
Tejun Heo11ebea52012-07-12 14:46:37 -0700147 unsigned int flags; /* X: flags */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700148
149 struct list_head worklist; /* L: list of pending works */
150 int nr_workers; /* L: total number of workers */
151 int nr_idle; /* L: currently idle ones */
152
153 struct list_head idle_list; /* X: list of idle workers */
154 struct timer_list idle_timer; /* L: worker idle timeout */
155 struct timer_list mayday_timer; /* L: SOS timer for workers */
156
Tejun Heo60373152012-07-17 12:39:27 -0700157 struct mutex manager_mutex; /* mutex manager should hold */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700158 struct ida worker_ida; /* L: for worker IDs */
159 struct worker *first_idle; /* L: first idle worker */
160};
161
Tejun Heo4690c4a2010-06-29 10:07:10 +0200162/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200163 * Global per-cpu workqueue. There's one and only one for each cpu
164 * and all works are queued and processed here regardless of their
165 * target workqueues.
Tejun Heo8b03ae32010-06-29 10:07:12 +0200166 */
167struct global_cwq {
168 spinlock_t lock; /* the gcwq lock */
169 unsigned int cpu; /* I: the associated cpu */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200170 unsigned int flags; /* L: GCWQ_* flags */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200171
Tejun Heobd7bdd42012-07-12 14:46:37 -0700172 /* workers are chained either in busy_hash or pool idle_list */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200173 struct hlist_head busy_hash[BUSY_WORKER_HASH_SIZE];
174 /* L: hash of busy workers */
175
Tejun Heo32704762012-07-13 22:16:45 -0700176 struct worker_pool pools[2]; /* normal and highpri pools */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200177
178 struct task_struct *trustee; /* L: for gcwq shutdown */
179 unsigned int trustee_state; /* L: trustee state */
180 wait_queue_head_t trustee_wait; /* trustee wait */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200181} ____cacheline_aligned_in_smp;
182
183/*
Tejun Heo502ca9d2010-06-29 10:07:13 +0200184 * The per-CPU workqueue. The lower WORK_STRUCT_FLAG_BITS of
Tejun Heo0f900042010-06-29 10:07:11 +0200185 * work_struct->data are used for flags and thus cwqs need to be
186 * aligned at two's power of the number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 */
188struct cpu_workqueue_struct {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700189 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200190 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200191 int work_color; /* L: current color */
192 int flush_color; /* L: flushing color */
193 int nr_in_flight[WORK_NR_COLORS];
194 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200195 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200196 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200197 struct list_head delayed_works; /* L: delayed works */
Tejun Heo0f900042010-06-29 10:07:11 +0200198};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200201 * Structure used to wait for workqueue flush.
202 */
203struct wq_flusher {
204 struct list_head list; /* F: list of flushers */
205 int flush_color; /* F: flush color waiting for */
206 struct completion done; /* flush completion */
207};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Tejun Heo73f53c42010-06-29 10:07:11 +0200209/*
Tejun Heof2e005a2010-07-20 15:59:09 +0200210 * All cpumasks are assumed to be always set on UP and thus can't be
211 * used to determine whether there's something to be done.
212 */
213#ifdef CONFIG_SMP
214typedef cpumask_var_t mayday_mask_t;
215#define mayday_test_and_set_cpu(cpu, mask) \
216 cpumask_test_and_set_cpu((cpu), (mask))
217#define mayday_clear_cpu(cpu, mask) cpumask_clear_cpu((cpu), (mask))
218#define for_each_mayday_cpu(cpu, mask) for_each_cpu((cpu), (mask))
Tejun Heo9c375472010-08-31 11:18:34 +0200219#define alloc_mayday_mask(maskp, gfp) zalloc_cpumask_var((maskp), (gfp))
Tejun Heof2e005a2010-07-20 15:59:09 +0200220#define free_mayday_mask(mask) free_cpumask_var((mask))
221#else
222typedef unsigned long mayday_mask_t;
223#define mayday_test_and_set_cpu(cpu, mask) test_and_set_bit(0, &(mask))
224#define mayday_clear_cpu(cpu, mask) clear_bit(0, &(mask))
225#define for_each_mayday_cpu(cpu, mask) if ((cpu) = 0, (mask))
226#define alloc_mayday_mask(maskp, gfp) true
227#define free_mayday_mask(mask) do { } while (0)
228#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230/*
231 * The externally visible workqueue abstraction is an array of
232 * per-CPU workqueues:
233 */
234struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200235 unsigned int flags; /* W: WQ_* flags */
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200236 union {
237 struct cpu_workqueue_struct __percpu *pcpu;
238 struct cpu_workqueue_struct *single;
239 unsigned long v;
240 } cpu_wq; /* I: cwq's */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200241 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200242
243 struct mutex flush_mutex; /* protects wq flushing */
244 int work_color; /* F: current work color */
245 int flush_color; /* F: current flush color */
246 atomic_t nr_cwqs_to_flush; /* flush in progress */
247 struct wq_flusher *first_flusher; /* F: first flusher */
248 struct list_head flusher_queue; /* F: flush waiters */
249 struct list_head flusher_overflow; /* F: flush overflow list */
250
Tejun Heof2e005a2010-07-20 15:59:09 +0200251 mayday_mask_t mayday_mask; /* cpus requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200252 struct worker *rescuer; /* I: rescue worker */
253
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200254 int nr_drainers; /* W: drain in progress */
Tejun Heodcd989c2010-06-29 10:07:14 +0200255 int saved_max_active; /* W: saved cwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700256#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200257 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700258#endif
Tejun Heob196be82012-01-10 15:11:35 -0800259 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};
261
Tejun Heod320c032010-06-29 10:07:14 +0200262struct workqueue_struct *system_wq __read_mostly;
263struct workqueue_struct *system_long_wq __read_mostly;
264struct workqueue_struct *system_nrt_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200265struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100266struct workqueue_struct *system_freezable_wq __read_mostly;
Alan Stern62d3c542012-03-02 10:51:00 +0100267struct workqueue_struct *system_nrt_freezable_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200268EXPORT_SYMBOL_GPL(system_wq);
269EXPORT_SYMBOL_GPL(system_long_wq);
270EXPORT_SYMBOL_GPL(system_nrt_wq);
Tejun Heof3421792010-07-02 10:03:51 +0200271EXPORT_SYMBOL_GPL(system_unbound_wq);
Tejun Heo24d51ad2011-02-21 09:52:50 +0100272EXPORT_SYMBOL_GPL(system_freezable_wq);
Alan Stern62d3c542012-03-02 10:51:00 +0100273EXPORT_SYMBOL_GPL(system_nrt_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200274
Tejun Heo97bd2342010-10-05 10:41:14 +0200275#define CREATE_TRACE_POINTS
276#include <trace/events/workqueue.h>
277
Tejun Heo4ce62e92012-07-13 22:16:44 -0700278#define for_each_worker_pool(pool, gcwq) \
Tejun Heo32704762012-07-13 22:16:45 -0700279 for ((pool) = &(gcwq)->pools[0]; \
280 (pool) < &(gcwq)->pools[NR_WORKER_POOLS]; (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700281
Tejun Heodb7bccf2010-06-29 10:07:12 +0200282#define for_each_busy_worker(worker, i, pos, gcwq) \
283 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++) \
284 hlist_for_each_entry(worker, pos, &gcwq->busy_hash[i], hentry)
285
Tejun Heof3421792010-07-02 10:03:51 +0200286static inline int __next_gcwq_cpu(int cpu, const struct cpumask *mask,
287 unsigned int sw)
288{
289 if (cpu < nr_cpu_ids) {
290 if (sw & 1) {
291 cpu = cpumask_next(cpu, mask);
292 if (cpu < nr_cpu_ids)
293 return cpu;
294 }
295 if (sw & 2)
296 return WORK_CPU_UNBOUND;
297 }
298 return WORK_CPU_NONE;
299}
300
301static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
302 struct workqueue_struct *wq)
303{
304 return __next_gcwq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
305}
306
Tejun Heo09884952010-08-01 11:50:12 +0200307/*
308 * CPU iterators
309 *
310 * An extra gcwq is defined for an invalid cpu number
311 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
312 * specific CPU. The following iterators are similar to
313 * for_each_*_cpu() iterators but also considers the unbound gcwq.
314 *
315 * for_each_gcwq_cpu() : possible CPUs + WORK_CPU_UNBOUND
316 * for_each_online_gcwq_cpu() : online CPUs + WORK_CPU_UNBOUND
317 * for_each_cwq_cpu() : possible CPUs for bound workqueues,
318 * WORK_CPU_UNBOUND for unbound workqueues
319 */
Tejun Heof3421792010-07-02 10:03:51 +0200320#define for_each_gcwq_cpu(cpu) \
321 for ((cpu) = __next_gcwq_cpu(-1, cpu_possible_mask, 3); \
322 (cpu) < WORK_CPU_NONE; \
323 (cpu) = __next_gcwq_cpu((cpu), cpu_possible_mask, 3))
324
325#define for_each_online_gcwq_cpu(cpu) \
326 for ((cpu) = __next_gcwq_cpu(-1, cpu_online_mask, 3); \
327 (cpu) < WORK_CPU_NONE; \
328 (cpu) = __next_gcwq_cpu((cpu), cpu_online_mask, 3))
329
330#define for_each_cwq_cpu(cpu, wq) \
331 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, (wq)); \
332 (cpu) < WORK_CPU_NONE; \
333 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, (wq)))
334
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900335#ifdef CONFIG_DEBUG_OBJECTS_WORK
336
337static struct debug_obj_descr work_debug_descr;
338
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100339static void *work_debug_hint(void *addr)
340{
341 return ((struct work_struct *) addr)->func;
342}
343
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900344/*
345 * fixup_init is called when:
346 * - an active object is initialized
347 */
348static int work_fixup_init(void *addr, enum debug_obj_state state)
349{
350 struct work_struct *work = addr;
351
352 switch (state) {
353 case ODEBUG_STATE_ACTIVE:
354 cancel_work_sync(work);
355 debug_object_init(work, &work_debug_descr);
356 return 1;
357 default:
358 return 0;
359 }
360}
361
362/*
363 * fixup_activate is called when:
364 * - an active object is activated
365 * - an unknown object is activated (might be a statically initialized object)
366 */
367static int work_fixup_activate(void *addr, enum debug_obj_state state)
368{
369 struct work_struct *work = addr;
370
371 switch (state) {
372
373 case ODEBUG_STATE_NOTAVAILABLE:
374 /*
375 * This is not really a fixup. The work struct was
376 * statically initialized. We just make sure that it
377 * is tracked in the object tracker.
378 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200379 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900380 debug_object_init(work, &work_debug_descr);
381 debug_object_activate(work, &work_debug_descr);
382 return 0;
383 }
384 WARN_ON_ONCE(1);
385 return 0;
386
387 case ODEBUG_STATE_ACTIVE:
388 WARN_ON(1);
389
390 default:
391 return 0;
392 }
393}
394
395/*
396 * fixup_free is called when:
397 * - an active object is freed
398 */
399static int work_fixup_free(void *addr, enum debug_obj_state state)
400{
401 struct work_struct *work = addr;
402
403 switch (state) {
404 case ODEBUG_STATE_ACTIVE:
405 cancel_work_sync(work);
406 debug_object_free(work, &work_debug_descr);
407 return 1;
408 default:
409 return 0;
410 }
411}
412
413static struct debug_obj_descr work_debug_descr = {
414 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100415 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900416 .fixup_init = work_fixup_init,
417 .fixup_activate = work_fixup_activate,
418 .fixup_free = work_fixup_free,
419};
420
421static inline void debug_work_activate(struct work_struct *work)
422{
423 debug_object_activate(work, &work_debug_descr);
424}
425
426static inline void debug_work_deactivate(struct work_struct *work)
427{
428 debug_object_deactivate(work, &work_debug_descr);
429}
430
431void __init_work(struct work_struct *work, int onstack)
432{
433 if (onstack)
434 debug_object_init_on_stack(work, &work_debug_descr);
435 else
436 debug_object_init(work, &work_debug_descr);
437}
438EXPORT_SYMBOL_GPL(__init_work);
439
440void destroy_work_on_stack(struct work_struct *work)
441{
442 debug_object_free(work, &work_debug_descr);
443}
444EXPORT_SYMBOL_GPL(destroy_work_on_stack);
445
446#else
447static inline void debug_work_activate(struct work_struct *work) { }
448static inline void debug_work_deactivate(struct work_struct *work) { }
449#endif
450
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100451/* Serializes the accesses to the list of workqueues. */
452static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200454static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Oleg Nesterov14441962007-05-23 13:57:57 -0700456/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200457 * The almighty global cpu workqueues. nr_running is the only field
458 * which is expected to be used frequently by other cpus via
459 * try_to_wake_up(). Put it in a separate cacheline.
Oleg Nesterov14441962007-05-23 13:57:57 -0700460 */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200461static DEFINE_PER_CPU(struct global_cwq, global_cwq);
Tejun Heo4ce62e92012-07-13 22:16:44 -0700462static DEFINE_PER_CPU_SHARED_ALIGNED(atomic_t, pool_nr_running[NR_WORKER_POOLS]);
Nathan Lynchf756d5e2006-01-08 01:05:12 -0800463
Tejun Heof3421792010-07-02 10:03:51 +0200464/*
465 * Global cpu workqueue and nr_running counter for unbound gcwq. The
466 * gcwq is always online, has GCWQ_DISASSOCIATED set, and all its
467 * workers have WORKER_UNBOUND set.
468 */
469static struct global_cwq unbound_global_cwq;
Tejun Heo4ce62e92012-07-13 22:16:44 -0700470static atomic_t unbound_pool_nr_running[NR_WORKER_POOLS] = {
471 [0 ... NR_WORKER_POOLS - 1] = ATOMIC_INIT(0), /* always 0 */
472};
Tejun Heof3421792010-07-02 10:03:51 +0200473
Tejun Heoc34056a2010-06-29 10:07:11 +0200474static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Tejun Heo32704762012-07-13 22:16:45 -0700476static int worker_pool_pri(struct worker_pool *pool)
477{
478 return pool - pool->gcwq->pools;
479}
480
Tejun Heo8b03ae32010-06-29 10:07:12 +0200481static struct global_cwq *get_gcwq(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Tejun Heof3421792010-07-02 10:03:51 +0200483 if (cpu != WORK_CPU_UNBOUND)
484 return &per_cpu(global_cwq, cpu);
485 else
486 return &unbound_global_cwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Tejun Heo63d95a92012-07-12 14:46:37 -0700489static atomic_t *get_pool_nr_running(struct worker_pool *pool)
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700490{
Tejun Heo63d95a92012-07-12 14:46:37 -0700491 int cpu = pool->gcwq->cpu;
Tejun Heo32704762012-07-13 22:16:45 -0700492 int idx = worker_pool_pri(pool);
Tejun Heo63d95a92012-07-12 14:46:37 -0700493
Tejun Heof3421792010-07-02 10:03:51 +0200494 if (cpu != WORK_CPU_UNBOUND)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700495 return &per_cpu(pool_nr_running, cpu)[idx];
Tejun Heof3421792010-07-02 10:03:51 +0200496 else
Tejun Heo4ce62e92012-07-13 22:16:44 -0700497 return &unbound_pool_nr_running[idx];
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700498}
499
Tejun Heo4690c4a2010-06-29 10:07:10 +0200500static struct cpu_workqueue_struct *get_cwq(unsigned int cpu,
501 struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700502{
Tejun Heof3421792010-07-02 10:03:51 +0200503 if (!(wq->flags & WQ_UNBOUND)) {
Lai Jiangshane06ffa12012-03-09 18:03:20 +0800504 if (likely(cpu < nr_cpu_ids))
Tejun Heof3421792010-07-02 10:03:51 +0200505 return per_cpu_ptr(wq->cpu_wq.pcpu, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200506 } else if (likely(cpu == WORK_CPU_UNBOUND))
507 return wq->cpu_wq.single;
508 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700509}
510
Tejun Heo73f53c42010-06-29 10:07:11 +0200511static unsigned int work_color_to_flags(int color)
512{
513 return color << WORK_STRUCT_COLOR_SHIFT;
514}
515
516static int get_work_color(struct work_struct *work)
517{
518 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
519 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
520}
521
522static int work_next_color(int color)
523{
524 return (color + 1) % WORK_NR_COLORS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
David Howells4594bf12006-12-07 11:33:26 +0000527/*
Tejun Heoe1201532010-07-22 14:14:25 +0200528 * A work's data points to the cwq with WORK_STRUCT_CWQ set while the
529 * work is on queue. Once execution starts, WORK_STRUCT_CWQ is
530 * cleared and the work data contains the cpu number it was last on.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200531 *
532 * set_work_{cwq|cpu}() and clear_work_data() can be used to set the
533 * cwq, cpu or clear work->data. These functions should only be
534 * called while the work is owned - ie. while the PENDING bit is set.
535 *
536 * get_work_[g]cwq() can be used to obtain the gcwq or cwq
537 * corresponding to a work. gcwq is available once the work has been
538 * queued anywhere after initialization. cwq is available only from
539 * queueing until execution starts.
David Howells4594bf12006-12-07 11:33:26 +0000540 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200541static inline void set_work_data(struct work_struct *work, unsigned long data,
542 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000543{
David Howells4594bf12006-12-07 11:33:26 +0000544 BUG_ON(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200545 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000546}
David Howells365970a2006-11-22 14:54:49 +0000547
Tejun Heo7a22ad72010-06-29 10:07:13 +0200548static void set_work_cwq(struct work_struct *work,
549 struct cpu_workqueue_struct *cwq,
550 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200551{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200552 set_work_data(work, (unsigned long)cwq,
Tejun Heoe1201532010-07-22 14:14:25 +0200553 WORK_STRUCT_PENDING | WORK_STRUCT_CWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200554}
555
Tejun Heo7a22ad72010-06-29 10:07:13 +0200556static void set_work_cpu(struct work_struct *work, unsigned int cpu)
David Howells365970a2006-11-22 14:54:49 +0000557{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200558 set_work_data(work, cpu << WORK_STRUCT_FLAG_BITS, WORK_STRUCT_PENDING);
559}
560
561static void clear_work_data(struct work_struct *work)
562{
563 set_work_data(work, WORK_STRUCT_NO_CPU, 0);
564}
565
Tejun Heo7a22ad72010-06-29 10:07:13 +0200566static struct cpu_workqueue_struct *get_work_cwq(struct work_struct *work)
567{
Tejun Heoe1201532010-07-22 14:14:25 +0200568 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200569
Tejun Heoe1201532010-07-22 14:14:25 +0200570 if (data & WORK_STRUCT_CWQ)
571 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
572 else
573 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200574}
575
576static struct global_cwq *get_work_gcwq(struct work_struct *work)
577{
Tejun Heoe1201532010-07-22 14:14:25 +0200578 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200579 unsigned int cpu;
580
Tejun Heoe1201532010-07-22 14:14:25 +0200581 if (data & WORK_STRUCT_CWQ)
582 return ((struct cpu_workqueue_struct *)
Tejun Heobd7bdd42012-07-12 14:46:37 -0700583 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->gcwq;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200584
585 cpu = data >> WORK_STRUCT_FLAG_BITS;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200586 if (cpu == WORK_CPU_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200587 return NULL;
588
Tejun Heof3421792010-07-02 10:03:51 +0200589 BUG_ON(cpu >= nr_cpu_ids && cpu != WORK_CPU_UNBOUND);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200590 return get_gcwq(cpu);
David Howells365970a2006-11-22 14:54:49 +0000591}
592
593/*
Tejun Heo32704762012-07-13 22:16:45 -0700594 * Policy functions. These define the policies on how the global worker
595 * pools are managed. Unless noted otherwise, these functions assume that
596 * they're being called with gcwq->lock held.
David Howells365970a2006-11-22 14:54:49 +0000597 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200598
Tejun Heo63d95a92012-07-12 14:46:37 -0700599static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000600{
Tejun Heo32704762012-07-13 22:16:45 -0700601 return !atomic_read(get_pool_nr_running(pool));
David Howells365970a2006-11-22 14:54:49 +0000602}
603
Tejun Heoe22bee72010-06-29 10:07:14 +0200604/*
605 * Need to wake up a worker? Called from anything but currently
606 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700607 *
608 * Note that, because unbound workers never contribute to nr_running, this
609 * function will always return %true for unbound gcwq as long as the
610 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200611 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700612static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000613{
Tejun Heo63d95a92012-07-12 14:46:37 -0700614 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000615}
616
Tejun Heoe22bee72010-06-29 10:07:14 +0200617/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700618static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200619{
Tejun Heo63d95a92012-07-12 14:46:37 -0700620 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200621}
622
623/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700624static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200625{
Tejun Heo63d95a92012-07-12 14:46:37 -0700626 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200627
Tejun Heo32704762012-07-13 22:16:45 -0700628 return !list_empty(&pool->worklist) && atomic_read(nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200629}
630
631/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700632static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200633{
Tejun Heo63d95a92012-07-12 14:46:37 -0700634 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200635}
636
637/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700638static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200639{
Tejun Heo63d95a92012-07-12 14:46:37 -0700640 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700641 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200642}
643
644/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700645static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200646{
Tejun Heo60373152012-07-17 12:39:27 -0700647 bool managing = mutex_is_locked(&pool->manager_mutex);
Tejun Heo63d95a92012-07-12 14:46:37 -0700648 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
649 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200650
651 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
652}
653
654/*
655 * Wake up functions.
656 */
657
Tejun Heo7e116292010-06-29 10:07:13 +0200658/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700659static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200660{
Tejun Heo63d95a92012-07-12 14:46:37 -0700661 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200662 return NULL;
663
Tejun Heo63d95a92012-07-12 14:46:37 -0700664 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200665}
666
667/**
668 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700669 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200670 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700671 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200672 *
673 * CONTEXT:
674 * spin_lock_irq(gcwq->lock).
675 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700676static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200677{
Tejun Heo63d95a92012-07-12 14:46:37 -0700678 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200679
680 if (likely(worker))
681 wake_up_process(worker->task);
682}
683
Tejun Heo4690c4a2010-06-29 10:07:10 +0200684/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200685 * wq_worker_waking_up - a worker is waking up
686 * @task: task waking up
687 * @cpu: CPU @task is waking up to
688 *
689 * This function is called during try_to_wake_up() when a worker is
690 * being awoken.
691 *
692 * CONTEXT:
693 * spin_lock_irq(rq->lock)
694 */
695void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
696{
697 struct worker *worker = kthread_data(task);
698
Steven Rostedt2d646722010-12-03 23:12:33 -0500699 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heo63d95a92012-07-12 14:46:37 -0700700 atomic_inc(get_pool_nr_running(worker->pool));
Tejun Heoe22bee72010-06-29 10:07:14 +0200701}
702
703/**
704 * wq_worker_sleeping - a worker is going to sleep
705 * @task: task going to sleep
706 * @cpu: CPU in question, must be the current CPU number
707 *
708 * This function is called during schedule() when a busy worker is
709 * going to sleep. Worker on the same cpu can be woken up by
710 * returning pointer to its task.
711 *
712 * CONTEXT:
713 * spin_lock_irq(rq->lock)
714 *
715 * RETURNS:
716 * Worker task on @cpu to wake up, %NULL if none.
717 */
718struct task_struct *wq_worker_sleeping(struct task_struct *task,
719 unsigned int cpu)
720{
721 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heobd7bdd42012-07-12 14:46:37 -0700722 struct worker_pool *pool = worker->pool;
Tejun Heo63d95a92012-07-12 14:46:37 -0700723 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200724
Steven Rostedt2d646722010-12-03 23:12:33 -0500725 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200726 return NULL;
727
728 /* this can only happen on the local cpu */
729 BUG_ON(cpu != raw_smp_processor_id());
730
731 /*
732 * The counterpart of the following dec_and_test, implied mb,
733 * worklist not empty test sequence is in insert_work().
734 * Please read comment there.
735 *
736 * NOT_RUNNING is clear. This means that trustee is not in
737 * charge and we're running on the local cpu w/ rq lock held
738 * and preemption disabled, which in turn means that none else
739 * could be manipulating idle_list, so dereferencing idle_list
740 * without gcwq lock is safe.
741 */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700742 if (atomic_dec_and_test(nr_running) && !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700743 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200744 return to_wakeup ? to_wakeup->task : NULL;
745}
746
747/**
748 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200749 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200750 * @flags: flags to set
751 * @wakeup: wakeup an idle worker if necessary
752 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200753 * Set @flags in @worker->flags and adjust nr_running accordingly. If
754 * nr_running becomes zero and @wakeup is %true, an idle worker is
755 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200756 *
Tejun Heocb444762010-07-02 10:03:50 +0200757 * CONTEXT:
758 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200759 */
760static inline void worker_set_flags(struct worker *worker, unsigned int flags,
761 bool wakeup)
762{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700763 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200764
Tejun Heocb444762010-07-02 10:03:50 +0200765 WARN_ON_ONCE(worker->task != current);
766
Tejun Heoe22bee72010-06-29 10:07:14 +0200767 /*
768 * If transitioning into NOT_RUNNING, adjust nr_running and
769 * wake up an idle worker as necessary if requested by
770 * @wakeup.
771 */
772 if ((flags & WORKER_NOT_RUNNING) &&
773 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heo63d95a92012-07-12 14:46:37 -0700774 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200775
776 if (wakeup) {
777 if (atomic_dec_and_test(nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700778 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700779 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200780 } else
781 atomic_dec(nr_running);
782 }
783
Tejun Heod302f012010-06-29 10:07:13 +0200784 worker->flags |= flags;
785}
786
787/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200788 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200789 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200790 * @flags: flags to clear
791 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200792 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200793 *
Tejun Heocb444762010-07-02 10:03:50 +0200794 * CONTEXT:
795 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200796 */
797static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
798{
Tejun Heo63d95a92012-07-12 14:46:37 -0700799 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200800 unsigned int oflags = worker->flags;
801
Tejun Heocb444762010-07-02 10:03:50 +0200802 WARN_ON_ONCE(worker->task != current);
803
Tejun Heod302f012010-06-29 10:07:13 +0200804 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200805
Tejun Heo42c025f2011-01-11 15:58:49 +0100806 /*
807 * If transitioning out of NOT_RUNNING, increment nr_running. Note
808 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
809 * of multiple flags, not a single flag.
810 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200811 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
812 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heo63d95a92012-07-12 14:46:37 -0700813 atomic_inc(get_pool_nr_running(pool));
Tejun Heod302f012010-06-29 10:07:13 +0200814}
815
816/**
Tejun Heoc8e55f32010-06-29 10:07:12 +0200817 * busy_worker_head - return the busy hash head for a work
818 * @gcwq: gcwq of interest
819 * @work: work to be hashed
820 *
821 * Return hash head of @gcwq for @work.
822 *
823 * CONTEXT:
824 * spin_lock_irq(gcwq->lock).
825 *
826 * RETURNS:
827 * Pointer to the hash head.
828 */
829static struct hlist_head *busy_worker_head(struct global_cwq *gcwq,
830 struct work_struct *work)
831{
832 const int base_shift = ilog2(sizeof(struct work_struct));
833 unsigned long v = (unsigned long)work;
834
835 /* simple shift and fold hash, do we need something better? */
836 v >>= base_shift;
837 v += v >> BUSY_WORKER_HASH_ORDER;
838 v &= BUSY_WORKER_HASH_MASK;
839
840 return &gcwq->busy_hash[v];
841}
842
843/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200844 * __find_worker_executing_work - find worker which is executing a work
845 * @gcwq: gcwq of interest
846 * @bwh: hash head as returned by busy_worker_head()
847 * @work: work to find worker for
848 *
849 * Find a worker which is executing @work on @gcwq. @bwh should be
850 * the hash head obtained by calling busy_worker_head() with the same
851 * work.
852 *
853 * CONTEXT:
854 * spin_lock_irq(gcwq->lock).
855 *
856 * RETURNS:
857 * Pointer to worker which is executing @work if found, NULL
858 * otherwise.
859 */
860static struct worker *__find_worker_executing_work(struct global_cwq *gcwq,
861 struct hlist_head *bwh,
862 struct work_struct *work)
863{
864 struct worker *worker;
865 struct hlist_node *tmp;
866
867 hlist_for_each_entry(worker, tmp, bwh, hentry)
868 if (worker->current_work == work)
869 return worker;
870 return NULL;
871}
872
873/**
874 * find_worker_executing_work - find worker which is executing a work
875 * @gcwq: gcwq of interest
876 * @work: work to find worker for
877 *
878 * Find a worker which is executing @work on @gcwq. This function is
879 * identical to __find_worker_executing_work() except that this
880 * function calculates @bwh itself.
881 *
882 * CONTEXT:
883 * spin_lock_irq(gcwq->lock).
884 *
885 * RETURNS:
886 * Pointer to worker which is executing @work if found, NULL
887 * otherwise.
888 */
889static struct worker *find_worker_executing_work(struct global_cwq *gcwq,
890 struct work_struct *work)
891{
892 return __find_worker_executing_work(gcwq, busy_worker_head(gcwq, work),
893 work);
894}
895
896/**
Tejun Heo7e116292010-06-29 10:07:13 +0200897 * insert_work - insert a work into gcwq
Tejun Heo4690c4a2010-06-29 10:07:10 +0200898 * @cwq: cwq @work belongs to
899 * @work: work to insert
900 * @head: insertion point
901 * @extra_flags: extra WORK_STRUCT_* flags to set
902 *
Tejun Heo7e116292010-06-29 10:07:13 +0200903 * Insert @work which belongs to @cwq into @gcwq after @head.
904 * @extra_flags is or'd to work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200905 *
906 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +0200907 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +0200908 */
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700909static void insert_work(struct cpu_workqueue_struct *cwq,
Tejun Heo4690c4a2010-06-29 10:07:10 +0200910 struct work_struct *work, struct list_head *head,
911 unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700912{
Tejun Heo63d95a92012-07-12 14:46:37 -0700913 struct worker_pool *pool = cwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +0100914
Tejun Heo4690c4a2010-06-29 10:07:10 +0200915 /* we own @work, set data and link */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200916 set_work_cwq(work, cwq, extra_flags);
Tejun Heo4690c4a2010-06-29 10:07:10 +0200917
Oleg Nesterov6e84d642007-05-09 02:34:46 -0700918 /*
919 * Ensure that we get the right work->data if we see the
920 * result of list_add() below, see try_to_grab_pending().
921 */
922 smp_wmb();
Tejun Heo4690c4a2010-06-29 10:07:10 +0200923
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -0700924 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +0200925
926 /*
927 * Ensure either worker_sched_deactivated() sees the above
928 * list_add_tail() or we see zero nr_running to avoid workers
929 * lying around lazily while there are works to be processed.
930 */
931 smp_mb();
932
Tejun Heo63d95a92012-07-12 14:46:37 -0700933 if (__need_more_worker(pool))
934 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700935}
936
Tejun Heoc8efcc22010-12-20 19:32:04 +0100937/*
938 * Test whether @work is being queued from another work executing on the
939 * same workqueue. This is rather expensive and should only be used from
940 * cold paths.
941 */
942static bool is_chained_work(struct workqueue_struct *wq)
943{
944 unsigned long flags;
945 unsigned int cpu;
946
947 for_each_gcwq_cpu(cpu) {
948 struct global_cwq *gcwq = get_gcwq(cpu);
949 struct worker *worker;
950 struct hlist_node *pos;
951 int i;
952
953 spin_lock_irqsave(&gcwq->lock, flags);
954 for_each_busy_worker(worker, i, pos, gcwq) {
955 if (worker->task != current)
956 continue;
957 spin_unlock_irqrestore(&gcwq->lock, flags);
958 /*
959 * I'm @worker, no locking necessary. See if @work
960 * is headed to the same workqueue.
961 */
962 return worker->current_cwq->wq == wq;
963 }
964 spin_unlock_irqrestore(&gcwq->lock, flags);
965 }
966 return false;
967}
968
Tejun Heo4690c4a2010-06-29 10:07:10 +0200969static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 struct work_struct *work)
971{
Tejun Heo502ca9d2010-06-29 10:07:13 +0200972 struct global_cwq *gcwq;
973 struct cpu_workqueue_struct *cwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200974 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +0200975 unsigned int work_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 unsigned long flags;
977
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900978 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200979
Tejun Heoc8efcc22010-12-20 19:32:04 +0100980 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200981 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +0100982 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +0200983 return;
984
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200985 /* determine gcwq to use */
986 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200987 struct global_cwq *last_gcwq;
988
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200989 if (unlikely(cpu == WORK_CPU_UNBOUND))
990 cpu = raw_smp_processor_id();
991
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200992 /*
993 * It's multi cpu. If @wq is non-reentrant and @work
994 * was previously on a different cpu, it might still
995 * be running there, in which case the work needs to
996 * be queued on that cpu to guarantee non-reentrance.
997 */
Tejun Heo502ca9d2010-06-29 10:07:13 +0200998 gcwq = get_gcwq(cpu);
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200999 if (wq->flags & WQ_NON_REENTRANT &&
1000 (last_gcwq = get_work_gcwq(work)) && last_gcwq != gcwq) {
1001 struct worker *worker;
1002
1003 spin_lock_irqsave(&last_gcwq->lock, flags);
1004
1005 worker = find_worker_executing_work(last_gcwq, work);
1006
1007 if (worker && worker->current_cwq->wq == wq)
1008 gcwq = last_gcwq;
1009 else {
1010 /* meh... not running there, queue here */
1011 spin_unlock_irqrestore(&last_gcwq->lock, flags);
1012 spin_lock_irqsave(&gcwq->lock, flags);
1013 }
1014 } else
1015 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heof3421792010-07-02 10:03:51 +02001016 } else {
1017 gcwq = get_gcwq(WORK_CPU_UNBOUND);
1018 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001019 }
1020
1021 /* gcwq determined, get cwq and queue */
1022 cwq = get_cwq(gcwq->cpu, wq);
Tejun Heocdadf002010-10-05 10:49:55 +02001023 trace_workqueue_queue_work(cpu, cwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001024
Dan Carpenterf5b25522012-04-13 22:06:58 +03001025 if (WARN_ON(!list_empty(&work->entry))) {
1026 spin_unlock_irqrestore(&gcwq->lock, flags);
1027 return;
1028 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001029
Tejun Heo73f53c42010-06-29 10:07:11 +02001030 cwq->nr_in_flight[cwq->work_color]++;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001031 work_flags = work_color_to_flags(cwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001032
1033 if (likely(cwq->nr_active < cwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001034 trace_workqueue_activate_work(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001035 cwq->nr_active++;
Tejun Heo32704762012-07-13 22:16:45 -07001036 worklist = &cwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001037 } else {
1038 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001039 worklist = &cwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001040 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001041
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001042 insert_work(cwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001043
Tejun Heo8b03ae32010-06-29 10:07:12 +02001044 spin_unlock_irqrestore(&gcwq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001047/**
1048 * queue_work - queue work on a workqueue
1049 * @wq: workqueue to use
1050 * @work: work to queue
1051 *
Alan Stern057647f2006-10-28 10:38:58 -07001052 * Returns 0 if @work was already on a queue, non-zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 *
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07001054 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1055 * it can be processed by another CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001057int queue_work(struct workqueue_struct *wq, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Oleg Nesterovef1ca232008-07-25 01:47:53 -07001059 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Oleg Nesterovef1ca232008-07-25 01:47:53 -07001061 ret = queue_work_on(get_cpu(), wq, work);
1062 put_cpu();
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return ret;
1065}
Dave Jonesae90dd52006-06-30 01:40:45 -04001066EXPORT_SYMBOL_GPL(queue_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Zhang Ruic1a220e2008-07-23 21:28:39 -07001068/**
1069 * queue_work_on - queue work on specific cpu
1070 * @cpu: CPU number to execute work on
1071 * @wq: workqueue to use
1072 * @work: work to queue
1073 *
1074 * Returns 0 if @work was already on a queue, non-zero otherwise.
1075 *
1076 * We queue the work to a specific CPU, the caller must ensure it
1077 * can't go away.
1078 */
1079int
1080queue_work_on(int cpu, struct workqueue_struct *wq, struct work_struct *work)
1081{
1082 int ret = 0;
1083
Tejun Heo22df02b2010-06-29 10:07:10 +02001084 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001085 __queue_work(cpu, wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001086 ret = 1;
1087 }
1088 return ret;
1089}
1090EXPORT_SYMBOL_GPL(queue_work_on);
1091
Li Zefan6d141c32008-02-08 04:21:09 -08001092static void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
David Howells52bad642006-11-22 14:54:01 +00001094 struct delayed_work *dwork = (struct delayed_work *)__data;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001095 struct cpu_workqueue_struct *cwq = get_work_cwq(&dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Tejun Heo4690c4a2010-06-29 10:07:10 +02001097 __queue_work(smp_processor_id(), cwq->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001100/**
1101 * queue_delayed_work - queue work on a workqueue after delay
1102 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001103 * @dwork: delayable work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001104 * @delay: number of jiffies to wait before queueing
1105 *
Alan Stern057647f2006-10-28 10:38:58 -07001106 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001107 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001108int queue_delayed_work(struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001109 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
David Howells52bad642006-11-22 14:54:01 +00001111 if (delay == 0)
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001112 return queue_work(wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001114 return queue_delayed_work_on(-1, wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
Dave Jonesae90dd52006-06-30 01:40:45 -04001116EXPORT_SYMBOL_GPL(queue_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001118/**
1119 * queue_delayed_work_on - queue work on specific CPU after delay
1120 * @cpu: CPU number to execute work on
1121 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001122 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001123 * @delay: number of jiffies to wait before queueing
1124 *
Alan Stern057647f2006-10-28 10:38:58 -07001125 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001126 */
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001127int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001128 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001129{
1130 int ret = 0;
David Howells52bad642006-11-22 14:54:01 +00001131 struct timer_list *timer = &dwork->timer;
1132 struct work_struct *work = &dwork->work;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001133
Tejun Heo22df02b2010-06-29 10:07:10 +02001134 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001135 unsigned int lcpu;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001136
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001137 BUG_ON(timer_pending(timer));
1138 BUG_ON(!list_empty(&work->entry));
1139
Andrew Liu8a3e77c2008-05-01 04:35:14 -07001140 timer_stats_timer_set_start_info(&dwork->timer);
1141
Tejun Heo7a22ad72010-06-29 10:07:13 +02001142 /*
1143 * This stores cwq for the moment, for the timer_fn.
1144 * Note that the work's gcwq is preserved to allow
1145 * reentrance detection for delayed works.
1146 */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001147 if (!(wq->flags & WQ_UNBOUND)) {
1148 struct global_cwq *gcwq = get_work_gcwq(work);
1149
1150 if (gcwq && gcwq->cpu != WORK_CPU_UNBOUND)
1151 lcpu = gcwq->cpu;
1152 else
1153 lcpu = raw_smp_processor_id();
1154 } else
1155 lcpu = WORK_CPU_UNBOUND;
1156
Tejun Heo7a22ad72010-06-29 10:07:13 +02001157 set_work_cwq(work, get_cwq(lcpu, wq), 0);
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001158
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001159 timer->expires = jiffies + delay;
David Howells52bad642006-11-22 14:54:01 +00001160 timer->data = (unsigned long)dwork;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001161 timer->function = delayed_work_timer_fn;
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001162
1163 if (unlikely(cpu >= 0))
1164 add_timer_on(timer, cpu);
1165 else
1166 add_timer(timer);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001167 ret = 1;
1168 }
1169 return ret;
1170}
Dave Jonesae90dd52006-06-30 01:40:45 -04001171EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Tejun Heoc8e55f32010-06-29 10:07:12 +02001173/**
1174 * worker_enter_idle - enter idle state
1175 * @worker: worker which is entering idle state
1176 *
1177 * @worker is entering idle state. Update stats and idle timer if
1178 * necessary.
1179 *
1180 * LOCKING:
1181 * spin_lock_irq(gcwq->lock).
1182 */
1183static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001185 struct worker_pool *pool = worker->pool;
1186 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Tejun Heoc8e55f32010-06-29 10:07:12 +02001188 BUG_ON(worker->flags & WORKER_IDLE);
1189 BUG_ON(!list_empty(&worker->entry) &&
1190 (worker->hentry.next || worker->hentry.pprev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Tejun Heocb444762010-07-02 10:03:50 +02001192 /* can't use worker_set_flags(), also called from start_worker() */
1193 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001194 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001195 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001196
Tejun Heoc8e55f32010-06-29 10:07:12 +02001197 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001198 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001199
Tejun Heo403c8212012-07-17 12:39:27 -07001200 if (likely(gcwq->trustee_state != TRUSTEE_DONE)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001201 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
Tejun Heobd7bdd42012-07-12 14:46:37 -07001202 mod_timer(&pool->idle_timer,
Tejun Heoe22bee72010-06-29 10:07:14 +02001203 jiffies + IDLE_WORKER_TIMEOUT);
1204 } else
Tejun Heodb7bccf2010-06-29 10:07:12 +02001205 wake_up_all(&gcwq->trustee_wait);
Tejun Heocb444762010-07-02 10:03:50 +02001206
Tejun Heo544ecf32012-05-14 15:04:50 -07001207 /*
1208 * Sanity check nr_running. Because trustee releases gcwq->lock
Tejun Heo403c8212012-07-17 12:39:27 -07001209 * between setting %WORKER_UNBOUND and zapping nr_running, the
Tejun Heo544ecf32012-05-14 15:04:50 -07001210 * warning may trigger spuriously. Check iff trustee is idle.
1211 */
1212 WARN_ON_ONCE(gcwq->trustee_state == TRUSTEE_DONE &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001213 pool->nr_workers == pool->nr_idle &&
Tejun Heo63d95a92012-07-12 14:46:37 -07001214 atomic_read(get_pool_nr_running(pool)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
Tejun Heoc8e55f32010-06-29 10:07:12 +02001217/**
1218 * worker_leave_idle - leave idle state
1219 * @worker: worker which is leaving idle state
1220 *
1221 * @worker is leaving idle state. Update stats.
1222 *
1223 * LOCKING:
1224 * spin_lock_irq(gcwq->lock).
1225 */
1226static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001228 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Tejun Heoc8e55f32010-06-29 10:07:12 +02001230 BUG_ON(!(worker->flags & WORKER_IDLE));
Tejun Heod302f012010-06-29 10:07:13 +02001231 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001232 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001233 list_del_init(&worker->entry);
1234}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Tejun Heoe22bee72010-06-29 10:07:14 +02001236/**
1237 * worker_maybe_bind_and_lock - bind worker to its cpu if possible and lock gcwq
1238 * @worker: self
1239 *
1240 * Works which are scheduled while the cpu is online must at least be
1241 * scheduled to a worker which is bound to the cpu so that if they are
1242 * flushed from cpu callbacks while cpu is going down, they are
1243 * guaranteed to execute on the cpu.
1244 *
1245 * This function is to be used by rogue workers and rescuers to bind
1246 * themselves to the target cpu and may race with cpu going down or
1247 * coming online. kthread_bind() can't be used because it may put the
1248 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
1249 * verbatim as it's best effort and blocking and gcwq may be
1250 * [dis]associated in the meantime.
1251 *
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001252 * This function tries set_cpus_allowed() and locks gcwq and verifies the
1253 * binding against %GCWQ_DISASSOCIATED which is set during
1254 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1255 * enters idle state or fetches works without dropping lock, it can
1256 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001257 *
1258 * CONTEXT:
1259 * Might sleep. Called without any lock but returns with gcwq->lock
1260 * held.
1261 *
1262 * RETURNS:
1263 * %true if the associated gcwq is online (@worker is successfully
1264 * bound), %false if offline.
1265 */
1266static bool worker_maybe_bind_and_lock(struct worker *worker)
Namhyung Kim972fa1c2010-08-22 23:19:43 +09001267__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001268{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001269 struct global_cwq *gcwq = worker->pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001270 struct task_struct *task = worker->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Tejun Heoe22bee72010-06-29 10:07:14 +02001272 while (true) {
1273 /*
1274 * The following call may fail, succeed or succeed
1275 * without actually migrating the task to the cpu if
1276 * it races with cpu hotunplug operation. Verify
1277 * against GCWQ_DISASSOCIATED.
1278 */
Tejun Heof3421792010-07-02 10:03:51 +02001279 if (!(gcwq->flags & GCWQ_DISASSOCIATED))
1280 set_cpus_allowed_ptr(task, get_cpu_mask(gcwq->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001281
Tejun Heoe22bee72010-06-29 10:07:14 +02001282 spin_lock_irq(&gcwq->lock);
1283 if (gcwq->flags & GCWQ_DISASSOCIATED)
1284 return false;
1285 if (task_cpu(task) == gcwq->cpu &&
1286 cpumask_equal(&current->cpus_allowed,
1287 get_cpu_mask(gcwq->cpu)))
1288 return true;
1289 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001290
Tejun Heo5035b202011-04-29 18:08:37 +02001291 /*
1292 * We've raced with CPU hot[un]plug. Give it a breather
1293 * and retry migration. cond_resched() is required here;
1294 * otherwise, we might deadlock against cpu_stop trying to
1295 * bring down the CPU on non-preemptive kernel.
1296 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001297 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001298 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001299 }
1300}
1301
1302/*
Tejun Heo403c8212012-07-17 12:39:27 -07001303 * Function for worker->rebind_work used to rebind unbound busy workers to
1304 * the associated cpu which is coming back online. This is scheduled by
1305 * cpu up but can race with other cpu hotplug operations and may be
1306 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001307 */
1308static void worker_rebind_fn(struct work_struct *work)
1309{
1310 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001311 struct global_cwq *gcwq = worker->pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001312
1313 if (worker_maybe_bind_and_lock(worker))
1314 worker_clr_flags(worker, WORKER_REBIND);
1315
1316 spin_unlock_irq(&gcwq->lock);
1317}
1318
Tejun Heoc34056a2010-06-29 10:07:11 +02001319static struct worker *alloc_worker(void)
1320{
1321 struct worker *worker;
1322
1323 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001324 if (worker) {
1325 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001326 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heoe22bee72010-06-29 10:07:14 +02001327 INIT_WORK(&worker->rebind_work, worker_rebind_fn);
1328 /* on creation a worker is in !idle && prep state */
1329 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001330 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001331 return worker;
1332}
1333
1334/**
1335 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001336 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001337 * @bind: whether to set affinity to @cpu or not
1338 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001339 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001340 * can be started by calling start_worker() or destroyed using
1341 * destroy_worker().
1342 *
1343 * CONTEXT:
1344 * Might sleep. Does GFP_KERNEL allocations.
1345 *
1346 * RETURNS:
1347 * Pointer to the newly created worker.
1348 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001349static struct worker *create_worker(struct worker_pool *pool, bool bind)
Tejun Heoc34056a2010-06-29 10:07:11 +02001350{
Tejun Heo63d95a92012-07-12 14:46:37 -07001351 struct global_cwq *gcwq = pool->gcwq;
Tejun Heof3421792010-07-02 10:03:51 +02001352 bool on_unbound_cpu = gcwq->cpu == WORK_CPU_UNBOUND;
Tejun Heo32704762012-07-13 22:16:45 -07001353 const char *pri = worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001354 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001355 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001356
Tejun Heo8b03ae32010-06-29 10:07:12 +02001357 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001358 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001359 spin_unlock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001360 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001361 goto fail;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001362 spin_lock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001363 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02001364 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001365
1366 worker = alloc_worker();
1367 if (!worker)
1368 goto fail;
1369
Tejun Heobd7bdd42012-07-12 14:46:37 -07001370 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001371 worker->id = id;
1372
Tejun Heof3421792010-07-02 10:03:51 +02001373 if (!on_unbound_cpu)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001374 worker->task = kthread_create_on_node(worker_thread,
Tejun Heo32704762012-07-13 22:16:45 -07001375 worker, cpu_to_node(gcwq->cpu),
1376 "kworker/%u:%d%s", gcwq->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001377 else
1378 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001379 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001380 if (IS_ERR(worker->task))
1381 goto fail;
1382
Tejun Heo32704762012-07-13 22:16:45 -07001383 if (worker_pool_pri(pool))
1384 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1385
Tejun Heodb7bccf2010-06-29 10:07:12 +02001386 /*
Tejun Heo403c8212012-07-17 12:39:27 -07001387 * An unbound worker will become a regular one if CPU comes online
1388 * later on. Make sure every worker has PF_THREAD_BOUND set.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001389 */
Tejun Heof3421792010-07-02 10:03:51 +02001390 if (bind && !on_unbound_cpu)
Tejun Heo8b03ae32010-06-29 10:07:12 +02001391 kthread_bind(worker->task, gcwq->cpu);
Tejun Heof3421792010-07-02 10:03:51 +02001392 else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001393 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heof3421792010-07-02 10:03:51 +02001394 if (on_unbound_cpu)
1395 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001397
Tejun Heoc34056a2010-06-29 10:07:11 +02001398 return worker;
1399fail:
1400 if (id >= 0) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001401 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001402 ida_remove(&pool->worker_ida, id);
Tejun Heo8b03ae32010-06-29 10:07:12 +02001403 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001404 }
1405 kfree(worker);
1406 return NULL;
1407}
1408
1409/**
1410 * start_worker - start a newly created worker
1411 * @worker: worker to start
1412 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001413 * Make the gcwq aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001414 *
1415 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001416 * spin_lock_irq(gcwq->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001417 */
1418static void start_worker(struct worker *worker)
1419{
Tejun Heocb444762010-07-02 10:03:50 +02001420 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001421 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001422 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001423 wake_up_process(worker->task);
1424}
1425
1426/**
1427 * destroy_worker - destroy a workqueue worker
1428 * @worker: worker to be destroyed
1429 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001430 * Destroy @worker and adjust @gcwq stats accordingly.
1431 *
1432 * CONTEXT:
1433 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001434 */
1435static void destroy_worker(struct worker *worker)
1436{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001437 struct worker_pool *pool = worker->pool;
1438 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001439 int id = worker->id;
1440
1441 /* sanity check frenzy */
1442 BUG_ON(worker->current_work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001443 BUG_ON(!list_empty(&worker->scheduled));
Tejun Heoc34056a2010-06-29 10:07:11 +02001444
Tejun Heoc8e55f32010-06-29 10:07:12 +02001445 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001446 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001447 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001448 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001449
1450 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001451 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001452
1453 spin_unlock_irq(&gcwq->lock);
1454
Tejun Heoc34056a2010-06-29 10:07:11 +02001455 kthread_stop(worker->task);
1456 kfree(worker);
1457
Tejun Heo8b03ae32010-06-29 10:07:12 +02001458 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001459 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001460}
1461
Tejun Heo63d95a92012-07-12 14:46:37 -07001462static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001463{
Tejun Heo63d95a92012-07-12 14:46:37 -07001464 struct worker_pool *pool = (void *)__pool;
1465 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001466
1467 spin_lock_irq(&gcwq->lock);
1468
Tejun Heo63d95a92012-07-12 14:46:37 -07001469 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001470 struct worker *worker;
1471 unsigned long expires;
1472
1473 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001474 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001475 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1476
1477 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001478 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001479 else {
1480 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001481 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001482 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001483 }
1484 }
1485
1486 spin_unlock_irq(&gcwq->lock);
1487}
1488
1489static bool send_mayday(struct work_struct *work)
1490{
1491 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1492 struct workqueue_struct *wq = cwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001493 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001494
1495 if (!(wq->flags & WQ_RESCUER))
1496 return false;
1497
1498 /* mayday mayday mayday */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001499 cpu = cwq->pool->gcwq->cpu;
Tejun Heof3421792010-07-02 10:03:51 +02001500 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1501 if (cpu == WORK_CPU_UNBOUND)
1502 cpu = 0;
Tejun Heof2e005a2010-07-20 15:59:09 +02001503 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001504 wake_up_process(wq->rescuer->task);
1505 return true;
1506}
1507
Tejun Heo63d95a92012-07-12 14:46:37 -07001508static void gcwq_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001509{
Tejun Heo63d95a92012-07-12 14:46:37 -07001510 struct worker_pool *pool = (void *)__pool;
1511 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001512 struct work_struct *work;
1513
1514 spin_lock_irq(&gcwq->lock);
1515
Tejun Heo63d95a92012-07-12 14:46:37 -07001516 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001517 /*
1518 * We've been trying to create a new worker but
1519 * haven't been successful. We might be hitting an
1520 * allocation deadlock. Send distress signals to
1521 * rescuers.
1522 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001523 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001524 send_mayday(work);
1525 }
1526
1527 spin_unlock_irq(&gcwq->lock);
1528
Tejun Heo63d95a92012-07-12 14:46:37 -07001529 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001530}
1531
1532/**
1533 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001534 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001535 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001536 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001537 * have at least one idle worker on return from this function. If
1538 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001539 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001540 * possible allocation deadlock.
1541 *
1542 * On return, need_to_create_worker() is guaranteed to be false and
1543 * may_start_working() true.
1544 *
1545 * LOCKING:
1546 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1547 * multiple times. Does GFP_KERNEL allocations. Called only from
1548 * manager.
1549 *
1550 * RETURNS:
1551 * false if no action was taken and gcwq->lock stayed locked, true
1552 * otherwise.
1553 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001554static bool maybe_create_worker(struct worker_pool *pool)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001555__releases(&gcwq->lock)
1556__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001557{
Tejun Heo63d95a92012-07-12 14:46:37 -07001558 struct global_cwq *gcwq = pool->gcwq;
1559
1560 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001561 return false;
1562restart:
Tejun Heo9f9c2362010-07-14 11:31:20 +02001563 spin_unlock_irq(&gcwq->lock);
1564
Tejun Heoe22bee72010-06-29 10:07:14 +02001565 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001566 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001567
1568 while (true) {
1569 struct worker *worker;
1570
Tejun Heo63d95a92012-07-12 14:46:37 -07001571 worker = create_worker(pool, true);
Tejun Heoe22bee72010-06-29 10:07:14 +02001572 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001573 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001574 spin_lock_irq(&gcwq->lock);
1575 start_worker(worker);
Tejun Heo63d95a92012-07-12 14:46:37 -07001576 BUG_ON(need_to_create_worker(pool));
Tejun Heoe22bee72010-06-29 10:07:14 +02001577 return true;
1578 }
1579
Tejun Heo63d95a92012-07-12 14:46:37 -07001580 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001581 break;
1582
Tejun Heoe22bee72010-06-29 10:07:14 +02001583 __set_current_state(TASK_INTERRUPTIBLE);
1584 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001585
Tejun Heo63d95a92012-07-12 14:46:37 -07001586 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001587 break;
1588 }
1589
Tejun Heo63d95a92012-07-12 14:46:37 -07001590 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001591 spin_lock_irq(&gcwq->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001592 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001593 goto restart;
1594 return true;
1595}
1596
1597/**
1598 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001599 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001600 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001601 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001602 * IDLE_WORKER_TIMEOUT.
1603 *
1604 * LOCKING:
1605 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1606 * multiple times. Called only from manager.
1607 *
1608 * RETURNS:
1609 * false if no action was taken and gcwq->lock stayed locked, true
1610 * otherwise.
1611 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001612static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001613{
1614 bool ret = false;
1615
Tejun Heo63d95a92012-07-12 14:46:37 -07001616 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001617 struct worker *worker;
1618 unsigned long expires;
1619
Tejun Heo63d95a92012-07-12 14:46:37 -07001620 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001621 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1622
1623 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001624 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001625 break;
1626 }
1627
1628 destroy_worker(worker);
1629 ret = true;
1630 }
1631
1632 return ret;
1633}
1634
1635/**
1636 * manage_workers - manage worker pool
1637 * @worker: self
1638 *
1639 * Assume the manager role and manage gcwq worker pool @worker belongs
1640 * to. At any given time, there can be only zero or one manager per
1641 * gcwq. The exclusion is handled automatically by this function.
1642 *
1643 * The caller can safely start processing works on false return. On
1644 * true return, it's guaranteed that need_to_create_worker() is false
1645 * and may_start_working() is true.
1646 *
1647 * CONTEXT:
1648 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1649 * multiple times. Does GFP_KERNEL allocations.
1650 *
1651 * RETURNS:
1652 * false if no action was taken and gcwq->lock stayed locked, true if
1653 * some action was taken.
1654 */
1655static bool manage_workers(struct worker *worker)
1656{
Tejun Heo63d95a92012-07-12 14:46:37 -07001657 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001658 bool ret = false;
1659
Tejun Heo60373152012-07-17 12:39:27 -07001660 if (!mutex_trylock(&pool->manager_mutex))
Tejun Heoe22bee72010-06-29 10:07:14 +02001661 return ret;
1662
Tejun Heo11ebea52012-07-12 14:46:37 -07001663 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02001664
1665 /*
1666 * Destroy and then create so that may_start_working() is true
1667 * on return.
1668 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001669 ret |= maybe_destroy_workers(pool);
1670 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001671
Tejun Heo60373152012-07-17 12:39:27 -07001672 mutex_unlock(&pool->manager_mutex);
Tejun Heoe22bee72010-06-29 10:07:14 +02001673 return ret;
1674}
1675
Tejun Heoa62428c2010-06-29 10:07:10 +02001676/**
Tejun Heoaffee4b2010-06-29 10:07:12 +02001677 * move_linked_works - move linked works to a list
1678 * @work: start of series of works to be scheduled
1679 * @head: target list to append @work to
1680 * @nextp: out paramter for nested worklist walking
1681 *
1682 * Schedule linked works starting from @work to @head. Work series to
1683 * be scheduled starts at @work and includes any consecutive work with
1684 * WORK_STRUCT_LINKED set in its predecessor.
1685 *
1686 * If @nextp is not NULL, it's updated to point to the next work of
1687 * the last scheduled work. This allows move_linked_works() to be
1688 * nested inside outer list_for_each_entry_safe().
1689 *
1690 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001691 * spin_lock_irq(gcwq->lock).
Tejun Heoaffee4b2010-06-29 10:07:12 +02001692 */
1693static void move_linked_works(struct work_struct *work, struct list_head *head,
1694 struct work_struct **nextp)
1695{
1696 struct work_struct *n;
1697
1698 /*
1699 * Linked worklist will always end before the end of the list,
1700 * use NULL for list head.
1701 */
1702 list_for_each_entry_safe_from(work, n, NULL, entry) {
1703 list_move_tail(&work->entry, head);
1704 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
1705 break;
1706 }
1707
1708 /*
1709 * If we're already inside safe list traversal and have moved
1710 * multiple works to the scheduled queue, the next position
1711 * needs to be updated.
1712 */
1713 if (nextp)
1714 *nextp = n;
1715}
1716
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001717static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
1718{
1719 struct work_struct *work = list_first_entry(&cwq->delayed_works,
1720 struct work_struct, entry);
1721
Tejun Heocdadf002010-10-05 10:49:55 +02001722 trace_workqueue_activate_work(work);
Tejun Heo32704762012-07-13 22:16:45 -07001723 move_linked_works(work, &cwq->pool->worklist, NULL);
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001724 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001725 cwq->nr_active++;
1726}
1727
Tejun Heoaffee4b2010-06-29 10:07:12 +02001728/**
Tejun Heo73f53c42010-06-29 10:07:11 +02001729 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
1730 * @cwq: cwq of interest
1731 * @color: color of work which left the queue
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001732 * @delayed: for a delayed work
Tejun Heo73f53c42010-06-29 10:07:11 +02001733 *
1734 * A work either has completed or is removed from pending queue,
1735 * decrement nr_in_flight of its cwq and handle workqueue flushing.
1736 *
1737 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001738 * spin_lock_irq(gcwq->lock).
Tejun Heo73f53c42010-06-29 10:07:11 +02001739 */
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001740static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color,
1741 bool delayed)
Tejun Heo73f53c42010-06-29 10:07:11 +02001742{
1743 /* ignore uncolored works */
1744 if (color == WORK_NO_COLOR)
1745 return;
1746
1747 cwq->nr_in_flight[color]--;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001748
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001749 if (!delayed) {
1750 cwq->nr_active--;
1751 if (!list_empty(&cwq->delayed_works)) {
1752 /* one down, submit a delayed one */
1753 if (cwq->nr_active < cwq->max_active)
1754 cwq_activate_first_delayed(cwq);
1755 }
Tejun Heo502ca9d2010-06-29 10:07:13 +02001756 }
Tejun Heo73f53c42010-06-29 10:07:11 +02001757
1758 /* is flush in progress and are we at the flushing tip? */
1759 if (likely(cwq->flush_color != color))
1760 return;
1761
1762 /* are there still in-flight works? */
1763 if (cwq->nr_in_flight[color])
1764 return;
1765
1766 /* this cwq is done, clear flush_color */
1767 cwq->flush_color = -1;
1768
1769 /*
1770 * If this was the last cwq, wake up the first flusher. It
1771 * will handle the rest.
1772 */
1773 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
1774 complete(&cwq->wq->first_flusher->done);
1775}
1776
1777/**
Tejun Heoa62428c2010-06-29 10:07:10 +02001778 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02001779 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02001780 * @work: work to process
1781 *
1782 * Process @work. This function contains all the logics necessary to
1783 * process a single work including synchronization against and
1784 * interaction with other workers on the same cpu, queueing and
1785 * flushing. As long as context requirement is met, any worker can
1786 * call this function to process a work.
1787 *
1788 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001789 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02001790 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001791static void process_one_work(struct worker *worker, struct work_struct *work)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001792__releases(&gcwq->lock)
1793__acquires(&gcwq->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02001794{
Tejun Heo7e116292010-06-29 10:07:13 +02001795 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001796 struct worker_pool *pool = worker->pool;
1797 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001798 struct hlist_head *bwh = busy_worker_head(gcwq, work);
Tejun Heofb0e7be2010-06-29 10:07:15 +02001799 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heoa62428c2010-06-29 10:07:10 +02001800 work_func_t f = work->func;
Tejun Heo73f53c42010-06-29 10:07:11 +02001801 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02001802 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02001803#ifdef CONFIG_LOCKDEP
1804 /*
1805 * It is permissible to free the struct work_struct from
1806 * inside the function that is called from it, this we need to
1807 * take into account for lockdep too. To avoid bogus "held
1808 * lock freed" warnings as well as problems when looking into
1809 * work->lockdep_map, make a copy and use that here.
1810 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07001811 struct lockdep_map lockdep_map;
1812
1813 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02001814#endif
Tejun Heo7e116292010-06-29 10:07:13 +02001815 /*
1816 * A single work shouldn't be executed concurrently by
1817 * multiple workers on a single cpu. Check whether anyone is
1818 * already processing the work. If so, defer the work to the
1819 * currently executing one.
1820 */
1821 collision = __find_worker_executing_work(gcwq, bwh, work);
1822 if (unlikely(collision)) {
1823 move_linked_works(work, &collision->scheduled, NULL);
1824 return;
1825 }
1826
Tejun Heoa62428c2010-06-29 10:07:10 +02001827 /* claim and process */
Tejun Heoa62428c2010-06-29 10:07:10 +02001828 debug_work_deactivate(work);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001829 hlist_add_head(&worker->hentry, bwh);
Tejun Heoc34056a2010-06-29 10:07:11 +02001830 worker->current_work = work;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02001831 worker->current_cwq = cwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02001832 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02001833
Tejun Heo7a22ad72010-06-29 10:07:13 +02001834 /* record the current cpu number in the work data and dequeue */
1835 set_work_cpu(work, gcwq->cpu);
Tejun Heoa62428c2010-06-29 10:07:10 +02001836 list_del_init(&work->entry);
1837
Tejun Heo649027d2010-06-29 10:07:14 +02001838 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02001839 * CPU intensive works don't participate in concurrency
1840 * management. They're the scheduler's responsibility.
1841 */
1842 if (unlikely(cpu_intensive))
1843 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
1844
Tejun Heo974271c2012-07-12 14:46:37 -07001845 /*
1846 * Unbound gcwq isn't concurrency managed and work items should be
1847 * executed ASAP. Wake up another worker if necessary.
1848 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001849 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
1850 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07001851
Tejun Heo8b03ae32010-06-29 10:07:12 +02001852 spin_unlock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02001853
Tejun Heoa62428c2010-06-29 10:07:10 +02001854 work_clear_pending(work);
Tejun Heoe1594892011-01-09 23:32:15 +01001855 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02001856 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07001857 trace_workqueue_execute_start(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02001858 f(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07001859 /*
1860 * While we must be careful to not use "work" after this, the trace
1861 * point will only record its address.
1862 */
1863 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02001864 lock_map_release(&lockdep_map);
1865 lock_map_release(&cwq->wq->lockdep_map);
1866
1867 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
1868 printk(KERN_ERR "BUG: workqueue leaked lock or atomic: "
1869 "%s/0x%08x/%d\n",
1870 current->comm, preempt_count(), task_pid_nr(current));
1871 printk(KERN_ERR " last function: ");
1872 print_symbol("%s\n", (unsigned long)f);
1873 debug_show_held_locks(current);
1874 dump_stack();
1875 }
1876
Tejun Heo8b03ae32010-06-29 10:07:12 +02001877 spin_lock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02001878
Tejun Heofb0e7be2010-06-29 10:07:15 +02001879 /* clear cpu intensive status */
1880 if (unlikely(cpu_intensive))
1881 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
1882
Tejun Heoa62428c2010-06-29 10:07:10 +02001883 /* we're done with it, release */
Tejun Heoc8e55f32010-06-29 10:07:12 +02001884 hlist_del_init(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02001885 worker->current_work = NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02001886 worker->current_cwq = NULL;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001887 cwq_dec_nr_in_flight(cwq, work_color, false);
Tejun Heoa62428c2010-06-29 10:07:10 +02001888}
1889
Tejun Heoaffee4b2010-06-29 10:07:12 +02001890/**
1891 * process_scheduled_works - process scheduled works
1892 * @worker: self
1893 *
1894 * Process all scheduled works. Please note that the scheduled list
1895 * may change while processing a work, so this function repeatedly
1896 * fetches a work from the top and executes it.
1897 *
1898 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001899 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02001900 * multiple times.
1901 */
1902static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Tejun Heoaffee4b2010-06-29 10:07:12 +02001904 while (!list_empty(&worker->scheduled)) {
1905 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02001907 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Tejun Heo4690c4a2010-06-29 10:07:10 +02001911/**
1912 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02001913 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02001914 *
Tejun Heoe22bee72010-06-29 10:07:14 +02001915 * The gcwq worker thread function. There's a single dynamic pool of
1916 * these per each cpu. These workers process all works regardless of
1917 * their specific target workqueue. The only exception is works which
1918 * belong to workqueues with a rescuer which will be explained in
1919 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02001920 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001921static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Tejun Heoc34056a2010-06-29 10:07:11 +02001923 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001924 struct worker_pool *pool = worker->pool;
1925 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Tejun Heoe22bee72010-06-29 10:07:14 +02001927 /* tell the scheduler that this is a workqueue worker */
1928 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001929woke_up:
Tejun Heoc8e55f32010-06-29 10:07:12 +02001930 spin_lock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Tejun Heoc8e55f32010-06-29 10:07:12 +02001932 /* DIE can be set only while we're idle, checking here is enough */
1933 if (worker->flags & WORKER_DIE) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001934 spin_unlock_irq(&gcwq->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001935 worker->task->flags &= ~PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001936 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938
Tejun Heoc8e55f32010-06-29 10:07:12 +02001939 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001940recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02001941 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07001942 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001943 goto sleep;
1944
1945 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07001946 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02001947 goto recheck;
1948
Tejun Heoc8e55f32010-06-29 10:07:12 +02001949 /*
1950 * ->scheduled list can only be filled while a worker is
1951 * preparing to process a work or actually processing it.
1952 * Make sure nobody diddled with it while I was sleeping.
1953 */
1954 BUG_ON(!list_empty(&worker->scheduled));
1955
Tejun Heoe22bee72010-06-29 10:07:14 +02001956 /*
1957 * When control reaches this point, we're guaranteed to have
1958 * at least one idle worker or that someone else has already
1959 * assumed the manager role.
1960 */
1961 worker_clr_flags(worker, WORKER_PREP);
1962
1963 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02001964 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07001965 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02001966 struct work_struct, entry);
1967
1968 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
1969 /* optimization path, not strictly necessary */
1970 process_one_work(worker, work);
1971 if (unlikely(!list_empty(&worker->scheduled)))
1972 process_scheduled_works(worker);
1973 } else {
1974 move_linked_works(work, &worker->scheduled, NULL);
1975 process_scheduled_works(worker);
1976 }
Tejun Heo63d95a92012-07-12 14:46:37 -07001977 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02001978
Tejun Heoe22bee72010-06-29 10:07:14 +02001979 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02001980sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07001981 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02001982 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02001983
Tejun Heoc8e55f32010-06-29 10:07:12 +02001984 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02001985 * gcwq->lock is held and there's no work to process and no
1986 * need to manage, sleep. Workers are woken up only while
1987 * holding gcwq->lock or from local cpu, so setting the
1988 * current state before releasing gcwq->lock is enough to
1989 * prevent losing any event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001990 */
1991 worker_enter_idle(worker);
1992 __set_current_state(TASK_INTERRUPTIBLE);
1993 spin_unlock_irq(&gcwq->lock);
1994 schedule();
1995 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Tejun Heoe22bee72010-06-29 10:07:14 +02001998/**
1999 * rescuer_thread - the rescuer thread function
2000 * @__wq: the associated workqueue
2001 *
2002 * Workqueue rescuer thread function. There's one rescuer for each
2003 * workqueue which has WQ_RESCUER set.
2004 *
2005 * Regular work processing on a gcwq may block trying to create a new
2006 * worker which uses GFP_KERNEL allocation which has slight chance of
2007 * developing into deadlock if some works currently on the same queue
2008 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2009 * the problem rescuer solves.
2010 *
2011 * When such condition is possible, the gcwq summons rescuers of all
2012 * workqueues which have works queued on the gcwq and let them process
2013 * those works so that forward progress can be guaranteed.
2014 *
2015 * This should happen rarely.
2016 */
2017static int rescuer_thread(void *__wq)
2018{
2019 struct workqueue_struct *wq = __wq;
2020 struct worker *rescuer = wq->rescuer;
2021 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02002022 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02002023 unsigned int cpu;
2024
2025 set_user_nice(current, RESCUER_NICE_LEVEL);
2026repeat:
2027 set_current_state(TASK_INTERRUPTIBLE);
2028
2029 if (kthread_should_stop())
2030 return 0;
2031
Tejun Heof3421792010-07-02 10:03:51 +02002032 /*
2033 * See whether any cpu is asking for help. Unbounded
2034 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2035 */
Tejun Heof2e005a2010-07-20 15:59:09 +02002036 for_each_mayday_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02002037 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
2038 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002039 struct worker_pool *pool = cwq->pool;
2040 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002041 struct work_struct *work, *n;
2042
2043 __set_current_state(TASK_RUNNING);
Tejun Heof2e005a2010-07-20 15:59:09 +02002044 mayday_clear_cpu(cpu, wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02002045
2046 /* migrate to the target cpu if possible */
Tejun Heobd7bdd42012-07-12 14:46:37 -07002047 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002048 worker_maybe_bind_and_lock(rescuer);
2049
2050 /*
2051 * Slurp in all works issued via this workqueue and
2052 * process'em.
2053 */
2054 BUG_ON(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002055 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02002056 if (get_work_cwq(work) == cwq)
2057 move_linked_works(work, scheduled, &n);
2058
2059 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002060
2061 /*
2062 * Leave this gcwq. If keep_working() is %true, notify a
2063 * regular worker; otherwise, we end up with 0 concurrency
2064 * and stalling the execution.
2065 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002066 if (keep_working(pool))
2067 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002068
Tejun Heoe22bee72010-06-29 10:07:14 +02002069 spin_unlock_irq(&gcwq->lock);
2070 }
2071
2072 schedule();
2073 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
2075
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002076struct wq_barrier {
2077 struct work_struct work;
2078 struct completion done;
2079};
2080
2081static void wq_barrier_func(struct work_struct *work)
2082{
2083 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2084 complete(&barr->done);
2085}
2086
Tejun Heo4690c4a2010-06-29 10:07:10 +02002087/**
2088 * insert_wq_barrier - insert a barrier work
2089 * @cwq: cwq to insert barrier into
2090 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002091 * @target: target work to attach @barr to
2092 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002093 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002094 * @barr is linked to @target such that @barr is completed only after
2095 * @target finishes execution. Please note that the ordering
2096 * guarantee is observed only with respect to @target and on the local
2097 * cpu.
2098 *
2099 * Currently, a queued barrier can't be canceled. This is because
2100 * try_to_grab_pending() can't determine whether the work to be
2101 * grabbed is at the head of the queue and thus can't clear LINKED
2102 * flag of the previous work while there must be a valid next work
2103 * after a work with LINKED flag set.
2104 *
2105 * Note that when @worker is non-NULL, @target may be modified
2106 * underneath us, so we can't reliably determine cwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002107 *
2108 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002109 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002110 */
Oleg Nesterov83c22522007-05-09 02:33:54 -07002111static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002112 struct wq_barrier *barr,
2113 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002114{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002115 struct list_head *head;
2116 unsigned int linked = 0;
2117
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002118 /*
Tejun Heo8b03ae32010-06-29 10:07:12 +02002119 * debugobject calls are safe here even with gcwq->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002120 * as we know for sure that this will not trigger any of the
2121 * checks and call back into the fixup functions where we
2122 * might deadlock.
2123 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002124 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002125 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002126 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002127
Tejun Heoaffee4b2010-06-29 10:07:12 +02002128 /*
2129 * If @target is currently being executed, schedule the
2130 * barrier to the worker; otherwise, put it after @target.
2131 */
2132 if (worker)
2133 head = worker->scheduled.next;
2134 else {
2135 unsigned long *bits = work_data_bits(target);
2136
2137 head = target->entry.next;
2138 /* there can already be other linked works, inherit and set */
2139 linked = *bits & WORK_STRUCT_LINKED;
2140 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2141 }
2142
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002143 debug_work_activate(&barr->work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002144 insert_work(cwq, &barr->work, head,
2145 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002146}
2147
Tejun Heo73f53c42010-06-29 10:07:11 +02002148/**
2149 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2150 * @wq: workqueue being flushed
2151 * @flush_color: new flush color, < 0 for no-op
2152 * @work_color: new work color, < 0 for no-op
2153 *
2154 * Prepare cwqs for workqueue flushing.
2155 *
2156 * If @flush_color is non-negative, flush_color on all cwqs should be
2157 * -1. If no cwq has in-flight commands at the specified color, all
2158 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2159 * has in flight commands, its cwq->flush_color is set to
2160 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2161 * wakeup logic is armed and %true is returned.
2162 *
2163 * The caller should have initialized @wq->first_flusher prior to
2164 * calling this function with non-negative @flush_color. If
2165 * @flush_color is negative, no flush color update is done and %false
2166 * is returned.
2167 *
2168 * If @work_color is non-negative, all cwqs should have the same
2169 * work_color which is previous to @work_color and all will be
2170 * advanced to @work_color.
2171 *
2172 * CONTEXT:
2173 * mutex_lock(wq->flush_mutex).
2174 *
2175 * RETURNS:
2176 * %true if @flush_color >= 0 and there's something to flush. %false
2177 * otherwise.
2178 */
2179static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2180 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
Tejun Heo73f53c42010-06-29 10:07:11 +02002182 bool wait = false;
2183 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002184
Tejun Heo73f53c42010-06-29 10:07:11 +02002185 if (flush_color >= 0) {
2186 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2187 atomic_set(&wq->nr_cwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002188 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002189
Tejun Heof3421792010-07-02 10:03:51 +02002190 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002191 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002192 struct global_cwq *gcwq = cwq->pool->gcwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002193
Tejun Heo8b03ae32010-06-29 10:07:12 +02002194 spin_lock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002195
2196 if (flush_color >= 0) {
2197 BUG_ON(cwq->flush_color != -1);
2198
2199 if (cwq->nr_in_flight[flush_color]) {
2200 cwq->flush_color = flush_color;
2201 atomic_inc(&wq->nr_cwqs_to_flush);
2202 wait = true;
2203 }
2204 }
2205
2206 if (work_color >= 0) {
2207 BUG_ON(work_color != work_next_color(cwq->work_color));
2208 cwq->work_color = work_color;
2209 }
2210
Tejun Heo8b03ae32010-06-29 10:07:12 +02002211 spin_unlock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002212 }
2213
2214 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2215 complete(&wq->first_flusher->done);
2216
2217 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002220/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002222 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 *
2224 * Forces execution of the workqueue and blocks until its completion.
2225 * This is typically used in driver shutdown handlers.
2226 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002227 * We sleep until all works which were queued on entry have been handled,
2228 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002230void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
Tejun Heo73f53c42010-06-29 10:07:11 +02002232 struct wq_flusher this_flusher = {
2233 .list = LIST_HEAD_INIT(this_flusher.list),
2234 .flush_color = -1,
2235 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2236 };
2237 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002238
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002239 lock_map_acquire(&wq->lockdep_map);
2240 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002241
2242 mutex_lock(&wq->flush_mutex);
2243
2244 /*
2245 * Start-to-wait phase
2246 */
2247 next_color = work_next_color(wq->work_color);
2248
2249 if (next_color != wq->flush_color) {
2250 /*
2251 * Color space is not full. The current work_color
2252 * becomes our flush_color and work_color is advanced
2253 * by one.
2254 */
2255 BUG_ON(!list_empty(&wq->flusher_overflow));
2256 this_flusher.flush_color = wq->work_color;
2257 wq->work_color = next_color;
2258
2259 if (!wq->first_flusher) {
2260 /* no flush in progress, become the first flusher */
2261 BUG_ON(wq->flush_color != this_flusher.flush_color);
2262
2263 wq->first_flusher = &this_flusher;
2264
2265 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2266 wq->work_color)) {
2267 /* nothing to flush, done */
2268 wq->flush_color = next_color;
2269 wq->first_flusher = NULL;
2270 goto out_unlock;
2271 }
2272 } else {
2273 /* wait in queue */
2274 BUG_ON(wq->flush_color == this_flusher.flush_color);
2275 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2276 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2277 }
2278 } else {
2279 /*
2280 * Oops, color space is full, wait on overflow queue.
2281 * The next flush completion will assign us
2282 * flush_color and transfer to flusher_queue.
2283 */
2284 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2285 }
2286
2287 mutex_unlock(&wq->flush_mutex);
2288
2289 wait_for_completion(&this_flusher.done);
2290
2291 /*
2292 * Wake-up-and-cascade phase
2293 *
2294 * First flushers are responsible for cascading flushes and
2295 * handling overflow. Non-first flushers can simply return.
2296 */
2297 if (wq->first_flusher != &this_flusher)
2298 return;
2299
2300 mutex_lock(&wq->flush_mutex);
2301
Tejun Heo4ce48b32010-07-02 10:03:51 +02002302 /* we might have raced, check again with mutex held */
2303 if (wq->first_flusher != &this_flusher)
2304 goto out_unlock;
2305
Tejun Heo73f53c42010-06-29 10:07:11 +02002306 wq->first_flusher = NULL;
2307
2308 BUG_ON(!list_empty(&this_flusher.list));
2309 BUG_ON(wq->flush_color != this_flusher.flush_color);
2310
2311 while (true) {
2312 struct wq_flusher *next, *tmp;
2313
2314 /* complete all the flushers sharing the current flush color */
2315 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2316 if (next->flush_color != wq->flush_color)
2317 break;
2318 list_del_init(&next->list);
2319 complete(&next->done);
2320 }
2321
2322 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2323 wq->flush_color != work_next_color(wq->work_color));
2324
2325 /* this flush_color is finished, advance by one */
2326 wq->flush_color = work_next_color(wq->flush_color);
2327
2328 /* one color has been freed, handle overflow queue */
2329 if (!list_empty(&wq->flusher_overflow)) {
2330 /*
2331 * Assign the same color to all overflowed
2332 * flushers, advance work_color and append to
2333 * flusher_queue. This is the start-to-wait
2334 * phase for these overflowed flushers.
2335 */
2336 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2337 tmp->flush_color = wq->work_color;
2338
2339 wq->work_color = work_next_color(wq->work_color);
2340
2341 list_splice_tail_init(&wq->flusher_overflow,
2342 &wq->flusher_queue);
2343 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2344 }
2345
2346 if (list_empty(&wq->flusher_queue)) {
2347 BUG_ON(wq->flush_color != wq->work_color);
2348 break;
2349 }
2350
2351 /*
2352 * Need to flush more colors. Make the next flusher
2353 * the new first flusher and arm cwqs.
2354 */
2355 BUG_ON(wq->flush_color == wq->work_color);
2356 BUG_ON(wq->flush_color != next->flush_color);
2357
2358 list_del_init(&next->list);
2359 wq->first_flusher = next;
2360
2361 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2362 break;
2363
2364 /*
2365 * Meh... this color is already done, clear first
2366 * flusher and repeat cascading.
2367 */
2368 wq->first_flusher = NULL;
2369 }
2370
2371out_unlock:
2372 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373}
Dave Jonesae90dd52006-06-30 01:40:45 -04002374EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002376/**
2377 * drain_workqueue - drain a workqueue
2378 * @wq: workqueue to drain
2379 *
2380 * Wait until the workqueue becomes empty. While draining is in progress,
2381 * only chain queueing is allowed. IOW, only currently pending or running
2382 * work items on @wq can queue further work items on it. @wq is flushed
2383 * repeatedly until it becomes empty. The number of flushing is detemined
2384 * by the depth of chaining and should be relatively short. Whine if it
2385 * takes too long.
2386 */
2387void drain_workqueue(struct workqueue_struct *wq)
2388{
2389 unsigned int flush_cnt = 0;
2390 unsigned int cpu;
2391
2392 /*
2393 * __queue_work() needs to test whether there are drainers, is much
2394 * hotter than drain_workqueue() and already looks at @wq->flags.
2395 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2396 */
2397 spin_lock(&workqueue_lock);
2398 if (!wq->nr_drainers++)
2399 wq->flags |= WQ_DRAINING;
2400 spin_unlock(&workqueue_lock);
2401reflush:
2402 flush_workqueue(wq);
2403
2404 for_each_cwq_cpu(cpu, wq) {
2405 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002406 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002407
Tejun Heobd7bdd42012-07-12 14:46:37 -07002408 spin_lock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002409 drained = !cwq->nr_active && list_empty(&cwq->delayed_works);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002410 spin_unlock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002411
2412 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002413 continue;
2414
2415 if (++flush_cnt == 10 ||
2416 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
2417 pr_warning("workqueue %s: flush on destruction isn't complete after %u tries\n",
2418 wq->name, flush_cnt);
2419 goto reflush;
2420 }
2421
2422 spin_lock(&workqueue_lock);
2423 if (!--wq->nr_drainers)
2424 wq->flags &= ~WQ_DRAINING;
2425 spin_unlock(&workqueue_lock);
2426}
2427EXPORT_SYMBOL_GPL(drain_workqueue);
2428
Tejun Heobaf59022010-09-16 10:42:16 +02002429static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr,
2430 bool wait_executing)
2431{
2432 struct worker *worker = NULL;
2433 struct global_cwq *gcwq;
2434 struct cpu_workqueue_struct *cwq;
2435
2436 might_sleep();
2437 gcwq = get_work_gcwq(work);
2438 if (!gcwq)
2439 return false;
2440
2441 spin_lock_irq(&gcwq->lock);
2442 if (!list_empty(&work->entry)) {
2443 /*
2444 * See the comment near try_to_grab_pending()->smp_rmb().
2445 * If it was re-queued to a different gcwq under us, we
2446 * are not going to wait.
2447 */
2448 smp_rmb();
2449 cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002450 if (unlikely(!cwq || gcwq != cwq->pool->gcwq))
Tejun Heobaf59022010-09-16 10:42:16 +02002451 goto already_gone;
2452 } else if (wait_executing) {
2453 worker = find_worker_executing_work(gcwq, work);
2454 if (!worker)
2455 goto already_gone;
2456 cwq = worker->current_cwq;
2457 } else
2458 goto already_gone;
2459
2460 insert_wq_barrier(cwq, barr, work, worker);
2461 spin_unlock_irq(&gcwq->lock);
2462
Tejun Heoe1594892011-01-09 23:32:15 +01002463 /*
2464 * If @max_active is 1 or rescuer is in use, flushing another work
2465 * item on the same workqueue may lead to deadlock. Make sure the
2466 * flusher is not running on the same workqueue by verifying write
2467 * access.
2468 */
2469 if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER)
2470 lock_map_acquire(&cwq->wq->lockdep_map);
2471 else
2472 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heobaf59022010-09-16 10:42:16 +02002473 lock_map_release(&cwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002474
Tejun Heobaf59022010-09-16 10:42:16 +02002475 return true;
2476already_gone:
2477 spin_unlock_irq(&gcwq->lock);
2478 return false;
2479}
2480
Oleg Nesterovdb700892008-07-25 01:47:49 -07002481/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002482 * flush_work - wait for a work to finish executing the last queueing instance
2483 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002484 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002485 * Wait until @work has finished execution. This function considers
2486 * only the last queueing instance of @work. If @work has been
2487 * enqueued across different CPUs on a non-reentrant workqueue or on
2488 * multiple workqueues, @work might still be executing on return on
2489 * some of the CPUs from earlier queueing.
Oleg Nesterova67da702008-07-25 01:47:52 -07002490 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002491 * If @work was queued only on a non-reentrant, ordered or unbound
2492 * workqueue, @work is guaranteed to be idle on return if it hasn't
2493 * been requeued since flush started.
2494 *
2495 * RETURNS:
2496 * %true if flush_work() waited for the work to finish execution,
2497 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002498 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002499bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002500{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002501 struct wq_barrier barr;
2502
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002503 lock_map_acquire(&work->lockdep_map);
2504 lock_map_release(&work->lockdep_map);
2505
Tejun Heobaf59022010-09-16 10:42:16 +02002506 if (start_flush_work(work, &barr, true)) {
2507 wait_for_completion(&barr.done);
2508 destroy_work_on_stack(&barr.work);
2509 return true;
2510 } else
2511 return false;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002512}
2513EXPORT_SYMBOL_GPL(flush_work);
2514
Tejun Heo401a8d02010-09-16 10:36:00 +02002515static bool wait_on_cpu_work(struct global_cwq *gcwq, struct work_struct *work)
2516{
2517 struct wq_barrier barr;
2518 struct worker *worker;
2519
2520 spin_lock_irq(&gcwq->lock);
2521
2522 worker = find_worker_executing_work(gcwq, work);
2523 if (unlikely(worker))
2524 insert_wq_barrier(worker->current_cwq, &barr, work, worker);
2525
2526 spin_unlock_irq(&gcwq->lock);
2527
2528 if (unlikely(worker)) {
2529 wait_for_completion(&barr.done);
2530 destroy_work_on_stack(&barr.work);
2531 return true;
2532 } else
2533 return false;
2534}
2535
2536static bool wait_on_work(struct work_struct *work)
2537{
2538 bool ret = false;
2539 int cpu;
2540
2541 might_sleep();
2542
2543 lock_map_acquire(&work->lockdep_map);
2544 lock_map_release(&work->lockdep_map);
2545
2546 for_each_gcwq_cpu(cpu)
2547 ret |= wait_on_cpu_work(get_gcwq(cpu), work);
2548 return ret;
2549}
2550
Tejun Heo09383492010-09-16 10:48:29 +02002551/**
2552 * flush_work_sync - wait until a work has finished execution
2553 * @work: the work to flush
2554 *
2555 * Wait until @work has finished execution. On return, it's
2556 * guaranteed that all queueing instances of @work which happened
2557 * before this function is called are finished. In other words, if
2558 * @work hasn't been requeued since this function was called, @work is
2559 * guaranteed to be idle on return.
2560 *
2561 * RETURNS:
2562 * %true if flush_work_sync() waited for the work to finish execution,
2563 * %false if it was already idle.
2564 */
2565bool flush_work_sync(struct work_struct *work)
2566{
2567 struct wq_barrier barr;
2568 bool pending, waited;
2569
2570 /* we'll wait for executions separately, queue barr only if pending */
2571 pending = start_flush_work(work, &barr, false);
2572
2573 /* wait for executions to finish */
2574 waited = wait_on_work(work);
2575
2576 /* wait for the pending one */
2577 if (pending) {
2578 wait_for_completion(&barr.done);
2579 destroy_work_on_stack(&barr.work);
2580 }
2581
2582 return pending || waited;
2583}
2584EXPORT_SYMBOL_GPL(flush_work_sync);
2585
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002586/*
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002587 * Upon a successful return (>= 0), the caller "owns" WORK_STRUCT_PENDING bit,
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002588 * so this work can't be re-armed in any way.
2589 */
2590static int try_to_grab_pending(struct work_struct *work)
2591{
Tejun Heo8b03ae32010-06-29 10:07:12 +02002592 struct global_cwq *gcwq;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002593 int ret = -1;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002594
Tejun Heo22df02b2010-06-29 10:07:10 +02002595 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002596 return 0;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002597
2598 /*
2599 * The queueing is in progress, or it is already queued. Try to
2600 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
2601 */
Tejun Heo7a22ad72010-06-29 10:07:13 +02002602 gcwq = get_work_gcwq(work);
2603 if (!gcwq)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002604 return ret;
2605
Tejun Heo8b03ae32010-06-29 10:07:12 +02002606 spin_lock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002607 if (!list_empty(&work->entry)) {
2608 /*
Tejun Heo7a22ad72010-06-29 10:07:13 +02002609 * This work is queued, but perhaps we locked the wrong gcwq.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002610 * In that case we must see the new value after rmb(), see
2611 * insert_work()->wmb().
2612 */
2613 smp_rmb();
Tejun Heo7a22ad72010-06-29 10:07:13 +02002614 if (gcwq == get_work_gcwq(work)) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002615 debug_work_deactivate(work);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002616 list_del_init(&work->entry);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002617 cwq_dec_nr_in_flight(get_work_cwq(work),
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02002618 get_work_color(work),
2619 *work_data_bits(work) & WORK_STRUCT_DELAYED);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002620 ret = 1;
2621 }
2622 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02002623 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002624
2625 return ret;
2626}
2627
Tejun Heo401a8d02010-09-16 10:36:00 +02002628static bool __cancel_work_timer(struct work_struct *work,
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002629 struct timer_list* timer)
2630{
2631 int ret;
2632
2633 do {
2634 ret = (timer && likely(del_timer(timer)));
2635 if (!ret)
2636 ret = try_to_grab_pending(work);
2637 wait_on_work(work);
2638 } while (unlikely(ret < 0));
2639
Tejun Heo7a22ad72010-06-29 10:07:13 +02002640 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002641 return ret;
2642}
2643
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002644/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002645 * cancel_work_sync - cancel a work and wait for it to finish
2646 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002647 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002648 * Cancel @work and wait for its execution to finish. This function
2649 * can be used even if the work re-queues itself or migrates to
2650 * another workqueue. On return from this function, @work is
2651 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002652 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002653 * cancel_work_sync(&delayed_work->work) must not be used for
2654 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002655 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002656 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002657 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002658 *
2659 * RETURNS:
2660 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002661 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002662bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002663{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002664 return __cancel_work_timer(work, NULL);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002665}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002666EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002667
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002668/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002669 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2670 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002671 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002672 * Delayed timer is cancelled and the pending work is queued for
2673 * immediate execution. Like flush_work(), this function only
2674 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002675 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002676 * RETURNS:
2677 * %true if flush_work() waited for the work to finish execution,
2678 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002679 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002680bool flush_delayed_work(struct delayed_work *dwork)
2681{
2682 if (del_timer_sync(&dwork->timer))
2683 __queue_work(raw_smp_processor_id(),
2684 get_work_cwq(&dwork->work)->wq, &dwork->work);
2685 return flush_work(&dwork->work);
2686}
2687EXPORT_SYMBOL(flush_delayed_work);
2688
2689/**
Tejun Heo09383492010-09-16 10:48:29 +02002690 * flush_delayed_work_sync - wait for a dwork to finish
2691 * @dwork: the delayed work to flush
2692 *
2693 * Delayed timer is cancelled and the pending work is queued for
2694 * execution immediately. Other than timer handling, its behavior
2695 * is identical to flush_work_sync().
2696 *
2697 * RETURNS:
2698 * %true if flush_work_sync() waited for the work to finish execution,
2699 * %false if it was already idle.
2700 */
2701bool flush_delayed_work_sync(struct delayed_work *dwork)
2702{
2703 if (del_timer_sync(&dwork->timer))
2704 __queue_work(raw_smp_processor_id(),
2705 get_work_cwq(&dwork->work)->wq, &dwork->work);
2706 return flush_work_sync(&dwork->work);
2707}
2708EXPORT_SYMBOL(flush_delayed_work_sync);
2709
2710/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002711 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2712 * @dwork: the delayed work cancel
2713 *
2714 * This is cancel_work_sync() for delayed works.
2715 *
2716 * RETURNS:
2717 * %true if @dwork was pending, %false otherwise.
2718 */
2719bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002720{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002721 return __cancel_work_timer(&dwork->work, &dwork->timer);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002722}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002723EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002725/**
2726 * schedule_work - put work task in global workqueue
2727 * @work: job to be done
2728 *
Bart Van Assche5b0f437d2009-07-30 19:00:53 +02002729 * Returns zero if @work was already on the kernel-global workqueue and
2730 * non-zero otherwise.
2731 *
2732 * This puts a job in the kernel-global workqueue if it was not already
2733 * queued and leaves it in the same position on the kernel-global
2734 * workqueue otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002735 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002736int schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737{
Tejun Heod320c032010-06-29 10:07:14 +02002738 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739}
Dave Jonesae90dd52006-06-30 01:40:45 -04002740EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Zhang Ruic1a220e2008-07-23 21:28:39 -07002742/*
2743 * schedule_work_on - put work task on a specific cpu
2744 * @cpu: cpu to put the work task on
2745 * @work: job to be done
2746 *
2747 * This puts a job on a specific cpu
2748 */
2749int schedule_work_on(int cpu, struct work_struct *work)
2750{
Tejun Heod320c032010-06-29 10:07:14 +02002751 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002752}
2753EXPORT_SYMBOL(schedule_work_on);
2754
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002755/**
2756 * schedule_delayed_work - put work task in global workqueue after delay
David Howells52bad642006-11-22 14:54:01 +00002757 * @dwork: job to be done
2758 * @delay: number of jiffies to wait or 0 for immediate execution
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002759 *
2760 * After waiting for a given time this puts a job in the kernel-global
2761 * workqueue.
2762 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002763int schedule_delayed_work(struct delayed_work *dwork,
Ingo Molnar82f67cd2007-02-16 01:28:13 -08002764 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
Tejun Heod320c032010-06-29 10:07:14 +02002766 return queue_delayed_work(system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767}
Dave Jonesae90dd52006-06-30 01:40:45 -04002768EXPORT_SYMBOL(schedule_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002770/**
2771 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
2772 * @cpu: cpu to use
David Howells52bad642006-11-22 14:54:01 +00002773 * @dwork: job to be done
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002774 * @delay: number of jiffies to wait
2775 *
2776 * After waiting for a given time this puts a job in the kernel-global
2777 * workqueue on the specified CPU.
2778 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779int schedule_delayed_work_on(int cpu,
David Howells52bad642006-11-22 14:54:01 +00002780 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781{
Tejun Heod320c032010-06-29 10:07:14 +02002782 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783}
Dave Jonesae90dd52006-06-30 01:40:45 -04002784EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Andrew Mortonb6136772006-06-25 05:47:49 -07002786/**
Tejun Heo31ddd872010-10-19 11:14:49 +02002787 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07002788 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07002789 *
Tejun Heo31ddd872010-10-19 11:14:49 +02002790 * schedule_on_each_cpu() executes @func on each online CPU using the
2791 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07002792 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02002793 *
2794 * RETURNS:
2795 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07002796 */
David Howells65f27f32006-11-22 14:55:48 +00002797int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002798{
2799 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02002800 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08002801
Andrew Mortonb6136772006-06-25 05:47:49 -07002802 works = alloc_percpu(struct work_struct);
2803 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002804 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07002805
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002806 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08002807
Christoph Lameter15316ba2006-01-08 01:00:43 -08002808 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01002809 struct work_struct *work = per_cpu_ptr(works, cpu);
2810
2811 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002812 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02002813 }
Tejun Heo93981802009-11-17 14:06:20 -08002814
2815 for_each_online_cpu(cpu)
2816 flush_work(per_cpu_ptr(works, cpu));
2817
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002818 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07002819 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08002820 return 0;
2821}
2822
Alan Sterneef6a7d2010-02-12 17:39:21 +09002823/**
2824 * flush_scheduled_work - ensure that any scheduled work has run to completion.
2825 *
2826 * Forces execution of the kernel-global workqueue and blocks until its
2827 * completion.
2828 *
2829 * Think twice before calling this function! It's very easy to get into
2830 * trouble if you don't take great care. Either of the following situations
2831 * will lead to deadlock:
2832 *
2833 * One of the work items currently on the workqueue needs to acquire
2834 * a lock held by your code or its caller.
2835 *
2836 * Your code is running in the context of a work routine.
2837 *
2838 * They will be detected by lockdep when they occur, but the first might not
2839 * occur very often. It depends on what work items are on the workqueue and
2840 * what locks they need, which you have no control over.
2841 *
2842 * In most situations flushing the entire workqueue is overkill; you merely
2843 * need to know that a particular work item isn't queued and isn't running.
2844 * In such cases you should use cancel_delayed_work_sync() or
2845 * cancel_work_sync() instead.
2846 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847void flush_scheduled_work(void)
2848{
Tejun Heod320c032010-06-29 10:07:14 +02002849 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850}
Dave Jonesae90dd52006-06-30 01:40:45 -04002851EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
2853/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06002854 * execute_in_process_context - reliably execute the routine with user context
2855 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06002856 * @ew: guaranteed storage for the execute work structure (must
2857 * be available when the work executes)
2858 *
2859 * Executes the function immediately if process context is available,
2860 * otherwise schedules the function for delayed execution.
2861 *
2862 * Returns: 0 - function was executed
2863 * 1 - function was scheduled for execution
2864 */
David Howells65f27f32006-11-22 14:55:48 +00002865int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06002866{
2867 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00002868 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06002869 return 0;
2870 }
2871
David Howells65f27f32006-11-22 14:55:48 +00002872 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06002873 schedule_work(&ew->work);
2874
2875 return 1;
2876}
2877EXPORT_SYMBOL_GPL(execute_in_process_context);
2878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879int keventd_up(void)
2880{
Tejun Heod320c032010-06-29 10:07:14 +02002881 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882}
2883
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002884static int alloc_cwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885{
Oleg Nesterov3af244332007-05-09 02:34:09 -07002886 /*
Tejun Heo0f900042010-06-29 10:07:11 +02002887 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
2888 * Make sure that the alignment isn't lower than that of
2889 * unsigned long long.
Oleg Nesterov3af244332007-05-09 02:34:09 -07002890 */
Tejun Heo0f900042010-06-29 10:07:11 +02002891 const size_t size = sizeof(struct cpu_workqueue_struct);
2892 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
2893 __alignof__(unsigned long long));
Oleg Nesterov3af244332007-05-09 02:34:09 -07002894
Lai Jiangshane06ffa12012-03-09 18:03:20 +08002895 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02002896 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
Tejun Heo931ac772010-07-20 11:07:48 +02002897 else {
Tejun Heof3421792010-07-02 10:03:51 +02002898 void *ptr;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01002899
Tejun Heof3421792010-07-02 10:03:51 +02002900 /*
2901 * Allocate enough room to align cwq and put an extra
2902 * pointer at the end pointing back to the originally
2903 * allocated pointer which will be used for free.
2904 */
2905 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
2906 if (ptr) {
2907 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
2908 *(void **)(wq->cpu_wq.single + 1) = ptr;
2909 }
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002910 }
Tejun Heof3421792010-07-02 10:03:51 +02002911
Tejun Heo0415b00d12011-03-24 18:50:09 +01002912 /* just in case, make sure it's actually aligned */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002913 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
2914 return wq->cpu_wq.v ? 0 : -ENOMEM;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002915}
2916
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002917static void free_cwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07002918{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08002919 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02002920 free_percpu(wq->cpu_wq.pcpu);
2921 else if (wq->cpu_wq.single) {
2922 /* the pointer to free is stored right after the cwq */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002923 kfree(*(void **)(wq->cpu_wq.single + 1));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07002924 }
2925}
2926
Tejun Heof3421792010-07-02 10:03:51 +02002927static int wq_clamp_max_active(int max_active, unsigned int flags,
2928 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02002929{
Tejun Heof3421792010-07-02 10:03:51 +02002930 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
2931
2932 if (max_active < 1 || max_active > lim)
Tejun Heob71ab8c2010-06-29 10:07:14 +02002933 printk(KERN_WARNING "workqueue: max_active %d requested for %s "
2934 "is out of range, clamping between %d and %d\n",
Tejun Heof3421792010-07-02 10:03:51 +02002935 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002936
Tejun Heof3421792010-07-02 10:03:51 +02002937 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002938}
2939
Tejun Heob196be82012-01-10 15:11:35 -08002940struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02002941 unsigned int flags,
2942 int max_active,
2943 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08002944 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07002945{
Tejun Heob196be82012-01-10 15:11:35 -08002946 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07002947 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02002948 unsigned int cpu;
Tejun Heob196be82012-01-10 15:11:35 -08002949 size_t namelen;
2950
2951 /* determine namelen, allocate wq and format name */
2952 va_start(args, lock_name);
2953 va_copy(args1, args);
2954 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
2955
2956 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
2957 if (!wq)
2958 goto err;
2959
2960 vsnprintf(wq->name, namelen, fmt, args1);
2961 va_end(args);
2962 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002963
Tejun Heof3421792010-07-02 10:03:51 +02002964 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02002965 * Workqueues which may be used during memory reclaim should
2966 * have a rescuer to guarantee forward progress.
2967 */
2968 if (flags & WQ_MEM_RECLAIM)
2969 flags |= WQ_RESCUER;
2970
Tejun Heod320c032010-06-29 10:07:14 +02002971 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08002972 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002973
Tejun Heob196be82012-01-10 15:11:35 -08002974 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02002975 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02002976 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02002977 mutex_init(&wq->flush_mutex);
2978 atomic_set(&wq->nr_cwqs_to_flush, 0);
2979 INIT_LIST_HEAD(&wq->flusher_queue);
2980 INIT_LIST_HEAD(&wq->flusher_overflow);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002981
Johannes Bergeb13ba82008-01-16 09:51:58 +01002982 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07002983 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002984
Tejun Heobdbc5dd2010-07-02 10:03:51 +02002985 if (alloc_cwqs(wq) < 0)
2986 goto err;
2987
Tejun Heof3421792010-07-02 10:03:51 +02002988 for_each_cwq_cpu(cpu, wq) {
Tejun Heo15376632010-06-29 10:07:11 +02002989 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02002990 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo32704762012-07-13 22:16:45 -07002991 int pool_idx = (bool)(flags & WQ_HIGHPRI);
Tejun Heo15376632010-06-29 10:07:11 +02002992
Tejun Heo0f900042010-06-29 10:07:11 +02002993 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo32704762012-07-13 22:16:45 -07002994 cwq->pool = &gcwq->pools[pool_idx];
Tejun Heoc34056a2010-06-29 10:07:11 +02002995 cwq->wq = wq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002996 cwq->flush_color = -1;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02002997 cwq->max_active = max_active;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02002998 INIT_LIST_HEAD(&cwq->delayed_works);
Oleg Nesterov3af244332007-05-09 02:34:09 -07002999 }
3000
Tejun Heoe22bee72010-06-29 10:07:14 +02003001 if (flags & WQ_RESCUER) {
3002 struct worker *rescuer;
3003
Tejun Heof2e005a2010-07-20 15:59:09 +02003004 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
Tejun Heoe22bee72010-06-29 10:07:14 +02003005 goto err;
3006
3007 wq->rescuer = rescuer = alloc_worker();
3008 if (!rescuer)
3009 goto err;
3010
Tejun Heob196be82012-01-10 15:11:35 -08003011 rescuer->task = kthread_create(rescuer_thread, wq, "%s",
3012 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003013 if (IS_ERR(rescuer->task))
3014 goto err;
3015
Tejun Heoe22bee72010-06-29 10:07:14 +02003016 rescuer->task->flags |= PF_THREAD_BOUND;
3017 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003018 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003019
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003020 /*
3021 * workqueue_lock protects global freeze state and workqueues
3022 * list. Grab it, set max_active accordingly and add the new
3023 * workqueue to workqueues list.
3024 */
Tejun Heo15376632010-06-29 10:07:11 +02003025 spin_lock(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003026
Tejun Heo58a69cb2011-02-16 09:25:31 +01003027 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heof3421792010-07-02 10:03:51 +02003028 for_each_cwq_cpu(cpu, wq)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003029 get_cwq(cpu, wq)->max_active = 0;
3030
Tejun Heo15376632010-06-29 10:07:11 +02003031 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003032
Tejun Heo15376632010-06-29 10:07:11 +02003033 spin_unlock(&workqueue_lock);
3034
Oleg Nesterov3af244332007-05-09 02:34:09 -07003035 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003036err:
3037 if (wq) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003038 free_cwqs(wq);
Tejun Heof2e005a2010-07-20 15:59:09 +02003039 free_mayday_mask(wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02003040 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003041 kfree(wq);
3042 }
3043 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003044}
Tejun Heod320c032010-06-29 10:07:14 +02003045EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003046
3047/**
3048 * destroy_workqueue - safely terminate a workqueue
3049 * @wq: target workqueue
3050 *
3051 * Safely destroy a workqueue. All work currently pending will be done first.
3052 */
3053void destroy_workqueue(struct workqueue_struct *wq)
3054{
Tejun Heoc8e55f32010-06-29 10:07:12 +02003055 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003056
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003057 /* drain it before proceeding with destruction */
3058 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003059
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003060 /*
3061 * wq list is used to freeze wq, remove from list after
3062 * flushing is complete in case freeze races us.
3063 */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003064 spin_lock(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003065 list_del(&wq->list);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003066 spin_unlock(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003067
Tejun Heoe22bee72010-06-29 10:07:14 +02003068 /* sanity check */
Tejun Heof3421792010-07-02 10:03:51 +02003069 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02003070 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3071 int i;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003072
Tejun Heo73f53c42010-06-29 10:07:11 +02003073 for (i = 0; i < WORK_NR_COLORS; i++)
3074 BUG_ON(cwq->nr_in_flight[i]);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003075 BUG_ON(cwq->nr_active);
3076 BUG_ON(!list_empty(&cwq->delayed_works));
Tejun Heo73f53c42010-06-29 10:07:11 +02003077 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003078
Tejun Heoe22bee72010-06-29 10:07:14 +02003079 if (wq->flags & WQ_RESCUER) {
3080 kthread_stop(wq->rescuer->task);
Tejun Heof2e005a2010-07-20 15:59:09 +02003081 free_mayday_mask(wq->mayday_mask);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003082 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003083 }
3084
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003085 free_cwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003086 kfree(wq);
3087}
3088EXPORT_SYMBOL_GPL(destroy_workqueue);
3089
Tejun Heodcd989c2010-06-29 10:07:14 +02003090/**
3091 * workqueue_set_max_active - adjust max_active of a workqueue
3092 * @wq: target workqueue
3093 * @max_active: new max_active value.
3094 *
3095 * Set max_active of @wq to @max_active.
3096 *
3097 * CONTEXT:
3098 * Don't call from IRQ context.
3099 */
3100void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3101{
3102 unsigned int cpu;
3103
Tejun Heof3421792010-07-02 10:03:51 +02003104 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003105
3106 spin_lock(&workqueue_lock);
3107
3108 wq->saved_max_active = max_active;
3109
Tejun Heof3421792010-07-02 10:03:51 +02003110 for_each_cwq_cpu(cpu, wq) {
Tejun Heodcd989c2010-06-29 10:07:14 +02003111 struct global_cwq *gcwq = get_gcwq(cpu);
3112
3113 spin_lock_irq(&gcwq->lock);
3114
Tejun Heo58a69cb2011-02-16 09:25:31 +01003115 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heodcd989c2010-06-29 10:07:14 +02003116 !(gcwq->flags & GCWQ_FREEZING))
3117 get_cwq(gcwq->cpu, wq)->max_active = max_active;
3118
3119 spin_unlock_irq(&gcwq->lock);
3120 }
3121
3122 spin_unlock(&workqueue_lock);
3123}
3124EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3125
3126/**
3127 * workqueue_congested - test whether a workqueue is congested
3128 * @cpu: CPU in question
3129 * @wq: target workqueue
3130 *
3131 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3132 * no synchronization around this function and the test result is
3133 * unreliable and only useful as advisory hints or for debugging.
3134 *
3135 * RETURNS:
3136 * %true if congested, %false otherwise.
3137 */
3138bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
3139{
3140 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3141
3142 return !list_empty(&cwq->delayed_works);
3143}
3144EXPORT_SYMBOL_GPL(workqueue_congested);
3145
3146/**
3147 * work_cpu - return the last known associated cpu for @work
3148 * @work: the work of interest
3149 *
3150 * RETURNS:
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003151 * CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
Tejun Heodcd989c2010-06-29 10:07:14 +02003152 */
3153unsigned int work_cpu(struct work_struct *work)
3154{
3155 struct global_cwq *gcwq = get_work_gcwq(work);
3156
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003157 return gcwq ? gcwq->cpu : WORK_CPU_NONE;
Tejun Heodcd989c2010-06-29 10:07:14 +02003158}
3159EXPORT_SYMBOL_GPL(work_cpu);
3160
3161/**
3162 * work_busy - test whether a work is currently pending or running
3163 * @work: the work to be tested
3164 *
3165 * Test whether @work is currently pending or running. There is no
3166 * synchronization around this function and the test result is
3167 * unreliable and only useful as advisory hints or for debugging.
3168 * Especially for reentrant wqs, the pending state might hide the
3169 * running state.
3170 *
3171 * RETURNS:
3172 * OR'd bitmask of WORK_BUSY_* bits.
3173 */
3174unsigned int work_busy(struct work_struct *work)
3175{
3176 struct global_cwq *gcwq = get_work_gcwq(work);
3177 unsigned long flags;
3178 unsigned int ret = 0;
3179
3180 if (!gcwq)
3181 return false;
3182
3183 spin_lock_irqsave(&gcwq->lock, flags);
3184
3185 if (work_pending(work))
3186 ret |= WORK_BUSY_PENDING;
3187 if (find_worker_executing_work(gcwq, work))
3188 ret |= WORK_BUSY_RUNNING;
3189
3190 spin_unlock_irqrestore(&gcwq->lock, flags);
3191
3192 return ret;
3193}
3194EXPORT_SYMBOL_GPL(work_busy);
3195
Tejun Heodb7bccf2010-06-29 10:07:12 +02003196/*
3197 * CPU hotplug.
3198 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003199 * There are two challenges in supporting CPU hotplug. Firstly, there
3200 * are a lot of assumptions on strong associations among work, cwq and
3201 * gcwq which make migrating pending and scheduled works very
3202 * difficult to implement without impacting hot paths. Secondly,
3203 * gcwqs serve mix of short, long and very long running works making
3204 * blocked draining impractical.
3205 *
Tejun Heo403c8212012-07-17 12:39:27 -07003206 * This is solved by allowing a gcwq to be detached from CPU, running it
3207 * with unbound workers and allowing it to be reattached later if the cpu
3208 * comes back online. A separate thread is created to govern a gcwq in
3209 * such state and is called the trustee of the gcwq.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003210 *
3211 * Trustee states and their descriptions.
3212 *
3213 * START Command state used on startup. On CPU_DOWN_PREPARE, a
3214 * new trustee is started with this state.
3215 *
3216 * IN_CHARGE Once started, trustee will enter this state after
Tejun Heoe22bee72010-06-29 10:07:14 +02003217 * assuming the manager role and making all existing
3218 * workers rogue. DOWN_PREPARE waits for trustee to
3219 * enter this state. After reaching IN_CHARGE, trustee
3220 * tries to execute the pending worklist until it's empty
3221 * and the state is set to BUTCHER, or the state is set
3222 * to RELEASE.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003223 *
3224 * BUTCHER Command state which is set by the cpu callback after
3225 * the cpu has went down. Once this state is set trustee
3226 * knows that there will be no new works on the worklist
3227 * and once the worklist is empty it can proceed to
3228 * killing idle workers.
3229 *
3230 * RELEASE Command state which is set by the cpu callback if the
3231 * cpu down has been canceled or it has come online
3232 * again. After recognizing this state, trustee stops
Tejun Heoe22bee72010-06-29 10:07:14 +02003233 * trying to drain or butcher and clears ROGUE, rebinds
3234 * all remaining workers back to the cpu and releases
3235 * manager role.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003236 *
3237 * DONE Trustee will enter this state after BUTCHER or RELEASE
3238 * is complete.
3239 *
3240 * trustee CPU draining
3241 * took over down complete
3242 * START -----------> IN_CHARGE -----------> BUTCHER -----------> DONE
3243 * | | ^
3244 * | CPU is back online v return workers |
3245 * ----------------> RELEASE --------------
3246 */
3247
Tejun Heo60373152012-07-17 12:39:27 -07003248/* claim manager positions of all pools */
3249static void gcwq_claim_management(struct global_cwq *gcwq)
3250{
3251 struct worker_pool *pool;
3252
3253 for_each_worker_pool(pool, gcwq)
3254 mutex_lock_nested(&pool->manager_mutex, pool - gcwq->pools);
3255}
3256
3257/* release manager positions */
3258static void gcwq_release_management(struct global_cwq *gcwq)
3259{
3260 struct worker_pool *pool;
3261
3262 for_each_worker_pool(pool, gcwq)
3263 mutex_unlock(&pool->manager_mutex);
3264}
3265
Tejun Heodb7bccf2010-06-29 10:07:12 +02003266/**
3267 * trustee_wait_event_timeout - timed event wait for trustee
3268 * @cond: condition to wait for
3269 * @timeout: timeout in jiffies
3270 *
3271 * wait_event_timeout() for trustee to use. Handles locking and
3272 * checks for RELEASE request.
3273 *
3274 * CONTEXT:
3275 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3276 * multiple times. To be used by trustee.
3277 *
3278 * RETURNS:
3279 * Positive indicating left time if @cond is satisfied, 0 if timed
3280 * out, -1 if canceled.
3281 */
3282#define trustee_wait_event_timeout(cond, timeout) ({ \
3283 long __ret = (timeout); \
3284 while (!((cond) || (gcwq->trustee_state == TRUSTEE_RELEASE)) && \
3285 __ret) { \
3286 spin_unlock_irq(&gcwq->lock); \
3287 __wait_event_timeout(gcwq->trustee_wait, (cond) || \
3288 (gcwq->trustee_state == TRUSTEE_RELEASE), \
3289 __ret); \
3290 spin_lock_irq(&gcwq->lock); \
3291 } \
3292 gcwq->trustee_state == TRUSTEE_RELEASE ? -1 : (__ret); \
3293})
3294
3295/**
3296 * trustee_wait_event - event wait for trustee
3297 * @cond: condition to wait for
3298 *
3299 * wait_event() for trustee to use. Automatically handles locking and
3300 * checks for CANCEL request.
3301 *
3302 * CONTEXT:
3303 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3304 * multiple times. To be used by trustee.
3305 *
3306 * RETURNS:
3307 * 0 if @cond is satisfied, -1 if canceled.
3308 */
3309#define trustee_wait_event(cond) ({ \
3310 long __ret1; \
3311 __ret1 = trustee_wait_event_timeout(cond, MAX_SCHEDULE_TIMEOUT);\
3312 __ret1 < 0 ? -1 : 0; \
3313})
3314
Tejun Heo4ce62e92012-07-13 22:16:44 -07003315static bool gcwq_has_idle_workers(struct global_cwq *gcwq)
3316{
3317 struct worker_pool *pool;
3318
3319 for_each_worker_pool(pool, gcwq)
3320 if (!list_empty(&pool->idle_list))
3321 return true;
3322 return false;
3323}
3324
Tejun Heodb7bccf2010-06-29 10:07:12 +02003325static int __cpuinit trustee_thread(void *__gcwq)
3326{
3327 struct global_cwq *gcwq = __gcwq;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003328 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003329 struct worker *worker;
Tejun Heoe22bee72010-06-29 10:07:14 +02003330 struct work_struct *work;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003331 struct hlist_node *pos;
Tejun Heoe22bee72010-06-29 10:07:14 +02003332 long rc;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003333 int i;
3334
3335 BUG_ON(gcwq->cpu != smp_processor_id());
3336
Tejun Heo60373152012-07-17 12:39:27 -07003337 gcwq_claim_management(gcwq);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003338 spin_lock_irq(&gcwq->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02003339
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003340 /*
3341 * We've claimed all manager positions. Make all workers unbound
3342 * and set DISASSOCIATED. Before this, all workers except for the
3343 * ones which are still executing works from before the last CPU
3344 * down must be on the cpu. After this, they may become diasporas.
3345 */
Tejun Heo60373152012-07-17 12:39:27 -07003346 for_each_worker_pool(pool, gcwq)
Tejun Heo4ce62e92012-07-13 22:16:44 -07003347 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003348 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003349
3350 for_each_busy_worker(worker, i, pos, gcwq)
Tejun Heo403c8212012-07-17 12:39:27 -07003351 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003352
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003353 gcwq->flags |= GCWQ_DISASSOCIATED;
3354
Tejun Heodb7bccf2010-06-29 10:07:12 +02003355 /*
Tejun Heo403c8212012-07-17 12:39:27 -07003356 * Call schedule() so that we cross rq->lock and thus can guarantee
3357 * sched callbacks see the unbound flag. This is necessary as
3358 * scheduler callbacks may be invoked from other cpus.
Tejun Heoe22bee72010-06-29 10:07:14 +02003359 */
3360 spin_unlock_irq(&gcwq->lock);
3361 schedule();
3362 spin_lock_irq(&gcwq->lock);
3363
3364 /*
Tejun Heocb444762010-07-02 10:03:50 +02003365 * Sched callbacks are disabled now. Zap nr_running. After
3366 * this, nr_running stays zero and need_more_worker() and
3367 * keep_working() are always true as long as the worklist is
3368 * not empty.
Tejun Heoe22bee72010-06-29 10:07:14 +02003369 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003370 for_each_worker_pool(pool, gcwq)
3371 atomic_set(get_pool_nr_running(pool), 0);
Tejun Heoe22bee72010-06-29 10:07:14 +02003372
3373 spin_unlock_irq(&gcwq->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003374 for_each_worker_pool(pool, gcwq)
3375 del_timer_sync(&pool->idle_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003376 spin_lock_irq(&gcwq->lock);
3377
3378 /*
Tejun Heodb7bccf2010-06-29 10:07:12 +02003379 * We're now in charge. Notify and proceed to drain. We need
3380 * to keep the gcwq running during the whole CPU down
3381 * procedure as other cpu hotunplug callbacks may need to
3382 * flush currently running tasks.
3383 */
3384 gcwq->trustee_state = TRUSTEE_IN_CHARGE;
3385 wake_up_all(&gcwq->trustee_wait);
3386
3387 /*
3388 * The original cpu is in the process of dying and may go away
3389 * anytime now. When that happens, we and all workers would
Tejun Heoe22bee72010-06-29 10:07:14 +02003390 * be migrated to other cpus. Try draining any left work. We
3391 * want to get it over with ASAP - spam rescuers, wake up as
3392 * many idlers as necessary and create new ones till the
3393 * worklist is empty. Note that if the gcwq is frozen, there
Tejun Heo58a69cb2011-02-16 09:25:31 +01003394 * may be frozen works in freezable cwqs. Don't declare
Tejun Heoe22bee72010-06-29 10:07:14 +02003395 * completion while frozen.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003396 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003397 while (true) {
3398 bool busy = false;
Tejun Heoe22bee72010-06-29 10:07:14 +02003399
Tejun Heo4ce62e92012-07-13 22:16:44 -07003400 for_each_worker_pool(pool, gcwq)
3401 busy |= pool->nr_workers != pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +02003402
Tejun Heo4ce62e92012-07-13 22:16:44 -07003403 if (!busy && !(gcwq->flags & GCWQ_FREEZING) &&
3404 gcwq->trustee_state != TRUSTEE_IN_CHARGE)
3405 break;
Tejun Heoe22bee72010-06-29 10:07:14 +02003406
Tejun Heo4ce62e92012-07-13 22:16:44 -07003407 for_each_worker_pool(pool, gcwq) {
3408 int nr_works = 0;
3409
3410 list_for_each_entry(work, &pool->worklist, entry) {
3411 send_mayday(work);
3412 nr_works++;
3413 }
3414
3415 list_for_each_entry(worker, &pool->idle_list, entry) {
3416 if (!nr_works--)
3417 break;
3418 wake_up_process(worker->task);
3419 }
3420
3421 if (need_to_create_worker(pool)) {
3422 spin_unlock_irq(&gcwq->lock);
3423 worker = create_worker(pool, false);
3424 spin_lock_irq(&gcwq->lock);
3425 if (worker) {
Tejun Heo403c8212012-07-17 12:39:27 -07003426 worker->flags |= WORKER_UNBOUND;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003427 start_worker(worker);
3428 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003429 }
3430 }
3431
Tejun Heodb7bccf2010-06-29 10:07:12 +02003432 /* give a breather */
3433 if (trustee_wait_event_timeout(false, TRUSTEE_COOLDOWN) < 0)
3434 break;
3435 }
3436
Tejun Heoe22bee72010-06-29 10:07:14 +02003437 /*
3438 * Either all works have been scheduled and cpu is down, or
3439 * cpu down has already been canceled. Wait for and butcher
3440 * all workers till we're canceled.
3441 */
3442 do {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003443 rc = trustee_wait_event(gcwq_has_idle_workers(gcwq));
3444
3445 i = 0;
3446 for_each_worker_pool(pool, gcwq) {
3447 while (!list_empty(&pool->idle_list)) {
3448 worker = list_first_entry(&pool->idle_list,
3449 struct worker, entry);
3450 destroy_worker(worker);
3451 }
3452 i |= pool->nr_workers;
3453 }
3454 } while (i && rc >= 0);
Tejun Heoe22bee72010-06-29 10:07:14 +02003455
3456 /*
3457 * At this point, either draining has completed and no worker
3458 * is left, or cpu down has been canceled or the cpu is being
3459 * brought back up. There shouldn't be any idle one left.
3460 * Tell the remaining busy ones to rebind once it finishes the
3461 * currently scheduled works by scheduling the rebind_work.
3462 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003463 for_each_worker_pool(pool, gcwq)
3464 WARN_ON(!list_empty(&pool->idle_list));
Tejun Heoe22bee72010-06-29 10:07:14 +02003465
3466 for_each_busy_worker(worker, i, pos, gcwq) {
3467 struct work_struct *rebind_work = &worker->rebind_work;
3468
3469 /*
3470 * Rebind_work may race with future cpu hotplug
3471 * operations. Use a separate flag to mark that
3472 * rebinding is scheduled.
3473 */
Tejun Heocb444762010-07-02 10:03:50 +02003474 worker->flags |= WORKER_REBIND;
Tejun Heo403c8212012-07-17 12:39:27 -07003475 worker->flags &= ~WORKER_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02003476
3477 /* queue rebind_work, wq doesn't matter, use the default one */
3478 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
3479 work_data_bits(rebind_work)))
3480 continue;
3481
3482 debug_work_activate(rebind_work);
Tejun Heod320c032010-06-29 10:07:14 +02003483 insert_work(get_cwq(gcwq->cpu, system_wq), rebind_work,
Tejun Heoe22bee72010-06-29 10:07:14 +02003484 worker->scheduled.next,
3485 work_color_to_flags(WORK_NO_COLOR));
3486 }
3487
Tejun Heo60373152012-07-17 12:39:27 -07003488 gcwq_release_management(gcwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003489
Tejun Heodb7bccf2010-06-29 10:07:12 +02003490 /* notify completion */
3491 gcwq->trustee = NULL;
3492 gcwq->trustee_state = TRUSTEE_DONE;
3493 wake_up_all(&gcwq->trustee_wait);
3494 spin_unlock_irq(&gcwq->lock);
3495 return 0;
3496}
3497
3498/**
3499 * wait_trustee_state - wait for trustee to enter the specified state
3500 * @gcwq: gcwq the trustee of interest belongs to
3501 * @state: target state to wait for
3502 *
3503 * Wait for the trustee to reach @state. DONE is already matched.
3504 *
3505 * CONTEXT:
3506 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
3507 * multiple times. To be used by cpu_callback.
3508 */
3509static void __cpuinit wait_trustee_state(struct global_cwq *gcwq, int state)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09003510__releases(&gcwq->lock)
3511__acquires(&gcwq->lock)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003512{
3513 if (!(gcwq->trustee_state == state ||
3514 gcwq->trustee_state == TRUSTEE_DONE)) {
3515 spin_unlock_irq(&gcwq->lock);
3516 __wait_event(gcwq->trustee_wait,
3517 gcwq->trustee_state == state ||
3518 gcwq->trustee_state == TRUSTEE_DONE);
3519 spin_lock_irq(&gcwq->lock);
3520 }
3521}
3522
Oleg Nesterov3af244332007-05-09 02:34:09 -07003523static int __devinit workqueue_cpu_callback(struct notifier_block *nfb,
3524 unsigned long action,
3525 void *hcpu)
3526{
3527 unsigned int cpu = (unsigned long)hcpu;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003528 struct global_cwq *gcwq = get_gcwq(cpu);
3529 struct task_struct *new_trustee = NULL;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003530 struct worker *new_workers[NR_WORKER_POOLS] = { };
3531 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003532 unsigned long flags;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003533 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003535 action &= ~CPU_TASKS_FROZEN;
3536
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 switch (action) {
Tejun Heodb7bccf2010-06-29 10:07:12 +02003538 case CPU_DOWN_PREPARE:
3539 new_trustee = kthread_create(trustee_thread, gcwq,
3540 "workqueue_trustee/%d\n", cpu);
3541 if (IS_ERR(new_trustee))
3542 return notifier_from_errno(PTR_ERR(new_trustee));
3543 kthread_bind(new_trustee, cpu);
Tejun Heoe22bee72010-06-29 10:07:14 +02003544 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 case CPU_UP_PREPARE:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003546 i = 0;
3547 for_each_worker_pool(pool, gcwq) {
3548 BUG_ON(pool->first_idle);
3549 new_workers[i] = create_worker(pool, false);
3550 if (!new_workers[i++])
3551 goto err_destroy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 }
3554
Tejun Heodb7bccf2010-06-29 10:07:12 +02003555 /* some are called w/ irq disabled, don't disturb irq status */
3556 spin_lock_irqsave(&gcwq->lock, flags);
3557
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003558 switch (action) {
Tejun Heodb7bccf2010-06-29 10:07:12 +02003559 case CPU_DOWN_PREPARE:
3560 /* initialize trustee and tell it to acquire the gcwq */
3561 BUG_ON(gcwq->trustee || gcwq->trustee_state != TRUSTEE_DONE);
3562 gcwq->trustee = new_trustee;
3563 gcwq->trustee_state = TRUSTEE_START;
3564 wake_up_process(gcwq->trustee);
3565 wait_trustee_state(gcwq, TRUSTEE_IN_CHARGE);
Tejun Heoe22bee72010-06-29 10:07:14 +02003566 /* fall through */
3567 case CPU_UP_PREPARE:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003568 i = 0;
3569 for_each_worker_pool(pool, gcwq) {
3570 BUG_ON(pool->first_idle);
3571 pool->first_idle = new_workers[i++];
3572 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003573 break;
3574
Oleg Nesterov3da1c842008-07-25 01:47:50 -07003575 case CPU_POST_DEAD:
Tejun Heodb7bccf2010-06-29 10:07:12 +02003576 gcwq->trustee_state = TRUSTEE_BUTCHER;
Tejun Heoe22bee72010-06-29 10:07:14 +02003577 /* fall through */
3578 case CPU_UP_CANCELED:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003579 for_each_worker_pool(pool, gcwq) {
3580 destroy_worker(pool->first_idle);
3581 pool->first_idle = NULL;
3582 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003583 break;
3584
3585 case CPU_DOWN_FAILED:
3586 case CPU_ONLINE:
Tejun Heoe22bee72010-06-29 10:07:14 +02003587 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003588 if (gcwq->trustee_state != TRUSTEE_DONE) {
3589 gcwq->trustee_state = TRUSTEE_RELEASE;
3590 wake_up_process(gcwq->trustee);
3591 wait_trustee_state(gcwq, TRUSTEE_DONE);
3592 }
3593
Tejun Heoe22bee72010-06-29 10:07:14 +02003594 /*
3595 * Trustee is done and there might be no worker left.
3596 * Put the first_idle in and request a real manager to
3597 * take a look.
3598 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003599 for_each_worker_pool(pool, gcwq) {
3600 spin_unlock_irq(&gcwq->lock);
3601 kthread_bind(pool->first_idle->task, cpu);
3602 spin_lock_irq(&gcwq->lock);
3603 pool->flags |= POOL_MANAGE_WORKERS;
3604 start_worker(pool->first_idle);
3605 pool->first_idle = NULL;
3606 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003607 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003608 }
3609
Tejun Heodb7bccf2010-06-29 10:07:12 +02003610 spin_unlock_irqrestore(&gcwq->lock, flags);
3611
Tejun Heo15376632010-06-29 10:07:11 +02003612 return notifier_from_errno(0);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003613
3614err_destroy:
3615 if (new_trustee)
3616 kthread_stop(new_trustee);
3617
3618 spin_lock_irqsave(&gcwq->lock, flags);
3619 for (i = 0; i < NR_WORKER_POOLS; i++)
3620 if (new_workers[i])
3621 destroy_worker(new_workers[i]);
3622 spin_unlock_irqrestore(&gcwq->lock, flags);
3623
3624 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Tejun Heo65758202012-07-17 12:39:26 -07003627/*
3628 * Workqueues should be brought up before normal priority CPU notifiers.
3629 * This will be registered high priority CPU notifier.
3630 */
3631static int __devinit workqueue_cpu_up_callback(struct notifier_block *nfb,
3632 unsigned long action,
3633 void *hcpu)
3634{
3635 switch (action & ~CPU_TASKS_FROZEN) {
3636 case CPU_UP_PREPARE:
3637 case CPU_UP_CANCELED:
3638 case CPU_DOWN_FAILED:
3639 case CPU_ONLINE:
3640 return workqueue_cpu_callback(nfb, action, hcpu);
3641 }
3642 return NOTIFY_OK;
3643}
3644
3645/*
3646 * Workqueues should be brought down after normal priority CPU notifiers.
3647 * This will be registered as low priority CPU notifier.
3648 */
3649static int __devinit workqueue_cpu_down_callback(struct notifier_block *nfb,
3650 unsigned long action,
3651 void *hcpu)
3652{
3653 switch (action & ~CPU_TASKS_FROZEN) {
3654 case CPU_DOWN_PREPARE:
Tejun Heo65758202012-07-17 12:39:26 -07003655 case CPU_POST_DEAD:
3656 return workqueue_cpu_callback(nfb, action, hcpu);
3657 }
3658 return NOTIFY_OK;
3659}
3660
Rusty Russell2d3854a2008-11-05 13:39:10 +11003661#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003662
Rusty Russell2d3854a2008-11-05 13:39:10 +11003663struct work_for_cpu {
Andrew Morton6b44003e2009-04-09 09:50:37 -06003664 struct completion completion;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003665 long (*fn)(void *);
3666 void *arg;
3667 long ret;
3668};
3669
Andrew Morton6b44003e2009-04-09 09:50:37 -06003670static int do_work_for_cpu(void *_wfc)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003671{
Andrew Morton6b44003e2009-04-09 09:50:37 -06003672 struct work_for_cpu *wfc = _wfc;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003673 wfc->ret = wfc->fn(wfc->arg);
Andrew Morton6b44003e2009-04-09 09:50:37 -06003674 complete(&wfc->completion);
3675 return 0;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003676}
3677
3678/**
3679 * work_on_cpu - run a function in user context on a particular cpu
3680 * @cpu: the cpu to run on
3681 * @fn: the function to run
3682 * @arg: the function arg
3683 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003684 * This will return the value @fn returns.
3685 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b44003e2009-04-09 09:50:37 -06003686 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003687 */
3688long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3689{
Andrew Morton6b44003e2009-04-09 09:50:37 -06003690 struct task_struct *sub_thread;
3691 struct work_for_cpu wfc = {
3692 .completion = COMPLETION_INITIALIZER_ONSTACK(wfc.completion),
3693 .fn = fn,
3694 .arg = arg,
3695 };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003696
Andrew Morton6b44003e2009-04-09 09:50:37 -06003697 sub_thread = kthread_create(do_work_for_cpu, &wfc, "work_for_cpu");
3698 if (IS_ERR(sub_thread))
3699 return PTR_ERR(sub_thread);
3700 kthread_bind(sub_thread, cpu);
3701 wake_up_process(sub_thread);
3702 wait_for_completion(&wfc.completion);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003703 return wfc.ret;
3704}
3705EXPORT_SYMBOL_GPL(work_on_cpu);
3706#endif /* CONFIG_SMP */
3707
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003708#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303709
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003710/**
3711 * freeze_workqueues_begin - begin freezing workqueues
3712 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003713 * Start freezing workqueues. After this function returns, all freezable
3714 * workqueues will queue new works to their frozen_works list instead of
3715 * gcwq->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003716 *
3717 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003718 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003719 */
3720void freeze_workqueues_begin(void)
3721{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003722 unsigned int cpu;
3723
3724 spin_lock(&workqueue_lock);
3725
3726 BUG_ON(workqueue_freezing);
3727 workqueue_freezing = true;
3728
Tejun Heof3421792010-07-02 10:03:51 +02003729 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003730 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003731 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003732
3733 spin_lock_irq(&gcwq->lock);
3734
Tejun Heodb7bccf2010-06-29 10:07:12 +02003735 BUG_ON(gcwq->flags & GCWQ_FREEZING);
3736 gcwq->flags |= GCWQ_FREEZING;
3737
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003738 list_for_each_entry(wq, &workqueues, list) {
3739 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3740
Tejun Heo58a69cb2011-02-16 09:25:31 +01003741 if (cwq && wq->flags & WQ_FREEZABLE)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003742 cwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003743 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003744
3745 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003746 }
3747
3748 spin_unlock(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003750
3751/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003752 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003753 *
3754 * Check whether freezing is complete. This function must be called
3755 * between freeze_workqueues_begin() and thaw_workqueues().
3756 *
3757 * CONTEXT:
3758 * Grabs and releases workqueue_lock.
3759 *
3760 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003761 * %true if some freezable workqueues are still busy. %false if freezing
3762 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003763 */
3764bool freeze_workqueues_busy(void)
3765{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003766 unsigned int cpu;
3767 bool busy = false;
3768
3769 spin_lock(&workqueue_lock);
3770
3771 BUG_ON(!workqueue_freezing);
3772
Tejun Heof3421792010-07-02 10:03:51 +02003773 for_each_gcwq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003774 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003775 /*
3776 * nr_active is monotonically decreasing. It's safe
3777 * to peek without lock.
3778 */
3779 list_for_each_entry(wq, &workqueues, list) {
3780 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3781
Tejun Heo58a69cb2011-02-16 09:25:31 +01003782 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003783 continue;
3784
3785 BUG_ON(cwq->nr_active < 0);
3786 if (cwq->nr_active) {
3787 busy = true;
3788 goto out_unlock;
3789 }
3790 }
3791 }
3792out_unlock:
3793 spin_unlock(&workqueue_lock);
3794 return busy;
3795}
3796
3797/**
3798 * thaw_workqueues - thaw workqueues
3799 *
3800 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo7e116292010-06-29 10:07:13 +02003801 * frozen works are transferred to their respective gcwq worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003802 *
3803 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003804 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003805 */
3806void thaw_workqueues(void)
3807{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003808 unsigned int cpu;
3809
3810 spin_lock(&workqueue_lock);
3811
3812 if (!workqueue_freezing)
3813 goto out_unlock;
3814
Tejun Heof3421792010-07-02 10:03:51 +02003815 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003816 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003817 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003818 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003819
3820 spin_lock_irq(&gcwq->lock);
3821
Tejun Heodb7bccf2010-06-29 10:07:12 +02003822 BUG_ON(!(gcwq->flags & GCWQ_FREEZING));
3823 gcwq->flags &= ~GCWQ_FREEZING;
3824
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003825 list_for_each_entry(wq, &workqueues, list) {
3826 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3827
Tejun Heo58a69cb2011-02-16 09:25:31 +01003828 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003829 continue;
3830
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003831 /* restore max_active and repopulate worklist */
3832 cwq->max_active = wq->saved_max_active;
3833
3834 while (!list_empty(&cwq->delayed_works) &&
3835 cwq->nr_active < cwq->max_active)
3836 cwq_activate_first_delayed(cwq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003837 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003838
Tejun Heo4ce62e92012-07-13 22:16:44 -07003839 for_each_worker_pool(pool, gcwq)
3840 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02003841
Tejun Heo8b03ae32010-06-29 10:07:12 +02003842 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003843 }
3844
3845 workqueue_freezing = false;
3846out_unlock:
3847 spin_unlock(&workqueue_lock);
3848}
3849#endif /* CONFIG_FREEZER */
3850
Suresh Siddha6ee05782010-07-30 14:57:37 -07003851static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852{
Tejun Heoc34056a2010-06-29 10:07:11 +02003853 unsigned int cpu;
Tejun Heoc8e55f32010-06-29 10:07:12 +02003854 int i;
Tejun Heoc34056a2010-06-29 10:07:11 +02003855
Tejun Heo65758202012-07-17 12:39:26 -07003856 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
3857 cpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003858
3859 /* initialize gcwqs */
Tejun Heof3421792010-07-02 10:03:51 +02003860 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003861 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003862 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003863
3864 spin_lock_init(&gcwq->lock);
3865 gcwq->cpu = cpu;
Tejun Heo477a3c32010-08-31 10:54:35 +02003866 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003867
Tejun Heoc8e55f32010-06-29 10:07:12 +02003868 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++)
3869 INIT_HLIST_HEAD(&gcwq->busy_hash[i]);
3870
Tejun Heo4ce62e92012-07-13 22:16:44 -07003871 for_each_worker_pool(pool, gcwq) {
3872 pool->gcwq = gcwq;
3873 INIT_LIST_HEAD(&pool->worklist);
3874 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoe22bee72010-06-29 10:07:14 +02003875
Tejun Heo4ce62e92012-07-13 22:16:44 -07003876 init_timer_deferrable(&pool->idle_timer);
3877 pool->idle_timer.function = idle_worker_timeout;
3878 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003879
Tejun Heo4ce62e92012-07-13 22:16:44 -07003880 setup_timer(&pool->mayday_timer, gcwq_mayday_timeout,
3881 (unsigned long)pool);
3882
Tejun Heo60373152012-07-17 12:39:27 -07003883 mutex_init(&pool->manager_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003884 ida_init(&pool->worker_ida);
3885 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003886
3887 gcwq->trustee_state = TRUSTEE_DONE;
3888 init_waitqueue_head(&gcwq->trustee_wait);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003889 }
3890
Tejun Heoe22bee72010-06-29 10:07:14 +02003891 /* create the initial worker */
Tejun Heof3421792010-07-02 10:03:51 +02003892 for_each_online_gcwq_cpu(cpu) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003893 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003894 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003895
Tejun Heo477a3c32010-08-31 10:54:35 +02003896 if (cpu != WORK_CPU_UNBOUND)
3897 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003898
3899 for_each_worker_pool(pool, gcwq) {
3900 struct worker *worker;
3901
3902 worker = create_worker(pool, true);
3903 BUG_ON(!worker);
3904 spin_lock_irq(&gcwq->lock);
3905 start_worker(worker);
3906 spin_unlock_irq(&gcwq->lock);
3907 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003908 }
3909
Tejun Heod320c032010-06-29 10:07:14 +02003910 system_wq = alloc_workqueue("events", 0, 0);
3911 system_long_wq = alloc_workqueue("events_long", 0, 0);
3912 system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003913 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3914 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003915 system_freezable_wq = alloc_workqueue("events_freezable",
3916 WQ_FREEZABLE, 0);
Alan Stern62d3c542012-03-02 10:51:00 +01003917 system_nrt_freezable_wq = alloc_workqueue("events_nrt_freezable",
3918 WQ_NON_REENTRANT | WQ_FREEZABLE, 0);
Hitoshi Mitakee5cba242010-11-26 12:06:44 +01003919 BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq ||
Alan Stern62d3c542012-03-02 10:51:00 +01003920 !system_unbound_wq || !system_freezable_wq ||
3921 !system_nrt_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003924early_initcall(init_workqueues);