blob: 3c5a79e2134cac6f404673093a84df5c8b371d80 [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
Lai Jiangshan960bd112012-09-17 15:42:31 -07001352 worker_maybe_bind_and_lock(worker);
1353
1354 /*
1355 * %WORKER_REBIND must be cleared even if the above binding failed;
1356 * otherwise, we may confuse the next CPU_UP cycle or oops / get
1357 * stuck by calling idle_worker_rebind() prematurely. If CPU went
1358 * down again inbetween, %WORKER_UNBOUND would be set, so clearing
1359 * %WORKER_REBIND is always safe.
1360 */
1361 worker_clr_flags(worker, WORKER_REBIND);
Tejun Heoe22bee72010-06-29 10:07:14 +02001362
1363 spin_unlock_irq(&gcwq->lock);
1364}
1365
Tejun Heo25511a42012-07-17 12:39:27 -07001366/**
1367 * rebind_workers - rebind all workers of a gcwq to the associated CPU
1368 * @gcwq: gcwq of interest
1369 *
1370 * @gcwq->cpu is coming online. Rebind all workers to the CPU. Rebinding
1371 * is different for idle and busy ones.
1372 *
1373 * The idle ones should be rebound synchronously and idle rebinding should
1374 * be complete before any worker starts executing work items with
1375 * concurrency management enabled; otherwise, scheduler may oops trying to
1376 * wake up non-local idle worker from wq_worker_sleeping().
1377 *
1378 * This is achieved by repeatedly requesting rebinding until all idle
1379 * workers are known to have been rebound under @gcwq->lock and holding all
1380 * idle workers from becoming busy until idle rebinding is complete.
1381 *
1382 * Once idle workers are rebound, busy workers can be rebound as they
1383 * finish executing their current work items. Queueing the rebind work at
1384 * the head of their scheduled lists is enough. Note that nr_running will
1385 * be properbly bumped as busy workers rebind.
1386 *
1387 * On return, all workers are guaranteed to either be bound or have rebind
1388 * work item scheduled.
1389 */
1390static void rebind_workers(struct global_cwq *gcwq)
1391 __releases(&gcwq->lock) __acquires(&gcwq->lock)
1392{
1393 struct idle_rebind idle_rebind;
1394 struct worker_pool *pool;
1395 struct worker *worker;
1396 struct hlist_node *pos;
1397 int i;
1398
1399 lockdep_assert_held(&gcwq->lock);
1400
1401 for_each_worker_pool(pool, gcwq)
1402 lockdep_assert_held(&pool->manager_mutex);
1403
1404 /*
1405 * Rebind idle workers. Interlocked both ways. We wait for
1406 * workers to rebind via @idle_rebind.done. Workers will wait for
1407 * us to finish up by watching %WORKER_REBIND.
1408 */
1409 init_completion(&idle_rebind.done);
1410retry:
1411 idle_rebind.cnt = 1;
1412 INIT_COMPLETION(idle_rebind.done);
1413
1414 /* set REBIND and kick idle ones, we'll wait for these later */
1415 for_each_worker_pool(pool, gcwq) {
1416 list_for_each_entry(worker, &pool->idle_list, entry) {
Lai Jiangshan96e65302012-09-02 00:28:19 +08001417 unsigned long worker_flags = worker->flags;
1418
Tejun Heo25511a42012-07-17 12:39:27 -07001419 if (worker->flags & WORKER_REBIND)
1420 continue;
1421
Lai Jiangshan96e65302012-09-02 00:28:19 +08001422 /* morph UNBOUND to REBIND atomically */
1423 worker_flags &= ~WORKER_UNBOUND;
1424 worker_flags |= WORKER_REBIND;
1425 ACCESS_ONCE(worker->flags) = worker_flags;
Tejun Heo25511a42012-07-17 12:39:27 -07001426
1427 idle_rebind.cnt++;
1428 worker->idle_rebind = &idle_rebind;
1429
1430 /* worker_thread() will call idle_worker_rebind() */
1431 wake_up_process(worker->task);
1432 }
1433 }
1434
1435 if (--idle_rebind.cnt) {
1436 spin_unlock_irq(&gcwq->lock);
1437 wait_for_completion(&idle_rebind.done);
1438 spin_lock_irq(&gcwq->lock);
1439 /* busy ones might have become idle while waiting, retry */
1440 goto retry;
1441 }
1442
Tejun Heo90beca52012-09-04 23:12:33 -07001443 /* all idle workers are rebound, rebind busy workers */
Tejun Heo25511a42012-07-17 12:39:27 -07001444 for_each_busy_worker(worker, i, pos, gcwq) {
1445 struct work_struct *rebind_work = &worker->rebind_work;
Lai Jiangshan96e65302012-09-02 00:28:19 +08001446 unsigned long worker_flags = worker->flags;
Tejun Heo25511a42012-07-17 12:39:27 -07001447
Lai Jiangshan96e65302012-09-02 00:28:19 +08001448 /* morph UNBOUND to REBIND atomically */
1449 worker_flags &= ~WORKER_UNBOUND;
1450 worker_flags |= WORKER_REBIND;
1451 ACCESS_ONCE(worker->flags) = worker_flags;
Tejun Heo25511a42012-07-17 12:39:27 -07001452
1453 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1454 work_data_bits(rebind_work)))
1455 continue;
1456
1457 /* wq doesn't matter, use the default one */
1458 debug_work_activate(rebind_work);
1459 insert_work(get_cwq(gcwq->cpu, system_wq), rebind_work,
1460 worker->scheduled.next,
1461 work_color_to_flags(WORK_NO_COLOR));
1462 }
Tejun Heo90beca52012-09-04 23:12:33 -07001463
1464 /*
1465 * All idle workers are rebound and waiting for %WORKER_REBIND to
1466 * be cleared inside idle_worker_rebind(). Clear and release.
1467 * Clearing %WORKER_REBIND from this foreign context is safe
1468 * because these workers are still guaranteed to be idle.
Tejun Heoec588152012-09-04 23:16:32 -07001469 *
1470 * We need to make sure all idle workers passed WORKER_REBIND wait
1471 * in idle_worker_rebind() before returning; otherwise, workers can
1472 * get stuck at the wait if hotplug cycle repeats.
Tejun Heo90beca52012-09-04 23:12:33 -07001473 */
Tejun Heoec588152012-09-04 23:16:32 -07001474 idle_rebind.cnt = 1;
1475 INIT_COMPLETION(idle_rebind.done);
1476
1477 for_each_worker_pool(pool, gcwq) {
1478 list_for_each_entry(worker, &pool->idle_list, entry) {
Tejun Heo90beca52012-09-04 23:12:33 -07001479 worker->flags &= ~WORKER_REBIND;
Tejun Heoec588152012-09-04 23:16:32 -07001480 idle_rebind.cnt++;
1481 }
1482 }
Tejun Heo90beca52012-09-04 23:12:33 -07001483
1484 wake_up_all(&gcwq->rebind_hold);
Tejun Heoec588152012-09-04 23:16:32 -07001485
1486 if (--idle_rebind.cnt) {
1487 spin_unlock_irq(&gcwq->lock);
1488 wait_for_completion(&idle_rebind.done);
1489 spin_lock_irq(&gcwq->lock);
1490 }
Tejun Heo25511a42012-07-17 12:39:27 -07001491}
1492
Tejun Heoc34056a2010-06-29 10:07:11 +02001493static struct worker *alloc_worker(void)
1494{
1495 struct worker *worker;
1496
1497 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001498 if (worker) {
1499 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001500 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001501 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001502 /* on creation a worker is in !idle && prep state */
1503 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001504 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001505 return worker;
1506}
1507
1508/**
1509 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001510 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001511 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001512 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001513 * can be started by calling start_worker() or destroyed using
1514 * destroy_worker().
1515 *
1516 * CONTEXT:
1517 * Might sleep. Does GFP_KERNEL allocations.
1518 *
1519 * RETURNS:
1520 * Pointer to the newly created worker.
1521 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001522static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001523{
Tejun Heo63d95a92012-07-12 14:46:37 -07001524 struct global_cwq *gcwq = pool->gcwq;
Tejun Heo32704762012-07-13 22:16:45 -07001525 const char *pri = worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001526 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001527 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001528
Tejun Heo8b03ae32010-06-29 10:07:12 +02001529 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001530 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001531 spin_unlock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001532 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001533 goto fail;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001534 spin_lock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001535 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02001536 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001537
1538 worker = alloc_worker();
1539 if (!worker)
1540 goto fail;
1541
Tejun Heobd7bdd42012-07-12 14:46:37 -07001542 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001543 worker->id = id;
1544
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001545 if (gcwq->cpu != WORK_CPU_UNBOUND)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001546 worker->task = kthread_create_on_node(worker_thread,
Tejun Heo32704762012-07-13 22:16:45 -07001547 worker, cpu_to_node(gcwq->cpu),
1548 "kworker/%u:%d%s", gcwq->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001549 else
1550 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001551 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001552 if (IS_ERR(worker->task))
1553 goto fail;
1554
Tejun Heo32704762012-07-13 22:16:45 -07001555 if (worker_pool_pri(pool))
1556 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1557
Tejun Heodb7bccf2010-06-29 10:07:12 +02001558 /*
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001559 * Determine CPU binding of the new worker depending on
1560 * %GCWQ_DISASSOCIATED. The caller is responsible for ensuring the
1561 * flag remains stable across this function. See the comments
1562 * above the flag definition for details.
1563 *
1564 * As an unbound worker may later become a regular one if CPU comes
1565 * online, make sure every worker has %PF_THREAD_BOUND set.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001566 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001567 if (!(gcwq->flags & GCWQ_DISASSOCIATED)) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001568 kthread_bind(worker->task, gcwq->cpu);
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001569 } else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001570 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001571 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001573
Tejun Heoc34056a2010-06-29 10:07:11 +02001574 return worker;
1575fail:
1576 if (id >= 0) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001577 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001578 ida_remove(&pool->worker_ida, id);
Tejun Heo8b03ae32010-06-29 10:07:12 +02001579 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001580 }
1581 kfree(worker);
1582 return NULL;
1583}
1584
1585/**
1586 * start_worker - start a newly created worker
1587 * @worker: worker to start
1588 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001589 * Make the gcwq aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001590 *
1591 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001592 * spin_lock_irq(gcwq->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001593 */
1594static void start_worker(struct worker *worker)
1595{
Tejun Heocb444762010-07-02 10:03:50 +02001596 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001597 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001598 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001599 wake_up_process(worker->task);
1600}
1601
1602/**
1603 * destroy_worker - destroy a workqueue worker
1604 * @worker: worker to be destroyed
1605 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001606 * Destroy @worker and adjust @gcwq stats accordingly.
1607 *
1608 * CONTEXT:
1609 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001610 */
1611static void destroy_worker(struct worker *worker)
1612{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001613 struct worker_pool *pool = worker->pool;
1614 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001615 int id = worker->id;
1616
1617 /* sanity check frenzy */
1618 BUG_ON(worker->current_work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001619 BUG_ON(!list_empty(&worker->scheduled));
Tejun Heoc34056a2010-06-29 10:07:11 +02001620
Tejun Heoc8e55f32010-06-29 10:07:12 +02001621 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001622 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001623 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001624 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001625
1626 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001627 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001628
1629 spin_unlock_irq(&gcwq->lock);
1630
Tejun Heoc34056a2010-06-29 10:07:11 +02001631 kthread_stop(worker->task);
1632 kfree(worker);
1633
Tejun Heo8b03ae32010-06-29 10:07:12 +02001634 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001635 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001636}
1637
Tejun Heo63d95a92012-07-12 14:46:37 -07001638static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001639{
Tejun Heo63d95a92012-07-12 14:46:37 -07001640 struct worker_pool *pool = (void *)__pool;
1641 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001642
1643 spin_lock_irq(&gcwq->lock);
1644
Tejun Heo63d95a92012-07-12 14:46:37 -07001645 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001646 struct worker *worker;
1647 unsigned long expires;
1648
1649 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001650 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001651 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1652
1653 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001654 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001655 else {
1656 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001657 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001658 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001659 }
1660 }
1661
1662 spin_unlock_irq(&gcwq->lock);
1663}
1664
1665static bool send_mayday(struct work_struct *work)
1666{
1667 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1668 struct workqueue_struct *wq = cwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001669 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001670
1671 if (!(wq->flags & WQ_RESCUER))
1672 return false;
1673
1674 /* mayday mayday mayday */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001675 cpu = cwq->pool->gcwq->cpu;
Tejun Heof3421792010-07-02 10:03:51 +02001676 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1677 if (cpu == WORK_CPU_UNBOUND)
1678 cpu = 0;
Tejun Heof2e005a2010-07-20 15:59:09 +02001679 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001680 wake_up_process(wq->rescuer->task);
1681 return true;
1682}
1683
Tejun Heo63d95a92012-07-12 14:46:37 -07001684static void gcwq_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001685{
Tejun Heo63d95a92012-07-12 14:46:37 -07001686 struct worker_pool *pool = (void *)__pool;
1687 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001688 struct work_struct *work;
1689
1690 spin_lock_irq(&gcwq->lock);
1691
Tejun Heo63d95a92012-07-12 14:46:37 -07001692 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001693 /*
1694 * We've been trying to create a new worker but
1695 * haven't been successful. We might be hitting an
1696 * allocation deadlock. Send distress signals to
1697 * rescuers.
1698 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001699 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001700 send_mayday(work);
1701 }
1702
1703 spin_unlock_irq(&gcwq->lock);
1704
Tejun Heo63d95a92012-07-12 14:46:37 -07001705 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001706}
1707
1708/**
1709 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001710 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001711 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001712 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001713 * have at least one idle worker on return from this function. If
1714 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001715 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001716 * possible allocation deadlock.
1717 *
1718 * On return, need_to_create_worker() is guaranteed to be false and
1719 * may_start_working() true.
1720 *
1721 * LOCKING:
1722 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1723 * multiple times. Does GFP_KERNEL allocations. Called only from
1724 * manager.
1725 *
1726 * RETURNS:
1727 * false if no action was taken and gcwq->lock stayed locked, true
1728 * otherwise.
1729 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001730static bool maybe_create_worker(struct worker_pool *pool)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001731__releases(&gcwq->lock)
1732__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001733{
Tejun Heo63d95a92012-07-12 14:46:37 -07001734 struct global_cwq *gcwq = pool->gcwq;
1735
1736 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001737 return false;
1738restart:
Tejun Heo9f9c2362010-07-14 11:31:20 +02001739 spin_unlock_irq(&gcwq->lock);
1740
Tejun Heoe22bee72010-06-29 10:07:14 +02001741 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001742 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001743
1744 while (true) {
1745 struct worker *worker;
1746
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001747 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001748 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001749 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001750 spin_lock_irq(&gcwq->lock);
1751 start_worker(worker);
Tejun Heo63d95a92012-07-12 14:46:37 -07001752 BUG_ON(need_to_create_worker(pool));
Tejun Heoe22bee72010-06-29 10:07:14 +02001753 return true;
1754 }
1755
Tejun Heo63d95a92012-07-12 14:46:37 -07001756 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001757 break;
1758
Tejun Heoe22bee72010-06-29 10:07:14 +02001759 __set_current_state(TASK_INTERRUPTIBLE);
1760 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001761
Tejun Heo63d95a92012-07-12 14:46:37 -07001762 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001763 break;
1764 }
1765
Tejun Heo63d95a92012-07-12 14:46:37 -07001766 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001767 spin_lock_irq(&gcwq->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001768 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001769 goto restart;
1770 return true;
1771}
1772
1773/**
1774 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001775 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001776 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001777 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001778 * IDLE_WORKER_TIMEOUT.
1779 *
1780 * LOCKING:
1781 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1782 * multiple times. Called only from manager.
1783 *
1784 * RETURNS:
1785 * false if no action was taken and gcwq->lock stayed locked, true
1786 * otherwise.
1787 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001788static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001789{
1790 bool ret = false;
1791
Tejun Heo63d95a92012-07-12 14:46:37 -07001792 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001793 struct worker *worker;
1794 unsigned long expires;
1795
Tejun Heo63d95a92012-07-12 14:46:37 -07001796 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001797 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1798
1799 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001800 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001801 break;
1802 }
1803
1804 destroy_worker(worker);
1805 ret = true;
1806 }
1807
1808 return ret;
1809}
1810
1811/**
1812 * manage_workers - manage worker pool
1813 * @worker: self
1814 *
1815 * Assume the manager role and manage gcwq worker pool @worker belongs
1816 * to. At any given time, there can be only zero or one manager per
1817 * gcwq. The exclusion is handled automatically by this function.
1818 *
1819 * The caller can safely start processing works on false return. On
1820 * true return, it's guaranteed that need_to_create_worker() is false
1821 * and may_start_working() is true.
1822 *
1823 * CONTEXT:
1824 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1825 * multiple times. Does GFP_KERNEL allocations.
1826 *
1827 * RETURNS:
1828 * false if no action was taken and gcwq->lock stayed locked, true if
1829 * some action was taken.
1830 */
1831static bool manage_workers(struct worker *worker)
1832{
Tejun Heo63d95a92012-07-12 14:46:37 -07001833 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001834 bool ret = false;
1835
Lai Jiangshanee378aa2012-09-10 10:03:44 -07001836 if (pool->flags & POOL_MANAGING_WORKERS)
Tejun Heoe22bee72010-06-29 10:07:14 +02001837 return ret;
1838
Lai Jiangshan552a37e2012-09-10 10:03:33 -07001839 pool->flags |= POOL_MANAGING_WORKERS;
Lai Jiangshanee378aa2012-09-10 10:03:44 -07001840
1841 /*
1842 * To simplify both worker management and CPU hotplug, hold off
1843 * management while hotplug is in progress. CPU hotplug path can't
1844 * grab %POOL_MANAGING_WORKERS to achieve this because that can
1845 * lead to idle worker depletion (all become busy thinking someone
1846 * else is managing) which in turn can result in deadlock under
1847 * extreme circumstances. Use @pool->manager_mutex to synchronize
1848 * manager against CPU hotplug.
1849 *
1850 * manager_mutex would always be free unless CPU hotplug is in
1851 * progress. trylock first without dropping @gcwq->lock.
1852 */
1853 if (unlikely(!mutex_trylock(&pool->manager_mutex))) {
1854 spin_unlock_irq(&pool->gcwq->lock);
1855 mutex_lock(&pool->manager_mutex);
1856 /*
1857 * CPU hotplug could have happened while we were waiting
1858 * for manager_mutex. Hotplug itself can't handle us
1859 * because manager isn't either on idle or busy list, and
1860 * @gcwq's state and ours could have deviated.
1861 *
1862 * As hotplug is now excluded via manager_mutex, we can
1863 * simply try to bind. It will succeed or fail depending
1864 * on @gcwq's current state. Try it and adjust
1865 * %WORKER_UNBOUND accordingly.
1866 */
1867 if (worker_maybe_bind_and_lock(worker))
1868 worker->flags &= ~WORKER_UNBOUND;
1869 else
1870 worker->flags |= WORKER_UNBOUND;
1871
1872 ret = true;
1873 }
1874
Tejun Heo11ebea52012-07-12 14:46:37 -07001875 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02001876
1877 /*
1878 * Destroy and then create so that may_start_working() is true
1879 * on return.
1880 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001881 ret |= maybe_destroy_workers(pool);
1882 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001883
Lai Jiangshan552a37e2012-09-10 10:03:33 -07001884 pool->flags &= ~POOL_MANAGING_WORKERS;
Tejun Heo60373152012-07-17 12:39:27 -07001885 mutex_unlock(&pool->manager_mutex);
Tejun Heoe22bee72010-06-29 10:07:14 +02001886 return ret;
1887}
1888
Tejun Heoa62428c2010-06-29 10:07:10 +02001889/**
Tejun Heoaffee4b2010-06-29 10:07:12 +02001890 * move_linked_works - move linked works to a list
1891 * @work: start of series of works to be scheduled
1892 * @head: target list to append @work to
1893 * @nextp: out paramter for nested worklist walking
1894 *
1895 * Schedule linked works starting from @work to @head. Work series to
1896 * be scheduled starts at @work and includes any consecutive work with
1897 * WORK_STRUCT_LINKED set in its predecessor.
1898 *
1899 * If @nextp is not NULL, it's updated to point to the next work of
1900 * the last scheduled work. This allows move_linked_works() to be
1901 * nested inside outer list_for_each_entry_safe().
1902 *
1903 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001904 * spin_lock_irq(gcwq->lock).
Tejun Heoaffee4b2010-06-29 10:07:12 +02001905 */
1906static void move_linked_works(struct work_struct *work, struct list_head *head,
1907 struct work_struct **nextp)
1908{
1909 struct work_struct *n;
1910
1911 /*
1912 * Linked worklist will always end before the end of the list,
1913 * use NULL for list head.
1914 */
1915 list_for_each_entry_safe_from(work, n, NULL, entry) {
1916 list_move_tail(&work->entry, head);
1917 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
1918 break;
1919 }
1920
1921 /*
1922 * If we're already inside safe list traversal and have moved
1923 * multiple works to the scheduled queue, the next position
1924 * needs to be updated.
1925 */
1926 if (nextp)
1927 *nextp = n;
1928}
1929
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001930static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
1931{
1932 struct work_struct *work = list_first_entry(&cwq->delayed_works,
1933 struct work_struct, entry);
1934
Tejun Heocdadf002010-10-05 10:49:55 +02001935 trace_workqueue_activate_work(work);
Tejun Heo32704762012-07-13 22:16:45 -07001936 move_linked_works(work, &cwq->pool->worklist, NULL);
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001937 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001938 cwq->nr_active++;
1939}
1940
Tejun Heoaffee4b2010-06-29 10:07:12 +02001941/**
Tejun Heo73f53c42010-06-29 10:07:11 +02001942 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
1943 * @cwq: cwq of interest
1944 * @color: color of work which left the queue
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001945 * @delayed: for a delayed work
Tejun Heo73f53c42010-06-29 10:07:11 +02001946 *
1947 * A work either has completed or is removed from pending queue,
1948 * decrement nr_in_flight of its cwq and handle workqueue flushing.
1949 *
1950 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001951 * spin_lock_irq(gcwq->lock).
Tejun Heo73f53c42010-06-29 10:07:11 +02001952 */
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001953static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color,
1954 bool delayed)
Tejun Heo73f53c42010-06-29 10:07:11 +02001955{
1956 /* ignore uncolored works */
1957 if (color == WORK_NO_COLOR)
1958 return;
1959
1960 cwq->nr_in_flight[color]--;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001961
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001962 if (!delayed) {
1963 cwq->nr_active--;
1964 if (!list_empty(&cwq->delayed_works)) {
1965 /* one down, submit a delayed one */
1966 if (cwq->nr_active < cwq->max_active)
1967 cwq_activate_first_delayed(cwq);
1968 }
Tejun Heo502ca9d2010-06-29 10:07:13 +02001969 }
Tejun Heo73f53c42010-06-29 10:07:11 +02001970
1971 /* is flush in progress and are we at the flushing tip? */
1972 if (likely(cwq->flush_color != color))
1973 return;
1974
1975 /* are there still in-flight works? */
1976 if (cwq->nr_in_flight[color])
1977 return;
1978
1979 /* this cwq is done, clear flush_color */
1980 cwq->flush_color = -1;
1981
1982 /*
1983 * If this was the last cwq, wake up the first flusher. It
1984 * will handle the rest.
1985 */
1986 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
1987 complete(&cwq->wq->first_flusher->done);
1988}
1989
1990/**
Tejun Heoa62428c2010-06-29 10:07:10 +02001991 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02001992 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02001993 * @work: work to process
1994 *
1995 * Process @work. This function contains all the logics necessary to
1996 * process a single work including synchronization against and
1997 * interaction with other workers on the same cpu, queueing and
1998 * flushing. As long as context requirement is met, any worker can
1999 * call this function to process a work.
2000 *
2001 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002002 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002003 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002004static void process_one_work(struct worker *worker, struct work_struct *work)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09002005__releases(&gcwq->lock)
2006__acquires(&gcwq->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002007{
Tejun Heo7e116292010-06-29 10:07:13 +02002008 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002009 struct worker_pool *pool = worker->pool;
2010 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002011 struct hlist_head *bwh = busy_worker_head(gcwq, work);
Tejun Heofb0e7be2010-06-29 10:07:15 +02002012 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heoa62428c2010-06-29 10:07:10 +02002013 work_func_t f = work->func;
Tejun Heo73f53c42010-06-29 10:07:11 +02002014 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002015 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002016#ifdef CONFIG_LOCKDEP
2017 /*
2018 * It is permissible to free the struct work_struct from
2019 * inside the function that is called from it, this we need to
2020 * take into account for lockdep too. To avoid bogus "held
2021 * lock freed" warnings as well as problems when looking into
2022 * work->lockdep_map, make a copy and use that here.
2023 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002024 struct lockdep_map lockdep_map;
2025
2026 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002027#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002028 /*
2029 * Ensure we're on the correct CPU. DISASSOCIATED test is
2030 * necessary to avoid spurious warnings from rescuers servicing the
2031 * unbound or a disassociated gcwq.
2032 */
Tejun Heo25511a42012-07-17 12:39:27 -07002033 WARN_ON_ONCE(!(worker->flags & (WORKER_UNBOUND | WORKER_REBIND)) &&
Tejun Heo6fec10a2012-07-22 10:16:34 -07002034 !(gcwq->flags & GCWQ_DISASSOCIATED) &&
Tejun Heo25511a42012-07-17 12:39:27 -07002035 raw_smp_processor_id() != gcwq->cpu);
2036
Tejun Heo7e116292010-06-29 10:07:13 +02002037 /*
2038 * A single work shouldn't be executed concurrently by
2039 * multiple workers on a single cpu. Check whether anyone is
2040 * already processing the work. If so, defer the work to the
2041 * currently executing one.
2042 */
2043 collision = __find_worker_executing_work(gcwq, bwh, work);
2044 if (unlikely(collision)) {
2045 move_linked_works(work, &collision->scheduled, NULL);
2046 return;
2047 }
2048
Tejun Heoa62428c2010-06-29 10:07:10 +02002049 /* claim and process */
Tejun Heoa62428c2010-06-29 10:07:10 +02002050 debug_work_deactivate(work);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002051 hlist_add_head(&worker->hentry, bwh);
Tejun Heoc34056a2010-06-29 10:07:11 +02002052 worker->current_work = work;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02002053 worker->current_cwq = cwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002054 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002055
Tejun Heo7a22ad72010-06-29 10:07:13 +02002056 /* record the current cpu number in the work data and dequeue */
2057 set_work_cpu(work, gcwq->cpu);
Tejun Heoa62428c2010-06-29 10:07:10 +02002058 list_del_init(&work->entry);
2059
Tejun Heo649027d2010-06-29 10:07:14 +02002060 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002061 * CPU intensive works don't participate in concurrency
2062 * management. They're the scheduler's responsibility.
2063 */
2064 if (unlikely(cpu_intensive))
2065 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2066
Tejun Heo974271c2012-07-12 14:46:37 -07002067 /*
2068 * Unbound gcwq isn't concurrency managed and work items should be
2069 * executed ASAP. Wake up another worker if necessary.
2070 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002071 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2072 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002073
Tejun Heo8b03ae32010-06-29 10:07:12 +02002074 spin_unlock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002075
Tejun Heoa62428c2010-06-29 10:07:10 +02002076 work_clear_pending(work);
Tejun Heoe1594892011-01-09 23:32:15 +01002077 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002078 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002079 trace_workqueue_execute_start(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002080 f(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002081 /*
2082 * While we must be careful to not use "work" after this, the trace
2083 * point will only record its address.
2084 */
2085 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002086 lock_map_release(&lockdep_map);
2087 lock_map_release(&cwq->wq->lockdep_map);
2088
2089 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
2090 printk(KERN_ERR "BUG: workqueue leaked lock or atomic: "
2091 "%s/0x%08x/%d\n",
2092 current->comm, preempt_count(), task_pid_nr(current));
2093 printk(KERN_ERR " last function: ");
2094 print_symbol("%s\n", (unsigned long)f);
2095 debug_show_held_locks(current);
2096 dump_stack();
2097 }
2098
Tejun Heo8b03ae32010-06-29 10:07:12 +02002099 spin_lock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002100
Tejun Heofb0e7be2010-06-29 10:07:15 +02002101 /* clear cpu intensive status */
2102 if (unlikely(cpu_intensive))
2103 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2104
Tejun Heoa62428c2010-06-29 10:07:10 +02002105 /* we're done with it, release */
Tejun Heoc8e55f32010-06-29 10:07:12 +02002106 hlist_del_init(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002107 worker->current_work = NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02002108 worker->current_cwq = NULL;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02002109 cwq_dec_nr_in_flight(cwq, work_color, false);
Tejun Heoa62428c2010-06-29 10:07:10 +02002110}
2111
Tejun Heoaffee4b2010-06-29 10:07:12 +02002112/**
2113 * process_scheduled_works - process scheduled works
2114 * @worker: self
2115 *
2116 * Process all scheduled works. Please note that the scheduled list
2117 * may change while processing a work, so this function repeatedly
2118 * fetches a work from the top and executes it.
2119 *
2120 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002121 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002122 * multiple times.
2123 */
2124static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002126 while (!list_empty(&worker->scheduled)) {
2127 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002129 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
Tejun Heo4690c4a2010-06-29 10:07:10 +02002133/**
2134 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002135 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002136 *
Tejun Heoe22bee72010-06-29 10:07:14 +02002137 * The gcwq worker thread function. There's a single dynamic pool of
2138 * these per each cpu. These workers process all works regardless of
2139 * their specific target workqueue. The only exception is works which
2140 * belong to workqueues with a rescuer which will be explained in
2141 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002142 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002143static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
Tejun Heoc34056a2010-06-29 10:07:11 +02002145 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002146 struct worker_pool *pool = worker->pool;
2147 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Tejun Heoe22bee72010-06-29 10:07:14 +02002149 /* tell the scheduler that this is a workqueue worker */
2150 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002151woke_up:
Tejun Heoc8e55f32010-06-29 10:07:12 +02002152 spin_lock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Tejun Heo25511a42012-07-17 12:39:27 -07002154 /*
2155 * DIE can be set only while idle and REBIND set while busy has
2156 * @worker->rebind_work scheduled. Checking here is enough.
2157 */
2158 if (unlikely(worker->flags & (WORKER_REBIND | WORKER_DIE))) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02002159 spin_unlock_irq(&gcwq->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002160
2161 if (worker->flags & WORKER_DIE) {
2162 worker->task->flags &= ~PF_WQ_WORKER;
2163 return 0;
2164 }
2165
2166 idle_worker_rebind(worker);
2167 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
2169
Tejun Heoc8e55f32010-06-29 10:07:12 +02002170 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002171recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002172 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002173 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002174 goto sleep;
2175
2176 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002177 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002178 goto recheck;
2179
Tejun Heoc8e55f32010-06-29 10:07:12 +02002180 /*
2181 * ->scheduled list can only be filled while a worker is
2182 * preparing to process a work or actually processing it.
2183 * Make sure nobody diddled with it while I was sleeping.
2184 */
2185 BUG_ON(!list_empty(&worker->scheduled));
2186
Tejun Heoe22bee72010-06-29 10:07:14 +02002187 /*
2188 * When control reaches this point, we're guaranteed to have
2189 * at least one idle worker or that someone else has already
2190 * assumed the manager role.
2191 */
2192 worker_clr_flags(worker, WORKER_PREP);
2193
2194 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002195 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002196 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002197 struct work_struct, entry);
2198
2199 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2200 /* optimization path, not strictly necessary */
2201 process_one_work(worker, work);
2202 if (unlikely(!list_empty(&worker->scheduled)))
2203 process_scheduled_works(worker);
2204 } else {
2205 move_linked_works(work, &worker->scheduled, NULL);
2206 process_scheduled_works(worker);
2207 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002208 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002209
Tejun Heoe22bee72010-06-29 10:07:14 +02002210 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002211sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002212 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002213 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002214
Tejun Heoc8e55f32010-06-29 10:07:12 +02002215 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02002216 * gcwq->lock is held and there's no work to process and no
2217 * need to manage, sleep. Workers are woken up only while
2218 * holding gcwq->lock or from local cpu, so setting the
2219 * current state before releasing gcwq->lock is enough to
2220 * prevent losing any event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002221 */
2222 worker_enter_idle(worker);
2223 __set_current_state(TASK_INTERRUPTIBLE);
2224 spin_unlock_irq(&gcwq->lock);
2225 schedule();
2226 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
Tejun Heoe22bee72010-06-29 10:07:14 +02002229/**
2230 * rescuer_thread - the rescuer thread function
2231 * @__wq: the associated workqueue
2232 *
2233 * Workqueue rescuer thread function. There's one rescuer for each
2234 * workqueue which has WQ_RESCUER set.
2235 *
2236 * Regular work processing on a gcwq may block trying to create a new
2237 * worker which uses GFP_KERNEL allocation which has slight chance of
2238 * developing into deadlock if some works currently on the same queue
2239 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2240 * the problem rescuer solves.
2241 *
2242 * When such condition is possible, the gcwq summons rescuers of all
2243 * workqueues which have works queued on the gcwq and let them process
2244 * those works so that forward progress can be guaranteed.
2245 *
2246 * This should happen rarely.
2247 */
2248static int rescuer_thread(void *__wq)
2249{
2250 struct workqueue_struct *wq = __wq;
2251 struct worker *rescuer = wq->rescuer;
2252 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02002253 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02002254 unsigned int cpu;
2255
2256 set_user_nice(current, RESCUER_NICE_LEVEL);
2257repeat:
2258 set_current_state(TASK_INTERRUPTIBLE);
2259
2260 if (kthread_should_stop())
2261 return 0;
2262
Tejun Heof3421792010-07-02 10:03:51 +02002263 /*
2264 * See whether any cpu is asking for help. Unbounded
2265 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2266 */
Tejun Heof2e005a2010-07-20 15:59:09 +02002267 for_each_mayday_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02002268 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
2269 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002270 struct worker_pool *pool = cwq->pool;
2271 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002272 struct work_struct *work, *n;
2273
2274 __set_current_state(TASK_RUNNING);
Tejun Heof2e005a2010-07-20 15:59:09 +02002275 mayday_clear_cpu(cpu, wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02002276
2277 /* migrate to the target cpu if possible */
Tejun Heobd7bdd42012-07-12 14:46:37 -07002278 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002279 worker_maybe_bind_and_lock(rescuer);
2280
2281 /*
2282 * Slurp in all works issued via this workqueue and
2283 * process'em.
2284 */
2285 BUG_ON(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002286 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02002287 if (get_work_cwq(work) == cwq)
2288 move_linked_works(work, scheduled, &n);
2289
2290 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002291
2292 /*
2293 * Leave this gcwq. If keep_working() is %true, notify a
2294 * regular worker; otherwise, we end up with 0 concurrency
2295 * and stalling the execution.
2296 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002297 if (keep_working(pool))
2298 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002299
Tejun Heoe22bee72010-06-29 10:07:14 +02002300 spin_unlock_irq(&gcwq->lock);
2301 }
2302
2303 schedule();
2304 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305}
2306
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002307struct wq_barrier {
2308 struct work_struct work;
2309 struct completion done;
2310};
2311
2312static void wq_barrier_func(struct work_struct *work)
2313{
2314 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2315 complete(&barr->done);
2316}
2317
Tejun Heo4690c4a2010-06-29 10:07:10 +02002318/**
2319 * insert_wq_barrier - insert a barrier work
2320 * @cwq: cwq to insert barrier into
2321 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002322 * @target: target work to attach @barr to
2323 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002324 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002325 * @barr is linked to @target such that @barr is completed only after
2326 * @target finishes execution. Please note that the ordering
2327 * guarantee is observed only with respect to @target and on the local
2328 * cpu.
2329 *
2330 * Currently, a queued barrier can't be canceled. This is because
2331 * try_to_grab_pending() can't determine whether the work to be
2332 * grabbed is at the head of the queue and thus can't clear LINKED
2333 * flag of the previous work while there must be a valid next work
2334 * after a work with LINKED flag set.
2335 *
2336 * Note that when @worker is non-NULL, @target may be modified
2337 * underneath us, so we can't reliably determine cwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002338 *
2339 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002340 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002341 */
Oleg Nesterov83c22522007-05-09 02:33:54 -07002342static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002343 struct wq_barrier *barr,
2344 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002345{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002346 struct list_head *head;
2347 unsigned int linked = 0;
2348
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002349 /*
Tejun Heo8b03ae32010-06-29 10:07:12 +02002350 * debugobject calls are safe here even with gcwq->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002351 * as we know for sure that this will not trigger any of the
2352 * checks and call back into the fixup functions where we
2353 * might deadlock.
2354 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002355 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002356 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002357 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002358
Tejun Heoaffee4b2010-06-29 10:07:12 +02002359 /*
2360 * If @target is currently being executed, schedule the
2361 * barrier to the worker; otherwise, put it after @target.
2362 */
2363 if (worker)
2364 head = worker->scheduled.next;
2365 else {
2366 unsigned long *bits = work_data_bits(target);
2367
2368 head = target->entry.next;
2369 /* there can already be other linked works, inherit and set */
2370 linked = *bits & WORK_STRUCT_LINKED;
2371 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2372 }
2373
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002374 debug_work_activate(&barr->work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002375 insert_work(cwq, &barr->work, head,
2376 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002377}
2378
Tejun Heo73f53c42010-06-29 10:07:11 +02002379/**
2380 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2381 * @wq: workqueue being flushed
2382 * @flush_color: new flush color, < 0 for no-op
2383 * @work_color: new work color, < 0 for no-op
2384 *
2385 * Prepare cwqs for workqueue flushing.
2386 *
2387 * If @flush_color is non-negative, flush_color on all cwqs should be
2388 * -1. If no cwq has in-flight commands at the specified color, all
2389 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2390 * has in flight commands, its cwq->flush_color is set to
2391 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2392 * wakeup logic is armed and %true is returned.
2393 *
2394 * The caller should have initialized @wq->first_flusher prior to
2395 * calling this function with non-negative @flush_color. If
2396 * @flush_color is negative, no flush color update is done and %false
2397 * is returned.
2398 *
2399 * If @work_color is non-negative, all cwqs should have the same
2400 * work_color which is previous to @work_color and all will be
2401 * advanced to @work_color.
2402 *
2403 * CONTEXT:
2404 * mutex_lock(wq->flush_mutex).
2405 *
2406 * RETURNS:
2407 * %true if @flush_color >= 0 and there's something to flush. %false
2408 * otherwise.
2409 */
2410static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2411 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412{
Tejun Heo73f53c42010-06-29 10:07:11 +02002413 bool wait = false;
2414 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002415
Tejun Heo73f53c42010-06-29 10:07:11 +02002416 if (flush_color >= 0) {
2417 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2418 atomic_set(&wq->nr_cwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002419 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002420
Tejun Heof3421792010-07-02 10:03:51 +02002421 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002422 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002423 struct global_cwq *gcwq = cwq->pool->gcwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002424
Tejun Heo8b03ae32010-06-29 10:07:12 +02002425 spin_lock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002426
2427 if (flush_color >= 0) {
2428 BUG_ON(cwq->flush_color != -1);
2429
2430 if (cwq->nr_in_flight[flush_color]) {
2431 cwq->flush_color = flush_color;
2432 atomic_inc(&wq->nr_cwqs_to_flush);
2433 wait = true;
2434 }
2435 }
2436
2437 if (work_color >= 0) {
2438 BUG_ON(work_color != work_next_color(cwq->work_color));
2439 cwq->work_color = work_color;
2440 }
2441
Tejun Heo8b03ae32010-06-29 10:07:12 +02002442 spin_unlock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002443 }
2444
2445 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2446 complete(&wq->first_flusher->done);
2447
2448 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449}
2450
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002451/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002453 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 *
2455 * Forces execution of the workqueue and blocks until its completion.
2456 * This is typically used in driver shutdown handlers.
2457 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002458 * We sleep until all works which were queued on entry have been handled,
2459 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002461void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Tejun Heo73f53c42010-06-29 10:07:11 +02002463 struct wq_flusher this_flusher = {
2464 .list = LIST_HEAD_INIT(this_flusher.list),
2465 .flush_color = -1,
2466 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2467 };
2468 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002469
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002470 lock_map_acquire(&wq->lockdep_map);
2471 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002472
2473 mutex_lock(&wq->flush_mutex);
2474
2475 /*
2476 * Start-to-wait phase
2477 */
2478 next_color = work_next_color(wq->work_color);
2479
2480 if (next_color != wq->flush_color) {
2481 /*
2482 * Color space is not full. The current work_color
2483 * becomes our flush_color and work_color is advanced
2484 * by one.
2485 */
2486 BUG_ON(!list_empty(&wq->flusher_overflow));
2487 this_flusher.flush_color = wq->work_color;
2488 wq->work_color = next_color;
2489
2490 if (!wq->first_flusher) {
2491 /* no flush in progress, become the first flusher */
2492 BUG_ON(wq->flush_color != this_flusher.flush_color);
2493
2494 wq->first_flusher = &this_flusher;
2495
2496 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2497 wq->work_color)) {
2498 /* nothing to flush, done */
2499 wq->flush_color = next_color;
2500 wq->first_flusher = NULL;
2501 goto out_unlock;
2502 }
2503 } else {
2504 /* wait in queue */
2505 BUG_ON(wq->flush_color == this_flusher.flush_color);
2506 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2507 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2508 }
2509 } else {
2510 /*
2511 * Oops, color space is full, wait on overflow queue.
2512 * The next flush completion will assign us
2513 * flush_color and transfer to flusher_queue.
2514 */
2515 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2516 }
2517
2518 mutex_unlock(&wq->flush_mutex);
2519
2520 wait_for_completion(&this_flusher.done);
2521
2522 /*
2523 * Wake-up-and-cascade phase
2524 *
2525 * First flushers are responsible for cascading flushes and
2526 * handling overflow. Non-first flushers can simply return.
2527 */
2528 if (wq->first_flusher != &this_flusher)
2529 return;
2530
2531 mutex_lock(&wq->flush_mutex);
2532
Tejun Heo4ce48b32010-07-02 10:03:51 +02002533 /* we might have raced, check again with mutex held */
2534 if (wq->first_flusher != &this_flusher)
2535 goto out_unlock;
2536
Tejun Heo73f53c42010-06-29 10:07:11 +02002537 wq->first_flusher = NULL;
2538
2539 BUG_ON(!list_empty(&this_flusher.list));
2540 BUG_ON(wq->flush_color != this_flusher.flush_color);
2541
2542 while (true) {
2543 struct wq_flusher *next, *tmp;
2544
2545 /* complete all the flushers sharing the current flush color */
2546 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2547 if (next->flush_color != wq->flush_color)
2548 break;
2549 list_del_init(&next->list);
2550 complete(&next->done);
2551 }
2552
2553 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2554 wq->flush_color != work_next_color(wq->work_color));
2555
2556 /* this flush_color is finished, advance by one */
2557 wq->flush_color = work_next_color(wq->flush_color);
2558
2559 /* one color has been freed, handle overflow queue */
2560 if (!list_empty(&wq->flusher_overflow)) {
2561 /*
2562 * Assign the same color to all overflowed
2563 * flushers, advance work_color and append to
2564 * flusher_queue. This is the start-to-wait
2565 * phase for these overflowed flushers.
2566 */
2567 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2568 tmp->flush_color = wq->work_color;
2569
2570 wq->work_color = work_next_color(wq->work_color);
2571
2572 list_splice_tail_init(&wq->flusher_overflow,
2573 &wq->flusher_queue);
2574 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2575 }
2576
2577 if (list_empty(&wq->flusher_queue)) {
2578 BUG_ON(wq->flush_color != wq->work_color);
2579 break;
2580 }
2581
2582 /*
2583 * Need to flush more colors. Make the next flusher
2584 * the new first flusher and arm cwqs.
2585 */
2586 BUG_ON(wq->flush_color == wq->work_color);
2587 BUG_ON(wq->flush_color != next->flush_color);
2588
2589 list_del_init(&next->list);
2590 wq->first_flusher = next;
2591
2592 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2593 break;
2594
2595 /*
2596 * Meh... this color is already done, clear first
2597 * flusher and repeat cascading.
2598 */
2599 wq->first_flusher = NULL;
2600 }
2601
2602out_unlock:
2603 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
Dave Jonesae90dd52006-06-30 01:40:45 -04002605EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002607/**
2608 * drain_workqueue - drain a workqueue
2609 * @wq: workqueue to drain
2610 *
2611 * Wait until the workqueue becomes empty. While draining is in progress,
2612 * only chain queueing is allowed. IOW, only currently pending or running
2613 * work items on @wq can queue further work items on it. @wq is flushed
2614 * repeatedly until it becomes empty. The number of flushing is detemined
2615 * by the depth of chaining and should be relatively short. Whine if it
2616 * takes too long.
2617 */
2618void drain_workqueue(struct workqueue_struct *wq)
2619{
2620 unsigned int flush_cnt = 0;
2621 unsigned int cpu;
2622
2623 /*
2624 * __queue_work() needs to test whether there are drainers, is much
2625 * hotter than drain_workqueue() and already looks at @wq->flags.
2626 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2627 */
2628 spin_lock(&workqueue_lock);
2629 if (!wq->nr_drainers++)
2630 wq->flags |= WQ_DRAINING;
2631 spin_unlock(&workqueue_lock);
2632reflush:
2633 flush_workqueue(wq);
2634
2635 for_each_cwq_cpu(cpu, wq) {
2636 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002637 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002638
Tejun Heobd7bdd42012-07-12 14:46:37 -07002639 spin_lock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002640 drained = !cwq->nr_active && list_empty(&cwq->delayed_works);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002641 spin_unlock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002642
2643 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002644 continue;
2645
2646 if (++flush_cnt == 10 ||
2647 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
2648 pr_warning("workqueue %s: flush on destruction isn't complete after %u tries\n",
2649 wq->name, flush_cnt);
2650 goto reflush;
2651 }
2652
2653 spin_lock(&workqueue_lock);
2654 if (!--wq->nr_drainers)
2655 wq->flags &= ~WQ_DRAINING;
2656 spin_unlock(&workqueue_lock);
2657}
2658EXPORT_SYMBOL_GPL(drain_workqueue);
2659
Tejun Heobaf59022010-09-16 10:42:16 +02002660static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr,
2661 bool wait_executing)
2662{
2663 struct worker *worker = NULL;
2664 struct global_cwq *gcwq;
2665 struct cpu_workqueue_struct *cwq;
2666
2667 might_sleep();
2668 gcwq = get_work_gcwq(work);
2669 if (!gcwq)
2670 return false;
2671
2672 spin_lock_irq(&gcwq->lock);
2673 if (!list_empty(&work->entry)) {
2674 /*
2675 * See the comment near try_to_grab_pending()->smp_rmb().
2676 * If it was re-queued to a different gcwq under us, we
2677 * are not going to wait.
2678 */
2679 smp_rmb();
2680 cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002681 if (unlikely(!cwq || gcwq != cwq->pool->gcwq))
Tejun Heobaf59022010-09-16 10:42:16 +02002682 goto already_gone;
2683 } else if (wait_executing) {
2684 worker = find_worker_executing_work(gcwq, work);
2685 if (!worker)
2686 goto already_gone;
2687 cwq = worker->current_cwq;
2688 } else
2689 goto already_gone;
2690
2691 insert_wq_barrier(cwq, barr, work, worker);
2692 spin_unlock_irq(&gcwq->lock);
2693
Tejun Heoe1594892011-01-09 23:32:15 +01002694 /*
2695 * If @max_active is 1 or rescuer is in use, flushing another work
2696 * item on the same workqueue may lead to deadlock. Make sure the
2697 * flusher is not running on the same workqueue by verifying write
2698 * access.
2699 */
2700 if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER)
2701 lock_map_acquire(&cwq->wq->lockdep_map);
2702 else
2703 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heobaf59022010-09-16 10:42:16 +02002704 lock_map_release(&cwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002705
Tejun Heobaf59022010-09-16 10:42:16 +02002706 return true;
2707already_gone:
2708 spin_unlock_irq(&gcwq->lock);
2709 return false;
2710}
2711
Oleg Nesterovdb700892008-07-25 01:47:49 -07002712/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002713 * flush_work - wait for a work to finish executing the last queueing instance
2714 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002715 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002716 * Wait until @work has finished execution. This function considers
2717 * only the last queueing instance of @work. If @work has been
2718 * enqueued across different CPUs on a non-reentrant workqueue or on
2719 * multiple workqueues, @work might still be executing on return on
2720 * some of the CPUs from earlier queueing.
Oleg Nesterova67da702008-07-25 01:47:52 -07002721 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002722 * If @work was queued only on a non-reentrant, ordered or unbound
2723 * workqueue, @work is guaranteed to be idle on return if it hasn't
2724 * been requeued since flush started.
2725 *
2726 * RETURNS:
2727 * %true if flush_work() waited for the work to finish execution,
2728 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002729 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002730bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002731{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002732 struct wq_barrier barr;
2733
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002734 lock_map_acquire(&work->lockdep_map);
2735 lock_map_release(&work->lockdep_map);
2736
Tejun Heobaf59022010-09-16 10:42:16 +02002737 if (start_flush_work(work, &barr, true)) {
2738 wait_for_completion(&barr.done);
2739 destroy_work_on_stack(&barr.work);
2740 return true;
2741 } else
2742 return false;
Oleg Nesterovdb700892008-07-25 01:47:49 -07002743}
2744EXPORT_SYMBOL_GPL(flush_work);
2745
Tejun Heo401a8d02010-09-16 10:36:00 +02002746static bool wait_on_cpu_work(struct global_cwq *gcwq, struct work_struct *work)
2747{
2748 struct wq_barrier barr;
2749 struct worker *worker;
2750
2751 spin_lock_irq(&gcwq->lock);
2752
2753 worker = find_worker_executing_work(gcwq, work);
2754 if (unlikely(worker))
2755 insert_wq_barrier(worker->current_cwq, &barr, work, worker);
2756
2757 spin_unlock_irq(&gcwq->lock);
2758
2759 if (unlikely(worker)) {
2760 wait_for_completion(&barr.done);
2761 destroy_work_on_stack(&barr.work);
2762 return true;
2763 } else
2764 return false;
2765}
2766
2767static bool wait_on_work(struct work_struct *work)
2768{
2769 bool ret = false;
2770 int cpu;
2771
2772 might_sleep();
2773
2774 lock_map_acquire(&work->lockdep_map);
2775 lock_map_release(&work->lockdep_map);
2776
2777 for_each_gcwq_cpu(cpu)
2778 ret |= wait_on_cpu_work(get_gcwq(cpu), work);
2779 return ret;
2780}
2781
Tejun Heo09383492010-09-16 10:48:29 +02002782/**
2783 * flush_work_sync - wait until a work has finished execution
2784 * @work: the work to flush
2785 *
2786 * Wait until @work has finished execution. On return, it's
2787 * guaranteed that all queueing instances of @work which happened
2788 * before this function is called are finished. In other words, if
2789 * @work hasn't been requeued since this function was called, @work is
2790 * guaranteed to be idle on return.
2791 *
2792 * RETURNS:
2793 * %true if flush_work_sync() waited for the work to finish execution,
2794 * %false if it was already idle.
2795 */
2796bool flush_work_sync(struct work_struct *work)
2797{
2798 struct wq_barrier barr;
2799 bool pending, waited;
2800
2801 /* we'll wait for executions separately, queue barr only if pending */
2802 pending = start_flush_work(work, &barr, false);
2803
2804 /* wait for executions to finish */
2805 waited = wait_on_work(work);
2806
2807 /* wait for the pending one */
2808 if (pending) {
2809 wait_for_completion(&barr.done);
2810 destroy_work_on_stack(&barr.work);
2811 }
2812
2813 return pending || waited;
2814}
2815EXPORT_SYMBOL_GPL(flush_work_sync);
2816
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002817/*
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002818 * Upon a successful return (>= 0), the caller "owns" WORK_STRUCT_PENDING bit,
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002819 * so this work can't be re-armed in any way.
2820 */
2821static int try_to_grab_pending(struct work_struct *work)
2822{
Tejun Heo8b03ae32010-06-29 10:07:12 +02002823 struct global_cwq *gcwq;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002824 int ret = -1;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002825
Tejun Heo22df02b2010-06-29 10:07:10 +02002826 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002827 return 0;
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002828
2829 /*
2830 * The queueing is in progress, or it is already queued. Try to
2831 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
2832 */
Tejun Heo7a22ad72010-06-29 10:07:13 +02002833 gcwq = get_work_gcwq(work);
2834 if (!gcwq)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002835 return ret;
2836
Tejun Heo8b03ae32010-06-29 10:07:12 +02002837 spin_lock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002838 if (!list_empty(&work->entry)) {
2839 /*
Tejun Heo7a22ad72010-06-29 10:07:13 +02002840 * This work is queued, but perhaps we locked the wrong gcwq.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002841 * In that case we must see the new value after rmb(), see
2842 * insert_work()->wmb().
2843 */
2844 smp_rmb();
Tejun Heo7a22ad72010-06-29 10:07:13 +02002845 if (gcwq == get_work_gcwq(work)) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002846 debug_work_deactivate(work);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002847 list_del_init(&work->entry);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002848 cwq_dec_nr_in_flight(get_work_cwq(work),
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02002849 get_work_color(work),
2850 *work_data_bits(work) & WORK_STRUCT_DELAYED);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002851 ret = 1;
2852 }
2853 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02002854 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002855
2856 return ret;
2857}
2858
Tejun Heo401a8d02010-09-16 10:36:00 +02002859static bool __cancel_work_timer(struct work_struct *work,
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002860 struct timer_list* timer)
2861{
2862 int ret;
2863
2864 do {
2865 ret = (timer && likely(del_timer(timer)));
2866 if (!ret)
2867 ret = try_to_grab_pending(work);
2868 wait_on_work(work);
2869 } while (unlikely(ret < 0));
2870
Tejun Heo7a22ad72010-06-29 10:07:13 +02002871 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002872 return ret;
2873}
2874
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002875/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002876 * cancel_work_sync - cancel a work and wait for it to finish
2877 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002878 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002879 * Cancel @work and wait for its execution to finish. This function
2880 * can be used even if the work re-queues itself or migrates to
2881 * another workqueue. On return from this function, @work is
2882 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002883 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002884 * cancel_work_sync(&delayed_work->work) must not be used for
2885 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002886 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002887 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002888 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002889 *
2890 * RETURNS:
2891 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002892 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002893bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002894{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002895 return __cancel_work_timer(work, NULL);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002896}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002897EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002898
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002899/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002900 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2901 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002902 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002903 * Delayed timer is cancelled and the pending work is queued for
2904 * immediate execution. Like flush_work(), this function only
2905 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002906 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002907 * RETURNS:
2908 * %true if flush_work() waited for the work to finish execution,
2909 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002910 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002911bool flush_delayed_work(struct delayed_work *dwork)
2912{
2913 if (del_timer_sync(&dwork->timer))
2914 __queue_work(raw_smp_processor_id(),
2915 get_work_cwq(&dwork->work)->wq, &dwork->work);
2916 return flush_work(&dwork->work);
2917}
2918EXPORT_SYMBOL(flush_delayed_work);
2919
2920/**
Tejun Heo09383492010-09-16 10:48:29 +02002921 * flush_delayed_work_sync - wait for a dwork to finish
2922 * @dwork: the delayed work to flush
2923 *
2924 * Delayed timer is cancelled and the pending work is queued for
2925 * execution immediately. Other than timer handling, its behavior
2926 * is identical to flush_work_sync().
2927 *
2928 * RETURNS:
2929 * %true if flush_work_sync() waited for the work to finish execution,
2930 * %false if it was already idle.
2931 */
2932bool flush_delayed_work_sync(struct delayed_work *dwork)
2933{
2934 if (del_timer_sync(&dwork->timer))
2935 __queue_work(raw_smp_processor_id(),
2936 get_work_cwq(&dwork->work)->wq, &dwork->work);
2937 return flush_work_sync(&dwork->work);
2938}
2939EXPORT_SYMBOL(flush_delayed_work_sync);
2940
2941/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002942 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2943 * @dwork: the delayed work cancel
2944 *
2945 * This is cancel_work_sync() for delayed works.
2946 *
2947 * RETURNS:
2948 * %true if @dwork was pending, %false otherwise.
2949 */
2950bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002951{
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002952 return __cancel_work_timer(&dwork->work, &dwork->timer);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002953}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002954EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002956/**
2957 * schedule_work - put work task in global workqueue
2958 * @work: job to be done
2959 *
Bart Van Assche5b0f437d2009-07-30 19:00:53 +02002960 * Returns zero if @work was already on the kernel-global workqueue and
2961 * non-zero otherwise.
2962 *
2963 * This puts a job in the kernel-global workqueue if it was not already
2964 * queued and leaves it in the same position on the kernel-global
2965 * workqueue otherwise.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002966 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002967int schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968{
Tejun Heod320c032010-06-29 10:07:14 +02002969 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970}
Dave Jonesae90dd52006-06-30 01:40:45 -04002971EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Zhang Ruic1a220e2008-07-23 21:28:39 -07002973/*
2974 * schedule_work_on - put work task on a specific cpu
2975 * @cpu: cpu to put the work task on
2976 * @work: job to be done
2977 *
2978 * This puts a job on a specific cpu
2979 */
2980int schedule_work_on(int cpu, struct work_struct *work)
2981{
Tejun Heod320c032010-06-29 10:07:14 +02002982 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002983}
2984EXPORT_SYMBOL(schedule_work_on);
2985
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002986/**
2987 * schedule_delayed_work - put work task in global workqueue after delay
David Howells52bad642006-11-22 14:54:01 +00002988 * @dwork: job to be done
2989 * @delay: number of jiffies to wait or 0 for immediate execution
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002990 *
2991 * After waiting for a given time this puts a job in the kernel-global
2992 * workqueue.
2993 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002994int schedule_delayed_work(struct delayed_work *dwork,
Ingo Molnar82f67cd2007-02-16 01:28:13 -08002995 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996{
Tejun Heod320c032010-06-29 10:07:14 +02002997 return queue_delayed_work(system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998}
Dave Jonesae90dd52006-06-30 01:40:45 -04002999EXPORT_SYMBOL(schedule_delayed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003001/**
3002 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
3003 * @cpu: cpu to use
David Howells52bad642006-11-22 14:54:01 +00003004 * @dwork: job to be done
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003005 * @delay: number of jiffies to wait
3006 *
3007 * After waiting for a given time this puts a job in the kernel-global
3008 * workqueue on the specified CPU.
3009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010int schedule_delayed_work_on(int cpu,
David Howells52bad642006-11-22 14:54:01 +00003011 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012{
Tejun Heod320c032010-06-29 10:07:14 +02003013 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014}
Dave Jonesae90dd52006-06-30 01:40:45 -04003015EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
Andrew Mortonb6136772006-06-25 05:47:49 -07003017/**
Tejun Heo31ddd872010-10-19 11:14:49 +02003018 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07003019 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07003020 *
Tejun Heo31ddd872010-10-19 11:14:49 +02003021 * schedule_on_each_cpu() executes @func on each online CPU using the
3022 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07003023 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02003024 *
3025 * RETURNS:
3026 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07003027 */
David Howells65f27f32006-11-22 14:55:48 +00003028int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003029{
3030 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02003031 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08003032
Andrew Mortonb6136772006-06-25 05:47:49 -07003033 works = alloc_percpu(struct work_struct);
3034 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003035 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07003036
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003037 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08003038
Christoph Lameter15316ba2006-01-08 01:00:43 -08003039 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01003040 struct work_struct *work = per_cpu_ptr(works, cpu);
3041
3042 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003043 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003044 }
Tejun Heo93981802009-11-17 14:06:20 -08003045
3046 for_each_online_cpu(cpu)
3047 flush_work(per_cpu_ptr(works, cpu));
3048
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003049 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003050 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003051 return 0;
3052}
3053
Alan Sterneef6a7d2010-02-12 17:39:21 +09003054/**
3055 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3056 *
3057 * Forces execution of the kernel-global workqueue and blocks until its
3058 * completion.
3059 *
3060 * Think twice before calling this function! It's very easy to get into
3061 * trouble if you don't take great care. Either of the following situations
3062 * will lead to deadlock:
3063 *
3064 * One of the work items currently on the workqueue needs to acquire
3065 * a lock held by your code or its caller.
3066 *
3067 * Your code is running in the context of a work routine.
3068 *
3069 * They will be detected by lockdep when they occur, but the first might not
3070 * occur very often. It depends on what work items are on the workqueue and
3071 * what locks they need, which you have no control over.
3072 *
3073 * In most situations flushing the entire workqueue is overkill; you merely
3074 * need to know that a particular work item isn't queued and isn't running.
3075 * In such cases you should use cancel_delayed_work_sync() or
3076 * cancel_work_sync() instead.
3077 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078void flush_scheduled_work(void)
3079{
Tejun Heod320c032010-06-29 10:07:14 +02003080 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081}
Dave Jonesae90dd52006-06-30 01:40:45 -04003082EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
3084/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003085 * execute_in_process_context - reliably execute the routine with user context
3086 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003087 * @ew: guaranteed storage for the execute work structure (must
3088 * be available when the work executes)
3089 *
3090 * Executes the function immediately if process context is available,
3091 * otherwise schedules the function for delayed execution.
3092 *
3093 * Returns: 0 - function was executed
3094 * 1 - function was scheduled for execution
3095 */
David Howells65f27f32006-11-22 14:55:48 +00003096int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003097{
3098 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003099 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003100 return 0;
3101 }
3102
David Howells65f27f32006-11-22 14:55:48 +00003103 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003104 schedule_work(&ew->work);
3105
3106 return 1;
3107}
3108EXPORT_SYMBOL_GPL(execute_in_process_context);
3109
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110int keventd_up(void)
3111{
Tejun Heod320c032010-06-29 10:07:14 +02003112 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113}
3114
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003115static int alloc_cwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
Oleg Nesterov3af244332007-05-09 02:34:09 -07003117 /*
Tejun Heo0f900042010-06-29 10:07:11 +02003118 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
3119 * Make sure that the alignment isn't lower than that of
3120 * unsigned long long.
Oleg Nesterov3af244332007-05-09 02:34:09 -07003121 */
Tejun Heo0f900042010-06-29 10:07:11 +02003122 const size_t size = sizeof(struct cpu_workqueue_struct);
3123 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
3124 __alignof__(unsigned long long));
Oleg Nesterov3af244332007-05-09 02:34:09 -07003125
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003126 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02003127 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
Tejun Heo931ac772010-07-20 11:07:48 +02003128 else {
Tejun Heof3421792010-07-02 10:03:51 +02003129 void *ptr;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003130
Tejun Heof3421792010-07-02 10:03:51 +02003131 /*
3132 * Allocate enough room to align cwq and put an extra
3133 * pointer at the end pointing back to the originally
3134 * allocated pointer which will be used for free.
3135 */
3136 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
3137 if (ptr) {
3138 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
3139 *(void **)(wq->cpu_wq.single + 1) = ptr;
3140 }
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003141 }
Tejun Heof3421792010-07-02 10:03:51 +02003142
Tejun Heo0415b00d12011-03-24 18:50:09 +01003143 /* just in case, make sure it's actually aligned */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003144 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
3145 return wq->cpu_wq.v ? 0 : -ENOMEM;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003146}
3147
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003148static void free_cwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003149{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003150 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02003151 free_percpu(wq->cpu_wq.pcpu);
3152 else if (wq->cpu_wq.single) {
3153 /* the pointer to free is stored right after the cwq */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003154 kfree(*(void **)(wq->cpu_wq.single + 1));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003155 }
3156}
3157
Tejun Heof3421792010-07-02 10:03:51 +02003158static int wq_clamp_max_active(int max_active, unsigned int flags,
3159 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003160{
Tejun Heof3421792010-07-02 10:03:51 +02003161 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3162
3163 if (max_active < 1 || max_active > lim)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003164 printk(KERN_WARNING "workqueue: max_active %d requested for %s "
3165 "is out of range, clamping between %d and %d\n",
Tejun Heof3421792010-07-02 10:03:51 +02003166 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003167
Tejun Heof3421792010-07-02 10:03:51 +02003168 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003169}
3170
Tejun Heob196be82012-01-10 15:11:35 -08003171struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003172 unsigned int flags,
3173 int max_active,
3174 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003175 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003176{
Tejun Heob196be82012-01-10 15:11:35 -08003177 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003178 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02003179 unsigned int cpu;
Tejun Heob196be82012-01-10 15:11:35 -08003180 size_t namelen;
3181
3182 /* determine namelen, allocate wq and format name */
3183 va_start(args, lock_name);
3184 va_copy(args1, args);
3185 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3186
3187 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3188 if (!wq)
3189 goto err;
3190
3191 vsnprintf(wq->name, namelen, fmt, args1);
3192 va_end(args);
3193 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003194
Tejun Heof3421792010-07-02 10:03:51 +02003195 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02003196 * Workqueues which may be used during memory reclaim should
3197 * have a rescuer to guarantee forward progress.
3198 */
3199 if (flags & WQ_MEM_RECLAIM)
3200 flags |= WQ_RESCUER;
3201
Tejun Heod320c032010-06-29 10:07:14 +02003202 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003203 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003204
Tejun Heob196be82012-01-10 15:11:35 -08003205 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003206 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003207 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003208 mutex_init(&wq->flush_mutex);
3209 atomic_set(&wq->nr_cwqs_to_flush, 0);
3210 INIT_LIST_HEAD(&wq->flusher_queue);
3211 INIT_LIST_HEAD(&wq->flusher_overflow);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003212
Johannes Bergeb13ba82008-01-16 09:51:58 +01003213 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003214 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003215
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003216 if (alloc_cwqs(wq) < 0)
3217 goto err;
3218
Tejun Heof3421792010-07-02 10:03:51 +02003219 for_each_cwq_cpu(cpu, wq) {
Tejun Heo15376632010-06-29 10:07:11 +02003220 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003221 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo32704762012-07-13 22:16:45 -07003222 int pool_idx = (bool)(flags & WQ_HIGHPRI);
Tejun Heo15376632010-06-29 10:07:11 +02003223
Tejun Heo0f900042010-06-29 10:07:11 +02003224 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo32704762012-07-13 22:16:45 -07003225 cwq->pool = &gcwq->pools[pool_idx];
Tejun Heoc34056a2010-06-29 10:07:11 +02003226 cwq->wq = wq;
Tejun Heo73f53c42010-06-29 10:07:11 +02003227 cwq->flush_color = -1;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003228 cwq->max_active = max_active;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003229 INIT_LIST_HEAD(&cwq->delayed_works);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003230 }
3231
Tejun Heoe22bee72010-06-29 10:07:14 +02003232 if (flags & WQ_RESCUER) {
3233 struct worker *rescuer;
3234
Tejun Heof2e005a2010-07-20 15:59:09 +02003235 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
Tejun Heoe22bee72010-06-29 10:07:14 +02003236 goto err;
3237
3238 wq->rescuer = rescuer = alloc_worker();
3239 if (!rescuer)
3240 goto err;
3241
Tejun Heob196be82012-01-10 15:11:35 -08003242 rescuer->task = kthread_create(rescuer_thread, wq, "%s",
3243 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003244 if (IS_ERR(rescuer->task))
3245 goto err;
3246
Tejun Heoe22bee72010-06-29 10:07:14 +02003247 rescuer->task->flags |= PF_THREAD_BOUND;
3248 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003249 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003250
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003251 /*
3252 * workqueue_lock protects global freeze state and workqueues
3253 * list. Grab it, set max_active accordingly and add the new
3254 * workqueue to workqueues list.
3255 */
Tejun Heo15376632010-06-29 10:07:11 +02003256 spin_lock(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003257
Tejun Heo58a69cb2011-02-16 09:25:31 +01003258 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heof3421792010-07-02 10:03:51 +02003259 for_each_cwq_cpu(cpu, wq)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003260 get_cwq(cpu, wq)->max_active = 0;
3261
Tejun Heo15376632010-06-29 10:07:11 +02003262 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003263
Tejun Heo15376632010-06-29 10:07:11 +02003264 spin_unlock(&workqueue_lock);
3265
Oleg Nesterov3af244332007-05-09 02:34:09 -07003266 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003267err:
3268 if (wq) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003269 free_cwqs(wq);
Tejun Heof2e005a2010-07-20 15:59:09 +02003270 free_mayday_mask(wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02003271 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003272 kfree(wq);
3273 }
3274 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003275}
Tejun Heod320c032010-06-29 10:07:14 +02003276EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003277
3278/**
3279 * destroy_workqueue - safely terminate a workqueue
3280 * @wq: target workqueue
3281 *
3282 * Safely destroy a workqueue. All work currently pending will be done first.
3283 */
3284void destroy_workqueue(struct workqueue_struct *wq)
3285{
Tejun Heoc8e55f32010-06-29 10:07:12 +02003286 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003287
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003288 /* drain it before proceeding with destruction */
3289 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003290
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003291 /*
3292 * wq list is used to freeze wq, remove from list after
3293 * flushing is complete in case freeze races us.
3294 */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003295 spin_lock(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003296 list_del(&wq->list);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003297 spin_unlock(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003298
Tejun Heoe22bee72010-06-29 10:07:14 +02003299 /* sanity check */
Tejun Heof3421792010-07-02 10:03:51 +02003300 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02003301 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3302 int i;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003303
Tejun Heo73f53c42010-06-29 10:07:11 +02003304 for (i = 0; i < WORK_NR_COLORS; i++)
3305 BUG_ON(cwq->nr_in_flight[i]);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003306 BUG_ON(cwq->nr_active);
3307 BUG_ON(!list_empty(&cwq->delayed_works));
Tejun Heo73f53c42010-06-29 10:07:11 +02003308 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003309
Tejun Heoe22bee72010-06-29 10:07:14 +02003310 if (wq->flags & WQ_RESCUER) {
3311 kthread_stop(wq->rescuer->task);
Tejun Heof2e005a2010-07-20 15:59:09 +02003312 free_mayday_mask(wq->mayday_mask);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003313 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003314 }
3315
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003316 free_cwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003317 kfree(wq);
3318}
3319EXPORT_SYMBOL_GPL(destroy_workqueue);
3320
Tejun Heodcd989c2010-06-29 10:07:14 +02003321/**
3322 * workqueue_set_max_active - adjust max_active of a workqueue
3323 * @wq: target workqueue
3324 * @max_active: new max_active value.
3325 *
3326 * Set max_active of @wq to @max_active.
3327 *
3328 * CONTEXT:
3329 * Don't call from IRQ context.
3330 */
3331void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3332{
3333 unsigned int cpu;
3334
Tejun Heof3421792010-07-02 10:03:51 +02003335 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003336
3337 spin_lock(&workqueue_lock);
3338
3339 wq->saved_max_active = max_active;
3340
Tejun Heof3421792010-07-02 10:03:51 +02003341 for_each_cwq_cpu(cpu, wq) {
Tejun Heodcd989c2010-06-29 10:07:14 +02003342 struct global_cwq *gcwq = get_gcwq(cpu);
3343
3344 spin_lock_irq(&gcwq->lock);
3345
Tejun Heo58a69cb2011-02-16 09:25:31 +01003346 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heodcd989c2010-06-29 10:07:14 +02003347 !(gcwq->flags & GCWQ_FREEZING))
3348 get_cwq(gcwq->cpu, wq)->max_active = max_active;
3349
3350 spin_unlock_irq(&gcwq->lock);
3351 }
3352
3353 spin_unlock(&workqueue_lock);
3354}
3355EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3356
3357/**
3358 * workqueue_congested - test whether a workqueue is congested
3359 * @cpu: CPU in question
3360 * @wq: target workqueue
3361 *
3362 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3363 * no synchronization around this function and the test result is
3364 * unreliable and only useful as advisory hints or for debugging.
3365 *
3366 * RETURNS:
3367 * %true if congested, %false otherwise.
3368 */
3369bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
3370{
3371 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3372
3373 return !list_empty(&cwq->delayed_works);
3374}
3375EXPORT_SYMBOL_GPL(workqueue_congested);
3376
3377/**
3378 * work_cpu - return the last known associated cpu for @work
3379 * @work: the work of interest
3380 *
3381 * RETURNS:
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003382 * CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
Tejun Heodcd989c2010-06-29 10:07:14 +02003383 */
3384unsigned int work_cpu(struct work_struct *work)
3385{
3386 struct global_cwq *gcwq = get_work_gcwq(work);
3387
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003388 return gcwq ? gcwq->cpu : WORK_CPU_NONE;
Tejun Heodcd989c2010-06-29 10:07:14 +02003389}
3390EXPORT_SYMBOL_GPL(work_cpu);
3391
3392/**
3393 * work_busy - test whether a work is currently pending or running
3394 * @work: the work to be tested
3395 *
3396 * Test whether @work is currently pending or running. There is no
3397 * synchronization around this function and the test result is
3398 * unreliable and only useful as advisory hints or for debugging.
3399 * Especially for reentrant wqs, the pending state might hide the
3400 * running state.
3401 *
3402 * RETURNS:
3403 * OR'd bitmask of WORK_BUSY_* bits.
3404 */
3405unsigned int work_busy(struct work_struct *work)
3406{
3407 struct global_cwq *gcwq = get_work_gcwq(work);
3408 unsigned long flags;
3409 unsigned int ret = 0;
3410
3411 if (!gcwq)
3412 return false;
3413
3414 spin_lock_irqsave(&gcwq->lock, flags);
3415
3416 if (work_pending(work))
3417 ret |= WORK_BUSY_PENDING;
3418 if (find_worker_executing_work(gcwq, work))
3419 ret |= WORK_BUSY_RUNNING;
3420
3421 spin_unlock_irqrestore(&gcwq->lock, flags);
3422
3423 return ret;
3424}
3425EXPORT_SYMBOL_GPL(work_busy);
3426
Tejun Heodb7bccf2010-06-29 10:07:12 +02003427/*
3428 * CPU hotplug.
3429 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003430 * There are two challenges in supporting CPU hotplug. Firstly, there
3431 * are a lot of assumptions on strong associations among work, cwq and
3432 * gcwq which make migrating pending and scheduled works very
3433 * difficult to implement without impacting hot paths. Secondly,
3434 * gcwqs serve mix of short, long and very long running works making
3435 * blocked draining impractical.
3436 *
Tejun Heo628c78e2012-07-17 12:39:27 -07003437 * This is solved by allowing a gcwq to be disassociated from the CPU
3438 * running as an unbound one and allowing it to be reattached later if the
3439 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003440 */
3441
Tejun Heo60373152012-07-17 12:39:27 -07003442/* claim manager positions of all pools */
Tejun Heo8db25e72012-07-17 12:39:28 -07003443static void gcwq_claim_management_and_lock(struct global_cwq *gcwq)
Tejun Heo60373152012-07-17 12:39:27 -07003444{
3445 struct worker_pool *pool;
3446
3447 for_each_worker_pool(pool, gcwq)
3448 mutex_lock_nested(&pool->manager_mutex, pool - gcwq->pools);
Tejun Heo8db25e72012-07-17 12:39:28 -07003449 spin_lock_irq(&gcwq->lock);
Tejun Heo60373152012-07-17 12:39:27 -07003450}
3451
3452/* release manager positions */
Tejun Heo8db25e72012-07-17 12:39:28 -07003453static void gcwq_release_management_and_unlock(struct global_cwq *gcwq)
Tejun Heo60373152012-07-17 12:39:27 -07003454{
3455 struct worker_pool *pool;
3456
Tejun Heo8db25e72012-07-17 12:39:28 -07003457 spin_unlock_irq(&gcwq->lock);
Tejun Heo60373152012-07-17 12:39:27 -07003458 for_each_worker_pool(pool, gcwq)
3459 mutex_unlock(&pool->manager_mutex);
3460}
3461
Tejun Heo628c78e2012-07-17 12:39:27 -07003462static void gcwq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003463{
Tejun Heo628c78e2012-07-17 12:39:27 -07003464 struct global_cwq *gcwq = get_gcwq(smp_processor_id());
Tejun Heo4ce62e92012-07-13 22:16:44 -07003465 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003466 struct worker *worker;
3467 struct hlist_node *pos;
3468 int i;
3469
3470 BUG_ON(gcwq->cpu != smp_processor_id());
3471
Tejun Heo8db25e72012-07-17 12:39:28 -07003472 gcwq_claim_management_and_lock(gcwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003473
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003474 /*
3475 * We've claimed all manager positions. Make all workers unbound
3476 * and set DISASSOCIATED. Before this, all workers except for the
3477 * ones which are still executing works from before the last CPU
3478 * down must be on the cpu. After this, they may become diasporas.
3479 */
Tejun Heo60373152012-07-17 12:39:27 -07003480 for_each_worker_pool(pool, gcwq)
Tejun Heo4ce62e92012-07-13 22:16:44 -07003481 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003482 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003483
3484 for_each_busy_worker(worker, i, pos, gcwq)
Tejun Heo403c8212012-07-17 12:39:27 -07003485 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003486
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003487 gcwq->flags |= GCWQ_DISASSOCIATED;
3488
Tejun Heo8db25e72012-07-17 12:39:28 -07003489 gcwq_release_management_and_unlock(gcwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003490
3491 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07003492 * Call schedule() so that we cross rq->lock and thus can guarantee
3493 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3494 * as scheduler callbacks may be invoked from other cpus.
3495 */
3496 schedule();
3497
3498 /*
3499 * Sched callbacks are disabled now. Zap nr_running. After this,
3500 * nr_running stays zero and need_more_worker() and keep_working()
3501 * are always true as long as the worklist is not empty. @gcwq now
3502 * behaves as unbound (in terms of concurrency management) gcwq
3503 * which is served by workers tied to the CPU.
3504 *
3505 * On return from this function, the current worker would trigger
3506 * unbound chain execution of pending work items if other workers
3507 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02003508 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003509 for_each_worker_pool(pool, gcwq)
3510 atomic_set(get_pool_nr_running(pool), 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003511}
3512
Tejun Heo8db25e72012-07-17 12:39:28 -07003513/*
3514 * Workqueues should be brought up before normal priority CPU notifiers.
3515 * This will be registered high priority CPU notifier.
3516 */
3517static int __devinit workqueue_cpu_up_callback(struct notifier_block *nfb,
3518 unsigned long action,
3519 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003520{
3521 unsigned int cpu = (unsigned long)hcpu;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003522 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003523 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
Tejun Heo8db25e72012-07-17 12:39:28 -07003525 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 case CPU_UP_PREPARE:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003527 for_each_worker_pool(pool, gcwq) {
Tejun Heo3ce63372012-07-17 12:39:27 -07003528 struct worker *worker;
3529
3530 if (pool->nr_workers)
3531 continue;
3532
3533 worker = create_worker(pool);
3534 if (!worker)
3535 return NOTIFY_BAD;
3536
3537 spin_lock_irq(&gcwq->lock);
3538 start_worker(worker);
3539 spin_unlock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003541 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003542
Tejun Heo65758202012-07-17 12:39:26 -07003543 case CPU_DOWN_FAILED:
3544 case CPU_ONLINE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003545 gcwq_claim_management_and_lock(gcwq);
3546 gcwq->flags &= ~GCWQ_DISASSOCIATED;
3547 rebind_workers(gcwq);
3548 gcwq_release_management_and_unlock(gcwq);
3549 break;
Tejun Heo65758202012-07-17 12:39:26 -07003550 }
3551 return NOTIFY_OK;
3552}
3553
3554/*
3555 * Workqueues should be brought down after normal priority CPU notifiers.
3556 * This will be registered as low priority CPU notifier.
3557 */
3558static int __devinit workqueue_cpu_down_callback(struct notifier_block *nfb,
3559 unsigned long action,
3560 void *hcpu)
3561{
Tejun Heo8db25e72012-07-17 12:39:28 -07003562 unsigned int cpu = (unsigned long)hcpu;
3563 struct work_struct unbind_work;
3564
Tejun Heo65758202012-07-17 12:39:26 -07003565 switch (action & ~CPU_TASKS_FROZEN) {
3566 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003567 /* unbinding should happen on the local CPU */
3568 INIT_WORK_ONSTACK(&unbind_work, gcwq_unbind_fn);
3569 schedule_work_on(cpu, &unbind_work);
3570 flush_work(&unbind_work);
3571 break;
Tejun Heo65758202012-07-17 12:39:26 -07003572 }
3573 return NOTIFY_OK;
3574}
3575
Rusty Russell2d3854a2008-11-05 13:39:10 +11003576#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003577
Rusty Russell2d3854a2008-11-05 13:39:10 +11003578struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07003579 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003580 long (*fn)(void *);
3581 void *arg;
3582 long ret;
3583};
3584
Tejun Heoed48ece2012-09-18 12:48:43 -07003585static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003586{
Tejun Heoed48ece2012-09-18 12:48:43 -07003587 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
3588
Rusty Russell2d3854a2008-11-05 13:39:10 +11003589 wfc->ret = wfc->fn(wfc->arg);
3590}
3591
3592/**
3593 * work_on_cpu - run a function in user context on a particular cpu
3594 * @cpu: the cpu to run on
3595 * @fn: the function to run
3596 * @arg: the function arg
3597 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003598 * This will return the value @fn returns.
3599 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b44003e2009-04-09 09:50:37 -06003600 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003601 */
3602long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3603{
Tejun Heoed48ece2012-09-18 12:48:43 -07003604 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003605
Tejun Heoed48ece2012-09-18 12:48:43 -07003606 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
3607 schedule_work_on(cpu, &wfc.work);
3608 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003609 return wfc.ret;
3610}
3611EXPORT_SYMBOL_GPL(work_on_cpu);
3612#endif /* CONFIG_SMP */
3613
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003614#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303615
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003616/**
3617 * freeze_workqueues_begin - begin freezing workqueues
3618 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003619 * Start freezing workqueues. After this function returns, all freezable
3620 * workqueues will queue new works to their frozen_works list instead of
3621 * gcwq->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003622 *
3623 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003624 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003625 */
3626void freeze_workqueues_begin(void)
3627{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003628 unsigned int cpu;
3629
3630 spin_lock(&workqueue_lock);
3631
3632 BUG_ON(workqueue_freezing);
3633 workqueue_freezing = true;
3634
Tejun Heof3421792010-07-02 10:03:51 +02003635 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003636 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003637 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003638
3639 spin_lock_irq(&gcwq->lock);
3640
Tejun Heodb7bccf2010-06-29 10:07:12 +02003641 BUG_ON(gcwq->flags & GCWQ_FREEZING);
3642 gcwq->flags |= GCWQ_FREEZING;
3643
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003644 list_for_each_entry(wq, &workqueues, list) {
3645 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3646
Tejun Heo58a69cb2011-02-16 09:25:31 +01003647 if (cwq && wq->flags & WQ_FREEZABLE)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003648 cwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003649 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003650
3651 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003652 }
3653
3654 spin_unlock(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003656
3657/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003658 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003659 *
3660 * Check whether freezing is complete. This function must be called
3661 * between freeze_workqueues_begin() and thaw_workqueues().
3662 *
3663 * CONTEXT:
3664 * Grabs and releases workqueue_lock.
3665 *
3666 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003667 * %true if some freezable workqueues are still busy. %false if freezing
3668 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003669 */
3670bool freeze_workqueues_busy(void)
3671{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003672 unsigned int cpu;
3673 bool busy = false;
3674
3675 spin_lock(&workqueue_lock);
3676
3677 BUG_ON(!workqueue_freezing);
3678
Tejun Heof3421792010-07-02 10:03:51 +02003679 for_each_gcwq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003680 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003681 /*
3682 * nr_active is monotonically decreasing. It's safe
3683 * to peek without lock.
3684 */
3685 list_for_each_entry(wq, &workqueues, list) {
3686 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3687
Tejun Heo58a69cb2011-02-16 09:25:31 +01003688 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003689 continue;
3690
3691 BUG_ON(cwq->nr_active < 0);
3692 if (cwq->nr_active) {
3693 busy = true;
3694 goto out_unlock;
3695 }
3696 }
3697 }
3698out_unlock:
3699 spin_unlock(&workqueue_lock);
3700 return busy;
3701}
3702
3703/**
3704 * thaw_workqueues - thaw workqueues
3705 *
3706 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo7e116292010-06-29 10:07:13 +02003707 * frozen works are transferred to their respective gcwq worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003708 *
3709 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003710 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003711 */
3712void thaw_workqueues(void)
3713{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003714 unsigned int cpu;
3715
3716 spin_lock(&workqueue_lock);
3717
3718 if (!workqueue_freezing)
3719 goto out_unlock;
3720
Tejun Heof3421792010-07-02 10:03:51 +02003721 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003722 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003723 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003724 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003725
3726 spin_lock_irq(&gcwq->lock);
3727
Tejun Heodb7bccf2010-06-29 10:07:12 +02003728 BUG_ON(!(gcwq->flags & GCWQ_FREEZING));
3729 gcwq->flags &= ~GCWQ_FREEZING;
3730
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003731 list_for_each_entry(wq, &workqueues, list) {
3732 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3733
Tejun Heo58a69cb2011-02-16 09:25:31 +01003734 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003735 continue;
3736
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003737 /* restore max_active and repopulate worklist */
3738 cwq->max_active = wq->saved_max_active;
3739
3740 while (!list_empty(&cwq->delayed_works) &&
3741 cwq->nr_active < cwq->max_active)
3742 cwq_activate_first_delayed(cwq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003743 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003744
Tejun Heo4ce62e92012-07-13 22:16:44 -07003745 for_each_worker_pool(pool, gcwq)
3746 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02003747
Tejun Heo8b03ae32010-06-29 10:07:12 +02003748 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003749 }
3750
3751 workqueue_freezing = false;
3752out_unlock:
3753 spin_unlock(&workqueue_lock);
3754}
3755#endif /* CONFIG_FREEZER */
3756
Suresh Siddha6ee05782010-07-30 14:57:37 -07003757static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758{
Tejun Heoc34056a2010-06-29 10:07:11 +02003759 unsigned int cpu;
Tejun Heoc8e55f32010-06-29 10:07:12 +02003760 int i;
Tejun Heoc34056a2010-06-29 10:07:11 +02003761
Tejun Heo65758202012-07-17 12:39:26 -07003762 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
3763 cpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003764
3765 /* initialize gcwqs */
Tejun Heof3421792010-07-02 10:03:51 +02003766 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003767 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003768 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003769
3770 spin_lock_init(&gcwq->lock);
3771 gcwq->cpu = cpu;
Tejun Heo477a3c32010-08-31 10:54:35 +02003772 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003773
Tejun Heoc8e55f32010-06-29 10:07:12 +02003774 for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++)
3775 INIT_HLIST_HEAD(&gcwq->busy_hash[i]);
3776
Tejun Heo4ce62e92012-07-13 22:16:44 -07003777 for_each_worker_pool(pool, gcwq) {
3778 pool->gcwq = gcwq;
3779 INIT_LIST_HEAD(&pool->worklist);
3780 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoe22bee72010-06-29 10:07:14 +02003781
Tejun Heo4ce62e92012-07-13 22:16:44 -07003782 init_timer_deferrable(&pool->idle_timer);
3783 pool->idle_timer.function = idle_worker_timeout;
3784 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003785
Tejun Heo4ce62e92012-07-13 22:16:44 -07003786 setup_timer(&pool->mayday_timer, gcwq_mayday_timeout,
3787 (unsigned long)pool);
3788
Tejun Heo60373152012-07-17 12:39:27 -07003789 mutex_init(&pool->manager_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003790 ida_init(&pool->worker_ida);
3791 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003792
Tejun Heo25511a42012-07-17 12:39:27 -07003793 init_waitqueue_head(&gcwq->rebind_hold);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003794 }
3795
Tejun Heoe22bee72010-06-29 10:07:14 +02003796 /* create the initial worker */
Tejun Heof3421792010-07-02 10:03:51 +02003797 for_each_online_gcwq_cpu(cpu) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003798 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003799 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003800
Tejun Heo477a3c32010-08-31 10:54:35 +02003801 if (cpu != WORK_CPU_UNBOUND)
3802 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003803
3804 for_each_worker_pool(pool, gcwq) {
3805 struct worker *worker;
3806
Tejun Heobc2ae0f2012-07-17 12:39:27 -07003807 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003808 BUG_ON(!worker);
3809 spin_lock_irq(&gcwq->lock);
3810 start_worker(worker);
3811 spin_unlock_irq(&gcwq->lock);
3812 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003813 }
3814
Tejun Heod320c032010-06-29 10:07:14 +02003815 system_wq = alloc_workqueue("events", 0, 0);
3816 system_long_wq = alloc_workqueue("events_long", 0, 0);
3817 system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003818 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3819 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003820 system_freezable_wq = alloc_workqueue("events_freezable",
3821 WQ_FREEZABLE, 0);
Alan Stern62d3c542012-03-02 10:51:00 +01003822 system_nrt_freezable_wq = alloc_workqueue("events_nrt_freezable",
3823 WQ_NON_REENTRANT | WQ_FREEZABLE, 0);
Hitoshi Mitakee5cba242010-11-26 12:06:44 +01003824 BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq ||
Alan Stern62d3c542012-03-02 10:51:00 +01003825 !system_unbound_wq || !system_freezable_wq ||
3826 !system_nrt_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003829early_initcall(init_workqueues);