blob: 383548ed0b54ad1d12b84e0934e542b7b432622d [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 Heobc2ae0f2012-07-17 12:39:27 -070048 /*
49 * global_cwq flags
50 *
51 * A bound gcwq is either associated or disassociated with its CPU.
52 * While associated (!DISASSOCIATED), all workers are bound to the
53 * CPU and none has %WORKER_UNBOUND set and concurrency management
54 * is in effect.
55 *
56 * While DISASSOCIATED, the cpu may be offline and all workers have
57 * %WORKER_UNBOUND set and concurrency management disabled, and may
58 * be executing on any CPU. The gcwq behaves as an unbound one.
59 *
60 * Note that DISASSOCIATED can be flipped only while holding
61 * managership of all pools on the gcwq to avoid changing binding
62 * state while create_worker() is in progress.
63 */
Tejun Heo11ebea52012-07-12 14:46:37 -070064 GCWQ_DISASSOCIATED = 1 << 0, /* cpu can't serve workers */
65 GCWQ_FREEZING = 1 << 1, /* freeze in progress */
66
67 /* pool flags */
68 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
Lai Jiangshan552a37e2012-09-10 10:03:33 -070069 POOL_MANAGING_WORKERS = 1 << 1, /* managing workers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020070
Tejun Heoc8e55f32010-06-29 10:07:12 +020071 /* worker flags */
72 WORKER_STARTED = 1 << 0, /* started */
73 WORKER_DIE = 1 << 1, /* die die die */
74 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020075 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heoe22bee72010-06-29 10:07:14 +020076 WORKER_REBIND = 1 << 5, /* mom is home, come back */
Tejun Heofb0e7be2010-06-29 10:07:15 +020077 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020078 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020079
Tejun Heo403c8212012-07-17 12:39:27 -070080 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_REBIND | WORKER_UNBOUND |
81 WORKER_CPU_INTENSIVE,
Tejun Heodb7bccf2010-06-29 10:07:12 +020082
Tejun Heo32704762012-07-13 22:16:45 -070083 NR_WORKER_POOLS = 2, /* # worker pools per gcwq */
Tejun Heo4ce62e92012-07-13 22:16:44 -070084
Tejun Heoc8e55f32010-06-29 10:07:12 +020085 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
86 BUSY_WORKER_HASH_SIZE = 1 << BUSY_WORKER_HASH_ORDER,
87 BUSY_WORKER_HASH_MASK = BUSY_WORKER_HASH_SIZE - 1,
Tejun Heodb7bccf2010-06-29 10:07:12 +020088
Tejun Heoe22bee72010-06-29 10:07:14 +020089 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
90 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
91
Tejun Heo3233cdb2011-02-16 18:10:19 +010092 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
93 /* call for help after 10ms
94 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020095 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
96 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heoe22bee72010-06-29 10:07:14 +020097
98 /*
99 * Rescue workers are used only on emergencies and shared by
100 * all cpus. Give -20.
101 */
102 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -0700103 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +0200104};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/*
Tejun Heo4690c4a2010-06-29 10:07:10 +0200107 * Structure fields follow one of the following exclusion rules.
108 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200109 * I: Modifiable by initialization/destruction paths and read-only for
110 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200111 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200112 * P: Preemption protected. Disabling preemption is enough and should
113 * only be modified and accessed from the local cpu.
114 *
Tejun Heo8b03ae32010-06-29 10:07:12 +0200115 * L: gcwq->lock protected. Access with gcwq->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200116 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200117 * X: During normal operation, modification requires gcwq->lock and
118 * should be done only from local cpu. Either disabling preemption
119 * on local cpu or grabbing gcwq->lock is enough for read access.
Tejun Heof3421792010-07-02 10:03:51 +0200120 * If GCWQ_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200121 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200122 * F: wq->flush_mutex protected.
123 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200124 * W: workqueue_lock protected.
125 */
126
Tejun Heo8b03ae32010-06-29 10:07:12 +0200127struct global_cwq;
Tejun Heobd7bdd42012-07-12 14:46:37 -0700128struct worker_pool;
Tejun Heo25511a42012-07-17 12:39:27 -0700129struct idle_rebind;
Tejun Heoc34056a2010-06-29 10:07:11 +0200130
Tejun Heoe22bee72010-06-29 10:07:14 +0200131/*
132 * The poor guys doing the actual heavy lifting. All on-duty workers
133 * are either serving the manager role, on idle list or on busy hash.
134 */
Tejun Heoc34056a2010-06-29 10:07:11 +0200135struct worker {
Tejun Heoc8e55f32010-06-29 10:07:12 +0200136 /* on idle list while idle, on busy hash table while busy */
137 union {
138 struct list_head entry; /* L: while idle */
139 struct hlist_node hentry; /* L: while busy */
140 };
141
Tejun Heoc34056a2010-06-29 10:07:11 +0200142 struct work_struct *current_work; /* L: work being processed */
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200143 struct cpu_workqueue_struct *current_cwq; /* L: current_work's cwq */
Tejun Heoaffee4b2010-06-29 10:07:12 +0200144 struct list_head scheduled; /* L: scheduled works */
Tejun Heoc34056a2010-06-29 10:07:11 +0200145 struct task_struct *task; /* I: worker task */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700146 struct worker_pool *pool; /* I: the associated pool */
Tejun Heoe22bee72010-06-29 10:07:14 +0200147 /* 64 bytes boundary on 64bit, 32 on 32bit */
148 unsigned long last_active; /* L: last active timestamp */
149 unsigned int flags; /* X: flags */
Tejun Heoc34056a2010-06-29 10:07:11 +0200150 int id; /* I: worker id */
Tejun Heo25511a42012-07-17 12:39:27 -0700151
152 /* for rebinding worker to CPU */
153 struct idle_rebind *idle_rebind; /* L: for idle worker */
154 struct work_struct rebind_work; /* L: for busy worker */
Tejun Heoc34056a2010-06-29 10:07:11 +0200155};
156
Tejun Heobd7bdd42012-07-12 14:46:37 -0700157struct worker_pool {
158 struct global_cwq *gcwq; /* I: the owning gcwq */
Tejun Heo11ebea52012-07-12 14:46:37 -0700159 unsigned int flags; /* X: flags */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700160
161 struct list_head worklist; /* L: list of pending works */
162 int nr_workers; /* L: total number of workers */
163 int nr_idle; /* L: currently idle ones */
164
165 struct list_head idle_list; /* X: list of idle workers */
166 struct timer_list idle_timer; /* L: worker idle timeout */
167 struct timer_list mayday_timer; /* L: SOS timer for workers */
168
Tejun Heo60373152012-07-17 12:39:27 -0700169 struct mutex manager_mutex; /* mutex manager should hold */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700170 struct ida worker_ida; /* L: for worker IDs */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700171};
172
Tejun Heo4690c4a2010-06-29 10:07:10 +0200173/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200174 * Global per-cpu workqueue. There's one and only one for each cpu
175 * and all works are queued and processed here regardless of their
176 * target workqueues.
Tejun Heo8b03ae32010-06-29 10:07:12 +0200177 */
178struct global_cwq {
179 spinlock_t lock; /* the gcwq lock */
180 unsigned int cpu; /* I: the associated cpu */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200181 unsigned int flags; /* L: GCWQ_* flags */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200182
Tejun Heobd7bdd42012-07-12 14:46:37 -0700183 /* workers are chained either in busy_hash or pool idle_list */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200184 struct hlist_head busy_hash[BUSY_WORKER_HASH_SIZE];
185 /* L: hash of busy workers */
186
Tejun Heo32704762012-07-13 22:16:45 -0700187 struct worker_pool pools[2]; /* normal and highpri pools */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200188
Tejun Heo25511a42012-07-17 12:39:27 -0700189 wait_queue_head_t rebind_hold; /* rebind hold wait */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200190} ____cacheline_aligned_in_smp;
191
192/*
Tejun Heo502ca9d2010-06-29 10:07:13 +0200193 * The per-CPU workqueue. The lower WORK_STRUCT_FLAG_BITS of
Tejun Heo0f900042010-06-29 10:07:11 +0200194 * work_struct->data are used for flags and thus cwqs need to be
195 * aligned at two's power of the number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
197struct cpu_workqueue_struct {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700198 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200199 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200200 int work_color; /* L: current color */
201 int flush_color; /* L: flushing color */
202 int nr_in_flight[WORK_NR_COLORS];
203 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200204 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200205 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200206 struct list_head delayed_works; /* L: delayed works */
Tejun Heo0f900042010-06-29 10:07:11 +0200207};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200210 * Structure used to wait for workqueue flush.
211 */
212struct wq_flusher {
213 struct list_head list; /* F: list of flushers */
214 int flush_color; /* F: flush color waiting for */
215 struct completion done; /* flush completion */
216};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Tejun Heo73f53c42010-06-29 10:07:11 +0200218/*
Tejun Heof2e005a2010-07-20 15:59:09 +0200219 * All cpumasks are assumed to be always set on UP and thus can't be
220 * used to determine whether there's something to be done.
221 */
222#ifdef CONFIG_SMP
223typedef cpumask_var_t mayday_mask_t;
224#define mayday_test_and_set_cpu(cpu, mask) \
225 cpumask_test_and_set_cpu((cpu), (mask))
226#define mayday_clear_cpu(cpu, mask) cpumask_clear_cpu((cpu), (mask))
227#define for_each_mayday_cpu(cpu, mask) for_each_cpu((cpu), (mask))
Tejun Heo9c375472010-08-31 11:18:34 +0200228#define alloc_mayday_mask(maskp, gfp) zalloc_cpumask_var((maskp), (gfp))
Tejun Heof2e005a2010-07-20 15:59:09 +0200229#define free_mayday_mask(mask) free_cpumask_var((mask))
230#else
231typedef unsigned long mayday_mask_t;
232#define mayday_test_and_set_cpu(cpu, mask) test_and_set_bit(0, &(mask))
233#define mayday_clear_cpu(cpu, mask) clear_bit(0, &(mask))
234#define for_each_mayday_cpu(cpu, mask) if ((cpu) = 0, (mask))
235#define alloc_mayday_mask(maskp, gfp) true
236#define free_mayday_mask(mask) do { } while (0)
237#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239/*
240 * The externally visible workqueue abstraction is an array of
241 * per-CPU workqueues:
242 */
243struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200244 unsigned int flags; /* W: WQ_* flags */
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200245 union {
246 struct cpu_workqueue_struct __percpu *pcpu;
247 struct cpu_workqueue_struct *single;
248 unsigned long v;
249 } cpu_wq; /* I: cwq's */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200250 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200251
252 struct mutex flush_mutex; /* protects wq flushing */
253 int work_color; /* F: current work color */
254 int flush_color; /* F: current flush color */
255 atomic_t nr_cwqs_to_flush; /* flush in progress */
256 struct wq_flusher *first_flusher; /* F: first flusher */
257 struct list_head flusher_queue; /* F: flush waiters */
258 struct list_head flusher_overflow; /* F: flush overflow list */
259
Tejun Heof2e005a2010-07-20 15:59:09 +0200260 mayday_mask_t mayday_mask; /* cpus requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200261 struct worker *rescuer; /* I: rescue worker */
262
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200263 int nr_drainers; /* W: drain in progress */
Tejun Heodcd989c2010-06-29 10:07:14 +0200264 int saved_max_active; /* W: saved cwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700265#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200266 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700267#endif
Tejun Heob196be82012-01-10 15:11:35 -0800268 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
Tejun Heod320c032010-06-29 10:07:14 +0200271struct workqueue_struct *system_wq __read_mostly;
272struct workqueue_struct *system_long_wq __read_mostly;
273struct workqueue_struct *system_nrt_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200274struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100275struct workqueue_struct *system_freezable_wq __read_mostly;
Alan Stern62d3c542012-03-02 10:51:00 +0100276struct workqueue_struct *system_nrt_freezable_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200277EXPORT_SYMBOL_GPL(system_wq);
278EXPORT_SYMBOL_GPL(system_long_wq);
279EXPORT_SYMBOL_GPL(system_nrt_wq);
Tejun Heof3421792010-07-02 10:03:51 +0200280EXPORT_SYMBOL_GPL(system_unbound_wq);
Tejun Heo24d51ad2011-02-21 09:52:50 +0100281EXPORT_SYMBOL_GPL(system_freezable_wq);
Alan Stern62d3c542012-03-02 10:51:00 +0100282EXPORT_SYMBOL_GPL(system_nrt_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200283
Tejun Heo97bd2342010-10-05 10:41:14 +0200284#define CREATE_TRACE_POINTS
285#include <trace/events/workqueue.h>
286
Tejun Heo4ce62e92012-07-13 22:16:44 -0700287#define for_each_worker_pool(pool, gcwq) \
Tejun Heo32704762012-07-13 22:16:45 -0700288 for ((pool) = &(gcwq)->pools[0]; \
289 (pool) < &(gcwq)->pools[NR_WORKER_POOLS]; (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700290
Tejun Heodb7bccf2010-06-29 10:07:12 +0200291#define for_each_busy_worker(worker, i, pos, gcwq) \
292 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++) \
293 hlist_for_each_entry(worker, pos, &gcwq->busy_hash[i], hentry)
294
Tejun Heof3421792010-07-02 10:03:51 +0200295static inline int __next_gcwq_cpu(int cpu, const struct cpumask *mask,
296 unsigned int sw)
297{
298 if (cpu < nr_cpu_ids) {
299 if (sw & 1) {
300 cpu = cpumask_next(cpu, mask);
301 if (cpu < nr_cpu_ids)
302 return cpu;
303 }
304 if (sw & 2)
305 return WORK_CPU_UNBOUND;
306 }
307 return WORK_CPU_NONE;
308}
309
310static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
311 struct workqueue_struct *wq)
312{
313 return __next_gcwq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
314}
315
Tejun Heo09884952010-08-01 11:50:12 +0200316/*
317 * CPU iterators
318 *
319 * An extra gcwq is defined for an invalid cpu number
320 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
321 * specific CPU. The following iterators are similar to
322 * for_each_*_cpu() iterators but also considers the unbound gcwq.
323 *
324 * for_each_gcwq_cpu() : possible CPUs + WORK_CPU_UNBOUND
325 * for_each_online_gcwq_cpu() : online CPUs + WORK_CPU_UNBOUND
326 * for_each_cwq_cpu() : possible CPUs for bound workqueues,
327 * WORK_CPU_UNBOUND for unbound workqueues
328 */
Tejun Heof3421792010-07-02 10:03:51 +0200329#define for_each_gcwq_cpu(cpu) \
330 for ((cpu) = __next_gcwq_cpu(-1, cpu_possible_mask, 3); \
331 (cpu) < WORK_CPU_NONE; \
332 (cpu) = __next_gcwq_cpu((cpu), cpu_possible_mask, 3))
333
334#define for_each_online_gcwq_cpu(cpu) \
335 for ((cpu) = __next_gcwq_cpu(-1, cpu_online_mask, 3); \
336 (cpu) < WORK_CPU_NONE; \
337 (cpu) = __next_gcwq_cpu((cpu), cpu_online_mask, 3))
338
339#define for_each_cwq_cpu(cpu, wq) \
340 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, (wq)); \
341 (cpu) < WORK_CPU_NONE; \
342 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, (wq)))
343
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900344#ifdef CONFIG_DEBUG_OBJECTS_WORK
345
346static struct debug_obj_descr work_debug_descr;
347
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100348static void *work_debug_hint(void *addr)
349{
350 return ((struct work_struct *) addr)->func;
351}
352
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900353/*
354 * fixup_init is called when:
355 * - an active object is initialized
356 */
357static int work_fixup_init(void *addr, enum debug_obj_state state)
358{
359 struct work_struct *work = addr;
360
361 switch (state) {
362 case ODEBUG_STATE_ACTIVE:
363 cancel_work_sync(work);
364 debug_object_init(work, &work_debug_descr);
365 return 1;
366 default:
367 return 0;
368 }
369}
370
371/*
372 * fixup_activate is called when:
373 * - an active object is activated
374 * - an unknown object is activated (might be a statically initialized object)
375 */
376static int work_fixup_activate(void *addr, enum debug_obj_state state)
377{
378 struct work_struct *work = addr;
379
380 switch (state) {
381
382 case ODEBUG_STATE_NOTAVAILABLE:
383 /*
384 * This is not really a fixup. The work struct was
385 * statically initialized. We just make sure that it
386 * is tracked in the object tracker.
387 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200388 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900389 debug_object_init(work, &work_debug_descr);
390 debug_object_activate(work, &work_debug_descr);
391 return 0;
392 }
393 WARN_ON_ONCE(1);
394 return 0;
395
396 case ODEBUG_STATE_ACTIVE:
397 WARN_ON(1);
398
399 default:
400 return 0;
401 }
402}
403
404/*
405 * fixup_free is called when:
406 * - an active object is freed
407 */
408static int work_fixup_free(void *addr, enum debug_obj_state state)
409{
410 struct work_struct *work = addr;
411
412 switch (state) {
413 case ODEBUG_STATE_ACTIVE:
414 cancel_work_sync(work);
415 debug_object_free(work, &work_debug_descr);
416 return 1;
417 default:
418 return 0;
419 }
420}
421
422static struct debug_obj_descr work_debug_descr = {
423 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100424 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900425 .fixup_init = work_fixup_init,
426 .fixup_activate = work_fixup_activate,
427 .fixup_free = work_fixup_free,
428};
429
430static inline void debug_work_activate(struct work_struct *work)
431{
432 debug_object_activate(work, &work_debug_descr);
433}
434
435static inline void debug_work_deactivate(struct work_struct *work)
436{
437 debug_object_deactivate(work, &work_debug_descr);
438}
439
440void __init_work(struct work_struct *work, int onstack)
441{
442 if (onstack)
443 debug_object_init_on_stack(work, &work_debug_descr);
444 else
445 debug_object_init(work, &work_debug_descr);
446}
447EXPORT_SYMBOL_GPL(__init_work);
448
449void destroy_work_on_stack(struct work_struct *work)
450{
451 debug_object_free(work, &work_debug_descr);
452}
453EXPORT_SYMBOL_GPL(destroy_work_on_stack);
454
455#else
456static inline void debug_work_activate(struct work_struct *work) { }
457static inline void debug_work_deactivate(struct work_struct *work) { }
458#endif
459
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100460/* Serializes the accesses to the list of workqueues. */
461static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200463static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Oleg Nesterov14441962007-05-23 13:57:57 -0700465/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200466 * The almighty global cpu workqueues. nr_running is the only field
467 * which is expected to be used frequently by other cpus via
468 * try_to_wake_up(). Put it in a separate cacheline.
Oleg Nesterov14441962007-05-23 13:57:57 -0700469 */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200470static DEFINE_PER_CPU(struct global_cwq, global_cwq);
Tejun Heo4ce62e92012-07-13 22:16:44 -0700471static DEFINE_PER_CPU_SHARED_ALIGNED(atomic_t, pool_nr_running[NR_WORKER_POOLS]);
Nathan Lynchf756d5e2006-01-08 01:05:12 -0800472
Tejun Heof3421792010-07-02 10:03:51 +0200473/*
474 * Global cpu workqueue and nr_running counter for unbound gcwq. The
475 * gcwq is always online, has GCWQ_DISASSOCIATED set, and all its
476 * workers have WORKER_UNBOUND set.
477 */
478static struct global_cwq unbound_global_cwq;
Tejun Heo4ce62e92012-07-13 22:16:44 -0700479static atomic_t unbound_pool_nr_running[NR_WORKER_POOLS] = {
480 [0 ... NR_WORKER_POOLS - 1] = ATOMIC_INIT(0), /* always 0 */
481};
Tejun Heof3421792010-07-02 10:03:51 +0200482
Tejun Heoc34056a2010-06-29 10:07:11 +0200483static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Tejun Heo32704762012-07-13 22:16:45 -0700485static int worker_pool_pri(struct worker_pool *pool)
486{
487 return pool - pool->gcwq->pools;
488}
489
Tejun Heo8b03ae32010-06-29 10:07:12 +0200490static struct global_cwq *get_gcwq(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Tejun Heof3421792010-07-02 10:03:51 +0200492 if (cpu != WORK_CPU_UNBOUND)
493 return &per_cpu(global_cwq, cpu);
494 else
495 return &unbound_global_cwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Tejun Heo63d95a92012-07-12 14:46:37 -0700498static atomic_t *get_pool_nr_running(struct worker_pool *pool)
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700499{
Tejun Heo63d95a92012-07-12 14:46:37 -0700500 int cpu = pool->gcwq->cpu;
Tejun Heo32704762012-07-13 22:16:45 -0700501 int idx = worker_pool_pri(pool);
Tejun Heo63d95a92012-07-12 14:46:37 -0700502
Tejun Heof3421792010-07-02 10:03:51 +0200503 if (cpu != WORK_CPU_UNBOUND)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700504 return &per_cpu(pool_nr_running, cpu)[idx];
Tejun Heof3421792010-07-02 10:03:51 +0200505 else
Tejun Heo4ce62e92012-07-13 22:16:44 -0700506 return &unbound_pool_nr_running[idx];
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700507}
508
Tejun Heo4690c4a2010-06-29 10:07:10 +0200509static struct cpu_workqueue_struct *get_cwq(unsigned int cpu,
510 struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700511{
Tejun Heof3421792010-07-02 10:03:51 +0200512 if (!(wq->flags & WQ_UNBOUND)) {
Lai Jiangshane06ffa12012-03-09 18:03:20 +0800513 if (likely(cpu < nr_cpu_ids))
Tejun Heof3421792010-07-02 10:03:51 +0200514 return per_cpu_ptr(wq->cpu_wq.pcpu, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200515 } else if (likely(cpu == WORK_CPU_UNBOUND))
516 return wq->cpu_wq.single;
517 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700518}
519
Tejun Heo73f53c42010-06-29 10:07:11 +0200520static unsigned int work_color_to_flags(int color)
521{
522 return color << WORK_STRUCT_COLOR_SHIFT;
523}
524
525static int get_work_color(struct work_struct *work)
526{
527 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
528 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
529}
530
531static int work_next_color(int color)
532{
533 return (color + 1) % WORK_NR_COLORS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
David Howells4594bf12006-12-07 11:33:26 +0000536/*
Tejun Heoe1201532010-07-22 14:14:25 +0200537 * A work's data points to the cwq with WORK_STRUCT_CWQ set while the
538 * work is on queue. Once execution starts, WORK_STRUCT_CWQ is
539 * cleared and the work data contains the cpu number it was last on.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200540 *
541 * set_work_{cwq|cpu}() and clear_work_data() can be used to set the
542 * cwq, cpu or clear work->data. These functions should only be
543 * called while the work is owned - ie. while the PENDING bit is set.
544 *
545 * get_work_[g]cwq() can be used to obtain the gcwq or cwq
546 * corresponding to a work. gcwq is available once the work has been
547 * queued anywhere after initialization. cwq is available only from
548 * queueing until execution starts.
David Howells4594bf12006-12-07 11:33:26 +0000549 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200550static inline void set_work_data(struct work_struct *work, unsigned long data,
551 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000552{
David Howells4594bf12006-12-07 11:33:26 +0000553 BUG_ON(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200554 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000555}
David Howells365970a2006-11-22 14:54:49 +0000556
Tejun Heo7a22ad72010-06-29 10:07:13 +0200557static void set_work_cwq(struct work_struct *work,
558 struct cpu_workqueue_struct *cwq,
559 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200560{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200561 set_work_data(work, (unsigned long)cwq,
Tejun Heoe1201532010-07-22 14:14:25 +0200562 WORK_STRUCT_PENDING | WORK_STRUCT_CWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200563}
564
Tejun Heo7a22ad72010-06-29 10:07:13 +0200565static void set_work_cpu(struct work_struct *work, unsigned int cpu)
David Howells365970a2006-11-22 14:54:49 +0000566{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200567 set_work_data(work, cpu << WORK_STRUCT_FLAG_BITS, WORK_STRUCT_PENDING);
568}
569
570static void clear_work_data(struct work_struct *work)
571{
572 set_work_data(work, WORK_STRUCT_NO_CPU, 0);
573}
574
Tejun Heo7a22ad72010-06-29 10:07:13 +0200575static struct cpu_workqueue_struct *get_work_cwq(struct work_struct *work)
576{
Tejun Heoe1201532010-07-22 14:14:25 +0200577 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200578
Tejun Heoe1201532010-07-22 14:14:25 +0200579 if (data & WORK_STRUCT_CWQ)
580 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
581 else
582 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200583}
584
585static struct global_cwq *get_work_gcwq(struct work_struct *work)
586{
Tejun Heoe1201532010-07-22 14:14:25 +0200587 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200588 unsigned int cpu;
589
Tejun Heoe1201532010-07-22 14:14:25 +0200590 if (data & WORK_STRUCT_CWQ)
591 return ((struct cpu_workqueue_struct *)
Tejun Heobd7bdd42012-07-12 14:46:37 -0700592 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->gcwq;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200593
594 cpu = data >> WORK_STRUCT_FLAG_BITS;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200595 if (cpu == WORK_CPU_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200596 return NULL;
597
Tejun Heof3421792010-07-02 10:03:51 +0200598 BUG_ON(cpu >= nr_cpu_ids && cpu != WORK_CPU_UNBOUND);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200599 return get_gcwq(cpu);
David Howells365970a2006-11-22 14:54:49 +0000600}
601
602/*
Tejun Heo32704762012-07-13 22:16:45 -0700603 * Policy functions. These define the policies on how the global worker
604 * pools are managed. Unless noted otherwise, these functions assume that
605 * they're being called with gcwq->lock held.
David Howells365970a2006-11-22 14:54:49 +0000606 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200607
Tejun Heo63d95a92012-07-12 14:46:37 -0700608static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000609{
Tejun Heo32704762012-07-13 22:16:45 -0700610 return !atomic_read(get_pool_nr_running(pool));
David Howells365970a2006-11-22 14:54:49 +0000611}
612
Tejun Heoe22bee72010-06-29 10:07:14 +0200613/*
614 * Need to wake up a worker? Called from anything but currently
615 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700616 *
617 * Note that, because unbound workers never contribute to nr_running, this
618 * function will always return %true for unbound gcwq as long as the
619 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200620 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700621static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000622{
Tejun Heo63d95a92012-07-12 14:46:37 -0700623 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000624}
625
Tejun Heoe22bee72010-06-29 10:07:14 +0200626/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700627static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200628{
Tejun Heo63d95a92012-07-12 14:46:37 -0700629 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200630}
631
632/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700633static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200634{
Tejun Heo63d95a92012-07-12 14:46:37 -0700635 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200636
Tejun Heo32704762012-07-13 22:16:45 -0700637 return !list_empty(&pool->worklist) && atomic_read(nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200638}
639
640/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700641static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200642{
Tejun Heo63d95a92012-07-12 14:46:37 -0700643 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200644}
645
646/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700647static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200648{
Tejun Heo63d95a92012-07-12 14:46:37 -0700649 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700650 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200651}
652
653/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700654static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200655{
Lai Jiangshan552a37e2012-09-10 10:03:33 -0700656 bool managing = pool->flags & POOL_MANAGING_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -0700657 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
658 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200659
660 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
661}
662
663/*
664 * Wake up functions.
665 */
666
Tejun Heo7e116292010-06-29 10:07:13 +0200667/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700668static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200669{
Tejun Heo63d95a92012-07-12 14:46:37 -0700670 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200671 return NULL;
672
Tejun Heo63d95a92012-07-12 14:46:37 -0700673 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200674}
675
676/**
677 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700678 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200679 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700680 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200681 *
682 * CONTEXT:
683 * spin_lock_irq(gcwq->lock).
684 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700685static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200686{
Tejun Heo63d95a92012-07-12 14:46:37 -0700687 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200688
689 if (likely(worker))
690 wake_up_process(worker->task);
691}
692
Tejun Heo4690c4a2010-06-29 10:07:10 +0200693/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200694 * wq_worker_waking_up - a worker is waking up
695 * @task: task waking up
696 * @cpu: CPU @task is waking up to
697 *
698 * This function is called during try_to_wake_up() when a worker is
699 * being awoken.
700 *
701 * CONTEXT:
702 * spin_lock_irq(rq->lock)
703 */
704void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
705{
706 struct worker *worker = kthread_data(task);
707
Steven Rostedt2d646722010-12-03 23:12:33 -0500708 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heo63d95a92012-07-12 14:46:37 -0700709 atomic_inc(get_pool_nr_running(worker->pool));
Tejun Heoe22bee72010-06-29 10:07:14 +0200710}
711
712/**
713 * wq_worker_sleeping - a worker is going to sleep
714 * @task: task going to sleep
715 * @cpu: CPU in question, must be the current CPU number
716 *
717 * This function is called during schedule() when a busy worker is
718 * going to sleep. Worker on the same cpu can be woken up by
719 * returning pointer to its task.
720 *
721 * CONTEXT:
722 * spin_lock_irq(rq->lock)
723 *
724 * RETURNS:
725 * Worker task on @cpu to wake up, %NULL if none.
726 */
727struct task_struct *wq_worker_sleeping(struct task_struct *task,
728 unsigned int cpu)
729{
730 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heobd7bdd42012-07-12 14:46:37 -0700731 struct worker_pool *pool = worker->pool;
Tejun Heo63d95a92012-07-12 14:46:37 -0700732 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200733
Steven Rostedt2d646722010-12-03 23:12:33 -0500734 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200735 return NULL;
736
737 /* this can only happen on the local cpu */
738 BUG_ON(cpu != raw_smp_processor_id());
739
740 /*
741 * The counterpart of the following dec_and_test, implied mb,
742 * worklist not empty test sequence is in insert_work().
743 * Please read comment there.
744 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700745 * NOT_RUNNING is clear. This means that we're bound to and
746 * running on the local cpu w/ rq lock held and preemption
747 * disabled, which in turn means that none else could be
748 * manipulating idle_list, so dereferencing idle_list without gcwq
749 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200750 */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700751 if (atomic_dec_and_test(nr_running) && !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700752 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200753 return to_wakeup ? to_wakeup->task : NULL;
754}
755
756/**
757 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200758 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200759 * @flags: flags to set
760 * @wakeup: wakeup an idle worker if necessary
761 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200762 * Set @flags in @worker->flags and adjust nr_running accordingly. If
763 * nr_running becomes zero and @wakeup is %true, an idle worker is
764 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200765 *
Tejun Heocb444762010-07-02 10:03:50 +0200766 * CONTEXT:
767 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200768 */
769static inline void worker_set_flags(struct worker *worker, unsigned int flags,
770 bool wakeup)
771{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700772 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200773
Tejun Heocb444762010-07-02 10:03:50 +0200774 WARN_ON_ONCE(worker->task != current);
775
Tejun Heoe22bee72010-06-29 10:07:14 +0200776 /*
777 * If transitioning into NOT_RUNNING, adjust nr_running and
778 * wake up an idle worker as necessary if requested by
779 * @wakeup.
780 */
781 if ((flags & WORKER_NOT_RUNNING) &&
782 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heo63d95a92012-07-12 14:46:37 -0700783 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200784
785 if (wakeup) {
786 if (atomic_dec_and_test(nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700787 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700788 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200789 } else
790 atomic_dec(nr_running);
791 }
792
Tejun Heod302f012010-06-29 10:07:13 +0200793 worker->flags |= flags;
794}
795
796/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200797 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200798 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200799 * @flags: flags to clear
800 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200801 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200802 *
Tejun Heocb444762010-07-02 10:03:50 +0200803 * CONTEXT:
804 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200805 */
806static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
807{
Tejun Heo63d95a92012-07-12 14:46:37 -0700808 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200809 unsigned int oflags = worker->flags;
810
Tejun Heocb444762010-07-02 10:03:50 +0200811 WARN_ON_ONCE(worker->task != current);
812
Tejun Heod302f012010-06-29 10:07:13 +0200813 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200814
Tejun Heo42c025f2011-01-11 15:58:49 +0100815 /*
816 * If transitioning out of NOT_RUNNING, increment nr_running. Note
817 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
818 * of multiple flags, not a single flag.
819 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200820 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
821 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heo63d95a92012-07-12 14:46:37 -0700822 atomic_inc(get_pool_nr_running(pool));
Tejun Heod302f012010-06-29 10:07:13 +0200823}
824
825/**
Tejun Heoc8e55f32010-06-29 10:07:12 +0200826 * busy_worker_head - return the busy hash head for a work
827 * @gcwq: gcwq of interest
828 * @work: work to be hashed
829 *
830 * Return hash head of @gcwq for @work.
831 *
832 * CONTEXT:
833 * spin_lock_irq(gcwq->lock).
834 *
835 * RETURNS:
836 * Pointer to the hash head.
837 */
838static struct hlist_head *busy_worker_head(struct global_cwq *gcwq,
839 struct work_struct *work)
840{
841 const int base_shift = ilog2(sizeof(struct work_struct));
842 unsigned long v = (unsigned long)work;
843
844 /* simple shift and fold hash, do we need something better? */
845 v >>= base_shift;
846 v += v >> BUSY_WORKER_HASH_ORDER;
847 v &= BUSY_WORKER_HASH_MASK;
848
849 return &gcwq->busy_hash[v];
850}
851
852/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200853 * __find_worker_executing_work - find worker which is executing a work
854 * @gcwq: gcwq of interest
855 * @bwh: hash head as returned by busy_worker_head()
856 * @work: work to find worker for
857 *
858 * Find a worker which is executing @work on @gcwq. @bwh should be
859 * the hash head obtained by calling busy_worker_head() with the same
860 * work.
861 *
862 * CONTEXT:
863 * spin_lock_irq(gcwq->lock).
864 *
865 * RETURNS:
866 * Pointer to worker which is executing @work if found, NULL
867 * otherwise.
868 */
869static struct worker *__find_worker_executing_work(struct global_cwq *gcwq,
870 struct hlist_head *bwh,
871 struct work_struct *work)
872{
873 struct worker *worker;
874 struct hlist_node *tmp;
875
876 hlist_for_each_entry(worker, tmp, bwh, hentry)
877 if (worker->current_work == work)
878 return worker;
879 return NULL;
880}
881
882/**
883 * find_worker_executing_work - find worker which is executing a work
884 * @gcwq: gcwq of interest
885 * @work: work to find worker for
886 *
887 * Find a worker which is executing @work on @gcwq. This function is
888 * identical to __find_worker_executing_work() except that this
889 * function calculates @bwh itself.
890 *
891 * CONTEXT:
892 * spin_lock_irq(gcwq->lock).
893 *
894 * RETURNS:
895 * Pointer to worker which is executing @work if found, NULL
896 * otherwise.
897 */
898static struct worker *find_worker_executing_work(struct global_cwq *gcwq,
899 struct work_struct *work)
900{
901 return __find_worker_executing_work(gcwq, busy_worker_head(gcwq, work),
902 work);
903}
904
905/**
Tejun Heo7e116292010-06-29 10:07:13 +0200906 * insert_work - insert a work into gcwq
Tejun Heo4690c4a2010-06-29 10:07:10 +0200907 * @cwq: cwq @work belongs to
908 * @work: work to insert
909 * @head: insertion point
910 * @extra_flags: extra WORK_STRUCT_* flags to set
911 *
Tejun Heo7e116292010-06-29 10:07:13 +0200912 * Insert @work which belongs to @cwq into @gcwq after @head.
913 * @extra_flags is or'd to work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200914 *
915 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +0200916 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +0200917 */
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700918static void insert_work(struct cpu_workqueue_struct *cwq,
Tejun Heo4690c4a2010-06-29 10:07:10 +0200919 struct work_struct *work, struct list_head *head,
920 unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700921{
Tejun Heo63d95a92012-07-12 14:46:37 -0700922 struct worker_pool *pool = cwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +0100923
Tejun Heo4690c4a2010-06-29 10:07:10 +0200924 /* we own @work, set data and link */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200925 set_work_cwq(work, cwq, extra_flags);
Tejun Heo4690c4a2010-06-29 10:07:10 +0200926
Oleg Nesterov6e84d642007-05-09 02:34:46 -0700927 /*
928 * Ensure that we get the right work->data if we see the
929 * result of list_add() below, see try_to_grab_pending().
930 */
931 smp_wmb();
Tejun Heo4690c4a2010-06-29 10:07:10 +0200932
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -0700933 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +0200934
935 /*
936 * Ensure either worker_sched_deactivated() sees the above
937 * list_add_tail() or we see zero nr_running to avoid workers
938 * lying around lazily while there are works to be processed.
939 */
940 smp_mb();
941
Tejun Heo63d95a92012-07-12 14:46:37 -0700942 if (__need_more_worker(pool))
943 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -0700944}
945
Tejun Heoc8efcc22010-12-20 19:32:04 +0100946/*
947 * Test whether @work is being queued from another work executing on the
948 * same workqueue. This is rather expensive and should only be used from
949 * cold paths.
950 */
951static bool is_chained_work(struct workqueue_struct *wq)
952{
953 unsigned long flags;
954 unsigned int cpu;
955
956 for_each_gcwq_cpu(cpu) {
957 struct global_cwq *gcwq = get_gcwq(cpu);
958 struct worker *worker;
959 struct hlist_node *pos;
960 int i;
961
962 spin_lock_irqsave(&gcwq->lock, flags);
963 for_each_busy_worker(worker, i, pos, gcwq) {
964 if (worker->task != current)
965 continue;
966 spin_unlock_irqrestore(&gcwq->lock, flags);
967 /*
968 * I'm @worker, no locking necessary. See if @work
969 * is headed to the same workqueue.
970 */
971 return worker->current_cwq->wq == wq;
972 }
973 spin_unlock_irqrestore(&gcwq->lock, flags);
974 }
975 return false;
976}
977
Tejun Heo4690c4a2010-06-29 10:07:10 +0200978static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 struct work_struct *work)
980{
Tejun Heo502ca9d2010-06-29 10:07:13 +0200981 struct global_cwq *gcwq;
982 struct cpu_workqueue_struct *cwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200983 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +0200984 unsigned int work_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 unsigned long flags;
986
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900987 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200988
Tejun Heoc8efcc22010-12-20 19:32:04 +0100989 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200990 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +0100991 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +0200992 return;
993
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200994 /* determine gcwq to use */
995 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200996 struct global_cwq *last_gcwq;
997
Tejun Heoc7fc77f2010-07-02 10:03:51 +0200998 if (unlikely(cpu == WORK_CPU_UNBOUND))
999 cpu = raw_smp_processor_id();
1000
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001001 /*
1002 * It's multi cpu. If @wq is non-reentrant and @work
1003 * was previously on a different cpu, it might still
1004 * be running there, in which case the work needs to
1005 * be queued on that cpu to guarantee non-reentrance.
1006 */
Tejun Heo502ca9d2010-06-29 10:07:13 +02001007 gcwq = get_gcwq(cpu);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001008 if (wq->flags & WQ_NON_REENTRANT &&
1009 (last_gcwq = get_work_gcwq(work)) && last_gcwq != gcwq) {
1010 struct worker *worker;
1011
1012 spin_lock_irqsave(&last_gcwq->lock, flags);
1013
1014 worker = find_worker_executing_work(last_gcwq, work);
1015
1016 if (worker && worker->current_cwq->wq == wq)
1017 gcwq = last_gcwq;
1018 else {
1019 /* meh... not running there, queue here */
1020 spin_unlock_irqrestore(&last_gcwq->lock, flags);
1021 spin_lock_irqsave(&gcwq->lock, flags);
1022 }
1023 } else
1024 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heof3421792010-07-02 10:03:51 +02001025 } else {
1026 gcwq = get_gcwq(WORK_CPU_UNBOUND);
1027 spin_lock_irqsave(&gcwq->lock, flags);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001028 }
1029
1030 /* gcwq determined, get cwq and queue */
1031 cwq = get_cwq(gcwq->cpu, wq);
Tejun Heocdadf002010-10-05 10:49:55 +02001032 trace_workqueue_queue_work(cpu, cwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001033
Dan Carpenterf5b25522012-04-13 22:06:58 +03001034 if (WARN_ON(!list_empty(&work->entry))) {
1035 spin_unlock_irqrestore(&gcwq->lock, flags);
1036 return;
1037 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001038
Tejun Heo73f53c42010-06-29 10:07:11 +02001039 cwq->nr_in_flight[cwq->work_color]++;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001040 work_flags = work_color_to_flags(cwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001041
1042 if (likely(cwq->nr_active < cwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001043 trace_workqueue_activate_work(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001044 cwq->nr_active++;
Tejun Heo32704762012-07-13 22:16:45 -07001045 worklist = &cwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001046 } else {
1047 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001048 worklist = &cwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001049 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001050
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001051 insert_work(cwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001052
Tejun Heo8b03ae32010-06-29 10:07:12 +02001053 spin_unlock_irqrestore(&gcwq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001056/**
1057 * queue_work - queue work on a workqueue
1058 * @wq: workqueue to use
1059 * @work: work to queue
1060 *
Alan Stern057647f2006-10-28 10:38:58 -07001061 * Returns 0 if @work was already on a queue, non-zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 *
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07001063 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1064 * it can be processed by another CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001066int queue_work(struct workqueue_struct *wq, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Oleg Nesterovef1ca232008-07-25 01:47:53 -07001068 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Oleg Nesterovef1ca232008-07-25 01:47:53 -07001070 ret = queue_work_on(get_cpu(), wq, work);
1071 put_cpu();
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return ret;
1074}
Dave Jonesae90dd52006-06-30 01:40:45 -04001075EXPORT_SYMBOL_GPL(queue_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Zhang Ruic1a220e2008-07-23 21:28:39 -07001077/**
1078 * queue_work_on - queue work on specific cpu
1079 * @cpu: CPU number to execute work on
1080 * @wq: workqueue to use
1081 * @work: work to queue
1082 *
1083 * Returns 0 if @work was already on a queue, non-zero otherwise.
1084 *
1085 * We queue the work to a specific CPU, the caller must ensure it
1086 * can't go away.
1087 */
1088int
1089queue_work_on(int cpu, struct workqueue_struct *wq, struct work_struct *work)
1090{
1091 int ret = 0;
1092
Tejun Heo22df02b2010-06-29 10:07:10 +02001093 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001094 __queue_work(cpu, wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001095 ret = 1;
1096 }
1097 return ret;
1098}
1099EXPORT_SYMBOL_GPL(queue_work_on);
1100
Li Zefan6d141c32008-02-08 04:21:09 -08001101static void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
David Howells52bad642006-11-22 14:54:01 +00001103 struct delayed_work *dwork = (struct delayed_work *)__data;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001104 struct cpu_workqueue_struct *cwq = get_work_cwq(&dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Tejun Heo4690c4a2010-06-29 10:07:10 +02001106 __queue_work(smp_processor_id(), cwq->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001109/**
1110 * queue_delayed_work - queue work on a workqueue after delay
1111 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001112 * @dwork: delayable work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001113 * @delay: number of jiffies to wait before queueing
1114 *
Alan Stern057647f2006-10-28 10:38:58 -07001115 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001116 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001117int queue_delayed_work(struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001118 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
David Howells52bad642006-11-22 14:54:01 +00001120 if (delay == 0)
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001121 return queue_work(wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001123 return queue_delayed_work_on(-1, wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
Dave Jonesae90dd52006-06-30 01:40:45 -04001125EXPORT_SYMBOL_GPL(queue_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001127/**
1128 * queue_delayed_work_on - queue work on specific CPU after delay
1129 * @cpu: CPU number to execute work on
1130 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001131 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001132 * @delay: number of jiffies to wait before queueing
1133 *
Alan Stern057647f2006-10-28 10:38:58 -07001134 * Returns 0 if @work was already on a queue, non-zero otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001135 */
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001136int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
David Howells52bad642006-11-22 14:54:01 +00001137 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001138{
1139 int ret = 0;
David Howells52bad642006-11-22 14:54:01 +00001140 struct timer_list *timer = &dwork->timer;
1141 struct work_struct *work = &dwork->work;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001142
Tejun Heo22df02b2010-06-29 10:07:10 +02001143 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001144 unsigned int lcpu;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001145
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001146 BUG_ON(timer_pending(timer));
1147 BUG_ON(!list_empty(&work->entry));
1148
Andrew Liu8a3e77c2008-05-01 04:35:14 -07001149 timer_stats_timer_set_start_info(&dwork->timer);
1150
Tejun Heo7a22ad72010-06-29 10:07:13 +02001151 /*
1152 * This stores cwq for the moment, for the timer_fn.
1153 * Note that the work's gcwq is preserved to allow
1154 * reentrance detection for delayed works.
1155 */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001156 if (!(wq->flags & WQ_UNBOUND)) {
1157 struct global_cwq *gcwq = get_work_gcwq(work);
1158
1159 if (gcwq && gcwq->cpu != WORK_CPU_UNBOUND)
1160 lcpu = gcwq->cpu;
1161 else
1162 lcpu = raw_smp_processor_id();
1163 } else
1164 lcpu = WORK_CPU_UNBOUND;
1165
Tejun Heo7a22ad72010-06-29 10:07:13 +02001166 set_work_cwq(work, get_cwq(lcpu, wq), 0);
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001167
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001168 timer->expires = jiffies + delay;
David Howells52bad642006-11-22 14:54:01 +00001169 timer->data = (unsigned long)dwork;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001170 timer->function = delayed_work_timer_fn;
Oleg Nesterov63bc0362007-05-09 02:34:16 -07001171
1172 if (unlikely(cpu >= 0))
1173 add_timer_on(timer, cpu);
1174 else
1175 add_timer(timer);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001176 ret = 1;
1177 }
1178 return ret;
1179}
Dave Jonesae90dd52006-06-30 01:40:45 -04001180EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Tejun Heoc8e55f32010-06-29 10:07:12 +02001182/**
1183 * worker_enter_idle - enter idle state
1184 * @worker: worker which is entering idle state
1185 *
1186 * @worker is entering idle state. Update stats and idle timer if
1187 * necessary.
1188 *
1189 * LOCKING:
1190 * spin_lock_irq(gcwq->lock).
1191 */
1192static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001194 struct worker_pool *pool = worker->pool;
1195 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Tejun Heoc8e55f32010-06-29 10:07:12 +02001197 BUG_ON(worker->flags & WORKER_IDLE);
1198 BUG_ON(!list_empty(&worker->entry) &&
1199 (worker->hentry.next || worker->hentry.pprev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Tejun Heocb444762010-07-02 10:03:50 +02001201 /* can't use worker_set_flags(), also called from start_worker() */
1202 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001203 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001204 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001205
Tejun Heoc8e55f32010-06-29 10:07:12 +02001206 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001207 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001208
Tejun Heo628c78e2012-07-17 12:39:27 -07001209 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1210 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001211
Tejun Heo544ecf32012-05-14 15:04:50 -07001212 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07001213 * Sanity check nr_running. Because gcwq_unbind_fn() releases
1214 * gcwq->lock between setting %WORKER_UNBOUND and zapping
1215 * nr_running, the warning may trigger spuriously. Check iff
1216 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001217 */
Tejun Heo628c78e2012-07-17 12:39:27 -07001218 WARN_ON_ONCE(!(gcwq->flags & GCWQ_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001219 pool->nr_workers == pool->nr_idle &&
Tejun Heo63d95a92012-07-12 14:46:37 -07001220 atomic_read(get_pool_nr_running(pool)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Tejun Heoc8e55f32010-06-29 10:07:12 +02001223/**
1224 * worker_leave_idle - leave idle state
1225 * @worker: worker which is leaving idle state
1226 *
1227 * @worker is leaving idle state. Update stats.
1228 *
1229 * LOCKING:
1230 * spin_lock_irq(gcwq->lock).
1231 */
1232static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001234 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Tejun Heoc8e55f32010-06-29 10:07:12 +02001236 BUG_ON(!(worker->flags & WORKER_IDLE));
Tejun Heod302f012010-06-29 10:07:13 +02001237 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001238 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001239 list_del_init(&worker->entry);
1240}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Tejun Heoe22bee72010-06-29 10:07:14 +02001242/**
1243 * worker_maybe_bind_and_lock - bind worker to its cpu if possible and lock gcwq
1244 * @worker: self
1245 *
1246 * Works which are scheduled while the cpu is online must at least be
1247 * scheduled to a worker which is bound to the cpu so that if they are
1248 * flushed from cpu callbacks while cpu is going down, they are
1249 * guaranteed to execute on the cpu.
1250 *
1251 * This function is to be used by rogue workers and rescuers to bind
1252 * themselves to the target cpu and may race with cpu going down or
1253 * coming online. kthread_bind() can't be used because it may put the
1254 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
1255 * verbatim as it's best effort and blocking and gcwq may be
1256 * [dis]associated in the meantime.
1257 *
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001258 * This function tries set_cpus_allowed() and locks gcwq and verifies the
1259 * binding against %GCWQ_DISASSOCIATED which is set during
1260 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1261 * enters idle state or fetches works without dropping lock, it can
1262 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001263 *
1264 * CONTEXT:
1265 * Might sleep. Called without any lock but returns with gcwq->lock
1266 * held.
1267 *
1268 * RETURNS:
1269 * %true if the associated gcwq is online (@worker is successfully
1270 * bound), %false if offline.
1271 */
1272static bool worker_maybe_bind_and_lock(struct worker *worker)
Namhyung Kim972fa1c2010-08-22 23:19:43 +09001273__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001274{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001275 struct global_cwq *gcwq = worker->pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001276 struct task_struct *task = worker->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Tejun Heoe22bee72010-06-29 10:07:14 +02001278 while (true) {
1279 /*
1280 * The following call may fail, succeed or succeed
1281 * without actually migrating the task to the cpu if
1282 * it races with cpu hotunplug operation. Verify
1283 * against GCWQ_DISASSOCIATED.
1284 */
Tejun Heof3421792010-07-02 10:03:51 +02001285 if (!(gcwq->flags & GCWQ_DISASSOCIATED))
1286 set_cpus_allowed_ptr(task, get_cpu_mask(gcwq->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001287
Tejun Heoe22bee72010-06-29 10:07:14 +02001288 spin_lock_irq(&gcwq->lock);
1289 if (gcwq->flags & GCWQ_DISASSOCIATED)
1290 return false;
1291 if (task_cpu(task) == gcwq->cpu &&
1292 cpumask_equal(&current->cpus_allowed,
1293 get_cpu_mask(gcwq->cpu)))
1294 return true;
1295 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001296
Tejun Heo5035b202011-04-29 18:08:37 +02001297 /*
1298 * We've raced with CPU hot[un]plug. Give it a breather
1299 * and retry migration. cond_resched() is required here;
1300 * otherwise, we might deadlock against cpu_stop trying to
1301 * bring down the CPU on non-preemptive kernel.
1302 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001303 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001304 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001305 }
1306}
1307
Tejun Heo25511a42012-07-17 12:39:27 -07001308struct idle_rebind {
1309 int cnt; /* # workers to be rebound */
1310 struct completion done; /* all workers rebound */
1311};
1312
Tejun Heoe22bee72010-06-29 10:07:14 +02001313/*
Tejun Heo25511a42012-07-17 12:39:27 -07001314 * Rebind an idle @worker to its CPU. During CPU onlining, this has to
1315 * happen synchronously for idle workers. worker_thread() will test
1316 * %WORKER_REBIND before leaving idle and call this function.
1317 */
1318static void idle_worker_rebind(struct worker *worker)
1319{
1320 struct global_cwq *gcwq = worker->pool->gcwq;
1321
1322 /* CPU must be online at this point */
1323 WARN_ON(!worker_maybe_bind_and_lock(worker));
1324 if (!--worker->idle_rebind->cnt)
1325 complete(&worker->idle_rebind->done);
1326 spin_unlock_irq(&worker->pool->gcwq->lock);
1327
1328 /* we did our part, wait for rebind_workers() to finish up */
1329 wait_event(gcwq->rebind_hold, !(worker->flags & WORKER_REBIND));
Tejun Heoec588152012-09-04 23:16:32 -07001330
1331 /*
1332 * rebind_workers() shouldn't finish until all workers passed the
1333 * above WORKER_REBIND wait. Tell it when done.
1334 */
1335 spin_lock_irq(&worker->pool->gcwq->lock);
1336 if (!--worker->idle_rebind->cnt)
1337 complete(&worker->idle_rebind->done);
1338 spin_unlock_irq(&worker->pool->gcwq->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001339}
1340
1341/*
1342 * Function for @worker->rebind.work used to rebind unbound busy workers to
Tejun Heo403c8212012-07-17 12:39:27 -07001343 * the associated cpu which is coming back online. This is scheduled by
1344 * cpu up but can race with other cpu hotplug operations and may be
1345 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001346 */
Tejun Heo25511a42012-07-17 12:39:27 -07001347static void busy_worker_rebind_fn(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001348{
1349 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001350 struct global_cwq *gcwq = worker->pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001351
1352 if (worker_maybe_bind_and_lock(worker))
1353 worker_clr_flags(worker, WORKER_REBIND);
1354
1355 spin_unlock_irq(&gcwq->lock);
1356}
1357
Tejun Heo25511a42012-07-17 12:39:27 -07001358/**
1359 * rebind_workers - rebind all workers of a gcwq to the associated CPU
1360 * @gcwq: gcwq of interest
1361 *
1362 * @gcwq->cpu is coming online. Rebind all workers to the CPU. Rebinding
1363 * is different for idle and busy ones.
1364 *
1365 * The idle ones should be rebound synchronously and idle rebinding should
1366 * be complete before any worker starts executing work items with
1367 * concurrency management enabled; otherwise, scheduler may oops trying to
1368 * wake up non-local idle worker from wq_worker_sleeping().
1369 *
1370 * This is achieved by repeatedly requesting rebinding until all idle
1371 * workers are known to have been rebound under @gcwq->lock and holding all
1372 * idle workers from becoming busy until idle rebinding is complete.
1373 *
1374 * Once idle workers are rebound, busy workers can be rebound as they
1375 * finish executing their current work items. Queueing the rebind work at
1376 * the head of their scheduled lists is enough. Note that nr_running will
1377 * be properbly bumped as busy workers rebind.
1378 *
1379 * On return, all workers are guaranteed to either be bound or have rebind
1380 * work item scheduled.
1381 */
1382static void rebind_workers(struct global_cwq *gcwq)
1383 __releases(&gcwq->lock) __acquires(&gcwq->lock)
1384{
1385 struct idle_rebind idle_rebind;
1386 struct worker_pool *pool;
1387 struct worker *worker;
1388 struct hlist_node *pos;
1389 int i;
1390
1391 lockdep_assert_held(&gcwq->lock);
1392
1393 for_each_worker_pool(pool, gcwq)
1394 lockdep_assert_held(&pool->manager_mutex);
1395
1396 /*
1397 * Rebind idle workers. Interlocked both ways. We wait for
1398 * workers to rebind via @idle_rebind.done. Workers will wait for
1399 * us to finish up by watching %WORKER_REBIND.
1400 */
1401 init_completion(&idle_rebind.done);
1402retry:
1403 idle_rebind.cnt = 1;
1404 INIT_COMPLETION(idle_rebind.done);
1405
1406 /* set REBIND and kick idle ones, we'll wait for these later */
1407 for_each_worker_pool(pool, gcwq) {
1408 list_for_each_entry(worker, &pool->idle_list, entry) {
Lai Jiangshan96e65302012-09-02 00:28:19 +08001409 unsigned long worker_flags = worker->flags;
1410
Tejun Heo25511a42012-07-17 12:39:27 -07001411 if (worker->flags & WORKER_REBIND)
1412 continue;
1413
Lai Jiangshan96e65302012-09-02 00:28:19 +08001414 /* morph UNBOUND to REBIND atomically */
1415 worker_flags &= ~WORKER_UNBOUND;
1416 worker_flags |= WORKER_REBIND;
1417 ACCESS_ONCE(worker->flags) = worker_flags;
Tejun Heo25511a42012-07-17 12:39:27 -07001418
1419 idle_rebind.cnt++;
1420 worker->idle_rebind = &idle_rebind;
1421
1422 /* worker_thread() will call idle_worker_rebind() */
1423 wake_up_process(worker->task);
1424 }
1425 }
1426
1427 if (--idle_rebind.cnt) {
1428 spin_unlock_irq(&gcwq->lock);
1429 wait_for_completion(&idle_rebind.done);
1430 spin_lock_irq(&gcwq->lock);
1431 /* busy ones might have become idle while waiting, retry */
1432 goto retry;
1433 }
1434
Tejun Heo90beca52012-09-04 23:12:33 -07001435 /* all idle workers are rebound, rebind busy workers */
Tejun Heo25511a42012-07-17 12:39:27 -07001436 for_each_busy_worker(worker, i, pos, gcwq) {
1437 struct work_struct *rebind_work = &worker->rebind_work;
Lai Jiangshan96e65302012-09-02 00:28:19 +08001438 unsigned long worker_flags = worker->flags;
Tejun Heo25511a42012-07-17 12:39:27 -07001439
Lai Jiangshan96e65302012-09-02 00:28:19 +08001440 /* morph UNBOUND to REBIND atomically */
1441 worker_flags &= ~WORKER_UNBOUND;
1442 worker_flags |= WORKER_REBIND;
1443 ACCESS_ONCE(worker->flags) = worker_flags;
Tejun Heo25511a42012-07-17 12:39:27 -07001444
1445 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1446 work_data_bits(rebind_work)))
1447 continue;
1448
1449 /* wq doesn't matter, use the default one */
1450 debug_work_activate(rebind_work);
1451 insert_work(get_cwq(gcwq->cpu, system_wq), rebind_work,
1452 worker->scheduled.next,
1453 work_color_to_flags(WORK_NO_COLOR));
1454 }
Tejun Heo90beca52012-09-04 23:12:33 -07001455
1456 /*
1457 * All idle workers are rebound and waiting for %WORKER_REBIND to
1458 * be cleared inside idle_worker_rebind(). Clear and release.
1459 * Clearing %WORKER_REBIND from this foreign context is safe
1460 * because these workers are still guaranteed to be idle.
Tejun Heoec588152012-09-04 23:16:32 -07001461 *
1462 * We need to make sure all idle workers passed WORKER_REBIND wait
1463 * in idle_worker_rebind() before returning; otherwise, workers can
1464 * get stuck at the wait if hotplug cycle repeats.
Tejun Heo90beca52012-09-04 23:12:33 -07001465 */
Tejun Heoec588152012-09-04 23:16:32 -07001466 idle_rebind.cnt = 1;
1467 INIT_COMPLETION(idle_rebind.done);
1468
1469 for_each_worker_pool(pool, gcwq) {
1470 list_for_each_entry(worker, &pool->idle_list, entry) {
Tejun Heo90beca52012-09-04 23:12:33 -07001471 worker->flags &= ~WORKER_REBIND;
Tejun Heoec588152012-09-04 23:16:32 -07001472 idle_rebind.cnt++;
1473 }
1474 }
Tejun Heo90beca52012-09-04 23:12:33 -07001475
1476 wake_up_all(&gcwq->rebind_hold);
Tejun Heoec588152012-09-04 23:16:32 -07001477
1478 if (--idle_rebind.cnt) {
1479 spin_unlock_irq(&gcwq->lock);
1480 wait_for_completion(&idle_rebind.done);
1481 spin_lock_irq(&gcwq->lock);
1482 }
Tejun Heo25511a42012-07-17 12:39:27 -07001483}
1484
Tejun Heoc34056a2010-06-29 10:07:11 +02001485static struct worker *alloc_worker(void)
1486{
1487 struct worker *worker;
1488
1489 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001490 if (worker) {
1491 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001492 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001493 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001494 /* on creation a worker is in !idle && prep state */
1495 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001496 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001497 return worker;
1498}
1499
1500/**
1501 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001502 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001503 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001504 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001505 * can be started by calling start_worker() or destroyed using
1506 * destroy_worker().
1507 *
1508 * CONTEXT:
1509 * Might sleep. Does GFP_KERNEL allocations.
1510 *
1511 * RETURNS:
1512 * Pointer to the newly created worker.
1513 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001514static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001515{
Tejun Heo63d95a92012-07-12 14:46:37 -07001516 struct global_cwq *gcwq = pool->gcwq;
Tejun Heo32704762012-07-13 22:16:45 -07001517 const char *pri = worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001518 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001519 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001520
Tejun Heo8b03ae32010-06-29 10:07:12 +02001521 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001522 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001523 spin_unlock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001524 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001525 goto fail;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001526 spin_lock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001527 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02001528 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001529
1530 worker = alloc_worker();
1531 if (!worker)
1532 goto fail;
1533
Tejun Heobd7bdd42012-07-12 14:46:37 -07001534 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001535 worker->id = id;
1536
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001537 if (gcwq->cpu != WORK_CPU_UNBOUND)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001538 worker->task = kthread_create_on_node(worker_thread,
Tejun Heo32704762012-07-13 22:16:45 -07001539 worker, cpu_to_node(gcwq->cpu),
1540 "kworker/%u:%d%s", gcwq->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001541 else
1542 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001543 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001544 if (IS_ERR(worker->task))
1545 goto fail;
1546
Tejun Heo32704762012-07-13 22:16:45 -07001547 if (worker_pool_pri(pool))
1548 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1549
Tejun Heodb7bccf2010-06-29 10:07:12 +02001550 /*
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001551 * Determine CPU binding of the new worker depending on
1552 * %GCWQ_DISASSOCIATED. The caller is responsible for ensuring the
1553 * flag remains stable across this function. See the comments
1554 * above the flag definition for details.
1555 *
1556 * As an unbound worker may later become a regular one if CPU comes
1557 * online, make sure every worker has %PF_THREAD_BOUND set.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001558 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001559 if (!(gcwq->flags & GCWQ_DISASSOCIATED)) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001560 kthread_bind(worker->task, gcwq->cpu);
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001561 } else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001562 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001563 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001565
Tejun Heoc34056a2010-06-29 10:07:11 +02001566 return worker;
1567fail:
1568 if (id >= 0) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001569 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001570 ida_remove(&pool->worker_ida, id);
Tejun Heo8b03ae32010-06-29 10:07:12 +02001571 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001572 }
1573 kfree(worker);
1574 return NULL;
1575}
1576
1577/**
1578 * start_worker - start a newly created worker
1579 * @worker: worker to start
1580 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001581 * Make the gcwq aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001582 *
1583 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001584 * spin_lock_irq(gcwq->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001585 */
1586static void start_worker(struct worker *worker)
1587{
Tejun Heocb444762010-07-02 10:03:50 +02001588 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001589 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001590 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001591 wake_up_process(worker->task);
1592}
1593
1594/**
1595 * destroy_worker - destroy a workqueue worker
1596 * @worker: worker to be destroyed
1597 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001598 * Destroy @worker and adjust @gcwq stats accordingly.
1599 *
1600 * CONTEXT:
1601 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001602 */
1603static void destroy_worker(struct worker *worker)
1604{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001605 struct worker_pool *pool = worker->pool;
1606 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001607 int id = worker->id;
1608
1609 /* sanity check frenzy */
1610 BUG_ON(worker->current_work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001611 BUG_ON(!list_empty(&worker->scheduled));
Tejun Heoc34056a2010-06-29 10:07:11 +02001612
Tejun Heoc8e55f32010-06-29 10:07:12 +02001613 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001614 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001615 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001616 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001617
1618 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001619 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001620
1621 spin_unlock_irq(&gcwq->lock);
1622
Tejun Heoc34056a2010-06-29 10:07:11 +02001623 kthread_stop(worker->task);
1624 kfree(worker);
1625
Tejun Heo8b03ae32010-06-29 10:07:12 +02001626 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001627 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001628}
1629
Tejun Heo63d95a92012-07-12 14:46:37 -07001630static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001631{
Tejun Heo63d95a92012-07-12 14:46:37 -07001632 struct worker_pool *pool = (void *)__pool;
1633 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001634
1635 spin_lock_irq(&gcwq->lock);
1636
Tejun Heo63d95a92012-07-12 14:46:37 -07001637 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001638 struct worker *worker;
1639 unsigned long expires;
1640
1641 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001642 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001643 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1644
1645 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001646 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001647 else {
1648 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001649 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001650 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001651 }
1652 }
1653
1654 spin_unlock_irq(&gcwq->lock);
1655}
1656
1657static bool send_mayday(struct work_struct *work)
1658{
1659 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1660 struct workqueue_struct *wq = cwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001661 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001662
1663 if (!(wq->flags & WQ_RESCUER))
1664 return false;
1665
1666 /* mayday mayday mayday */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001667 cpu = cwq->pool->gcwq->cpu;
Tejun Heof3421792010-07-02 10:03:51 +02001668 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1669 if (cpu == WORK_CPU_UNBOUND)
1670 cpu = 0;
Tejun Heof2e005a2010-07-20 15:59:09 +02001671 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001672 wake_up_process(wq->rescuer->task);
1673 return true;
1674}
1675
Tejun Heo63d95a92012-07-12 14:46:37 -07001676static void gcwq_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001677{
Tejun Heo63d95a92012-07-12 14:46:37 -07001678 struct worker_pool *pool = (void *)__pool;
1679 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001680 struct work_struct *work;
1681
1682 spin_lock_irq(&gcwq->lock);
1683
Tejun Heo63d95a92012-07-12 14:46:37 -07001684 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001685 /*
1686 * We've been trying to create a new worker but
1687 * haven't been successful. We might be hitting an
1688 * allocation deadlock. Send distress signals to
1689 * rescuers.
1690 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001691 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001692 send_mayday(work);
1693 }
1694
1695 spin_unlock_irq(&gcwq->lock);
1696
Tejun Heo63d95a92012-07-12 14:46:37 -07001697 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001698}
1699
1700/**
1701 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001702 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001703 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001704 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001705 * have at least one idle worker on return from this function. If
1706 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001707 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001708 * possible allocation deadlock.
1709 *
1710 * On return, need_to_create_worker() is guaranteed to be false and
1711 * may_start_working() true.
1712 *
1713 * LOCKING:
1714 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1715 * multiple times. Does GFP_KERNEL allocations. Called only from
1716 * manager.
1717 *
1718 * RETURNS:
1719 * false if no action was taken and gcwq->lock stayed locked, true
1720 * otherwise.
1721 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001722static bool maybe_create_worker(struct worker_pool *pool)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001723__releases(&gcwq->lock)
1724__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001725{
Tejun Heo63d95a92012-07-12 14:46:37 -07001726 struct global_cwq *gcwq = pool->gcwq;
1727
1728 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001729 return false;
1730restart:
Tejun Heo9f9c2362010-07-14 11:31:20 +02001731 spin_unlock_irq(&gcwq->lock);
1732
Tejun Heoe22bee72010-06-29 10:07:14 +02001733 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001734 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001735
1736 while (true) {
1737 struct worker *worker;
1738
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001739 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001740 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001741 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001742 spin_lock_irq(&gcwq->lock);
1743 start_worker(worker);
Tejun Heo63d95a92012-07-12 14:46:37 -07001744 BUG_ON(need_to_create_worker(pool));
Tejun Heoe22bee72010-06-29 10:07:14 +02001745 return true;
1746 }
1747
Tejun Heo63d95a92012-07-12 14:46:37 -07001748 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001749 break;
1750
Tejun Heoe22bee72010-06-29 10:07:14 +02001751 __set_current_state(TASK_INTERRUPTIBLE);
1752 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001753
Tejun Heo63d95a92012-07-12 14:46:37 -07001754 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001755 break;
1756 }
1757
Tejun Heo63d95a92012-07-12 14:46:37 -07001758 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001759 spin_lock_irq(&gcwq->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001760 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001761 goto restart;
1762 return true;
1763}
1764
1765/**
1766 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001767 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001768 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001769 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001770 * IDLE_WORKER_TIMEOUT.
1771 *
1772 * LOCKING:
1773 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1774 * multiple times. Called only from manager.
1775 *
1776 * RETURNS:
1777 * false if no action was taken and gcwq->lock stayed locked, true
1778 * otherwise.
1779 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001780static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001781{
1782 bool ret = false;
1783
Tejun Heo63d95a92012-07-12 14:46:37 -07001784 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001785 struct worker *worker;
1786 unsigned long expires;
1787
Tejun Heo63d95a92012-07-12 14:46:37 -07001788 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001789 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1790
1791 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001792 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001793 break;
1794 }
1795
1796 destroy_worker(worker);
1797 ret = true;
1798 }
1799
1800 return ret;
1801}
1802
1803/**
1804 * manage_workers - manage worker pool
1805 * @worker: self
1806 *
1807 * Assume the manager role and manage gcwq worker pool @worker belongs
1808 * to. At any given time, there can be only zero or one manager per
1809 * gcwq. The exclusion is handled automatically by this function.
1810 *
1811 * The caller can safely start processing works on false return. On
1812 * true return, it's guaranteed that need_to_create_worker() is false
1813 * and may_start_working() is true.
1814 *
1815 * CONTEXT:
1816 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1817 * multiple times. Does GFP_KERNEL allocations.
1818 *
1819 * RETURNS:
1820 * false if no action was taken and gcwq->lock stayed locked, true if
1821 * some action was taken.
1822 */
1823static bool manage_workers(struct worker *worker)
1824{
Tejun Heo63d95a92012-07-12 14:46:37 -07001825 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001826 bool ret = false;
1827
Tejun Heo60373152012-07-17 12:39:27 -07001828 if (!mutex_trylock(&pool->manager_mutex))
Tejun Heoe22bee72010-06-29 10:07:14 +02001829 return ret;
1830
Lai Jiangshan552a37e2012-09-10 10:03:33 -07001831 pool->flags |= POOL_MANAGING_WORKERS;
Tejun Heo11ebea52012-07-12 14:46:37 -07001832 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02001833
1834 /*
1835 * Destroy and then create so that may_start_working() is true
1836 * on return.
1837 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001838 ret |= maybe_destroy_workers(pool);
1839 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001840
Lai Jiangshan552a37e2012-09-10 10:03:33 -07001841 pool->flags &= ~POOL_MANAGING_WORKERS;
Tejun Heo60373152012-07-17 12:39:27 -07001842 mutex_unlock(&pool->manager_mutex);
Tejun Heoe22bee72010-06-29 10:07:14 +02001843 return ret;
1844}
1845
Tejun Heoa62428c2010-06-29 10:07:10 +02001846/**
Tejun Heoaffee4b2010-06-29 10:07:12 +02001847 * move_linked_works - move linked works to a list
1848 * @work: start of series of works to be scheduled
1849 * @head: target list to append @work to
1850 * @nextp: out paramter for nested worklist walking
1851 *
1852 * Schedule linked works starting from @work to @head. Work series to
1853 * be scheduled starts at @work and includes any consecutive work with
1854 * WORK_STRUCT_LINKED set in its predecessor.
1855 *
1856 * If @nextp is not NULL, it's updated to point to the next work of
1857 * the last scheduled work. This allows move_linked_works() to be
1858 * nested inside outer list_for_each_entry_safe().
1859 *
1860 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001861 * spin_lock_irq(gcwq->lock).
Tejun Heoaffee4b2010-06-29 10:07:12 +02001862 */
1863static void move_linked_works(struct work_struct *work, struct list_head *head,
1864 struct work_struct **nextp)
1865{
1866 struct work_struct *n;
1867
1868 /*
1869 * Linked worklist will always end before the end of the list,
1870 * use NULL for list head.
1871 */
1872 list_for_each_entry_safe_from(work, n, NULL, entry) {
1873 list_move_tail(&work->entry, head);
1874 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
1875 break;
1876 }
1877
1878 /*
1879 * If we're already inside safe list traversal and have moved
1880 * multiple works to the scheduled queue, the next position
1881 * needs to be updated.
1882 */
1883 if (nextp)
1884 *nextp = n;
1885}
1886
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001887static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
1888{
1889 struct work_struct *work = list_first_entry(&cwq->delayed_works,
1890 struct work_struct, entry);
1891
Tejun Heocdadf002010-10-05 10:49:55 +02001892 trace_workqueue_activate_work(work);
Tejun Heo32704762012-07-13 22:16:45 -07001893 move_linked_works(work, &cwq->pool->worklist, NULL);
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001894 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001895 cwq->nr_active++;
1896}
1897
Tejun Heoaffee4b2010-06-29 10:07:12 +02001898/**
Tejun Heo73f53c42010-06-29 10:07:11 +02001899 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
1900 * @cwq: cwq of interest
1901 * @color: color of work which left the queue
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001902 * @delayed: for a delayed work
Tejun Heo73f53c42010-06-29 10:07:11 +02001903 *
1904 * A work either has completed or is removed from pending queue,
1905 * decrement nr_in_flight of its cwq and handle workqueue flushing.
1906 *
1907 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001908 * spin_lock_irq(gcwq->lock).
Tejun Heo73f53c42010-06-29 10:07:11 +02001909 */
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001910static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color,
1911 bool delayed)
Tejun Heo73f53c42010-06-29 10:07:11 +02001912{
1913 /* ignore uncolored works */
1914 if (color == WORK_NO_COLOR)
1915 return;
1916
1917 cwq->nr_in_flight[color]--;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001918
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001919 if (!delayed) {
1920 cwq->nr_active--;
1921 if (!list_empty(&cwq->delayed_works)) {
1922 /* one down, submit a delayed one */
1923 if (cwq->nr_active < cwq->max_active)
1924 cwq_activate_first_delayed(cwq);
1925 }
Tejun Heo502ca9d2010-06-29 10:07:13 +02001926 }
Tejun Heo73f53c42010-06-29 10:07:11 +02001927
1928 /* is flush in progress and are we at the flushing tip? */
1929 if (likely(cwq->flush_color != color))
1930 return;
1931
1932 /* are there still in-flight works? */
1933 if (cwq->nr_in_flight[color])
1934 return;
1935
1936 /* this cwq is done, clear flush_color */
1937 cwq->flush_color = -1;
1938
1939 /*
1940 * If this was the last cwq, wake up the first flusher. It
1941 * will handle the rest.
1942 */
1943 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
1944 complete(&cwq->wq->first_flusher->done);
1945}
1946
1947/**
Tejun Heoa62428c2010-06-29 10:07:10 +02001948 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02001949 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02001950 * @work: work to process
1951 *
1952 * Process @work. This function contains all the logics necessary to
1953 * process a single work including synchronization against and
1954 * interaction with other workers on the same cpu, queueing and
1955 * flushing. As long as context requirement is met, any worker can
1956 * call this function to process a work.
1957 *
1958 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001959 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02001960 */
Tejun Heoc34056a2010-06-29 10:07:11 +02001961static void process_one_work(struct worker *worker, struct work_struct *work)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001962__releases(&gcwq->lock)
1963__acquires(&gcwq->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02001964{
Tejun Heo7e116292010-06-29 10:07:13 +02001965 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001966 struct worker_pool *pool = worker->pool;
1967 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001968 struct hlist_head *bwh = busy_worker_head(gcwq, work);
Tejun Heofb0e7be2010-06-29 10:07:15 +02001969 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heoa62428c2010-06-29 10:07:10 +02001970 work_func_t f = work->func;
Tejun Heo73f53c42010-06-29 10:07:11 +02001971 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02001972 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02001973#ifdef CONFIG_LOCKDEP
1974 /*
1975 * It is permissible to free the struct work_struct from
1976 * inside the function that is called from it, this we need to
1977 * take into account for lockdep too. To avoid bogus "held
1978 * lock freed" warnings as well as problems when looking into
1979 * work->lockdep_map, make a copy and use that here.
1980 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07001981 struct lockdep_map lockdep_map;
1982
1983 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02001984#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07001985 /*
1986 * Ensure we're on the correct CPU. DISASSOCIATED test is
1987 * necessary to avoid spurious warnings from rescuers servicing the
1988 * unbound or a disassociated gcwq.
1989 */
Tejun Heo25511a42012-07-17 12:39:27 -07001990 WARN_ON_ONCE(!(worker->flags & (WORKER_UNBOUND | WORKER_REBIND)) &&
Tejun Heo6fec10a2012-07-22 10:16:34 -07001991 !(gcwq->flags & GCWQ_DISASSOCIATED) &&
Tejun Heo25511a42012-07-17 12:39:27 -07001992 raw_smp_processor_id() != gcwq->cpu);
1993
Tejun Heo7e116292010-06-29 10:07:13 +02001994 /*
1995 * A single work shouldn't be executed concurrently by
1996 * multiple workers on a single cpu. Check whether anyone is
1997 * already processing the work. If so, defer the work to the
1998 * currently executing one.
1999 */
2000 collision = __find_worker_executing_work(gcwq, bwh, work);
2001 if (unlikely(collision)) {
2002 move_linked_works(work, &collision->scheduled, NULL);
2003 return;
2004 }
2005
Tejun Heoa62428c2010-06-29 10:07:10 +02002006 /* claim and process */
Tejun Heoa62428c2010-06-29 10:07:10 +02002007 debug_work_deactivate(work);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002008 hlist_add_head(&worker->hentry, bwh);
Tejun Heoc34056a2010-06-29 10:07:11 +02002009 worker->current_work = work;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02002010 worker->current_cwq = cwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002011 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002012
Tejun Heo7a22ad72010-06-29 10:07:13 +02002013 /* record the current cpu number in the work data and dequeue */
2014 set_work_cpu(work, gcwq->cpu);
Tejun Heoa62428c2010-06-29 10:07:10 +02002015 list_del_init(&work->entry);
2016
Tejun Heo649027d2010-06-29 10:07:14 +02002017 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002018 * CPU intensive works don't participate in concurrency
2019 * management. They're the scheduler's responsibility.
2020 */
2021 if (unlikely(cpu_intensive))
2022 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2023
Tejun Heo974271c2012-07-12 14:46:37 -07002024 /*
2025 * Unbound gcwq isn't concurrency managed and work items should be
2026 * executed ASAP. Wake up another worker if necessary.
2027 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002028 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2029 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002030
Tejun Heo8b03ae32010-06-29 10:07:12 +02002031 spin_unlock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002032
Tejun Heoa62428c2010-06-29 10:07:10 +02002033 work_clear_pending(work);
Tejun Heoe1594892011-01-09 23:32:15 +01002034 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002035 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002036 trace_workqueue_execute_start(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002037 f(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002038 /*
2039 * While we must be careful to not use "work" after this, the trace
2040 * point will only record its address.
2041 */
2042 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002043 lock_map_release(&lockdep_map);
2044 lock_map_release(&cwq->wq->lockdep_map);
2045
2046 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
2047 printk(KERN_ERR "BUG: workqueue leaked lock or atomic: "
2048 "%s/0x%08x/%d\n",
2049 current->comm, preempt_count(), task_pid_nr(current));
2050 printk(KERN_ERR " last function: ");
2051 print_symbol("%s\n", (unsigned long)f);
2052 debug_show_held_locks(current);
2053 dump_stack();
2054 }
2055
Tejun Heo8b03ae32010-06-29 10:07:12 +02002056 spin_lock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002057
Tejun Heofb0e7be2010-06-29 10:07:15 +02002058 /* clear cpu intensive status */
2059 if (unlikely(cpu_intensive))
2060 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2061
Tejun Heoa62428c2010-06-29 10:07:10 +02002062 /* we're done with it, release */
Tejun Heoc8e55f32010-06-29 10:07:12 +02002063 hlist_del_init(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002064 worker->current_work = NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02002065 worker->current_cwq = NULL;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02002066 cwq_dec_nr_in_flight(cwq, work_color, false);
Tejun Heoa62428c2010-06-29 10:07:10 +02002067}
2068
Tejun Heoaffee4b2010-06-29 10:07:12 +02002069/**
2070 * process_scheduled_works - process scheduled works
2071 * @worker: self
2072 *
2073 * Process all scheduled works. Please note that the scheduled list
2074 * may change while processing a work, so this function repeatedly
2075 * fetches a work from the top and executes it.
2076 *
2077 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002078 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002079 * multiple times.
2080 */
2081static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002083 while (!list_empty(&worker->scheduled)) {
2084 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002086 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}
2089
Tejun Heo4690c4a2010-06-29 10:07:10 +02002090/**
2091 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002092 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002093 *
Tejun Heoe22bee72010-06-29 10:07:14 +02002094 * The gcwq worker thread function. There's a single dynamic pool of
2095 * these per each cpu. These workers process all works regardless of
2096 * their specific target workqueue. The only exception is works which
2097 * belong to workqueues with a rescuer which will be explained in
2098 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002099 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002100static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
Tejun Heoc34056a2010-06-29 10:07:11 +02002102 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002103 struct worker_pool *pool = worker->pool;
2104 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Tejun Heoe22bee72010-06-29 10:07:14 +02002106 /* tell the scheduler that this is a workqueue worker */
2107 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002108woke_up:
Tejun Heoc8e55f32010-06-29 10:07:12 +02002109 spin_lock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Tejun Heo25511a42012-07-17 12:39:27 -07002111 /*
2112 * DIE can be set only while idle and REBIND set while busy has
2113 * @worker->rebind_work scheduled. Checking here is enough.
2114 */
2115 if (unlikely(worker->flags & (WORKER_REBIND | WORKER_DIE))) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02002116 spin_unlock_irq(&gcwq->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002117
2118 if (worker->flags & WORKER_DIE) {
2119 worker->task->flags &= ~PF_WQ_WORKER;
2120 return 0;
2121 }
2122
2123 idle_worker_rebind(worker);
2124 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 }
2126
Tejun Heoc8e55f32010-06-29 10:07:12 +02002127 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002128recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002129 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002130 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002131 goto sleep;
2132
2133 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002134 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002135 goto recheck;
2136
Tejun Heoc8e55f32010-06-29 10:07:12 +02002137 /*
2138 * ->scheduled list can only be filled while a worker is
2139 * preparing to process a work or actually processing it.
2140 * Make sure nobody diddled with it while I was sleeping.
2141 */
2142 BUG_ON(!list_empty(&worker->scheduled));
2143
Tejun Heoe22bee72010-06-29 10:07:14 +02002144 /*
2145 * When control reaches this point, we're guaranteed to have
2146 * at least one idle worker or that someone else has already
2147 * assumed the manager role.
2148 */
2149 worker_clr_flags(worker, WORKER_PREP);
2150
2151 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002152 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002153 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002154 struct work_struct, entry);
2155
2156 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2157 /* optimization path, not strictly necessary */
2158 process_one_work(worker, work);
2159 if (unlikely(!list_empty(&worker->scheduled)))
2160 process_scheduled_works(worker);
2161 } else {
2162 move_linked_works(work, &worker->scheduled, NULL);
2163 process_scheduled_works(worker);
2164 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002165 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002166
Tejun Heoe22bee72010-06-29 10:07:14 +02002167 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002168sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002169 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002170 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002171
Tejun Heoc8e55f32010-06-29 10:07:12 +02002172 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02002173 * gcwq->lock is held and there's no work to process and no
2174 * need to manage, sleep. Workers are woken up only while
2175 * holding gcwq->lock or from local cpu, so setting the
2176 * current state before releasing gcwq->lock is enough to
2177 * prevent losing any event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002178 */
2179 worker_enter_idle(worker);
2180 __set_current_state(TASK_INTERRUPTIBLE);
2181 spin_unlock_irq(&gcwq->lock);
2182 schedule();
2183 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
Tejun Heoe22bee72010-06-29 10:07:14 +02002186/**
2187 * rescuer_thread - the rescuer thread function
2188 * @__wq: the associated workqueue
2189 *
2190 * Workqueue rescuer thread function. There's one rescuer for each
2191 * workqueue which has WQ_RESCUER set.
2192 *
2193 * Regular work processing on a gcwq may block trying to create a new
2194 * worker which uses GFP_KERNEL allocation which has slight chance of
2195 * developing into deadlock if some works currently on the same queue
2196 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2197 * the problem rescuer solves.
2198 *
2199 * When such condition is possible, the gcwq summons rescuers of all
2200 * workqueues which have works queued on the gcwq and let them process
2201 * those works so that forward progress can be guaranteed.
2202 *
2203 * This should happen rarely.
2204 */
2205static int rescuer_thread(void *__wq)
2206{
2207 struct workqueue_struct *wq = __wq;
2208 struct worker *rescuer = wq->rescuer;
2209 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02002210 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02002211 unsigned int cpu;
2212
2213 set_user_nice(current, RESCUER_NICE_LEVEL);
2214repeat:
2215 set_current_state(TASK_INTERRUPTIBLE);
2216
2217 if (kthread_should_stop())
2218 return 0;
2219
Tejun Heof3421792010-07-02 10:03:51 +02002220 /*
2221 * See whether any cpu is asking for help. Unbounded
2222 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2223 */
Tejun Heof2e005a2010-07-20 15:59:09 +02002224 for_each_mayday_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02002225 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
2226 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002227 struct worker_pool *pool = cwq->pool;
2228 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002229 struct work_struct *work, *n;
2230
2231 __set_current_state(TASK_RUNNING);
Tejun Heof2e005a2010-07-20 15:59:09 +02002232 mayday_clear_cpu(cpu, wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02002233
2234 /* migrate to the target cpu if possible */
Tejun Heobd7bdd42012-07-12 14:46:37 -07002235 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002236 worker_maybe_bind_and_lock(rescuer);
2237
2238 /*
2239 * Slurp in all works issued via this workqueue and
2240 * process'em.
2241 */
2242 BUG_ON(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002243 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02002244 if (get_work_cwq(work) == cwq)
2245 move_linked_works(work, scheduled, &n);
2246
2247 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002248
2249 /*
2250 * Leave this gcwq. If keep_working() is %true, notify a
2251 * regular worker; otherwise, we end up with 0 concurrency
2252 * and stalling the execution.
2253 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002254 if (keep_working(pool))
2255 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002256
Tejun Heoe22bee72010-06-29 10:07:14 +02002257 spin_unlock_irq(&gcwq->lock);
2258 }
2259
2260 schedule();
2261 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262}
2263
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002264struct wq_barrier {
2265 struct work_struct work;
2266 struct completion done;
2267};
2268
2269static void wq_barrier_func(struct work_struct *work)
2270{
2271 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2272 complete(&barr->done);
2273}
2274
Tejun Heo4690c4a2010-06-29 10:07:10 +02002275/**
2276 * insert_wq_barrier - insert a barrier work
2277 * @cwq: cwq to insert barrier into
2278 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002279 * @target: target work to attach @barr to
2280 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002281 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002282 * @barr is linked to @target such that @barr is completed only after
2283 * @target finishes execution. Please note that the ordering
2284 * guarantee is observed only with respect to @target and on the local
2285 * cpu.
2286 *
2287 * Currently, a queued barrier can't be canceled. This is because
2288 * try_to_grab_pending() can't determine whether the work to be
2289 * grabbed is at the head of the queue and thus can't clear LINKED
2290 * flag of the previous work while there must be a valid next work
2291 * after a work with LINKED flag set.
2292 *
2293 * Note that when @worker is non-NULL, @target may be modified
2294 * underneath us, so we can't reliably determine cwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002295 *
2296 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002297 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002298 */
Oleg Nesterov83c22522007-05-09 02:33:54 -07002299static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002300 struct wq_barrier *barr,
2301 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002302{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002303 struct list_head *head;
2304 unsigned int linked = 0;
2305
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002306 /*
Tejun Heo8b03ae32010-06-29 10:07:12 +02002307 * debugobject calls are safe here even with gcwq->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002308 * as we know for sure that this will not trigger any of the
2309 * checks and call back into the fixup functions where we
2310 * might deadlock.
2311 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002312 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002313 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002314 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002315
Tejun Heoaffee4b2010-06-29 10:07:12 +02002316 /*
2317 * If @target is currently being executed, schedule the
2318 * barrier to the worker; otherwise, put it after @target.
2319 */
2320 if (worker)
2321 head = worker->scheduled.next;
2322 else {
2323 unsigned long *bits = work_data_bits(target);
2324
2325 head = target->entry.next;
2326 /* there can already be other linked works, inherit and set */
2327 linked = *bits & WORK_STRUCT_LINKED;
2328 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2329 }
2330
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002331 debug_work_activate(&barr->work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002332 insert_work(cwq, &barr->work, head,
2333 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002334}
2335
Tejun Heo73f53c42010-06-29 10:07:11 +02002336/**
2337 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2338 * @wq: workqueue being flushed
2339 * @flush_color: new flush color, < 0 for no-op
2340 * @work_color: new work color, < 0 for no-op
2341 *
2342 * Prepare cwqs for workqueue flushing.
2343 *
2344 * If @flush_color is non-negative, flush_color on all cwqs should be
2345 * -1. If no cwq has in-flight commands at the specified color, all
2346 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2347 * has in flight commands, its cwq->flush_color is set to
2348 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2349 * wakeup logic is armed and %true is returned.
2350 *
2351 * The caller should have initialized @wq->first_flusher prior to
2352 * calling this function with non-negative @flush_color. If
2353 * @flush_color is negative, no flush color update is done and %false
2354 * is returned.
2355 *
2356 * If @work_color is non-negative, all cwqs should have the same
2357 * work_color which is previous to @work_color and all will be
2358 * advanced to @work_color.
2359 *
2360 * CONTEXT:
2361 * mutex_lock(wq->flush_mutex).
2362 *
2363 * RETURNS:
2364 * %true if @flush_color >= 0 and there's something to flush. %false
2365 * otherwise.
2366 */
2367static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2368 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
Tejun Heo73f53c42010-06-29 10:07:11 +02002370 bool wait = false;
2371 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002372
Tejun Heo73f53c42010-06-29 10:07:11 +02002373 if (flush_color >= 0) {
2374 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2375 atomic_set(&wq->nr_cwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002376 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002377
Tejun Heof3421792010-07-02 10:03:51 +02002378 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002379 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002380 struct global_cwq *gcwq = cwq->pool->gcwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002381
Tejun Heo8b03ae32010-06-29 10:07:12 +02002382 spin_lock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002383
2384 if (flush_color >= 0) {
2385 BUG_ON(cwq->flush_color != -1);
2386
2387 if (cwq->nr_in_flight[flush_color]) {
2388 cwq->flush_color = flush_color;
2389 atomic_inc(&wq->nr_cwqs_to_flush);
2390 wait = true;
2391 }
2392 }
2393
2394 if (work_color >= 0) {
2395 BUG_ON(work_color != work_next_color(cwq->work_color));
2396 cwq->work_color = work_color;
2397 }
2398
Tejun Heo8b03ae32010-06-29 10:07:12 +02002399 spin_unlock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002400 }
2401
2402 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2403 complete(&wq->first_flusher->done);
2404
2405 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
2407
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002408/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002410 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 *
2412 * Forces execution of the workqueue and blocks until its completion.
2413 * This is typically used in driver shutdown handlers.
2414 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002415 * We sleep until all works which were queued on entry have been handled,
2416 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002418void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
Tejun Heo73f53c42010-06-29 10:07:11 +02002420 struct wq_flusher this_flusher = {
2421 .list = LIST_HEAD_INIT(this_flusher.list),
2422 .flush_color = -1,
2423 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2424 };
2425 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002426
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002427 lock_map_acquire(&wq->lockdep_map);
2428 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002429
2430 mutex_lock(&wq->flush_mutex);
2431
2432 /*
2433 * Start-to-wait phase
2434 */
2435 next_color = work_next_color(wq->work_color);
2436
2437 if (next_color != wq->flush_color) {
2438 /*
2439 * Color space is not full. The current work_color
2440 * becomes our flush_color and work_color is advanced
2441 * by one.
2442 */
2443 BUG_ON(!list_empty(&wq->flusher_overflow));
2444 this_flusher.flush_color = wq->work_color;
2445 wq->work_color = next_color;
2446
2447 if (!wq->first_flusher) {
2448 /* no flush in progress, become the first flusher */
2449 BUG_ON(wq->flush_color != this_flusher.flush_color);
2450
2451 wq->first_flusher = &this_flusher;
2452
2453 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2454 wq->work_color)) {
2455 /* nothing to flush, done */
2456 wq->flush_color = next_color;
2457 wq->first_flusher = NULL;
2458 goto out_unlock;
2459 }
2460 } else {
2461 /* wait in queue */
2462 BUG_ON(wq->flush_color == this_flusher.flush_color);
2463 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2464 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2465 }
2466 } else {
2467 /*
2468 * Oops, color space is full, wait on overflow queue.
2469 * The next flush completion will assign us
2470 * flush_color and transfer to flusher_queue.
2471 */
2472 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2473 }
2474
2475 mutex_unlock(&wq->flush_mutex);
2476
2477 wait_for_completion(&this_flusher.done);
2478
2479 /*
2480 * Wake-up-and-cascade phase
2481 *
2482 * First flushers are responsible for cascading flushes and
2483 * handling overflow. Non-first flushers can simply return.
2484 */
2485 if (wq->first_flusher != &this_flusher)
2486 return;
2487
2488 mutex_lock(&wq->flush_mutex);
2489
Tejun Heo4ce48b32010-07-02 10:03:51 +02002490 /* we might have raced, check again with mutex held */
2491 if (wq->first_flusher != &this_flusher)
2492 goto out_unlock;
2493
Tejun Heo73f53c42010-06-29 10:07:11 +02002494 wq->first_flusher = NULL;
2495
2496 BUG_ON(!list_empty(&this_flusher.list));
2497 BUG_ON(wq->flush_color != this_flusher.flush_color);
2498
2499 while (true) {
2500 struct wq_flusher *next, *tmp;
2501
2502 /* complete all the flushers sharing the current flush color */
2503 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2504 if (next->flush_color != wq->flush_color)
2505 break;
2506 list_del_init(&next->list);
2507 complete(&next->done);
2508 }
2509
2510 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2511 wq->flush_color != work_next_color(wq->work_color));
2512
2513 /* this flush_color is finished, advance by one */
2514 wq->flush_color = work_next_color(wq->flush_color);
2515
2516 /* one color has been freed, handle overflow queue */
2517 if (!list_empty(&wq->flusher_overflow)) {
2518 /*
2519 * Assign the same color to all overflowed
2520 * flushers, advance work_color and append to
2521 * flusher_queue. This is the start-to-wait
2522 * phase for these overflowed flushers.
2523 */
2524 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2525 tmp->flush_color = wq->work_color;
2526
2527 wq->work_color = work_next_color(wq->work_color);
2528
2529 list_splice_tail_init(&wq->flusher_overflow,
2530 &wq->flusher_queue);
2531 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2532 }
2533
2534 if (list_empty(&wq->flusher_queue)) {
2535 BUG_ON(wq->flush_color != wq->work_color);
2536 break;
2537 }
2538
2539 /*
2540 * Need to flush more colors. Make the next flusher
2541 * the new first flusher and arm cwqs.
2542 */
2543 BUG_ON(wq->flush_color == wq->work_color);
2544 BUG_ON(wq->flush_color != next->flush_color);
2545
2546 list_del_init(&next->list);
2547 wq->first_flusher = next;
2548
2549 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2550 break;
2551
2552 /*
2553 * Meh... this color is already done, clear first
2554 * flusher and repeat cascading.
2555 */
2556 wq->first_flusher = NULL;
2557 }
2558
2559out_unlock:
2560 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561}
Dave Jonesae90dd52006-06-30 01:40:45 -04002562EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002564/**
2565 * drain_workqueue - drain a workqueue
2566 * @wq: workqueue to drain
2567 *
2568 * Wait until the workqueue becomes empty. While draining is in progress,
2569 * only chain queueing is allowed. IOW, only currently pending or running
2570 * work items on @wq can queue further work items on it. @wq is flushed
2571 * repeatedly until it becomes empty. The number of flushing is detemined
2572 * by the depth of chaining and should be relatively short. Whine if it
2573 * takes too long.
2574 */
2575void drain_workqueue(struct workqueue_struct *wq)
2576{
2577 unsigned int flush_cnt = 0;
2578 unsigned int cpu;
2579
2580 /*
2581 * __queue_work() needs to test whether there are drainers, is much
2582 * hotter than drain_workqueue() and already looks at @wq->flags.
2583 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2584 */
2585 spin_lock(&workqueue_lock);
2586 if (!wq->nr_drainers++)
2587 wq->flags |= WQ_DRAINING;
2588 spin_unlock(&workqueue_lock);
2589reflush:
2590 flush_workqueue(wq);
2591
2592 for_each_cwq_cpu(cpu, wq) {
2593 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002594 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002595
Tejun Heobd7bdd42012-07-12 14:46:37 -07002596 spin_lock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002597 drained = !cwq->nr_active && list_empty(&cwq->delayed_works);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002598 spin_unlock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002599
2600 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002601 continue;
2602
2603 if (++flush_cnt == 10 ||
2604 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
2605 pr_warning("workqueue %s: flush on destruction isn't complete after %u tries\n",
2606 wq->name, flush_cnt);
2607 goto reflush;
2608 }
2609
2610 spin_lock(&workqueue_lock);
2611 if (!--wq->nr_drainers)
2612 wq->flags &= ~WQ_DRAINING;
2613 spin_unlock(&workqueue_lock);
2614}
2615EXPORT_SYMBOL_GPL(drain_workqueue);
2616
Tejun Heobaf59022010-09-16 10:42:16 +02002617static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr,
2618 bool wait_executing)
2619{
2620 struct worker *worker = NULL;
2621 struct global_cwq *gcwq;
2622 struct cpu_workqueue_struct *cwq;
2623
2624 might_sleep();
2625 gcwq = get_work_gcwq(work);
2626 if (!gcwq)
2627 return false;
2628
2629 spin_lock_irq(&gcwq->lock);
2630 if (!list_empty(&work->entry)) {
2631 /*
2632 * See the comment near try_to_grab_pending()->smp_rmb().
2633 * If it was re-queued to a different gcwq under us, we
2634 * are not going to wait.
2635 */
2636 smp_rmb();
2637 cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002638 if (unlikely(!cwq || gcwq != cwq->pool->gcwq))
Tejun Heobaf59022010-09-16 10:42:16 +02002639 goto already_gone;
2640 } else if (wait_executing) {
2641 worker = find_worker_executing_work(gcwq, work);
2642 if (!worker)
2643 goto already_gone;
2644 cwq = worker->current_cwq;
2645 } else
2646 goto already_gone;
2647
2648 insert_wq_barrier(cwq, barr, work, worker);
2649 spin_unlock_irq(&gcwq->lock);
2650
Tejun Heoe1594892011-01-09 23:32:15 +01002651 /*
2652 * If @max_active is 1 or rescuer is in use, flushing another work
2653 * item on the same workqueue may lead to deadlock. Make sure the
2654 * flusher is not running on the same workqueue by verifying write
2655 * access.
2656 */
2657 if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER)
2658 lock_map_acquire(&cwq->wq->lockdep_map);
2659 else
2660 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heobaf59022010-09-16 10:42:16 +02002661 lock_map_release(&cwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002662
Tejun Heobaf59022010-09-16 10:42:16 +02002663 return true;
2664already_gone:
2665 spin_unlock_irq(&gcwq->lock);
2666 return false;
2667}
2668
Oleg Nesterovdb700892008-07-25 01:47:49 -07002669/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002670 * flush_work - wait for a work to finish executing the last queueing instance
2671 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002672 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002673 * Wait until @work has finished execution. This function considers
2674 * only the last queueing instance of @work. If @work has been
2675 * enqueued across different CPUs on a non-reentrant workqueue or on
2676 * multiple workqueues, @work might still be executing on return on
2677 * some of the CPUs from earlier queueing.
Oleg Nesterova67da702008-07-25 01:47:52 -07002678 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002679 * If @work was queued only on a non-reentrant, ordered or unbound
2680 * workqueue, @work is guaranteed to be idle on return if it hasn't
2681 * been requeued since flush started.
2682 *
2683 * RETURNS:
2684 * %true if flush_work() waited for the work to finish execution,
2685 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002686 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002687bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002688{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002689 struct wq_barrier barr;
2690
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002691 lock_map_acquire(&work->lockdep_map);
2692 lock_map_release(&work->lockdep_map);
2693
Tejun Heobaf59022010-09-16 10:42:16 +02002694 if (start_flush_work(work, &barr, true)) {
2695 wait_for_completion(&barr.done);
2696 destroy_work_on_stack(&barr.work);
2697 return true;
2698 } else
2699 return false;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002700}
2701EXPORT_SYMBOL_GPL(flush_work);
2702
Tejun Heo401a8d02010-09-16 10:36:00 +02002703static bool wait_on_cpu_work(struct global_cwq *gcwq, struct work_struct *work)
2704{
2705 struct wq_barrier barr;
2706 struct worker *worker;
2707
2708 spin_lock_irq(&gcwq->lock);
2709
2710 worker = find_worker_executing_work(gcwq, work);
2711 if (unlikely(worker))
2712 insert_wq_barrier(worker->current_cwq, &barr, work, worker);
2713
2714 spin_unlock_irq(&gcwq->lock);
2715
2716 if (unlikely(worker)) {
2717 wait_for_completion(&barr.done);
2718 destroy_work_on_stack(&barr.work);
2719 return true;
2720 } else
2721 return false;
2722}
2723
2724static bool wait_on_work(struct work_struct *work)
2725{
2726 bool ret = false;
2727 int cpu;
2728
2729 might_sleep();
2730
2731 lock_map_acquire(&work->lockdep_map);
2732 lock_map_release(&work->lockdep_map);
2733
2734 for_each_gcwq_cpu(cpu)
2735 ret |= wait_on_cpu_work(get_gcwq(cpu), work);
2736 return ret;
2737}
2738
Tejun Heo09383492010-09-16 10:48:29 +02002739/**
2740 * flush_work_sync - wait until a work has finished execution
2741 * @work: the work to flush
2742 *
2743 * Wait until @work has finished execution. On return, it's
2744 * guaranteed that all queueing instances of @work which happened
2745 * before this function is called are finished. In other words, if
2746 * @work hasn't been requeued since this function was called, @work is
2747 * guaranteed to be idle on return.
2748 *
2749 * RETURNS:
2750 * %true if flush_work_sync() waited for the work to finish execution,
2751 * %false if it was already idle.
2752 */
2753bool flush_work_sync(struct work_struct *work)
2754{
2755 struct wq_barrier barr;
2756 bool pending, waited;
2757
2758 /* we'll wait for executions separately, queue barr only if pending */
2759 pending = start_flush_work(work, &barr, false);
2760
2761 /* wait for executions to finish */
2762 waited = wait_on_work(work);
2763
2764 /* wait for the pending one */
2765 if (pending) {
2766 wait_for_completion(&barr.done);
2767 destroy_work_on_stack(&barr.work);
2768 }
2769
2770 return pending || waited;
2771}
2772EXPORT_SYMBOL_GPL(flush_work_sync);
2773
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002774/*
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002775 * Upon a successful return (>= 0), the caller "owns" WORK_STRUCT_PENDING bit,
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002776 * so this work can't be re-armed in any way.
2777 */
2778static int try_to_grab_pending(struct work_struct *work)
2779{
Tejun Heo8b03ae32010-06-29 10:07:12 +02002780 struct global_cwq *gcwq;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002781 int ret = -1;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002782
Tejun Heo22df02b2010-06-29 10:07:10 +02002783 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002784 return 0;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002785
2786 /*
2787 * The queueing is in progress, or it is already queued. Try to
2788 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
2789 */
Tejun Heo7a22ad72010-06-29 10:07:13 +02002790 gcwq = get_work_gcwq(work);
2791 if (!gcwq)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002792 return ret;
2793
Tejun Heo8b03ae32010-06-29 10:07:12 +02002794 spin_lock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002795 if (!list_empty(&work->entry)) {
2796 /*
Tejun Heo7a22ad72010-06-29 10:07:13 +02002797 * This work is queued, but perhaps we locked the wrong gcwq.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002798 * In that case we must see the new value after rmb(), see
2799 * insert_work()->wmb().
2800 */
2801 smp_rmb();
Tejun Heo7a22ad72010-06-29 10:07:13 +02002802 if (gcwq == get_work_gcwq(work)) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002803 debug_work_deactivate(work);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002804 list_del_init(&work->entry);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002805 cwq_dec_nr_in_flight(get_work_cwq(work),
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02002806 get_work_color(work),
2807 *work_data_bits(work) & WORK_STRUCT_DELAYED);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002808 ret = 1;
2809 }
2810 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02002811 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002812
2813 return ret;
2814}
2815
Tejun Heo401a8d02010-09-16 10:36:00 +02002816static bool __cancel_work_timer(struct work_struct *work,
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002817 struct timer_list* timer)
2818{
2819 int ret;
2820
2821 do {
2822 ret = (timer && likely(del_timer(timer)));
2823 if (!ret)
2824 ret = try_to_grab_pending(work);
2825 wait_on_work(work);
2826 } while (unlikely(ret < 0));
2827
Tejun Heo7a22ad72010-06-29 10:07:13 +02002828 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002829 return ret;
2830}
2831
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002832/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002833 * cancel_work_sync - cancel a work and wait for it to finish
2834 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002835 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002836 * Cancel @work and wait for its execution to finish. This function
2837 * can be used even if the work re-queues itself or migrates to
2838 * another workqueue. On return from this function, @work is
2839 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002840 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002841 * cancel_work_sync(&delayed_work->work) must not be used for
2842 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002843 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002844 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002845 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002846 *
2847 * RETURNS:
2848 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002849 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002850bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002851{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002852 return __cancel_work_timer(work, NULL);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002853}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002854EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002855
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002856/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002857 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2858 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002859 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002860 * Delayed timer is cancelled and the pending work is queued for
2861 * immediate execution. Like flush_work(), this function only
2862 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002863 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002864 * RETURNS:
2865 * %true if flush_work() waited for the work to finish execution,
2866 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002867 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002868bool flush_delayed_work(struct delayed_work *dwork)
2869{
2870 if (del_timer_sync(&dwork->timer))
2871 __queue_work(raw_smp_processor_id(),
2872 get_work_cwq(&dwork->work)->wq, &dwork->work);
2873 return flush_work(&dwork->work);
2874}
2875EXPORT_SYMBOL(flush_delayed_work);
2876
2877/**
Tejun Heo09383492010-09-16 10:48:29 +02002878 * flush_delayed_work_sync - wait for a dwork to finish
2879 * @dwork: the delayed work to flush
2880 *
2881 * Delayed timer is cancelled and the pending work is queued for
2882 * execution immediately. Other than timer handling, its behavior
2883 * is identical to flush_work_sync().
2884 *
2885 * RETURNS:
2886 * %true if flush_work_sync() waited for the work to finish execution,
2887 * %false if it was already idle.
2888 */
2889bool flush_delayed_work_sync(struct delayed_work *dwork)
2890{
2891 if (del_timer_sync(&dwork->timer))
2892 __queue_work(raw_smp_processor_id(),
2893 get_work_cwq(&dwork->work)->wq, &dwork->work);
2894 return flush_work_sync(&dwork->work);
2895}
2896EXPORT_SYMBOL(flush_delayed_work_sync);
2897
2898/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002899 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2900 * @dwork: the delayed work cancel
2901 *
2902 * This is cancel_work_sync() for delayed works.
2903 *
2904 * RETURNS:
2905 * %true if @dwork was pending, %false otherwise.
2906 */
2907bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002908{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002909 return __cancel_work_timer(&dwork->work, &dwork->timer);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002910}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002911EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002913/**
2914 * schedule_work - put work task in global workqueue
2915 * @work: job to be done
2916 *
Bart Van Assche5b0f437d2009-07-30 19:00:53 +02002917 * Returns zero if @work was already on the kernel-global workqueue and
2918 * non-zero otherwise.
2919 *
2920 * This puts a job in the kernel-global workqueue if it was not already
2921 * queued and leaves it in the same position on the kernel-global
2922 * workqueue otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002923 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002924int schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
Tejun Heod320c032010-06-29 10:07:14 +02002926 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927}
Dave Jonesae90dd52006-06-30 01:40:45 -04002928EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Zhang Ruic1a220e2008-07-23 21:28:39 -07002930/*
2931 * schedule_work_on - put work task on a specific cpu
2932 * @cpu: cpu to put the work task on
2933 * @work: job to be done
2934 *
2935 * This puts a job on a specific cpu
2936 */
2937int schedule_work_on(int cpu, struct work_struct *work)
2938{
Tejun Heod320c032010-06-29 10:07:14 +02002939 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002940}
2941EXPORT_SYMBOL(schedule_work_on);
2942
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002943/**
2944 * schedule_delayed_work - put work task in global workqueue after delay
David Howells52bad642006-11-22 14:54:01 +00002945 * @dwork: job to be done
2946 * @delay: number of jiffies to wait or 0 for immediate execution
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002947 *
2948 * After waiting for a given time this puts a job in the kernel-global
2949 * workqueue.
2950 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002951int schedule_delayed_work(struct delayed_work *dwork,
Ingo Molnar82f67cd2007-02-16 01:28:13 -08002952 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953{
Tejun Heod320c032010-06-29 10:07:14 +02002954 return queue_delayed_work(system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955}
Dave Jonesae90dd52006-06-30 01:40:45 -04002956EXPORT_SYMBOL(schedule_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002958/**
2959 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
2960 * @cpu: cpu to use
David Howells52bad642006-11-22 14:54:01 +00002961 * @dwork: job to be done
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002962 * @delay: number of jiffies to wait
2963 *
2964 * After waiting for a given time this puts a job in the kernel-global
2965 * workqueue on the specified CPU.
2966 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967int schedule_delayed_work_on(int cpu,
David Howells52bad642006-11-22 14:54:01 +00002968 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
Tejun Heod320c032010-06-29 10:07:14 +02002970 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971}
Dave Jonesae90dd52006-06-30 01:40:45 -04002972EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Andrew Mortonb6136772006-06-25 05:47:49 -07002974/**
Tejun Heo31ddd872010-10-19 11:14:49 +02002975 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07002976 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07002977 *
Tejun Heo31ddd872010-10-19 11:14:49 +02002978 * schedule_on_each_cpu() executes @func on each online CPU using the
2979 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07002980 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02002981 *
2982 * RETURNS:
2983 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07002984 */
David Howells65f27f32006-11-22 14:55:48 +00002985int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002986{
2987 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02002988 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08002989
Andrew Mortonb6136772006-06-25 05:47:49 -07002990 works = alloc_percpu(struct work_struct);
2991 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002992 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07002993
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002994 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08002995
Christoph Lameter15316ba2006-01-08 01:00:43 -08002996 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01002997 struct work_struct *work = per_cpu_ptr(works, cpu);
2998
2999 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003000 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003001 }
Tejun Heo93981802009-11-17 14:06:20 -08003002
3003 for_each_online_cpu(cpu)
3004 flush_work(per_cpu_ptr(works, cpu));
3005
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003006 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003007 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003008 return 0;
3009}
3010
Alan Sterneef6a7d2010-02-12 17:39:21 +09003011/**
3012 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3013 *
3014 * Forces execution of the kernel-global workqueue and blocks until its
3015 * completion.
3016 *
3017 * Think twice before calling this function! It's very easy to get into
3018 * trouble if you don't take great care. Either of the following situations
3019 * will lead to deadlock:
3020 *
3021 * One of the work items currently on the workqueue needs to acquire
3022 * a lock held by your code or its caller.
3023 *
3024 * Your code is running in the context of a work routine.
3025 *
3026 * They will be detected by lockdep when they occur, but the first might not
3027 * occur very often. It depends on what work items are on the workqueue and
3028 * what locks they need, which you have no control over.
3029 *
3030 * In most situations flushing the entire workqueue is overkill; you merely
3031 * need to know that a particular work item isn't queued and isn't running.
3032 * In such cases you should use cancel_delayed_work_sync() or
3033 * cancel_work_sync() instead.
3034 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035void flush_scheduled_work(void)
3036{
Tejun Heod320c032010-06-29 10:07:14 +02003037 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038}
Dave Jonesae90dd52006-06-30 01:40:45 -04003039EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
3041/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003042 * execute_in_process_context - reliably execute the routine with user context
3043 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003044 * @ew: guaranteed storage for the execute work structure (must
3045 * be available when the work executes)
3046 *
3047 * Executes the function immediately if process context is available,
3048 * otherwise schedules the function for delayed execution.
3049 *
3050 * Returns: 0 - function was executed
3051 * 1 - function was scheduled for execution
3052 */
David Howells65f27f32006-11-22 14:55:48 +00003053int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003054{
3055 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003056 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003057 return 0;
3058 }
3059
David Howells65f27f32006-11-22 14:55:48 +00003060 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003061 schedule_work(&ew->work);
3062
3063 return 1;
3064}
3065EXPORT_SYMBOL_GPL(execute_in_process_context);
3066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067int keventd_up(void)
3068{
Tejun Heod320c032010-06-29 10:07:14 +02003069 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070}
3071
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003072static int alloc_cwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
Oleg Nesterov3af244332007-05-09 02:34:09 -07003074 /*
Tejun Heo0f900042010-06-29 10:07:11 +02003075 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
3076 * Make sure that the alignment isn't lower than that of
3077 * unsigned long long.
Oleg Nesterov3af244332007-05-09 02:34:09 -07003078 */
Tejun Heo0f900042010-06-29 10:07:11 +02003079 const size_t size = sizeof(struct cpu_workqueue_struct);
3080 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
3081 __alignof__(unsigned long long));
Oleg Nesterov3af244332007-05-09 02:34:09 -07003082
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003083 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02003084 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
Tejun Heo931ac772010-07-20 11:07:48 +02003085 else {
Tejun Heof3421792010-07-02 10:03:51 +02003086 void *ptr;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003087
Tejun Heof3421792010-07-02 10:03:51 +02003088 /*
3089 * Allocate enough room to align cwq and put an extra
3090 * pointer at the end pointing back to the originally
3091 * allocated pointer which will be used for free.
3092 */
3093 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
3094 if (ptr) {
3095 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
3096 *(void **)(wq->cpu_wq.single + 1) = ptr;
3097 }
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003098 }
Tejun Heof3421792010-07-02 10:03:51 +02003099
Tejun Heo0415b00d12011-03-24 18:50:09 +01003100 /* just in case, make sure it's actually aligned */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003101 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
3102 return wq->cpu_wq.v ? 0 : -ENOMEM;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003103}
3104
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003105static void free_cwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003106{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003107 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02003108 free_percpu(wq->cpu_wq.pcpu);
3109 else if (wq->cpu_wq.single) {
3110 /* the pointer to free is stored right after the cwq */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003111 kfree(*(void **)(wq->cpu_wq.single + 1));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003112 }
3113}
3114
Tejun Heof3421792010-07-02 10:03:51 +02003115static int wq_clamp_max_active(int max_active, unsigned int flags,
3116 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003117{
Tejun Heof3421792010-07-02 10:03:51 +02003118 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3119
3120 if (max_active < 1 || max_active > lim)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003121 printk(KERN_WARNING "workqueue: max_active %d requested for %s "
3122 "is out of range, clamping between %d and %d\n",
Tejun Heof3421792010-07-02 10:03:51 +02003123 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003124
Tejun Heof3421792010-07-02 10:03:51 +02003125 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003126}
3127
Tejun Heob196be82012-01-10 15:11:35 -08003128struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003129 unsigned int flags,
3130 int max_active,
3131 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003132 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003133{
Tejun Heob196be82012-01-10 15:11:35 -08003134 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003135 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02003136 unsigned int cpu;
Tejun Heob196be82012-01-10 15:11:35 -08003137 size_t namelen;
3138
3139 /* determine namelen, allocate wq and format name */
3140 va_start(args, lock_name);
3141 va_copy(args1, args);
3142 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3143
3144 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3145 if (!wq)
3146 goto err;
3147
3148 vsnprintf(wq->name, namelen, fmt, args1);
3149 va_end(args);
3150 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003151
Tejun Heof3421792010-07-02 10:03:51 +02003152 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02003153 * Workqueues which may be used during memory reclaim should
3154 * have a rescuer to guarantee forward progress.
3155 */
3156 if (flags & WQ_MEM_RECLAIM)
3157 flags |= WQ_RESCUER;
3158
Tejun Heod320c032010-06-29 10:07:14 +02003159 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003160 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003161
Tejun Heob196be82012-01-10 15:11:35 -08003162 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003163 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003164 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003165 mutex_init(&wq->flush_mutex);
3166 atomic_set(&wq->nr_cwqs_to_flush, 0);
3167 INIT_LIST_HEAD(&wq->flusher_queue);
3168 INIT_LIST_HEAD(&wq->flusher_overflow);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003169
Johannes Bergeb13ba82008-01-16 09:51:58 +01003170 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003171 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003172
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003173 if (alloc_cwqs(wq) < 0)
3174 goto err;
3175
Tejun Heof3421792010-07-02 10:03:51 +02003176 for_each_cwq_cpu(cpu, wq) {
Tejun Heo15376632010-06-29 10:07:11 +02003177 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003178 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo32704762012-07-13 22:16:45 -07003179 int pool_idx = (bool)(flags & WQ_HIGHPRI);
Tejun Heo15376632010-06-29 10:07:11 +02003180
Tejun Heo0f900042010-06-29 10:07:11 +02003181 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo32704762012-07-13 22:16:45 -07003182 cwq->pool = &gcwq->pools[pool_idx];
Tejun Heoc34056a2010-06-29 10:07:11 +02003183 cwq->wq = wq;
Tejun Heo73f53c42010-06-29 10:07:11 +02003184 cwq->flush_color = -1;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003185 cwq->max_active = max_active;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003186 INIT_LIST_HEAD(&cwq->delayed_works);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003187 }
3188
Tejun Heoe22bee72010-06-29 10:07:14 +02003189 if (flags & WQ_RESCUER) {
3190 struct worker *rescuer;
3191
Tejun Heof2e005a2010-07-20 15:59:09 +02003192 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
Tejun Heoe22bee72010-06-29 10:07:14 +02003193 goto err;
3194
3195 wq->rescuer = rescuer = alloc_worker();
3196 if (!rescuer)
3197 goto err;
3198
Tejun Heob196be82012-01-10 15:11:35 -08003199 rescuer->task = kthread_create(rescuer_thread, wq, "%s",
3200 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003201 if (IS_ERR(rescuer->task))
3202 goto err;
3203
Tejun Heoe22bee72010-06-29 10:07:14 +02003204 rescuer->task->flags |= PF_THREAD_BOUND;
3205 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003206 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003207
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003208 /*
3209 * workqueue_lock protects global freeze state and workqueues
3210 * list. Grab it, set max_active accordingly and add the new
3211 * workqueue to workqueues list.
3212 */
Tejun Heo15376632010-06-29 10:07:11 +02003213 spin_lock(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003214
Tejun Heo58a69cb2011-02-16 09:25:31 +01003215 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heof3421792010-07-02 10:03:51 +02003216 for_each_cwq_cpu(cpu, wq)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003217 get_cwq(cpu, wq)->max_active = 0;
3218
Tejun Heo15376632010-06-29 10:07:11 +02003219 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003220
Tejun Heo15376632010-06-29 10:07:11 +02003221 spin_unlock(&workqueue_lock);
3222
Oleg Nesterov3af244332007-05-09 02:34:09 -07003223 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003224err:
3225 if (wq) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003226 free_cwqs(wq);
Tejun Heof2e005a2010-07-20 15:59:09 +02003227 free_mayday_mask(wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02003228 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003229 kfree(wq);
3230 }
3231 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003232}
Tejun Heod320c032010-06-29 10:07:14 +02003233EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003234
3235/**
3236 * destroy_workqueue - safely terminate a workqueue
3237 * @wq: target workqueue
3238 *
3239 * Safely destroy a workqueue. All work currently pending will be done first.
3240 */
3241void destroy_workqueue(struct workqueue_struct *wq)
3242{
Tejun Heoc8e55f32010-06-29 10:07:12 +02003243 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003244
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003245 /* drain it before proceeding with destruction */
3246 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003247
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003248 /*
3249 * wq list is used to freeze wq, remove from list after
3250 * flushing is complete in case freeze races us.
3251 */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003252 spin_lock(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003253 list_del(&wq->list);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003254 spin_unlock(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003255
Tejun Heoe22bee72010-06-29 10:07:14 +02003256 /* sanity check */
Tejun Heof3421792010-07-02 10:03:51 +02003257 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02003258 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3259 int i;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003260
Tejun Heo73f53c42010-06-29 10:07:11 +02003261 for (i = 0; i < WORK_NR_COLORS; i++)
3262 BUG_ON(cwq->nr_in_flight[i]);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003263 BUG_ON(cwq->nr_active);
3264 BUG_ON(!list_empty(&cwq->delayed_works));
Tejun Heo73f53c42010-06-29 10:07:11 +02003265 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003266
Tejun Heoe22bee72010-06-29 10:07:14 +02003267 if (wq->flags & WQ_RESCUER) {
3268 kthread_stop(wq->rescuer->task);
Tejun Heof2e005a2010-07-20 15:59:09 +02003269 free_mayday_mask(wq->mayday_mask);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003270 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003271 }
3272
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003273 free_cwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003274 kfree(wq);
3275}
3276EXPORT_SYMBOL_GPL(destroy_workqueue);
3277
Tejun Heodcd989c2010-06-29 10:07:14 +02003278/**
3279 * workqueue_set_max_active - adjust max_active of a workqueue
3280 * @wq: target workqueue
3281 * @max_active: new max_active value.
3282 *
3283 * Set max_active of @wq to @max_active.
3284 *
3285 * CONTEXT:
3286 * Don't call from IRQ context.
3287 */
3288void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3289{
3290 unsigned int cpu;
3291
Tejun Heof3421792010-07-02 10:03:51 +02003292 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003293
3294 spin_lock(&workqueue_lock);
3295
3296 wq->saved_max_active = max_active;
3297
Tejun Heof3421792010-07-02 10:03:51 +02003298 for_each_cwq_cpu(cpu, wq) {
Tejun Heodcd989c2010-06-29 10:07:14 +02003299 struct global_cwq *gcwq = get_gcwq(cpu);
3300
3301 spin_lock_irq(&gcwq->lock);
3302
Tejun Heo58a69cb2011-02-16 09:25:31 +01003303 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heodcd989c2010-06-29 10:07:14 +02003304 !(gcwq->flags & GCWQ_FREEZING))
3305 get_cwq(gcwq->cpu, wq)->max_active = max_active;
3306
3307 spin_unlock_irq(&gcwq->lock);
3308 }
3309
3310 spin_unlock(&workqueue_lock);
3311}
3312EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3313
3314/**
3315 * workqueue_congested - test whether a workqueue is congested
3316 * @cpu: CPU in question
3317 * @wq: target workqueue
3318 *
3319 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3320 * no synchronization around this function and the test result is
3321 * unreliable and only useful as advisory hints or for debugging.
3322 *
3323 * RETURNS:
3324 * %true if congested, %false otherwise.
3325 */
3326bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
3327{
3328 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3329
3330 return !list_empty(&cwq->delayed_works);
3331}
3332EXPORT_SYMBOL_GPL(workqueue_congested);
3333
3334/**
3335 * work_cpu - return the last known associated cpu for @work
3336 * @work: the work of interest
3337 *
3338 * RETURNS:
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003339 * CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
Tejun Heodcd989c2010-06-29 10:07:14 +02003340 */
3341unsigned int work_cpu(struct work_struct *work)
3342{
3343 struct global_cwq *gcwq = get_work_gcwq(work);
3344
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003345 return gcwq ? gcwq->cpu : WORK_CPU_NONE;
Tejun Heodcd989c2010-06-29 10:07:14 +02003346}
3347EXPORT_SYMBOL_GPL(work_cpu);
3348
3349/**
3350 * work_busy - test whether a work is currently pending or running
3351 * @work: the work to be tested
3352 *
3353 * Test whether @work is currently pending or running. There is no
3354 * synchronization around this function and the test result is
3355 * unreliable and only useful as advisory hints or for debugging.
3356 * Especially for reentrant wqs, the pending state might hide the
3357 * running state.
3358 *
3359 * RETURNS:
3360 * OR'd bitmask of WORK_BUSY_* bits.
3361 */
3362unsigned int work_busy(struct work_struct *work)
3363{
3364 struct global_cwq *gcwq = get_work_gcwq(work);
3365 unsigned long flags;
3366 unsigned int ret = 0;
3367
3368 if (!gcwq)
3369 return false;
3370
3371 spin_lock_irqsave(&gcwq->lock, flags);
3372
3373 if (work_pending(work))
3374 ret |= WORK_BUSY_PENDING;
3375 if (find_worker_executing_work(gcwq, work))
3376 ret |= WORK_BUSY_RUNNING;
3377
3378 spin_unlock_irqrestore(&gcwq->lock, flags);
3379
3380 return ret;
3381}
3382EXPORT_SYMBOL_GPL(work_busy);
3383
Tejun Heodb7bccf2010-06-29 10:07:12 +02003384/*
3385 * CPU hotplug.
3386 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003387 * There are two challenges in supporting CPU hotplug. Firstly, there
3388 * are a lot of assumptions on strong associations among work, cwq and
3389 * gcwq which make migrating pending and scheduled works very
3390 * difficult to implement without impacting hot paths. Secondly,
3391 * gcwqs serve mix of short, long and very long running works making
3392 * blocked draining impractical.
3393 *
Tejun Heo628c78e2012-07-17 12:39:27 -07003394 * This is solved by allowing a gcwq to be disassociated from the CPU
3395 * running as an unbound one and allowing it to be reattached later if the
3396 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003397 */
3398
Tejun Heo60373152012-07-17 12:39:27 -07003399/* claim manager positions of all pools */
Tejun Heo8db25e72012-07-17 12:39:28 -07003400static void gcwq_claim_management_and_lock(struct global_cwq *gcwq)
Tejun Heo60373152012-07-17 12:39:27 -07003401{
3402 struct worker_pool *pool;
3403
3404 for_each_worker_pool(pool, gcwq)
3405 mutex_lock_nested(&pool->manager_mutex, pool - gcwq->pools);
Tejun Heo8db25e72012-07-17 12:39:28 -07003406 spin_lock_irq(&gcwq->lock);
Tejun Heo60373152012-07-17 12:39:27 -07003407}
3408
3409/* release manager positions */
Tejun Heo8db25e72012-07-17 12:39:28 -07003410static void gcwq_release_management_and_unlock(struct global_cwq *gcwq)
Tejun Heo60373152012-07-17 12:39:27 -07003411{
3412 struct worker_pool *pool;
3413
Tejun Heo8db25e72012-07-17 12:39:28 -07003414 spin_unlock_irq(&gcwq->lock);
Tejun Heo60373152012-07-17 12:39:27 -07003415 for_each_worker_pool(pool, gcwq)
3416 mutex_unlock(&pool->manager_mutex);
3417}
3418
Tejun Heo628c78e2012-07-17 12:39:27 -07003419static void gcwq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003420{
Tejun Heo628c78e2012-07-17 12:39:27 -07003421 struct global_cwq *gcwq = get_gcwq(smp_processor_id());
Tejun Heo4ce62e92012-07-13 22:16:44 -07003422 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003423 struct worker *worker;
3424 struct hlist_node *pos;
3425 int i;
3426
3427 BUG_ON(gcwq->cpu != smp_processor_id());
3428
Tejun Heo8db25e72012-07-17 12:39:28 -07003429 gcwq_claim_management_and_lock(gcwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003430
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003431 /*
3432 * We've claimed all manager positions. Make all workers unbound
3433 * and set DISASSOCIATED. Before this, all workers except for the
3434 * ones which are still executing works from before the last CPU
3435 * down must be on the cpu. After this, they may become diasporas.
3436 */
Tejun Heo60373152012-07-17 12:39:27 -07003437 for_each_worker_pool(pool, gcwq)
Tejun Heo4ce62e92012-07-13 22:16:44 -07003438 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003439 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003440
3441 for_each_busy_worker(worker, i, pos, gcwq)
Tejun Heo403c8212012-07-17 12:39:27 -07003442 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003443
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003444 gcwq->flags |= GCWQ_DISASSOCIATED;
3445
Tejun Heo8db25e72012-07-17 12:39:28 -07003446 gcwq_release_management_and_unlock(gcwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003447
3448 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07003449 * Call schedule() so that we cross rq->lock and thus can guarantee
3450 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3451 * as scheduler callbacks may be invoked from other cpus.
3452 */
3453 schedule();
3454
3455 /*
3456 * Sched callbacks are disabled now. Zap nr_running. After this,
3457 * nr_running stays zero and need_more_worker() and keep_working()
3458 * are always true as long as the worklist is not empty. @gcwq now
3459 * behaves as unbound (in terms of concurrency management) gcwq
3460 * which is served by workers tied to the CPU.
3461 *
3462 * On return from this function, the current worker would trigger
3463 * unbound chain execution of pending work items if other workers
3464 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02003465 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003466 for_each_worker_pool(pool, gcwq)
3467 atomic_set(get_pool_nr_running(pool), 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003468}
3469
Tejun Heo8db25e72012-07-17 12:39:28 -07003470/*
3471 * Workqueues should be brought up before normal priority CPU notifiers.
3472 * This will be registered high priority CPU notifier.
3473 */
3474static int __devinit workqueue_cpu_up_callback(struct notifier_block *nfb,
3475 unsigned long action,
3476 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003477{
3478 unsigned int cpu = (unsigned long)hcpu;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003479 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003480 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Tejun Heo8db25e72012-07-17 12:39:28 -07003482 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 case CPU_UP_PREPARE:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003484 for_each_worker_pool(pool, gcwq) {
Tejun Heo3ce63372012-07-17 12:39:27 -07003485 struct worker *worker;
3486
3487 if (pool->nr_workers)
3488 continue;
3489
3490 worker = create_worker(pool);
3491 if (!worker)
3492 return NOTIFY_BAD;
3493
3494 spin_lock_irq(&gcwq->lock);
3495 start_worker(worker);
3496 spin_unlock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003498 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003499
Tejun Heo65758202012-07-17 12:39:26 -07003500 case CPU_DOWN_FAILED:
3501 case CPU_ONLINE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003502 gcwq_claim_management_and_lock(gcwq);
3503 gcwq->flags &= ~GCWQ_DISASSOCIATED;
3504 rebind_workers(gcwq);
3505 gcwq_release_management_and_unlock(gcwq);
3506 break;
Tejun Heo65758202012-07-17 12:39:26 -07003507 }
3508 return NOTIFY_OK;
3509}
3510
3511/*
3512 * Workqueues should be brought down after normal priority CPU notifiers.
3513 * This will be registered as low priority CPU notifier.
3514 */
3515static int __devinit workqueue_cpu_down_callback(struct notifier_block *nfb,
3516 unsigned long action,
3517 void *hcpu)
3518{
Tejun Heo8db25e72012-07-17 12:39:28 -07003519 unsigned int cpu = (unsigned long)hcpu;
3520 struct work_struct unbind_work;
3521
Tejun Heo65758202012-07-17 12:39:26 -07003522 switch (action & ~CPU_TASKS_FROZEN) {
3523 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003524 /* unbinding should happen on the local CPU */
3525 INIT_WORK_ONSTACK(&unbind_work, gcwq_unbind_fn);
3526 schedule_work_on(cpu, &unbind_work);
3527 flush_work(&unbind_work);
3528 break;
Tejun Heo65758202012-07-17 12:39:26 -07003529 }
3530 return NOTIFY_OK;
3531}
3532
Rusty Russell2d3854a2008-11-05 13:39:10 +11003533#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003534
Rusty Russell2d3854a2008-11-05 13:39:10 +11003535struct work_for_cpu {
Andrew Morton6b44003e2009-04-09 09:50:37 -06003536 struct completion completion;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003537 long (*fn)(void *);
3538 void *arg;
3539 long ret;
3540};
3541
Andrew Morton6b44003e2009-04-09 09:50:37 -06003542static int do_work_for_cpu(void *_wfc)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003543{
Andrew Morton6b44003e2009-04-09 09:50:37 -06003544 struct work_for_cpu *wfc = _wfc;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003545 wfc->ret = wfc->fn(wfc->arg);
Andrew Morton6b44003e2009-04-09 09:50:37 -06003546 complete(&wfc->completion);
3547 return 0;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003548}
3549
3550/**
3551 * work_on_cpu - run a function in user context on a particular cpu
3552 * @cpu: the cpu to run on
3553 * @fn: the function to run
3554 * @arg: the function arg
3555 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003556 * This will return the value @fn returns.
3557 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b44003e2009-04-09 09:50:37 -06003558 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003559 */
3560long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3561{
Andrew Morton6b44003e2009-04-09 09:50:37 -06003562 struct task_struct *sub_thread;
3563 struct work_for_cpu wfc = {
3564 .completion = COMPLETION_INITIALIZER_ONSTACK(wfc.completion),
3565 .fn = fn,
3566 .arg = arg,
3567 };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003568
Andrew Morton6b44003e2009-04-09 09:50:37 -06003569 sub_thread = kthread_create(do_work_for_cpu, &wfc, "work_for_cpu");
3570 if (IS_ERR(sub_thread))
3571 return PTR_ERR(sub_thread);
3572 kthread_bind(sub_thread, cpu);
3573 wake_up_process(sub_thread);
3574 wait_for_completion(&wfc.completion);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003575 return wfc.ret;
3576}
3577EXPORT_SYMBOL_GPL(work_on_cpu);
3578#endif /* CONFIG_SMP */
3579
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003580#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303581
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003582/**
3583 * freeze_workqueues_begin - begin freezing workqueues
3584 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003585 * Start freezing workqueues. After this function returns, all freezable
3586 * workqueues will queue new works to their frozen_works list instead of
3587 * gcwq->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003588 *
3589 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003590 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003591 */
3592void freeze_workqueues_begin(void)
3593{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003594 unsigned int cpu;
3595
3596 spin_lock(&workqueue_lock);
3597
3598 BUG_ON(workqueue_freezing);
3599 workqueue_freezing = true;
3600
Tejun Heof3421792010-07-02 10:03:51 +02003601 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003602 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003603 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003604
3605 spin_lock_irq(&gcwq->lock);
3606
Tejun Heodb7bccf2010-06-29 10:07:12 +02003607 BUG_ON(gcwq->flags & GCWQ_FREEZING);
3608 gcwq->flags |= GCWQ_FREEZING;
3609
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003610 list_for_each_entry(wq, &workqueues, list) {
3611 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3612
Tejun Heo58a69cb2011-02-16 09:25:31 +01003613 if (cwq && wq->flags & WQ_FREEZABLE)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003614 cwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003615 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003616
3617 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003618 }
3619
3620 spin_unlock(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003622
3623/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003624 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003625 *
3626 * Check whether freezing is complete. This function must be called
3627 * between freeze_workqueues_begin() and thaw_workqueues().
3628 *
3629 * CONTEXT:
3630 * Grabs and releases workqueue_lock.
3631 *
3632 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003633 * %true if some freezable workqueues are still busy. %false if freezing
3634 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003635 */
3636bool freeze_workqueues_busy(void)
3637{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003638 unsigned int cpu;
3639 bool busy = false;
3640
3641 spin_lock(&workqueue_lock);
3642
3643 BUG_ON(!workqueue_freezing);
3644
Tejun Heof3421792010-07-02 10:03:51 +02003645 for_each_gcwq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003646 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003647 /*
3648 * nr_active is monotonically decreasing. It's safe
3649 * to peek without lock.
3650 */
3651 list_for_each_entry(wq, &workqueues, list) {
3652 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3653
Tejun Heo58a69cb2011-02-16 09:25:31 +01003654 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003655 continue;
3656
3657 BUG_ON(cwq->nr_active < 0);
3658 if (cwq->nr_active) {
3659 busy = true;
3660 goto out_unlock;
3661 }
3662 }
3663 }
3664out_unlock:
3665 spin_unlock(&workqueue_lock);
3666 return busy;
3667}
3668
3669/**
3670 * thaw_workqueues - thaw workqueues
3671 *
3672 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo7e116292010-06-29 10:07:13 +02003673 * frozen works are transferred to their respective gcwq worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003674 *
3675 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003676 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003677 */
3678void thaw_workqueues(void)
3679{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003680 unsigned int cpu;
3681
3682 spin_lock(&workqueue_lock);
3683
3684 if (!workqueue_freezing)
3685 goto out_unlock;
3686
Tejun Heof3421792010-07-02 10:03:51 +02003687 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003688 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003689 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003690 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003691
3692 spin_lock_irq(&gcwq->lock);
3693
Tejun Heodb7bccf2010-06-29 10:07:12 +02003694 BUG_ON(!(gcwq->flags & GCWQ_FREEZING));
3695 gcwq->flags &= ~GCWQ_FREEZING;
3696
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003697 list_for_each_entry(wq, &workqueues, list) {
3698 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3699
Tejun Heo58a69cb2011-02-16 09:25:31 +01003700 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003701 continue;
3702
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003703 /* restore max_active and repopulate worklist */
3704 cwq->max_active = wq->saved_max_active;
3705
3706 while (!list_empty(&cwq->delayed_works) &&
3707 cwq->nr_active < cwq->max_active)
3708 cwq_activate_first_delayed(cwq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003709 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003710
Tejun Heo4ce62e92012-07-13 22:16:44 -07003711 for_each_worker_pool(pool, gcwq)
3712 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02003713
Tejun Heo8b03ae32010-06-29 10:07:12 +02003714 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003715 }
3716
3717 workqueue_freezing = false;
3718out_unlock:
3719 spin_unlock(&workqueue_lock);
3720}
3721#endif /* CONFIG_FREEZER */
3722
Suresh Siddha6ee05782010-07-30 14:57:37 -07003723static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724{
Tejun Heoc34056a2010-06-29 10:07:11 +02003725 unsigned int cpu;
Tejun Heoc8e55f32010-06-29 10:07:12 +02003726 int i;
Tejun Heoc34056a2010-06-29 10:07:11 +02003727
Tejun Heo65758202012-07-17 12:39:26 -07003728 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
3729 cpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003730
3731 /* initialize gcwqs */
Tejun Heof3421792010-07-02 10:03:51 +02003732 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003733 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003734 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003735
3736 spin_lock_init(&gcwq->lock);
3737 gcwq->cpu = cpu;
Tejun Heo477a3c32010-08-31 10:54:35 +02003738 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003739
Tejun Heoc8e55f32010-06-29 10:07:12 +02003740 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++)
3741 INIT_HLIST_HEAD(&gcwq->busy_hash[i]);
3742
Tejun Heo4ce62e92012-07-13 22:16:44 -07003743 for_each_worker_pool(pool, gcwq) {
3744 pool->gcwq = gcwq;
3745 INIT_LIST_HEAD(&pool->worklist);
3746 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoe22bee72010-06-29 10:07:14 +02003747
Tejun Heo4ce62e92012-07-13 22:16:44 -07003748 init_timer_deferrable(&pool->idle_timer);
3749 pool->idle_timer.function = idle_worker_timeout;
3750 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003751
Tejun Heo4ce62e92012-07-13 22:16:44 -07003752 setup_timer(&pool->mayday_timer, gcwq_mayday_timeout,
3753 (unsigned long)pool);
3754
Tejun Heo60373152012-07-17 12:39:27 -07003755 mutex_init(&pool->manager_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003756 ida_init(&pool->worker_ida);
3757 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003758
Tejun Heo25511a42012-07-17 12:39:27 -07003759 init_waitqueue_head(&gcwq->rebind_hold);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003760 }
3761
Tejun Heoe22bee72010-06-29 10:07:14 +02003762 /* create the initial worker */
Tejun Heof3421792010-07-02 10:03:51 +02003763 for_each_online_gcwq_cpu(cpu) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003764 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003765 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003766
Tejun Heo477a3c32010-08-31 10:54:35 +02003767 if (cpu != WORK_CPU_UNBOUND)
3768 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003769
3770 for_each_worker_pool(pool, gcwq) {
3771 struct worker *worker;
3772
Tejun Heobc2ae0f2012-07-17 12:39:27 -07003773 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003774 BUG_ON(!worker);
3775 spin_lock_irq(&gcwq->lock);
3776 start_worker(worker);
3777 spin_unlock_irq(&gcwq->lock);
3778 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003779 }
3780
Tejun Heod320c032010-06-29 10:07:14 +02003781 system_wq = alloc_workqueue("events", 0, 0);
3782 system_long_wq = alloc_workqueue("events_long", 0, 0);
3783 system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003784 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3785 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003786 system_freezable_wq = alloc_workqueue("events_freezable",
3787 WQ_FREEZABLE, 0);
Alan Stern62d3c542012-03-02 10:51:00 +01003788 system_nrt_freezable_wq = alloc_workqueue("events_nrt_freezable",
3789 WQ_NON_REENTRANT | WQ_FREEZABLE, 0);
Hitoshi Mitakee5cba242010-11-26 12:06:44 +01003790 BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq ||
Alan Stern62d3c542012-03-02 10:51:00 +01003791 !system_unbound_wq || !system_freezable_wq ||
3792 !system_nrt_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003793 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003795early_initcall(init_workqueues);