blob: 634251572fddb71d5709cdac03a5908717364241 [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>
Sasha Levin42f85702012-12-17 10:01:23 -050044#include <linux/hashtable.h>
Tejun Heoe22bee72010-06-29 10:07:14 +020045
Tejun Heoea138442013-01-18 14:05:55 -080046#include "workqueue_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Tejun Heoc8e55f32010-06-29 10:07:12 +020048enum {
Tejun Heobc2ae0f2012-07-17 12:39:27 -070049 /*
50 * global_cwq flags
51 *
52 * A bound gcwq is either associated or disassociated with its CPU.
53 * While associated (!DISASSOCIATED), all workers are bound to the
54 * CPU and none has %WORKER_UNBOUND set and concurrency management
55 * is in effect.
56 *
57 * While DISASSOCIATED, the cpu may be offline and all workers have
58 * %WORKER_UNBOUND set and concurrency management disabled, and may
59 * be executing on any CPU. The gcwq behaves as an unbound one.
60 *
61 * Note that DISASSOCIATED can be flipped only while holding
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -070062 * assoc_mutex of all pools on the gcwq to avoid changing binding
Tejun Heobc2ae0f2012-07-17 12:39:27 -070063 * state while create_worker() is in progress.
64 */
Tejun Heo11ebea52012-07-12 14:46:37 -070065 GCWQ_DISASSOCIATED = 1 << 0, /* cpu can't serve workers */
66 GCWQ_FREEZING = 1 << 1, /* freeze in progress */
67
68 /* pool flags */
69 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
Lai Jiangshan552a37e2012-09-10 10:03:33 -070070 POOL_MANAGING_WORKERS = 1 << 1, /* managing workers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020071
Tejun Heoc8e55f32010-06-29 10:07:12 +020072 /* worker flags */
73 WORKER_STARTED = 1 << 0, /* started */
74 WORKER_DIE = 1 << 1, /* die die die */
75 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020076 WORKER_PREP = 1 << 3, /* preparing to run works */
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
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -070080 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_UNBOUND |
Tejun Heo403c8212012-07-17 12:39:27 -070081 WORKER_CPU_INTENSIVE,
Tejun Heodb7bccf2010-06-29 10:07:12 +020082
Tejun Heoe34cdddb2013-01-24 11:01:33 -080083 NR_STD_WORKER_POOLS = 2, /* # standard pools per cpu */
Tejun Heo4ce62e92012-07-13 22:16:44 -070084
Tejun Heoc8e55f32010-06-29 10:07:12 +020085 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020086
Tejun Heoe22bee72010-06-29 10:07:14 +020087 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
88 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
89
Tejun Heo3233cdb2011-02-16 18:10:19 +010090 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
91 /* call for help after 10ms
92 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020093 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
94 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heoe22bee72010-06-29 10:07:14 +020095
96 /*
97 * Rescue workers are used only on emergencies and shared by
98 * all cpus. Give -20.
99 */
100 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -0700101 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +0200102};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/*
Tejun Heo4690c4a2010-06-29 10:07:10 +0200105 * Structure fields follow one of the following exclusion rules.
106 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200107 * I: Modifiable by initialization/destruction paths and read-only for
108 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200109 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200110 * P: Preemption protected. Disabling preemption is enough and should
111 * only be modified and accessed from the local cpu.
112 *
Tejun Heo8b03ae32010-06-29 10:07:12 +0200113 * L: gcwq->lock protected. Access with gcwq->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200114 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200115 * X: During normal operation, modification requires gcwq->lock and
116 * should be done only from local cpu. Either disabling preemption
117 * on local cpu or grabbing gcwq->lock is enough for read access.
Tejun Heof3421792010-07-02 10:03:51 +0200118 * If GCWQ_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200119 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200120 * F: wq->flush_mutex protected.
121 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200122 * W: workqueue_lock protected.
123 */
124
Tejun Heo2eaebdb2013-01-18 14:05:55 -0800125/* struct worker is defined in workqueue_internal.h */
Tejun Heoc34056a2010-06-29 10:07:11 +0200126
Tejun Heobd7bdd42012-07-12 14:46:37 -0700127struct worker_pool {
128 struct global_cwq *gcwq; /* I: the owning gcwq */
Tejun Heo11ebea52012-07-12 14:46:37 -0700129 unsigned int flags; /* X: flags */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700130
131 struct list_head worklist; /* L: list of pending works */
132 int nr_workers; /* L: total number of workers */
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700133
134 /* nr_idle includes the ones off idle_list for rebinding */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700135 int nr_idle; /* L: currently idle ones */
136
137 struct list_head idle_list; /* X: list of idle workers */
138 struct timer_list idle_timer; /* L: worker idle timeout */
139 struct timer_list mayday_timer; /* L: SOS timer for workers */
140
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -0700141 struct mutex assoc_mutex; /* protect GCWQ_DISASSOCIATED */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700142 struct ida worker_ida; /* L: for worker IDs */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700143};
144
Tejun Heo4690c4a2010-06-29 10:07:10 +0200145/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200146 * Global per-cpu workqueue. There's one and only one for each cpu
147 * and all works are queued and processed here regardless of their
148 * target workqueues.
Tejun Heo8b03ae32010-06-29 10:07:12 +0200149 */
150struct global_cwq {
151 spinlock_t lock; /* the gcwq lock */
152 unsigned int cpu; /* I: the associated cpu */
Tejun Heodb7bccf2010-06-29 10:07:12 +0200153 unsigned int flags; /* L: GCWQ_* flags */
Tejun Heoc8e55f32010-06-29 10:07:12 +0200154
Tejun Heobd7bdd42012-07-12 14:46:37 -0700155 /* workers are chained either in busy_hash or pool idle_list */
Sasha Levin42f85702012-12-17 10:01:23 -0500156 DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER);
Tejun Heoc8e55f32010-06-29 10:07:12 +0200157 /* L: hash of busy workers */
158
Tejun Heoe34cdddb2013-01-24 11:01:33 -0800159 struct worker_pool pools[NR_STD_WORKER_POOLS];
Joonsoo Kim330dad52012-08-15 23:25:36 +0900160 /* normal and highpri pools */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200161} ____cacheline_aligned_in_smp;
162
163/*
Tejun Heo502ca9d2010-06-29 10:07:13 +0200164 * The per-CPU workqueue. The lower WORK_STRUCT_FLAG_BITS of
Tejun Heo0f900042010-06-29 10:07:11 +0200165 * work_struct->data are used for flags and thus cwqs need to be
166 * aligned at two's power of the number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168struct cpu_workqueue_struct {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700169 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200170 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200171 int work_color; /* L: current color */
172 int flush_color; /* L: flushing color */
173 int nr_in_flight[WORK_NR_COLORS];
174 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200175 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200176 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200177 struct list_head delayed_works; /* L: delayed works */
Tejun Heo0f900042010-06-29 10:07:11 +0200178};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200181 * Structure used to wait for workqueue flush.
182 */
183struct wq_flusher {
184 struct list_head list; /* F: list of flushers */
185 int flush_color; /* F: flush color waiting for */
186 struct completion done; /* flush completion */
187};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Tejun Heo73f53c42010-06-29 10:07:11 +0200189/*
Tejun Heof2e005a2010-07-20 15:59:09 +0200190 * All cpumasks are assumed to be always set on UP and thus can't be
191 * used to determine whether there's something to be done.
192 */
193#ifdef CONFIG_SMP
194typedef cpumask_var_t mayday_mask_t;
195#define mayday_test_and_set_cpu(cpu, mask) \
196 cpumask_test_and_set_cpu((cpu), (mask))
197#define mayday_clear_cpu(cpu, mask) cpumask_clear_cpu((cpu), (mask))
198#define for_each_mayday_cpu(cpu, mask) for_each_cpu((cpu), (mask))
Tejun Heo9c375472010-08-31 11:18:34 +0200199#define alloc_mayday_mask(maskp, gfp) zalloc_cpumask_var((maskp), (gfp))
Tejun Heof2e005a2010-07-20 15:59:09 +0200200#define free_mayday_mask(mask) free_cpumask_var((mask))
201#else
202typedef unsigned long mayday_mask_t;
203#define mayday_test_and_set_cpu(cpu, mask) test_and_set_bit(0, &(mask))
204#define mayday_clear_cpu(cpu, mask) clear_bit(0, &(mask))
205#define for_each_mayday_cpu(cpu, mask) if ((cpu) = 0, (mask))
206#define alloc_mayday_mask(maskp, gfp) true
207#define free_mayday_mask(mask) do { } while (0)
208#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210/*
211 * The externally visible workqueue abstraction is an array of
212 * per-CPU workqueues:
213 */
214struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200215 unsigned int flags; /* W: WQ_* flags */
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200216 union {
217 struct cpu_workqueue_struct __percpu *pcpu;
218 struct cpu_workqueue_struct *single;
219 unsigned long v;
220 } cpu_wq; /* I: cwq's */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200221 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200222
223 struct mutex flush_mutex; /* protects wq flushing */
224 int work_color; /* F: current work color */
225 int flush_color; /* F: current flush color */
226 atomic_t nr_cwqs_to_flush; /* flush in progress */
227 struct wq_flusher *first_flusher; /* F: first flusher */
228 struct list_head flusher_queue; /* F: flush waiters */
229 struct list_head flusher_overflow; /* F: flush overflow list */
230
Tejun Heof2e005a2010-07-20 15:59:09 +0200231 mayday_mask_t mayday_mask; /* cpus requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200232 struct worker *rescuer; /* I: rescue worker */
233
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200234 int nr_drainers; /* W: drain in progress */
Tejun Heodcd989c2010-06-29 10:07:14 +0200235 int saved_max_active; /* W: saved cwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700236#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200237 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700238#endif
Tejun Heob196be82012-01-10 15:11:35 -0800239 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Tejun Heod320c032010-06-29 10:07:14 +0200242struct workqueue_struct *system_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200243EXPORT_SYMBOL_GPL(system_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300244struct workqueue_struct *system_highpri_wq __read_mostly;
Joonsoo Kim1aabe902012-08-15 23:25:39 +0900245EXPORT_SYMBOL_GPL(system_highpri_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300246struct workqueue_struct *system_long_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200247EXPORT_SYMBOL_GPL(system_long_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300248struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200249EXPORT_SYMBOL_GPL(system_unbound_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300250struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100251EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200252
Tejun Heo97bd2342010-10-05 10:41:14 +0200253#define CREATE_TRACE_POINTS
254#include <trace/events/workqueue.h>
255
Tejun Heo4ce62e92012-07-13 22:16:44 -0700256#define for_each_worker_pool(pool, gcwq) \
Tejun Heo32704762012-07-13 22:16:45 -0700257 for ((pool) = &(gcwq)->pools[0]; \
Tejun Heoe34cdddb2013-01-24 11:01:33 -0800258 (pool) < &(gcwq)->pools[NR_STD_WORKER_POOLS]; (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700259
Tejun Heodb7bccf2010-06-29 10:07:12 +0200260#define for_each_busy_worker(worker, i, pos, gcwq) \
Sasha Levin42f85702012-12-17 10:01:23 -0500261 hash_for_each(gcwq->busy_hash, i, pos, worker, hentry)
Tejun Heodb7bccf2010-06-29 10:07:12 +0200262
Tejun Heof3421792010-07-02 10:03:51 +0200263static inline int __next_gcwq_cpu(int cpu, const struct cpumask *mask,
264 unsigned int sw)
265{
266 if (cpu < nr_cpu_ids) {
267 if (sw & 1) {
268 cpu = cpumask_next(cpu, mask);
269 if (cpu < nr_cpu_ids)
270 return cpu;
271 }
272 if (sw & 2)
273 return WORK_CPU_UNBOUND;
274 }
275 return WORK_CPU_NONE;
276}
277
278static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
279 struct workqueue_struct *wq)
280{
281 return __next_gcwq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
282}
283
Tejun Heo09884952010-08-01 11:50:12 +0200284/*
285 * CPU iterators
286 *
287 * An extra gcwq is defined for an invalid cpu number
288 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
289 * specific CPU. The following iterators are similar to
290 * for_each_*_cpu() iterators but also considers the unbound gcwq.
291 *
292 * for_each_gcwq_cpu() : possible CPUs + WORK_CPU_UNBOUND
293 * for_each_online_gcwq_cpu() : online CPUs + WORK_CPU_UNBOUND
294 * for_each_cwq_cpu() : possible CPUs for bound workqueues,
295 * WORK_CPU_UNBOUND for unbound workqueues
296 */
Tejun Heof3421792010-07-02 10:03:51 +0200297#define for_each_gcwq_cpu(cpu) \
298 for ((cpu) = __next_gcwq_cpu(-1, cpu_possible_mask, 3); \
299 (cpu) < WORK_CPU_NONE; \
300 (cpu) = __next_gcwq_cpu((cpu), cpu_possible_mask, 3))
301
302#define for_each_online_gcwq_cpu(cpu) \
303 for ((cpu) = __next_gcwq_cpu(-1, cpu_online_mask, 3); \
304 (cpu) < WORK_CPU_NONE; \
305 (cpu) = __next_gcwq_cpu((cpu), cpu_online_mask, 3))
306
307#define for_each_cwq_cpu(cpu, wq) \
308 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, (wq)); \
309 (cpu) < WORK_CPU_NONE; \
310 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, (wq)))
311
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900312#ifdef CONFIG_DEBUG_OBJECTS_WORK
313
314static struct debug_obj_descr work_debug_descr;
315
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100316static void *work_debug_hint(void *addr)
317{
318 return ((struct work_struct *) addr)->func;
319}
320
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900321/*
322 * fixup_init is called when:
323 * - an active object is initialized
324 */
325static int work_fixup_init(void *addr, enum debug_obj_state state)
326{
327 struct work_struct *work = addr;
328
329 switch (state) {
330 case ODEBUG_STATE_ACTIVE:
331 cancel_work_sync(work);
332 debug_object_init(work, &work_debug_descr);
333 return 1;
334 default:
335 return 0;
336 }
337}
338
339/*
340 * fixup_activate is called when:
341 * - an active object is activated
342 * - an unknown object is activated (might be a statically initialized object)
343 */
344static int work_fixup_activate(void *addr, enum debug_obj_state state)
345{
346 struct work_struct *work = addr;
347
348 switch (state) {
349
350 case ODEBUG_STATE_NOTAVAILABLE:
351 /*
352 * This is not really a fixup. The work struct was
353 * statically initialized. We just make sure that it
354 * is tracked in the object tracker.
355 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200356 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900357 debug_object_init(work, &work_debug_descr);
358 debug_object_activate(work, &work_debug_descr);
359 return 0;
360 }
361 WARN_ON_ONCE(1);
362 return 0;
363
364 case ODEBUG_STATE_ACTIVE:
365 WARN_ON(1);
366
367 default:
368 return 0;
369 }
370}
371
372/*
373 * fixup_free is called when:
374 * - an active object is freed
375 */
376static int work_fixup_free(void *addr, enum debug_obj_state state)
377{
378 struct work_struct *work = addr;
379
380 switch (state) {
381 case ODEBUG_STATE_ACTIVE:
382 cancel_work_sync(work);
383 debug_object_free(work, &work_debug_descr);
384 return 1;
385 default:
386 return 0;
387 }
388}
389
390static struct debug_obj_descr work_debug_descr = {
391 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100392 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900393 .fixup_init = work_fixup_init,
394 .fixup_activate = work_fixup_activate,
395 .fixup_free = work_fixup_free,
396};
397
398static inline void debug_work_activate(struct work_struct *work)
399{
400 debug_object_activate(work, &work_debug_descr);
401}
402
403static inline void debug_work_deactivate(struct work_struct *work)
404{
405 debug_object_deactivate(work, &work_debug_descr);
406}
407
408void __init_work(struct work_struct *work, int onstack)
409{
410 if (onstack)
411 debug_object_init_on_stack(work, &work_debug_descr);
412 else
413 debug_object_init(work, &work_debug_descr);
414}
415EXPORT_SYMBOL_GPL(__init_work);
416
417void destroy_work_on_stack(struct work_struct *work)
418{
419 debug_object_free(work, &work_debug_descr);
420}
421EXPORT_SYMBOL_GPL(destroy_work_on_stack);
422
423#else
424static inline void debug_work_activate(struct work_struct *work) { }
425static inline void debug_work_deactivate(struct work_struct *work) { }
426#endif
427
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100428/* Serializes the accesses to the list of workqueues. */
429static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200431static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Oleg Nesterov14441962007-05-23 13:57:57 -0700433/*
Tejun Heoe22bee72010-06-29 10:07:14 +0200434 * The almighty global cpu workqueues. nr_running is the only field
435 * which is expected to be used frequently by other cpus via
436 * try_to_wake_up(). Put it in a separate cacheline.
Oleg Nesterov14441962007-05-23 13:57:57 -0700437 */
Tejun Heo8b03ae32010-06-29 10:07:12 +0200438static DEFINE_PER_CPU(struct global_cwq, global_cwq);
Tejun Heoe34cdddb2013-01-24 11:01:33 -0800439static DEFINE_PER_CPU_SHARED_ALIGNED(atomic_t, pool_nr_running[NR_STD_WORKER_POOLS]);
Nathan Lynchf756d5e2006-01-08 01:05:12 -0800440
Tejun Heof3421792010-07-02 10:03:51 +0200441/*
442 * Global cpu workqueue and nr_running counter for unbound gcwq. The
443 * gcwq is always online, has GCWQ_DISASSOCIATED set, and all its
444 * workers have WORKER_UNBOUND set.
445 */
446static struct global_cwq unbound_global_cwq;
Tejun Heoe34cdddb2013-01-24 11:01:33 -0800447static atomic_t unbound_pool_nr_running[NR_STD_WORKER_POOLS] = {
448 [0 ... NR_STD_WORKER_POOLS - 1] = ATOMIC_INIT(0), /* always 0 */
Tejun Heo4ce62e92012-07-13 22:16:44 -0700449};
Tejun Heof3421792010-07-02 10:03:51 +0200450
Tejun Heoc34056a2010-06-29 10:07:11 +0200451static int worker_thread(void *__worker);
Tejun Heoe2905b22013-01-24 11:01:32 -0800452static unsigned int work_cpu(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Tejun Heoe34cdddb2013-01-24 11:01:33 -0800454static int std_worker_pool_pri(struct worker_pool *pool)
Tejun Heo32704762012-07-13 22:16:45 -0700455{
456 return pool - pool->gcwq->pools;
457}
458
Tejun Heo8b03ae32010-06-29 10:07:12 +0200459static struct global_cwq *get_gcwq(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Tejun Heof3421792010-07-02 10:03:51 +0200461 if (cpu != WORK_CPU_UNBOUND)
462 return &per_cpu(global_cwq, cpu);
463 else
464 return &unbound_global_cwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Tejun Heo63d95a92012-07-12 14:46:37 -0700467static atomic_t *get_pool_nr_running(struct worker_pool *pool)
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700468{
Tejun Heo63d95a92012-07-12 14:46:37 -0700469 int cpu = pool->gcwq->cpu;
Tejun Heoe34cdddb2013-01-24 11:01:33 -0800470 int idx = std_worker_pool_pri(pool);
Tejun Heo63d95a92012-07-12 14:46:37 -0700471
Tejun Heof3421792010-07-02 10:03:51 +0200472 if (cpu != WORK_CPU_UNBOUND)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700473 return &per_cpu(pool_nr_running, cpu)[idx];
Tejun Heof3421792010-07-02 10:03:51 +0200474 else
Tejun Heo4ce62e92012-07-13 22:16:44 -0700475 return &unbound_pool_nr_running[idx];
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700476}
477
Tejun Heo4690c4a2010-06-29 10:07:10 +0200478static struct cpu_workqueue_struct *get_cwq(unsigned int cpu,
479 struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700480{
Tejun Heof3421792010-07-02 10:03:51 +0200481 if (!(wq->flags & WQ_UNBOUND)) {
Lai Jiangshane06ffa12012-03-09 18:03:20 +0800482 if (likely(cpu < nr_cpu_ids))
Tejun Heof3421792010-07-02 10:03:51 +0200483 return per_cpu_ptr(wq->cpu_wq.pcpu, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200484 } else if (likely(cpu == WORK_CPU_UNBOUND))
485 return wq->cpu_wq.single;
486 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700487}
488
Tejun Heo73f53c42010-06-29 10:07:11 +0200489static unsigned int work_color_to_flags(int color)
490{
491 return color << WORK_STRUCT_COLOR_SHIFT;
492}
493
494static int get_work_color(struct work_struct *work)
495{
496 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
497 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
498}
499
500static int work_next_color(int color)
501{
502 return (color + 1) % WORK_NR_COLORS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
David Howells4594bf12006-12-07 11:33:26 +0000505/*
Tejun Heob5490072012-08-03 10:30:46 -0700506 * While queued, %WORK_STRUCT_CWQ is set and non flag bits of a work's data
507 * contain the pointer to the queued cwq. Once execution starts, the flag
508 * is cleared and the high bits contain OFFQ flags and CPU number.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200509 *
Tejun Heobbb68df2012-08-03 10:30:46 -0700510 * set_work_cwq(), set_work_cpu_and_clear_pending(), mark_work_canceling()
511 * and clear_work_data() can be used to set the cwq, cpu or clear
512 * work->data. These functions should only be called while the work is
513 * owned - ie. while the PENDING bit is set.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200514 *
Tejun Heobbb68df2012-08-03 10:30:46 -0700515 * get_work_[g]cwq() can be used to obtain the gcwq or cwq corresponding to
516 * a work. gcwq is available once the work has been queued anywhere after
517 * initialization until it is sync canceled. cwq is available only while
518 * the work item is queued.
519 *
520 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
521 * canceled. While being canceled, a work item may have its PENDING set
522 * but stay off timer and worklist for arbitrarily long and nobody should
523 * try to steal the PENDING bit.
David Howells4594bf12006-12-07 11:33:26 +0000524 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200525static inline void set_work_data(struct work_struct *work, unsigned long data,
526 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000527{
David Howells4594bf12006-12-07 11:33:26 +0000528 BUG_ON(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200529 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000530}
David Howells365970a2006-11-22 14:54:49 +0000531
Tejun Heo7a22ad72010-06-29 10:07:13 +0200532static void set_work_cwq(struct work_struct *work,
533 struct cpu_workqueue_struct *cwq,
534 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200535{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200536 set_work_data(work, (unsigned long)cwq,
Tejun Heoe1201532010-07-22 14:14:25 +0200537 WORK_STRUCT_PENDING | WORK_STRUCT_CWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200538}
539
Tejun Heo8930cab2012-08-03 10:30:45 -0700540static void set_work_cpu_and_clear_pending(struct work_struct *work,
541 unsigned int cpu)
David Howells365970a2006-11-22 14:54:49 +0000542{
Tejun Heo23657bb2012-08-13 17:08:19 -0700543 /*
544 * The following wmb is paired with the implied mb in
545 * test_and_set_bit(PENDING) and ensures all updates to @work made
546 * here are visible to and precede any updates by the next PENDING
547 * owner.
548 */
549 smp_wmb();
Tejun Heob5490072012-08-03 10:30:46 -0700550 set_work_data(work, (unsigned long)cpu << WORK_OFFQ_CPU_SHIFT, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200551}
552
553static void clear_work_data(struct work_struct *work)
554{
Tejun Heo23657bb2012-08-13 17:08:19 -0700555 smp_wmb(); /* see set_work_cpu_and_clear_pending() */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200556 set_work_data(work, WORK_STRUCT_NO_CPU, 0);
557}
558
Tejun Heo7a22ad72010-06-29 10:07:13 +0200559static struct cpu_workqueue_struct *get_work_cwq(struct work_struct *work)
560{
Tejun Heoe1201532010-07-22 14:14:25 +0200561 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200562
Tejun Heoe1201532010-07-22 14:14:25 +0200563 if (data & WORK_STRUCT_CWQ)
564 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
565 else
566 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200567}
568
569static struct global_cwq *get_work_gcwq(struct work_struct *work)
570{
Tejun Heoe1201532010-07-22 14:14:25 +0200571 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200572 unsigned int cpu;
573
Tejun Heoe1201532010-07-22 14:14:25 +0200574 if (data & WORK_STRUCT_CWQ)
575 return ((struct cpu_workqueue_struct *)
Tejun Heobd7bdd42012-07-12 14:46:37 -0700576 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->gcwq;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200577
Tejun Heob5490072012-08-03 10:30:46 -0700578 cpu = data >> WORK_OFFQ_CPU_SHIFT;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200579 if (cpu == WORK_CPU_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200580 return NULL;
581
Tejun Heof3421792010-07-02 10:03:51 +0200582 BUG_ON(cpu >= nr_cpu_ids && cpu != WORK_CPU_UNBOUND);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200583 return get_gcwq(cpu);
David Howells365970a2006-11-22 14:54:49 +0000584}
585
Tejun Heobbb68df2012-08-03 10:30:46 -0700586static void mark_work_canceling(struct work_struct *work)
587{
588 struct global_cwq *gcwq = get_work_gcwq(work);
589 unsigned long cpu = gcwq ? gcwq->cpu : WORK_CPU_NONE;
590
591 set_work_data(work, (cpu << WORK_OFFQ_CPU_SHIFT) | WORK_OFFQ_CANCELING,
592 WORK_STRUCT_PENDING);
593}
594
595static bool work_is_canceling(struct work_struct *work)
596{
597 unsigned long data = atomic_long_read(&work->data);
598
599 return !(data & WORK_STRUCT_CWQ) && (data & WORK_OFFQ_CANCELING);
600}
601
David Howells365970a2006-11-22 14:54:49 +0000602/*
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
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700660 /*
661 * nr_idle and idle_list may disagree if idle rebinding is in
662 * progress. Never return %true if idle_list is empty.
663 */
664 if (list_empty(&pool->idle_list))
665 return false;
666
Tejun Heoe22bee72010-06-29 10:07:14 +0200667 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
668}
669
670/*
671 * Wake up functions.
672 */
673
Tejun Heo7e116292010-06-29 10:07:13 +0200674/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700675static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200676{
Tejun Heo63d95a92012-07-12 14:46:37 -0700677 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200678 return NULL;
679
Tejun Heo63d95a92012-07-12 14:46:37 -0700680 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200681}
682
683/**
684 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700685 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200686 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700687 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200688 *
689 * CONTEXT:
690 * spin_lock_irq(gcwq->lock).
691 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700692static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200693{
Tejun Heo63d95a92012-07-12 14:46:37 -0700694 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200695
696 if (likely(worker))
697 wake_up_process(worker->task);
698}
699
Tejun Heo4690c4a2010-06-29 10:07:10 +0200700/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200701 * wq_worker_waking_up - a worker is waking up
702 * @task: task waking up
703 * @cpu: CPU @task is waking up to
704 *
705 * This function is called during try_to_wake_up() when a worker is
706 * being awoken.
707 *
708 * CONTEXT:
709 * spin_lock_irq(rq->lock)
710 */
711void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
712{
713 struct worker *worker = kthread_data(task);
714
Joonsoo Kim36576002012-10-26 23:03:49 +0900715 if (!(worker->flags & WORKER_NOT_RUNNING)) {
716 WARN_ON_ONCE(worker->pool->gcwq->cpu != cpu);
Tejun Heo63d95a92012-07-12 14:46:37 -0700717 atomic_inc(get_pool_nr_running(worker->pool));
Joonsoo Kim36576002012-10-26 23:03:49 +0900718 }
Tejun Heoe22bee72010-06-29 10:07:14 +0200719}
720
721/**
722 * wq_worker_sleeping - a worker is going to sleep
723 * @task: task going to sleep
724 * @cpu: CPU in question, must be the current CPU number
725 *
726 * This function is called during schedule() when a busy worker is
727 * going to sleep. Worker on the same cpu can be woken up by
728 * returning pointer to its task.
729 *
730 * CONTEXT:
731 * spin_lock_irq(rq->lock)
732 *
733 * RETURNS:
734 * Worker task on @cpu to wake up, %NULL if none.
735 */
736struct task_struct *wq_worker_sleeping(struct task_struct *task,
737 unsigned int cpu)
738{
739 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heo111c2252013-01-17 17:16:24 -0800740 struct worker_pool *pool;
741 atomic_t *nr_running;
Tejun Heoe22bee72010-06-29 10:07:14 +0200742
Tejun Heo111c2252013-01-17 17:16:24 -0800743 /*
744 * Rescuers, which may not have all the fields set up like normal
745 * workers, also reach here, let's not access anything before
746 * checking NOT_RUNNING.
747 */
Steven Rostedt2d646722010-12-03 23:12:33 -0500748 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200749 return NULL;
750
Tejun Heo111c2252013-01-17 17:16:24 -0800751 pool = worker->pool;
752 nr_running = get_pool_nr_running(pool);
753
Tejun Heoe22bee72010-06-29 10:07:14 +0200754 /* this can only happen on the local cpu */
755 BUG_ON(cpu != raw_smp_processor_id());
756
757 /*
758 * The counterpart of the following dec_and_test, implied mb,
759 * worklist not empty test sequence is in insert_work().
760 * Please read comment there.
761 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700762 * NOT_RUNNING is clear. This means that we're bound to and
763 * running on the local cpu w/ rq lock held and preemption
764 * disabled, which in turn means that none else could be
765 * manipulating idle_list, so dereferencing idle_list without gcwq
766 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200767 */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700768 if (atomic_dec_and_test(nr_running) && !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700769 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200770 return to_wakeup ? to_wakeup->task : NULL;
771}
772
773/**
774 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200775 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200776 * @flags: flags to set
777 * @wakeup: wakeup an idle worker if necessary
778 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200779 * Set @flags in @worker->flags and adjust nr_running accordingly. If
780 * nr_running becomes zero and @wakeup is %true, an idle worker is
781 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200782 *
Tejun Heocb444762010-07-02 10:03:50 +0200783 * CONTEXT:
784 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200785 */
786static inline void worker_set_flags(struct worker *worker, unsigned int flags,
787 bool wakeup)
788{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700789 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200790
Tejun Heocb444762010-07-02 10:03:50 +0200791 WARN_ON_ONCE(worker->task != current);
792
Tejun Heoe22bee72010-06-29 10:07:14 +0200793 /*
794 * If transitioning into NOT_RUNNING, adjust nr_running and
795 * wake up an idle worker as necessary if requested by
796 * @wakeup.
797 */
798 if ((flags & WORKER_NOT_RUNNING) &&
799 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heo63d95a92012-07-12 14:46:37 -0700800 atomic_t *nr_running = get_pool_nr_running(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200801
802 if (wakeup) {
803 if (atomic_dec_and_test(nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700804 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700805 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200806 } else
807 atomic_dec(nr_running);
808 }
809
Tejun Heod302f012010-06-29 10:07:13 +0200810 worker->flags |= flags;
811}
812
813/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200814 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200815 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200816 * @flags: flags to clear
817 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200818 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200819 *
Tejun Heocb444762010-07-02 10:03:50 +0200820 * CONTEXT:
821 * spin_lock_irq(gcwq->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200822 */
823static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
824{
Tejun Heo63d95a92012-07-12 14:46:37 -0700825 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200826 unsigned int oflags = worker->flags;
827
Tejun Heocb444762010-07-02 10:03:50 +0200828 WARN_ON_ONCE(worker->task != current);
829
Tejun Heod302f012010-06-29 10:07:13 +0200830 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200831
Tejun Heo42c025f2011-01-11 15:58:49 +0100832 /*
833 * If transitioning out of NOT_RUNNING, increment nr_running. Note
834 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
835 * of multiple flags, not a single flag.
836 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200837 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
838 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heo63d95a92012-07-12 14:46:37 -0700839 atomic_inc(get_pool_nr_running(pool));
Tejun Heod302f012010-06-29 10:07:13 +0200840}
841
842/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200843 * find_worker_executing_work - find worker which is executing a work
844 * @gcwq: gcwq of interest
845 * @work: work to find worker for
846 *
Tejun Heoa2c1c572012-12-18 10:35:02 -0800847 * Find a worker which is executing @work on @gcwq by searching
848 * @gcwq->busy_hash which is keyed by the address of @work. For a worker
849 * to match, its current execution should match the address of @work and
850 * its work function. This is to avoid unwanted dependency between
851 * unrelated work executions through a work item being recycled while still
852 * being executed.
853 *
854 * This is a bit tricky. A work item may be freed once its execution
855 * starts and nothing prevents the freed area from being recycled for
856 * another work item. If the same work item address ends up being reused
857 * before the original execution finishes, workqueue will identify the
858 * recycled work item as currently executing and make it wait until the
859 * current execution finishes, introducing an unwanted dependency.
860 *
861 * This function checks the work item address, work function and workqueue
862 * to avoid false positives. Note that this isn't complete as one may
863 * construct a work function which can introduce dependency onto itself
864 * through a recycled work item. Well, if somebody wants to shoot oneself
865 * in the foot that badly, there's only so much we can do, and if such
866 * deadlock actually occurs, it should be easy to locate the culprit work
867 * function.
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200868 *
869 * CONTEXT:
870 * spin_lock_irq(gcwq->lock).
871 *
872 * RETURNS:
873 * Pointer to worker which is executing @work if found, NULL
874 * otherwise.
875 */
876static struct worker *find_worker_executing_work(struct global_cwq *gcwq,
877 struct work_struct *work)
878{
Sasha Levin42f85702012-12-17 10:01:23 -0500879 struct worker *worker;
880 struct hlist_node *tmp;
881
Tejun Heoa2c1c572012-12-18 10:35:02 -0800882 hash_for_each_possible(gcwq->busy_hash, worker, tmp, hentry,
883 (unsigned long)work)
884 if (worker->current_work == work &&
885 worker->current_func == work->func)
Sasha Levin42f85702012-12-17 10:01:23 -0500886 return worker;
887
888 return NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200889}
890
891/**
Tejun Heobf4ede02012-08-03 10:30:46 -0700892 * move_linked_works - move linked works to a list
893 * @work: start of series of works to be scheduled
894 * @head: target list to append @work to
895 * @nextp: out paramter for nested worklist walking
896 *
897 * Schedule linked works starting from @work to @head. Work series to
898 * be scheduled starts at @work and includes any consecutive work with
899 * WORK_STRUCT_LINKED set in its predecessor.
900 *
901 * If @nextp is not NULL, it's updated to point to the next work of
902 * the last scheduled work. This allows move_linked_works() to be
903 * nested inside outer list_for_each_entry_safe().
904 *
905 * CONTEXT:
906 * spin_lock_irq(gcwq->lock).
907 */
908static void move_linked_works(struct work_struct *work, struct list_head *head,
909 struct work_struct **nextp)
910{
911 struct work_struct *n;
912
913 /*
914 * Linked worklist will always end before the end of the list,
915 * use NULL for list head.
916 */
917 list_for_each_entry_safe_from(work, n, NULL, entry) {
918 list_move_tail(&work->entry, head);
919 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
920 break;
921 }
922
923 /*
924 * If we're already inside safe list traversal and have moved
925 * multiple works to the scheduled queue, the next position
926 * needs to be updated.
927 */
928 if (nextp)
929 *nextp = n;
930}
931
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700932static void cwq_activate_delayed_work(struct work_struct *work)
Tejun Heobf4ede02012-08-03 10:30:46 -0700933{
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700934 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heobf4ede02012-08-03 10:30:46 -0700935
936 trace_workqueue_activate_work(work);
937 move_linked_works(work, &cwq->pool->worklist, NULL);
938 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
939 cwq->nr_active++;
940}
941
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700942static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
943{
944 struct work_struct *work = list_first_entry(&cwq->delayed_works,
945 struct work_struct, entry);
946
947 cwq_activate_delayed_work(work);
948}
949
Tejun Heobf4ede02012-08-03 10:30:46 -0700950/**
951 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
952 * @cwq: cwq of interest
953 * @color: color of work which left the queue
Tejun Heobf4ede02012-08-03 10:30:46 -0700954 *
955 * A work either has completed or is removed from pending queue,
956 * decrement nr_in_flight of its cwq and handle workqueue flushing.
957 *
958 * CONTEXT:
959 * spin_lock_irq(gcwq->lock).
960 */
Lai Jiangshanb3f9f402012-09-18 10:40:00 -0700961static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color)
Tejun Heobf4ede02012-08-03 10:30:46 -0700962{
963 /* ignore uncolored works */
964 if (color == WORK_NO_COLOR)
965 return;
966
967 cwq->nr_in_flight[color]--;
968
Lai Jiangshanb3f9f402012-09-18 10:40:00 -0700969 cwq->nr_active--;
970 if (!list_empty(&cwq->delayed_works)) {
971 /* one down, submit a delayed one */
972 if (cwq->nr_active < cwq->max_active)
973 cwq_activate_first_delayed(cwq);
Tejun Heobf4ede02012-08-03 10:30:46 -0700974 }
975
976 /* is flush in progress and are we at the flushing tip? */
977 if (likely(cwq->flush_color != color))
978 return;
979
980 /* are there still in-flight works? */
981 if (cwq->nr_in_flight[color])
982 return;
983
984 /* this cwq is done, clear flush_color */
985 cwq->flush_color = -1;
986
987 /*
988 * If this was the last cwq, wake up the first flusher. It
989 * will handle the rest.
990 */
991 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
992 complete(&cwq->wq->first_flusher->done);
993}
994
Tejun Heo36e227d2012-08-03 10:30:46 -0700995/**
Tejun Heobbb68df2012-08-03 10:30:46 -0700996 * try_to_grab_pending - steal work item from worklist and disable irq
Tejun Heo36e227d2012-08-03 10:30:46 -0700997 * @work: work item to steal
998 * @is_dwork: @work is a delayed_work
Tejun Heobbb68df2012-08-03 10:30:46 -0700999 * @flags: place to store irq state
Tejun Heo36e227d2012-08-03 10:30:46 -07001000 *
1001 * Try to grab PENDING bit of @work. This function can handle @work in any
1002 * stable state - idle, on timer or on worklist. Return values are
1003 *
1004 * 1 if @work was pending and we successfully stole PENDING
1005 * 0 if @work was idle and we claimed PENDING
1006 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
Tejun Heobbb68df2012-08-03 10:30:46 -07001007 * -ENOENT if someone else is canceling @work, this state may persist
1008 * for arbitrarily long
Tejun Heo36e227d2012-08-03 10:30:46 -07001009 *
Tejun Heobbb68df2012-08-03 10:30:46 -07001010 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001011 * interrupted while holding PENDING and @work off queue, irq must be
1012 * disabled on entry. This, combined with delayed_work->timer being
1013 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
Tejun Heobbb68df2012-08-03 10:30:46 -07001014 *
1015 * On successful return, >= 0, irq is disabled and the caller is
1016 * responsible for releasing it using local_irq_restore(*@flags).
1017 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001018 * This function is safe to call from any context including IRQ handler.
Tejun Heobf4ede02012-08-03 10:30:46 -07001019 */
Tejun Heobbb68df2012-08-03 10:30:46 -07001020static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1021 unsigned long *flags)
Tejun Heobf4ede02012-08-03 10:30:46 -07001022{
1023 struct global_cwq *gcwq;
Tejun Heobf4ede02012-08-03 10:30:46 -07001024
Tejun Heobbb68df2012-08-03 10:30:46 -07001025 local_irq_save(*flags);
1026
Tejun Heo36e227d2012-08-03 10:30:46 -07001027 /* try to steal the timer if it exists */
1028 if (is_dwork) {
1029 struct delayed_work *dwork = to_delayed_work(work);
1030
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001031 /*
1032 * dwork->timer is irqsafe. If del_timer() fails, it's
1033 * guaranteed that the timer is not queued anywhere and not
1034 * running on the local CPU.
1035 */
Tejun Heo36e227d2012-08-03 10:30:46 -07001036 if (likely(del_timer(&dwork->timer)))
1037 return 1;
1038 }
1039
1040 /* try to claim PENDING the normal way */
Tejun Heobf4ede02012-08-03 10:30:46 -07001041 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1042 return 0;
1043
1044 /*
1045 * The queueing is in progress, or it is already queued. Try to
1046 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1047 */
1048 gcwq = get_work_gcwq(work);
1049 if (!gcwq)
Tejun Heobbb68df2012-08-03 10:30:46 -07001050 goto fail;
Tejun Heobf4ede02012-08-03 10:30:46 -07001051
Tejun Heobbb68df2012-08-03 10:30:46 -07001052 spin_lock(&gcwq->lock);
Tejun Heobf4ede02012-08-03 10:30:46 -07001053 if (!list_empty(&work->entry)) {
1054 /*
1055 * This work is queued, but perhaps we locked the wrong gcwq.
1056 * In that case we must see the new value after rmb(), see
1057 * insert_work()->wmb().
1058 */
1059 smp_rmb();
1060 if (gcwq == get_work_gcwq(work)) {
1061 debug_work_deactivate(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001062
1063 /*
1064 * A delayed work item cannot be grabbed directly
1065 * because it might have linked NO_COLOR work items
1066 * which, if left on the delayed_list, will confuse
1067 * cwq->nr_active management later on and cause
1068 * stall. Make sure the work item is activated
1069 * before grabbing.
1070 */
1071 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
1072 cwq_activate_delayed_work(work);
1073
Tejun Heobf4ede02012-08-03 10:30:46 -07001074 list_del_init(&work->entry);
1075 cwq_dec_nr_in_flight(get_work_cwq(work),
Lai Jiangshanb3f9f402012-09-18 10:40:00 -07001076 get_work_color(work));
Tejun Heo36e227d2012-08-03 10:30:46 -07001077
Tejun Heobbb68df2012-08-03 10:30:46 -07001078 spin_unlock(&gcwq->lock);
Tejun Heo36e227d2012-08-03 10:30:46 -07001079 return 1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001080 }
1081 }
Tejun Heobbb68df2012-08-03 10:30:46 -07001082 spin_unlock(&gcwq->lock);
1083fail:
1084 local_irq_restore(*flags);
1085 if (work_is_canceling(work))
1086 return -ENOENT;
1087 cpu_relax();
Tejun Heo36e227d2012-08-03 10:30:46 -07001088 return -EAGAIN;
Tejun Heobf4ede02012-08-03 10:30:46 -07001089}
1090
1091/**
Tejun Heo7e116292010-06-29 10:07:13 +02001092 * insert_work - insert a work into gcwq
Tejun Heo4690c4a2010-06-29 10:07:10 +02001093 * @cwq: cwq @work belongs to
1094 * @work: work to insert
1095 * @head: insertion point
1096 * @extra_flags: extra WORK_STRUCT_* flags to set
1097 *
Tejun Heo7e116292010-06-29 10:07:13 +02001098 * Insert @work which belongs to @cwq into @gcwq after @head.
1099 * @extra_flags is or'd to work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001100 *
1101 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001102 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001103 */
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001104static void insert_work(struct cpu_workqueue_struct *cwq,
Tejun Heo4690c4a2010-06-29 10:07:10 +02001105 struct work_struct *work, struct list_head *head,
1106 unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001107{
Tejun Heo63d95a92012-07-12 14:46:37 -07001108 struct worker_pool *pool = cwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01001109
Tejun Heo4690c4a2010-06-29 10:07:10 +02001110 /* we own @work, set data and link */
Tejun Heo7a22ad72010-06-29 10:07:13 +02001111 set_work_cwq(work, cwq, extra_flags);
Tejun Heo4690c4a2010-06-29 10:07:10 +02001112
Oleg Nesterov6e84d642007-05-09 02:34:46 -07001113 /*
1114 * Ensure that we get the right work->data if we see the
1115 * result of list_add() below, see try_to_grab_pending().
1116 */
1117 smp_wmb();
Tejun Heo4690c4a2010-06-29 10:07:10 +02001118
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -07001119 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +02001120
1121 /*
1122 * Ensure either worker_sched_deactivated() sees the above
1123 * list_add_tail() or we see zero nr_running to avoid workers
1124 * lying around lazily while there are works to be processed.
1125 */
1126 smp_mb();
1127
Tejun Heo63d95a92012-07-12 14:46:37 -07001128 if (__need_more_worker(pool))
1129 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001130}
1131
Tejun Heoc8efcc22010-12-20 19:32:04 +01001132/*
1133 * Test whether @work is being queued from another work executing on the
1134 * same workqueue. This is rather expensive and should only be used from
1135 * cold paths.
1136 */
1137static bool is_chained_work(struct workqueue_struct *wq)
1138{
1139 unsigned long flags;
1140 unsigned int cpu;
1141
1142 for_each_gcwq_cpu(cpu) {
1143 struct global_cwq *gcwq = get_gcwq(cpu);
1144 struct worker *worker;
1145 struct hlist_node *pos;
1146 int i;
1147
1148 spin_lock_irqsave(&gcwq->lock, flags);
1149 for_each_busy_worker(worker, i, pos, gcwq) {
1150 if (worker->task != current)
1151 continue;
1152 spin_unlock_irqrestore(&gcwq->lock, flags);
1153 /*
1154 * I'm @worker, no locking necessary. See if @work
1155 * is headed to the same workqueue.
1156 */
1157 return worker->current_cwq->wq == wq;
1158 }
1159 spin_unlock_irqrestore(&gcwq->lock, flags);
1160 }
1161 return false;
1162}
1163
Tejun Heo4690c4a2010-06-29 10:07:10 +02001164static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 struct work_struct *work)
1166{
Tejun Heo502ca9d2010-06-29 10:07:13 +02001167 struct global_cwq *gcwq;
1168 struct cpu_workqueue_struct *cwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001169 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001170 unsigned int work_flags;
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001171 unsigned int req_cpu = cpu;
Tejun Heo8930cab2012-08-03 10:30:45 -07001172
1173 /*
1174 * While a work item is PENDING && off queue, a task trying to
1175 * steal the PENDING will busy-loop waiting for it to either get
1176 * queued or lose PENDING. Grabbing PENDING and queueing should
1177 * happen with IRQ disabled.
1178 */
1179 WARN_ON_ONCE(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001181 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001182
Tejun Heoc8efcc22010-12-20 19:32:04 +01001183 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02001184 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +01001185 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +02001186 return;
1187
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001188 /* determine gcwq to use */
1189 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001190 struct global_cwq *last_gcwq;
1191
Tejun Heo57469822012-08-03 10:30:45 -07001192 if (cpu == WORK_CPU_UNBOUND)
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001193 cpu = raw_smp_processor_id();
1194
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001195 /*
Tejun Heodbf25762012-08-20 14:51:23 -07001196 * It's multi cpu. If @work was previously on a different
1197 * cpu, it might still be running there, in which case the
1198 * work needs to be queued on that cpu to guarantee
1199 * non-reentrancy.
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001200 */
Tejun Heo502ca9d2010-06-29 10:07:13 +02001201 gcwq = get_gcwq(cpu);
Tejun Heodbf25762012-08-20 14:51:23 -07001202 last_gcwq = get_work_gcwq(work);
1203
1204 if (last_gcwq && last_gcwq != gcwq) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001205 struct worker *worker;
1206
Tejun Heo8930cab2012-08-03 10:30:45 -07001207 spin_lock(&last_gcwq->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001208
1209 worker = find_worker_executing_work(last_gcwq, work);
1210
1211 if (worker && worker->current_cwq->wq == wq)
1212 gcwq = last_gcwq;
1213 else {
1214 /* meh... not running there, queue here */
Tejun Heo8930cab2012-08-03 10:30:45 -07001215 spin_unlock(&last_gcwq->lock);
1216 spin_lock(&gcwq->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001217 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001218 } else {
1219 spin_lock(&gcwq->lock);
1220 }
Tejun Heof3421792010-07-02 10:03:51 +02001221 } else {
1222 gcwq = get_gcwq(WORK_CPU_UNBOUND);
Tejun Heo8930cab2012-08-03 10:30:45 -07001223 spin_lock(&gcwq->lock);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001224 }
1225
1226 /* gcwq determined, get cwq and queue */
1227 cwq = get_cwq(gcwq->cpu, wq);
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001228 trace_workqueue_queue_work(req_cpu, cwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001229
Dan Carpenterf5b25522012-04-13 22:06:58 +03001230 if (WARN_ON(!list_empty(&work->entry))) {
Tejun Heo8930cab2012-08-03 10:30:45 -07001231 spin_unlock(&gcwq->lock);
Dan Carpenterf5b25522012-04-13 22:06:58 +03001232 return;
1233 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001234
Tejun Heo73f53c42010-06-29 10:07:11 +02001235 cwq->nr_in_flight[cwq->work_color]++;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001236 work_flags = work_color_to_flags(cwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001237
1238 if (likely(cwq->nr_active < cwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001239 trace_workqueue_activate_work(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001240 cwq->nr_active++;
Tejun Heo32704762012-07-13 22:16:45 -07001241 worklist = &cwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001242 } else {
1243 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001244 worklist = &cwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001245 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001246
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001247 insert_work(cwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001248
Tejun Heo8930cab2012-08-03 10:30:45 -07001249 spin_unlock(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001252/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07001253 * queue_work_on - queue work on specific cpu
1254 * @cpu: CPU number to execute work on
1255 * @wq: workqueue to use
1256 * @work: work to queue
1257 *
Tejun Heod4283e92012-08-03 10:30:44 -07001258 * Returns %false if @work was already on a queue, %true otherwise.
Zhang Ruic1a220e2008-07-23 21:28:39 -07001259 *
1260 * We queue the work to a specific CPU, the caller must ensure it
1261 * can't go away.
1262 */
Tejun Heod4283e92012-08-03 10:30:44 -07001263bool queue_work_on(int cpu, struct workqueue_struct *wq,
1264 struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07001265{
Tejun Heod4283e92012-08-03 10:30:44 -07001266 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001267 unsigned long flags;
1268
1269 local_irq_save(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001270
Tejun Heo22df02b2010-06-29 10:07:10 +02001271 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001272 __queue_work(cpu, wq, work);
Tejun Heod4283e92012-08-03 10:30:44 -07001273 ret = true;
Zhang Ruic1a220e2008-07-23 21:28:39 -07001274 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001275
1276 local_irq_restore(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001277 return ret;
1278}
1279EXPORT_SYMBOL_GPL(queue_work_on);
1280
Tejun Heo0a13c002012-08-03 10:30:44 -07001281/**
1282 * queue_work - queue work on a workqueue
1283 * @wq: workqueue to use
1284 * @work: work to queue
1285 *
Tejun Heod4283e92012-08-03 10:30:44 -07001286 * Returns %false if @work was already on a queue, %true otherwise.
Tejun Heo0a13c002012-08-03 10:30:44 -07001287 *
1288 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1289 * it can be processed by another CPU.
1290 */
Tejun Heod4283e92012-08-03 10:30:44 -07001291bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
Tejun Heo0a13c002012-08-03 10:30:44 -07001292{
Tejun Heo57469822012-08-03 10:30:45 -07001293 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
Tejun Heo0a13c002012-08-03 10:30:44 -07001294}
1295EXPORT_SYMBOL_GPL(queue_work);
1296
Tejun Heod8e794d2012-08-03 10:30:45 -07001297void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
David Howells52bad642006-11-22 14:54:01 +00001299 struct delayed_work *dwork = (struct delayed_work *)__data;
Tejun Heo7a22ad72010-06-29 10:07:13 +02001300 struct cpu_workqueue_struct *cwq = get_work_cwq(&dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001302 /* should have been called from irqsafe timer with irq already off */
Tejun Heo12650572012-08-08 09:38:42 -07001303 __queue_work(dwork->cpu, cwq->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
Tejun Heod8e794d2012-08-03 10:30:45 -07001305EXPORT_SYMBOL_GPL(delayed_work_timer_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001307static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1308 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001310 struct timer_list *timer = &dwork->timer;
1311 struct work_struct *work = &dwork->work;
1312 unsigned int lcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001314 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1315 timer->data != (unsigned long)dwork);
Tejun Heofc4b5142012-12-04 07:40:39 -08001316 WARN_ON_ONCE(timer_pending(timer));
1317 WARN_ON_ONCE(!list_empty(&work->entry));
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001318
Tejun Heo8852aac2012-12-01 16:23:42 -08001319 /*
1320 * If @delay is 0, queue @dwork->work immediately. This is for
1321 * both optimization and correctness. The earliest @timer can
1322 * expire is on the closest next tick and delayed_work users depend
1323 * on that there's no such delay when @delay is 0.
1324 */
1325 if (!delay) {
1326 __queue_work(cpu, wq, &dwork->work);
1327 return;
1328 }
1329
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001330 timer_stats_timer_set_start_info(&dwork->timer);
1331
1332 /*
1333 * This stores cwq for the moment, for the timer_fn. Note that the
1334 * work's gcwq is preserved to allow reentrance detection for
1335 * delayed works.
1336 */
1337 if (!(wq->flags & WQ_UNBOUND)) {
1338 struct global_cwq *gcwq = get_work_gcwq(work);
1339
Joonsoo Kime42986d2012-08-15 23:25:38 +09001340 /*
1341 * If we cannot get the last gcwq from @work directly,
1342 * select the last CPU such that it avoids unnecessarily
1343 * triggering non-reentrancy check in __queue_work().
1344 */
1345 lcpu = cpu;
1346 if (gcwq)
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001347 lcpu = gcwq->cpu;
Joonsoo Kime42986d2012-08-15 23:25:38 +09001348 if (lcpu == WORK_CPU_UNBOUND)
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001349 lcpu = raw_smp_processor_id();
1350 } else {
1351 lcpu = WORK_CPU_UNBOUND;
1352 }
1353
1354 set_work_cwq(work, get_cwq(lcpu, wq), 0);
1355
Tejun Heo12650572012-08-08 09:38:42 -07001356 dwork->cpu = cpu;
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001357 timer->expires = jiffies + delay;
1358
1359 if (unlikely(cpu != WORK_CPU_UNBOUND))
1360 add_timer_on(timer, cpu);
1361 else
1362 add_timer(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001365/**
1366 * queue_delayed_work_on - queue work on specific CPU after delay
1367 * @cpu: CPU number to execute work on
1368 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001369 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001370 * @delay: number of jiffies to wait before queueing
1371 *
Tejun Heo715f1302012-08-03 10:30:46 -07001372 * Returns %false if @work was already on a queue, %true otherwise. If
1373 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1374 * execution.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001375 */
Tejun Heod4283e92012-08-03 10:30:44 -07001376bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1377 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001378{
David Howells52bad642006-11-22 14:54:01 +00001379 struct work_struct *work = &dwork->work;
Tejun Heod4283e92012-08-03 10:30:44 -07001380 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001381 unsigned long flags;
1382
1383 /* read the comment in __queue_work() */
1384 local_irq_save(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001385
Tejun Heo22df02b2010-06-29 10:07:10 +02001386 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001387 __queue_delayed_work(cpu, wq, dwork, delay);
Tejun Heod4283e92012-08-03 10:30:44 -07001388 ret = true;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001389 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001390
1391 local_irq_restore(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001392 return ret;
1393}
Dave Jonesae90dd52006-06-30 01:40:45 -04001394EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Tejun Heoc8e55f32010-06-29 10:07:12 +02001396/**
Tejun Heo0a13c002012-08-03 10:30:44 -07001397 * queue_delayed_work - queue work on a workqueue after delay
1398 * @wq: workqueue to use
1399 * @dwork: delayable work to queue
1400 * @delay: number of jiffies to wait before queueing
1401 *
Tejun Heo715f1302012-08-03 10:30:46 -07001402 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
Tejun Heo0a13c002012-08-03 10:30:44 -07001403 */
Tejun Heod4283e92012-08-03 10:30:44 -07001404bool queue_delayed_work(struct workqueue_struct *wq,
Tejun Heo0a13c002012-08-03 10:30:44 -07001405 struct delayed_work *dwork, unsigned long delay)
1406{
Tejun Heo57469822012-08-03 10:30:45 -07001407 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
Tejun Heo0a13c002012-08-03 10:30:44 -07001408}
1409EXPORT_SYMBOL_GPL(queue_delayed_work);
1410
1411/**
Tejun Heo8376fe22012-08-03 10:30:47 -07001412 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1413 * @cpu: CPU number to execute work on
1414 * @wq: workqueue to use
1415 * @dwork: work to queue
1416 * @delay: number of jiffies to wait before queueing
1417 *
1418 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1419 * modify @dwork's timer so that it expires after @delay. If @delay is
1420 * zero, @work is guaranteed to be scheduled immediately regardless of its
1421 * current state.
1422 *
1423 * Returns %false if @dwork was idle and queued, %true if @dwork was
1424 * pending and its timer was modified.
1425 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001426 * This function is safe to call from any context including IRQ handler.
Tejun Heo8376fe22012-08-03 10:30:47 -07001427 * See try_to_grab_pending() for details.
1428 */
1429bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1430 struct delayed_work *dwork, unsigned long delay)
1431{
1432 unsigned long flags;
1433 int ret;
1434
1435 do {
1436 ret = try_to_grab_pending(&dwork->work, true, &flags);
1437 } while (unlikely(ret == -EAGAIN));
1438
1439 if (likely(ret >= 0)) {
1440 __queue_delayed_work(cpu, wq, dwork, delay);
1441 local_irq_restore(flags);
1442 }
1443
1444 /* -ENOENT from try_to_grab_pending() becomes %true */
1445 return ret;
1446}
1447EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1448
1449/**
1450 * mod_delayed_work - modify delay of or queue a delayed work
1451 * @wq: workqueue to use
1452 * @dwork: work to queue
1453 * @delay: number of jiffies to wait before queueing
1454 *
1455 * mod_delayed_work_on() on local CPU.
1456 */
1457bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
1458 unsigned long delay)
1459{
1460 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
1461}
1462EXPORT_SYMBOL_GPL(mod_delayed_work);
1463
1464/**
Tejun Heoc8e55f32010-06-29 10:07:12 +02001465 * worker_enter_idle - enter idle state
1466 * @worker: worker which is entering idle state
1467 *
1468 * @worker is entering idle state. Update stats and idle timer if
1469 * necessary.
1470 *
1471 * LOCKING:
1472 * spin_lock_irq(gcwq->lock).
1473 */
1474static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001476 struct worker_pool *pool = worker->pool;
1477 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Tejun Heoc8e55f32010-06-29 10:07:12 +02001479 BUG_ON(worker->flags & WORKER_IDLE);
1480 BUG_ON(!list_empty(&worker->entry) &&
1481 (worker->hentry.next || worker->hentry.pprev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Tejun Heocb444762010-07-02 10:03:50 +02001483 /* can't use worker_set_flags(), also called from start_worker() */
1484 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001485 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001486 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001487
Tejun Heoc8e55f32010-06-29 10:07:12 +02001488 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001489 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001490
Tejun Heo628c78e2012-07-17 12:39:27 -07001491 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1492 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001493
Tejun Heo544ecf32012-05-14 15:04:50 -07001494 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07001495 * Sanity check nr_running. Because gcwq_unbind_fn() releases
1496 * gcwq->lock between setting %WORKER_UNBOUND and zapping
1497 * nr_running, the warning may trigger spuriously. Check iff
1498 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001499 */
Tejun Heo628c78e2012-07-17 12:39:27 -07001500 WARN_ON_ONCE(!(gcwq->flags & GCWQ_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001501 pool->nr_workers == pool->nr_idle &&
Tejun Heo63d95a92012-07-12 14:46:37 -07001502 atomic_read(get_pool_nr_running(pool)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
Tejun Heoc8e55f32010-06-29 10:07:12 +02001505/**
1506 * worker_leave_idle - leave idle state
1507 * @worker: worker which is leaving idle state
1508 *
1509 * @worker is leaving idle state. Update stats.
1510 *
1511 * LOCKING:
1512 * spin_lock_irq(gcwq->lock).
1513 */
1514static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001516 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Tejun Heoc8e55f32010-06-29 10:07:12 +02001518 BUG_ON(!(worker->flags & WORKER_IDLE));
Tejun Heod302f012010-06-29 10:07:13 +02001519 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001520 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001521 list_del_init(&worker->entry);
1522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Tejun Heoe22bee72010-06-29 10:07:14 +02001524/**
1525 * worker_maybe_bind_and_lock - bind worker to its cpu if possible and lock gcwq
1526 * @worker: self
1527 *
1528 * Works which are scheduled while the cpu is online must at least be
1529 * scheduled to a worker which is bound to the cpu so that if they are
1530 * flushed from cpu callbacks while cpu is going down, they are
1531 * guaranteed to execute on the cpu.
1532 *
1533 * This function is to be used by rogue workers and rescuers to bind
1534 * themselves to the target cpu and may race with cpu going down or
1535 * coming online. kthread_bind() can't be used because it may put the
1536 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
1537 * verbatim as it's best effort and blocking and gcwq may be
1538 * [dis]associated in the meantime.
1539 *
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001540 * This function tries set_cpus_allowed() and locks gcwq and verifies the
1541 * binding against %GCWQ_DISASSOCIATED which is set during
1542 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1543 * enters idle state or fetches works without dropping lock, it can
1544 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001545 *
1546 * CONTEXT:
1547 * Might sleep. Called without any lock but returns with gcwq->lock
1548 * held.
1549 *
1550 * RETURNS:
1551 * %true if the associated gcwq is online (@worker is successfully
1552 * bound), %false if offline.
1553 */
1554static bool worker_maybe_bind_and_lock(struct worker *worker)
Namhyung Kim972fa1c2010-08-22 23:19:43 +09001555__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001556{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001557 struct global_cwq *gcwq = worker->pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001558 struct task_struct *task = worker->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Tejun Heoe22bee72010-06-29 10:07:14 +02001560 while (true) {
1561 /*
1562 * The following call may fail, succeed or succeed
1563 * without actually migrating the task to the cpu if
1564 * it races with cpu hotunplug operation. Verify
1565 * against GCWQ_DISASSOCIATED.
1566 */
Tejun Heof3421792010-07-02 10:03:51 +02001567 if (!(gcwq->flags & GCWQ_DISASSOCIATED))
1568 set_cpus_allowed_ptr(task, get_cpu_mask(gcwq->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001569
Tejun Heoe22bee72010-06-29 10:07:14 +02001570 spin_lock_irq(&gcwq->lock);
1571 if (gcwq->flags & GCWQ_DISASSOCIATED)
1572 return false;
1573 if (task_cpu(task) == gcwq->cpu &&
1574 cpumask_equal(&current->cpus_allowed,
1575 get_cpu_mask(gcwq->cpu)))
1576 return true;
1577 spin_unlock_irq(&gcwq->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001578
Tejun Heo5035b202011-04-29 18:08:37 +02001579 /*
1580 * We've raced with CPU hot[un]plug. Give it a breather
1581 * and retry migration. cond_resched() is required here;
1582 * otherwise, we might deadlock against cpu_stop trying to
1583 * bring down the CPU on non-preemptive kernel.
1584 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001585 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001586 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001587 }
1588}
1589
1590/*
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001591 * Rebind an idle @worker to its CPU. worker_thread() will test
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001592 * list_empty(@worker->entry) before leaving idle and call this function.
Tejun Heo25511a42012-07-17 12:39:27 -07001593 */
1594static void idle_worker_rebind(struct worker *worker)
1595{
1596 struct global_cwq *gcwq = worker->pool->gcwq;
1597
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001598 /* CPU may go down again inbetween, clear UNBOUND only on success */
1599 if (worker_maybe_bind_and_lock(worker))
1600 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heo25511a42012-07-17 12:39:27 -07001601
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001602 /* rebind complete, become available again */
1603 list_add(&worker->entry, &worker->pool->idle_list);
1604 spin_unlock_irq(&gcwq->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001605}
1606
1607/*
1608 * Function for @worker->rebind.work used to rebind unbound busy workers to
Tejun Heo403c8212012-07-17 12:39:27 -07001609 * the associated cpu which is coming back online. This is scheduled by
1610 * cpu up but can race with other cpu hotplug operations and may be
1611 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001612 */
Tejun Heo25511a42012-07-17 12:39:27 -07001613static void busy_worker_rebind_fn(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001614{
1615 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001616 struct global_cwq *gcwq = worker->pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001617
Lai Jiangshaneab6d822012-09-18 09:59:22 -07001618 if (worker_maybe_bind_and_lock(worker))
1619 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heoe22bee72010-06-29 10:07:14 +02001620
1621 spin_unlock_irq(&gcwq->lock);
1622}
1623
Tejun Heo25511a42012-07-17 12:39:27 -07001624/**
1625 * rebind_workers - rebind all workers of a gcwq to the associated CPU
1626 * @gcwq: gcwq of interest
1627 *
1628 * @gcwq->cpu is coming online. Rebind all workers to the CPU. Rebinding
1629 * is different for idle and busy ones.
1630 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001631 * Idle ones will be removed from the idle_list and woken up. They will
1632 * add themselves back after completing rebind. This ensures that the
1633 * idle_list doesn't contain any unbound workers when re-bound busy workers
1634 * try to perform local wake-ups for concurrency management.
Tejun Heo25511a42012-07-17 12:39:27 -07001635 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001636 * Busy workers can rebind after they finish their current work items.
1637 * Queueing the rebind work item at the head of the scheduled list is
1638 * enough. Note that nr_running will be properly bumped as busy workers
1639 * rebind.
Tejun Heo25511a42012-07-17 12:39:27 -07001640 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001641 * On return, all non-manager workers are scheduled for rebind - see
1642 * manage_workers() for the manager special case. Any idle worker
1643 * including the manager will not appear on @idle_list until rebind is
1644 * complete, making local wake-ups safe.
Tejun Heo25511a42012-07-17 12:39:27 -07001645 */
1646static void rebind_workers(struct global_cwq *gcwq)
Tejun Heo25511a42012-07-17 12:39:27 -07001647{
Tejun Heo25511a42012-07-17 12:39:27 -07001648 struct worker_pool *pool;
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001649 struct worker *worker, *n;
Tejun Heo25511a42012-07-17 12:39:27 -07001650 struct hlist_node *pos;
1651 int i;
1652
1653 lockdep_assert_held(&gcwq->lock);
1654
1655 for_each_worker_pool(pool, gcwq)
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07001656 lockdep_assert_held(&pool->assoc_mutex);
Tejun Heo25511a42012-07-17 12:39:27 -07001657
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001658 /* dequeue and kick idle ones */
Tejun Heo25511a42012-07-17 12:39:27 -07001659 for_each_worker_pool(pool, gcwq) {
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001660 list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001661 /*
1662 * idle workers should be off @pool->idle_list
1663 * until rebind is complete to avoid receiving
1664 * premature local wake-ups.
1665 */
1666 list_del_init(&worker->entry);
Lai Jiangshan96e65302012-09-02 00:28:19 +08001667
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001668 /*
1669 * worker_thread() will see the above dequeuing
1670 * and call idle_worker_rebind().
1671 */
Tejun Heo25511a42012-07-17 12:39:27 -07001672 wake_up_process(worker->task);
1673 }
1674 }
1675
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001676 /* rebind busy workers */
Tejun Heo25511a42012-07-17 12:39:27 -07001677 for_each_busy_worker(worker, i, pos, gcwq) {
1678 struct work_struct *rebind_work = &worker->rebind_work;
Joonsoo Kime2b6a6d2012-08-15 23:25:40 +09001679 struct workqueue_struct *wq;
Tejun Heo25511a42012-07-17 12:39:27 -07001680
1681 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1682 work_data_bits(rebind_work)))
1683 continue;
1684
Tejun Heo25511a42012-07-17 12:39:27 -07001685 debug_work_activate(rebind_work);
Tejun Heo90beca52012-09-04 23:12:33 -07001686
Joonsoo Kime2b6a6d2012-08-15 23:25:40 +09001687 /*
1688 * wq doesn't really matter but let's keep @worker->pool
1689 * and @cwq->pool consistent for sanity.
1690 */
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001691 if (std_worker_pool_pri(worker->pool))
Joonsoo Kime2b6a6d2012-08-15 23:25:40 +09001692 wq = system_highpri_wq;
1693 else
1694 wq = system_wq;
Tejun Heoec588152012-09-04 23:16:32 -07001695
Joonsoo Kime2b6a6d2012-08-15 23:25:40 +09001696 insert_work(get_cwq(gcwq->cpu, wq), rebind_work,
1697 worker->scheduled.next,
1698 work_color_to_flags(WORK_NO_COLOR));
Tejun Heoec588152012-09-04 23:16:32 -07001699 }
Tejun Heo25511a42012-07-17 12:39:27 -07001700}
1701
Tejun Heoc34056a2010-06-29 10:07:11 +02001702static struct worker *alloc_worker(void)
1703{
1704 struct worker *worker;
1705
1706 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001707 if (worker) {
1708 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001709 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001710 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001711 /* on creation a worker is in !idle && prep state */
1712 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001713 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001714 return worker;
1715}
1716
1717/**
1718 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001719 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001720 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001721 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001722 * can be started by calling start_worker() or destroyed using
1723 * destroy_worker().
1724 *
1725 * CONTEXT:
1726 * Might sleep. Does GFP_KERNEL allocations.
1727 *
1728 * RETURNS:
1729 * Pointer to the newly created worker.
1730 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001731static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001732{
Tejun Heo63d95a92012-07-12 14:46:37 -07001733 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001734 const char *pri = std_worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001735 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001736 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001737
Tejun Heo8b03ae32010-06-29 10:07:12 +02001738 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001739 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001740 spin_unlock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001741 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001742 goto fail;
Tejun Heo8b03ae32010-06-29 10:07:12 +02001743 spin_lock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001744 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02001745 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001746
1747 worker = alloc_worker();
1748 if (!worker)
1749 goto fail;
1750
Tejun Heobd7bdd42012-07-12 14:46:37 -07001751 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001752 worker->id = id;
1753
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001754 if (gcwq->cpu != WORK_CPU_UNBOUND)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001755 worker->task = kthread_create_on_node(worker_thread,
Tejun Heo32704762012-07-13 22:16:45 -07001756 worker, cpu_to_node(gcwq->cpu),
1757 "kworker/%u:%d%s", gcwq->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001758 else
1759 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001760 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001761 if (IS_ERR(worker->task))
1762 goto fail;
1763
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001764 if (std_worker_pool_pri(pool))
Tejun Heo32704762012-07-13 22:16:45 -07001765 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1766
Tejun Heodb7bccf2010-06-29 10:07:12 +02001767 /*
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001768 * Determine CPU binding of the new worker depending on
1769 * %GCWQ_DISASSOCIATED. The caller is responsible for ensuring the
1770 * flag remains stable across this function. See the comments
1771 * above the flag definition for details.
1772 *
1773 * As an unbound worker may later become a regular one if CPU comes
1774 * online, make sure every worker has %PF_THREAD_BOUND set.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001775 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001776 if (!(gcwq->flags & GCWQ_DISASSOCIATED)) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001777 kthread_bind(worker->task, gcwq->cpu);
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001778 } else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001779 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001780 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001782
Tejun Heoc34056a2010-06-29 10:07:11 +02001783 return worker;
1784fail:
1785 if (id >= 0) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02001786 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001787 ida_remove(&pool->worker_ida, id);
Tejun Heo8b03ae32010-06-29 10:07:12 +02001788 spin_unlock_irq(&gcwq->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001789 }
1790 kfree(worker);
1791 return NULL;
1792}
1793
1794/**
1795 * start_worker - start a newly created worker
1796 * @worker: worker to start
1797 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001798 * Make the gcwq aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001799 *
1800 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02001801 * spin_lock_irq(gcwq->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001802 */
1803static void start_worker(struct worker *worker)
1804{
Tejun Heocb444762010-07-02 10:03:50 +02001805 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001806 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001807 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001808 wake_up_process(worker->task);
1809}
1810
1811/**
1812 * destroy_worker - destroy a workqueue worker
1813 * @worker: worker to be destroyed
1814 *
Tejun Heoc8e55f32010-06-29 10:07:12 +02001815 * Destroy @worker and adjust @gcwq stats accordingly.
1816 *
1817 * CONTEXT:
1818 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001819 */
1820static void destroy_worker(struct worker *worker)
1821{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001822 struct worker_pool *pool = worker->pool;
1823 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoc34056a2010-06-29 10:07:11 +02001824 int id = worker->id;
1825
1826 /* sanity check frenzy */
1827 BUG_ON(worker->current_work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001828 BUG_ON(!list_empty(&worker->scheduled));
Tejun Heoc34056a2010-06-29 10:07:11 +02001829
Tejun Heoc8e55f32010-06-29 10:07:12 +02001830 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001831 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001832 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001833 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001834
1835 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001836 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001837
1838 spin_unlock_irq(&gcwq->lock);
1839
Tejun Heoc34056a2010-06-29 10:07:11 +02001840 kthread_stop(worker->task);
1841 kfree(worker);
1842
Tejun Heo8b03ae32010-06-29 10:07:12 +02001843 spin_lock_irq(&gcwq->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001844 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001845}
1846
Tejun Heo63d95a92012-07-12 14:46:37 -07001847static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001848{
Tejun Heo63d95a92012-07-12 14:46:37 -07001849 struct worker_pool *pool = (void *)__pool;
1850 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001851
1852 spin_lock_irq(&gcwq->lock);
1853
Tejun Heo63d95a92012-07-12 14:46:37 -07001854 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001855 struct worker *worker;
1856 unsigned long expires;
1857
1858 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001859 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001860 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1861
1862 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001863 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001864 else {
1865 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001866 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001867 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001868 }
1869 }
1870
1871 spin_unlock_irq(&gcwq->lock);
1872}
1873
1874static bool send_mayday(struct work_struct *work)
1875{
1876 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1877 struct workqueue_struct *wq = cwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001878 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001879
1880 if (!(wq->flags & WQ_RESCUER))
1881 return false;
1882
1883 /* mayday mayday mayday */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001884 cpu = cwq->pool->gcwq->cpu;
Tejun Heof3421792010-07-02 10:03:51 +02001885 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1886 if (cpu == WORK_CPU_UNBOUND)
1887 cpu = 0;
Tejun Heof2e005a2010-07-20 15:59:09 +02001888 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001889 wake_up_process(wq->rescuer->task);
1890 return true;
1891}
1892
Tejun Heo63d95a92012-07-12 14:46:37 -07001893static void gcwq_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001894{
Tejun Heo63d95a92012-07-12 14:46:37 -07001895 struct worker_pool *pool = (void *)__pool;
1896 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02001897 struct work_struct *work;
1898
1899 spin_lock_irq(&gcwq->lock);
1900
Tejun Heo63d95a92012-07-12 14:46:37 -07001901 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001902 /*
1903 * We've been trying to create a new worker but
1904 * haven't been successful. We might be hitting an
1905 * allocation deadlock. Send distress signals to
1906 * rescuers.
1907 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001908 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001909 send_mayday(work);
1910 }
1911
1912 spin_unlock_irq(&gcwq->lock);
1913
Tejun Heo63d95a92012-07-12 14:46:37 -07001914 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001915}
1916
1917/**
1918 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001919 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001920 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001921 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001922 * have at least one idle worker on return from this function. If
1923 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001924 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001925 * possible allocation deadlock.
1926 *
1927 * On return, need_to_create_worker() is guaranteed to be false and
1928 * may_start_working() true.
1929 *
1930 * LOCKING:
1931 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1932 * multiple times. Does GFP_KERNEL allocations. Called only from
1933 * manager.
1934 *
1935 * RETURNS:
1936 * false if no action was taken and gcwq->lock stayed locked, true
1937 * otherwise.
1938 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001939static bool maybe_create_worker(struct worker_pool *pool)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09001940__releases(&gcwq->lock)
1941__acquires(&gcwq->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001942{
Tejun Heo63d95a92012-07-12 14:46:37 -07001943 struct global_cwq *gcwq = pool->gcwq;
1944
1945 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001946 return false;
1947restart:
Tejun Heo9f9c2362010-07-14 11:31:20 +02001948 spin_unlock_irq(&gcwq->lock);
1949
Tejun Heoe22bee72010-06-29 10:07:14 +02001950 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001951 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001952
1953 while (true) {
1954 struct worker *worker;
1955
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001956 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001957 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001958 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001959 spin_lock_irq(&gcwq->lock);
1960 start_worker(worker);
Tejun Heo63d95a92012-07-12 14:46:37 -07001961 BUG_ON(need_to_create_worker(pool));
Tejun Heoe22bee72010-06-29 10:07:14 +02001962 return true;
1963 }
1964
Tejun Heo63d95a92012-07-12 14:46:37 -07001965 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001966 break;
1967
Tejun Heoe22bee72010-06-29 10:07:14 +02001968 __set_current_state(TASK_INTERRUPTIBLE);
1969 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001970
Tejun Heo63d95a92012-07-12 14:46:37 -07001971 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001972 break;
1973 }
1974
Tejun Heo63d95a92012-07-12 14:46:37 -07001975 del_timer_sync(&pool->mayday_timer);
Tejun Heoe22bee72010-06-29 10:07:14 +02001976 spin_lock_irq(&gcwq->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001977 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001978 goto restart;
1979 return true;
1980}
1981
1982/**
1983 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001984 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001985 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001986 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001987 * IDLE_WORKER_TIMEOUT.
1988 *
1989 * LOCKING:
1990 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
1991 * multiple times. Called only from manager.
1992 *
1993 * RETURNS:
1994 * false if no action was taken and gcwq->lock stayed locked, true
1995 * otherwise.
1996 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001997static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001998{
1999 bool ret = false;
2000
Tejun Heo63d95a92012-07-12 14:46:37 -07002001 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02002002 struct worker *worker;
2003 unsigned long expires;
2004
Tejun Heo63d95a92012-07-12 14:46:37 -07002005 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02002006 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
2007
2008 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07002009 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02002010 break;
2011 }
2012
2013 destroy_worker(worker);
2014 ret = true;
2015 }
2016
2017 return ret;
2018}
2019
2020/**
2021 * manage_workers - manage worker pool
2022 * @worker: self
2023 *
2024 * Assume the manager role and manage gcwq worker pool @worker belongs
2025 * to. At any given time, there can be only zero or one manager per
2026 * gcwq. The exclusion is handled automatically by this function.
2027 *
2028 * The caller can safely start processing works on false return. On
2029 * true return, it's guaranteed that need_to_create_worker() is false
2030 * and may_start_working() is true.
2031 *
2032 * CONTEXT:
2033 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
2034 * multiple times. Does GFP_KERNEL allocations.
2035 *
2036 * RETURNS:
2037 * false if no action was taken and gcwq->lock stayed locked, true if
2038 * some action was taken.
2039 */
2040static bool manage_workers(struct worker *worker)
2041{
Tejun Heo63d95a92012-07-12 14:46:37 -07002042 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002043 bool ret = false;
2044
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002045 if (pool->flags & POOL_MANAGING_WORKERS)
Tejun Heoe22bee72010-06-29 10:07:14 +02002046 return ret;
2047
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002048 pool->flags |= POOL_MANAGING_WORKERS;
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002049
2050 /*
2051 * To simplify both worker management and CPU hotplug, hold off
2052 * management while hotplug is in progress. CPU hotplug path can't
2053 * grab %POOL_MANAGING_WORKERS to achieve this because that can
2054 * lead to idle worker depletion (all become busy thinking someone
2055 * else is managing) which in turn can result in deadlock under
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002056 * extreme circumstances. Use @pool->assoc_mutex to synchronize
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002057 * manager against CPU hotplug.
2058 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002059 * assoc_mutex would always be free unless CPU hotplug is in
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002060 * progress. trylock first without dropping @gcwq->lock.
2061 */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002062 if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002063 spin_unlock_irq(&pool->gcwq->lock);
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002064 mutex_lock(&pool->assoc_mutex);
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002065 /*
2066 * CPU hotplug could have happened while we were waiting
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002067 * for assoc_mutex. Hotplug itself can't handle us
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002068 * because manager isn't either on idle or busy list, and
2069 * @gcwq's state and ours could have deviated.
2070 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002071 * As hotplug is now excluded via assoc_mutex, we can
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002072 * simply try to bind. It will succeed or fail depending
2073 * on @gcwq's current state. Try it and adjust
2074 * %WORKER_UNBOUND accordingly.
2075 */
2076 if (worker_maybe_bind_and_lock(worker))
2077 worker->flags &= ~WORKER_UNBOUND;
2078 else
2079 worker->flags |= WORKER_UNBOUND;
2080
2081 ret = true;
2082 }
2083
Tejun Heo11ebea52012-07-12 14:46:37 -07002084 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02002085
2086 /*
2087 * Destroy and then create so that may_start_working() is true
2088 * on return.
2089 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002090 ret |= maybe_destroy_workers(pool);
2091 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02002092
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002093 pool->flags &= ~POOL_MANAGING_WORKERS;
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002094 mutex_unlock(&pool->assoc_mutex);
Tejun Heoe22bee72010-06-29 10:07:14 +02002095 return ret;
2096}
2097
Tejun Heoa62428c2010-06-29 10:07:10 +02002098/**
2099 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02002100 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02002101 * @work: work to process
2102 *
2103 * Process @work. This function contains all the logics necessary to
2104 * process a single work including synchronization against and
2105 * interaction with other workers on the same cpu, queueing and
2106 * flushing. As long as context requirement is met, any worker can
2107 * call this function to process a work.
2108 *
2109 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002110 * spin_lock_irq(gcwq->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002111 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002112static void process_one_work(struct worker *worker, struct work_struct *work)
Namhyung Kim06bd6eb2010-08-22 23:19:42 +09002113__releases(&gcwq->lock)
2114__acquires(&gcwq->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002115{
Tejun Heo7e116292010-06-29 10:07:13 +02002116 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002117 struct worker_pool *pool = worker->pool;
2118 struct global_cwq *gcwq = pool->gcwq;
Tejun Heofb0e7be2010-06-29 10:07:15 +02002119 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heo73f53c42010-06-29 10:07:11 +02002120 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002121 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002122#ifdef CONFIG_LOCKDEP
2123 /*
2124 * It is permissible to free the struct work_struct from
2125 * inside the function that is called from it, this we need to
2126 * take into account for lockdep too. To avoid bogus "held
2127 * lock freed" warnings as well as problems when looking into
2128 * work->lockdep_map, make a copy and use that here.
2129 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002130 struct lockdep_map lockdep_map;
2131
2132 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002133#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002134 /*
2135 * Ensure we're on the correct CPU. DISASSOCIATED test is
2136 * necessary to avoid spurious warnings from rescuers servicing the
2137 * unbound or a disassociated gcwq.
2138 */
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002139 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
Tejun Heo6fec10a2012-07-22 10:16:34 -07002140 !(gcwq->flags & GCWQ_DISASSOCIATED) &&
Tejun Heo25511a42012-07-17 12:39:27 -07002141 raw_smp_processor_id() != gcwq->cpu);
2142
Tejun Heo7e116292010-06-29 10:07:13 +02002143 /*
2144 * A single work shouldn't be executed concurrently by
2145 * multiple workers on a single cpu. Check whether anyone is
2146 * already processing the work. If so, defer the work to the
2147 * currently executing one.
2148 */
Sasha Levin42f85702012-12-17 10:01:23 -05002149 collision = find_worker_executing_work(gcwq, work);
Tejun Heo7e116292010-06-29 10:07:13 +02002150 if (unlikely(collision)) {
2151 move_linked_works(work, &collision->scheduled, NULL);
2152 return;
2153 }
2154
Tejun Heo8930cab2012-08-03 10:30:45 -07002155 /* claim and dequeue */
Tejun Heoa62428c2010-06-29 10:07:10 +02002156 debug_work_deactivate(work);
Tejun Heo023f27d2012-12-19 11:24:06 -08002157 hash_add(gcwq->busy_hash, &worker->hentry, (unsigned long)work);
Tejun Heoc34056a2010-06-29 10:07:11 +02002158 worker->current_work = work;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002159 worker->current_func = work->func;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02002160 worker->current_cwq = cwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002161 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002162
Tejun Heoa62428c2010-06-29 10:07:10 +02002163 list_del_init(&work->entry);
2164
Tejun Heo649027d2010-06-29 10:07:14 +02002165 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002166 * CPU intensive works don't participate in concurrency
2167 * management. They're the scheduler's responsibility.
2168 */
2169 if (unlikely(cpu_intensive))
2170 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2171
Tejun Heo974271c2012-07-12 14:46:37 -07002172 /*
2173 * Unbound gcwq isn't concurrency managed and work items should be
2174 * executed ASAP. Wake up another worker if necessary.
2175 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002176 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2177 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002178
Tejun Heo8930cab2012-08-03 10:30:45 -07002179 /*
Tejun Heo23657bb2012-08-13 17:08:19 -07002180 * Record the last CPU and clear PENDING which should be the last
2181 * update to @work. Also, do this inside @gcwq->lock so that
2182 * PENDING and queued state changes happen together while IRQ is
2183 * disabled.
Tejun Heo8930cab2012-08-03 10:30:45 -07002184 */
Tejun Heo8930cab2012-08-03 10:30:45 -07002185 set_work_cpu_and_clear_pending(work, gcwq->cpu);
Tejun Heoa62428c2010-06-29 10:07:10 +02002186
Tejun Heoa62428c2010-06-29 10:07:10 +02002187 spin_unlock_irq(&gcwq->lock);
2188
Tejun Heoe1594892011-01-09 23:32:15 +01002189 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002190 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002191 trace_workqueue_execute_start(work);
Tejun Heoa2c1c572012-12-18 10:35:02 -08002192 worker->current_func(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002193 /*
2194 * While we must be careful to not use "work" after this, the trace
2195 * point will only record its address.
2196 */
2197 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002198 lock_map_release(&lockdep_map);
2199 lock_map_release(&cwq->wq->lockdep_map);
2200
2201 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
Valentin Ilie044c7822012-08-19 00:52:42 +03002202 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2203 " last function: %pf\n",
Tejun Heoa2c1c572012-12-18 10:35:02 -08002204 current->comm, preempt_count(), task_pid_nr(current),
2205 worker->current_func);
Tejun Heoa62428c2010-06-29 10:07:10 +02002206 debug_show_held_locks(current);
2207 dump_stack();
2208 }
2209
Tejun Heo8b03ae32010-06-29 10:07:12 +02002210 spin_lock_irq(&gcwq->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002211
Tejun Heofb0e7be2010-06-29 10:07:15 +02002212 /* clear cpu intensive status */
2213 if (unlikely(cpu_intensive))
2214 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2215
Tejun Heoa62428c2010-06-29 10:07:10 +02002216 /* we're done with it, release */
Sasha Levin42f85702012-12-17 10:01:23 -05002217 hash_del(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002218 worker->current_work = NULL;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002219 worker->current_func = NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02002220 worker->current_cwq = NULL;
Lai Jiangshanb3f9f402012-09-18 10:40:00 -07002221 cwq_dec_nr_in_flight(cwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02002222}
2223
Tejun Heoaffee4b2010-06-29 10:07:12 +02002224/**
2225 * process_scheduled_works - process scheduled works
2226 * @worker: self
2227 *
2228 * Process all scheduled works. Please note that the scheduled list
2229 * may change while processing a work, so this function repeatedly
2230 * fetches a work from the top and executes it.
2231 *
2232 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002233 * spin_lock_irq(gcwq->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002234 * multiple times.
2235 */
2236static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002238 while (!list_empty(&worker->scheduled)) {
2239 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002241 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
Tejun Heo4690c4a2010-06-29 10:07:10 +02002245/**
2246 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002247 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002248 *
Tejun Heoe22bee72010-06-29 10:07:14 +02002249 * The gcwq worker thread function. There's a single dynamic pool of
2250 * these per each cpu. These workers process all works regardless of
2251 * their specific target workqueue. The only exception is works which
2252 * belong to workqueues with a rescuer which will be explained in
2253 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002254 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002255static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Tejun Heoc34056a2010-06-29 10:07:11 +02002257 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002258 struct worker_pool *pool = worker->pool;
2259 struct global_cwq *gcwq = pool->gcwq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Tejun Heoe22bee72010-06-29 10:07:14 +02002261 /* tell the scheduler that this is a workqueue worker */
2262 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002263woke_up:
Tejun Heoc8e55f32010-06-29 10:07:12 +02002264 spin_lock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002266 /* we are off idle list if destruction or rebind is requested */
2267 if (unlikely(list_empty(&worker->entry))) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02002268 spin_unlock_irq(&gcwq->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002269
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002270 /* if DIE is set, destruction is requested */
Tejun Heo25511a42012-07-17 12:39:27 -07002271 if (worker->flags & WORKER_DIE) {
2272 worker->task->flags &= ~PF_WQ_WORKER;
2273 return 0;
2274 }
2275
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002276 /* otherwise, rebind */
Tejun Heo25511a42012-07-17 12:39:27 -07002277 idle_worker_rebind(worker);
2278 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
2280
Tejun Heoc8e55f32010-06-29 10:07:12 +02002281 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002282recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002283 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002284 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002285 goto sleep;
2286
2287 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002288 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002289 goto recheck;
2290
Tejun Heoc8e55f32010-06-29 10:07:12 +02002291 /*
2292 * ->scheduled list can only be filled while a worker is
2293 * preparing to process a work or actually processing it.
2294 * Make sure nobody diddled with it while I was sleeping.
2295 */
2296 BUG_ON(!list_empty(&worker->scheduled));
2297
Tejun Heoe22bee72010-06-29 10:07:14 +02002298 /*
2299 * When control reaches this point, we're guaranteed to have
2300 * at least one idle worker or that someone else has already
2301 * assumed the manager role.
2302 */
2303 worker_clr_flags(worker, WORKER_PREP);
2304
2305 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002306 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002307 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002308 struct work_struct, entry);
2309
2310 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2311 /* optimization path, not strictly necessary */
2312 process_one_work(worker, work);
2313 if (unlikely(!list_empty(&worker->scheduled)))
2314 process_scheduled_works(worker);
2315 } else {
2316 move_linked_works(work, &worker->scheduled, NULL);
2317 process_scheduled_works(worker);
2318 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002319 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002320
Tejun Heoe22bee72010-06-29 10:07:14 +02002321 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002322sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002323 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002324 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002325
Tejun Heoc8e55f32010-06-29 10:07:12 +02002326 /*
Tejun Heoe22bee72010-06-29 10:07:14 +02002327 * gcwq->lock is held and there's no work to process and no
2328 * need to manage, sleep. Workers are woken up only while
2329 * holding gcwq->lock or from local cpu, so setting the
2330 * current state before releasing gcwq->lock is enough to
2331 * prevent losing any event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002332 */
2333 worker_enter_idle(worker);
2334 __set_current_state(TASK_INTERRUPTIBLE);
2335 spin_unlock_irq(&gcwq->lock);
2336 schedule();
2337 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338}
2339
Tejun Heoe22bee72010-06-29 10:07:14 +02002340/**
2341 * rescuer_thread - the rescuer thread function
Tejun Heo111c2252013-01-17 17:16:24 -08002342 * @__rescuer: self
Tejun Heoe22bee72010-06-29 10:07:14 +02002343 *
2344 * Workqueue rescuer thread function. There's one rescuer for each
2345 * workqueue which has WQ_RESCUER set.
2346 *
2347 * Regular work processing on a gcwq may block trying to create a new
2348 * worker which uses GFP_KERNEL allocation which has slight chance of
2349 * developing into deadlock if some works currently on the same queue
2350 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2351 * the problem rescuer solves.
2352 *
2353 * When such condition is possible, the gcwq summons rescuers of all
2354 * workqueues which have works queued on the gcwq and let them process
2355 * those works so that forward progress can be guaranteed.
2356 *
2357 * This should happen rarely.
2358 */
Tejun Heo111c2252013-01-17 17:16:24 -08002359static int rescuer_thread(void *__rescuer)
Tejun Heoe22bee72010-06-29 10:07:14 +02002360{
Tejun Heo111c2252013-01-17 17:16:24 -08002361 struct worker *rescuer = __rescuer;
2362 struct workqueue_struct *wq = rescuer->rescue_wq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002363 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02002364 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02002365 unsigned int cpu;
2366
2367 set_user_nice(current, RESCUER_NICE_LEVEL);
Tejun Heo111c2252013-01-17 17:16:24 -08002368
2369 /*
2370 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2371 * doesn't participate in concurrency management.
2372 */
2373 rescuer->task->flags |= PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002374repeat:
2375 set_current_state(TASK_INTERRUPTIBLE);
2376
Mike Galbraith412d32e2012-11-28 07:17:18 +01002377 if (kthread_should_stop()) {
2378 __set_current_state(TASK_RUNNING);
Tejun Heo111c2252013-01-17 17:16:24 -08002379 rescuer->task->flags &= ~PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002380 return 0;
Mike Galbraith412d32e2012-11-28 07:17:18 +01002381 }
Tejun Heoe22bee72010-06-29 10:07:14 +02002382
Tejun Heof3421792010-07-02 10:03:51 +02002383 /*
2384 * See whether any cpu is asking for help. Unbounded
2385 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2386 */
Tejun Heof2e005a2010-07-20 15:59:09 +02002387 for_each_mayday_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02002388 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
2389 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002390 struct worker_pool *pool = cwq->pool;
2391 struct global_cwq *gcwq = pool->gcwq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002392 struct work_struct *work, *n;
2393
2394 __set_current_state(TASK_RUNNING);
Tejun Heof2e005a2010-07-20 15:59:09 +02002395 mayday_clear_cpu(cpu, wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02002396
2397 /* migrate to the target cpu if possible */
Tejun Heobd7bdd42012-07-12 14:46:37 -07002398 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002399 worker_maybe_bind_and_lock(rescuer);
2400
2401 /*
2402 * Slurp in all works issued via this workqueue and
2403 * process'em.
2404 */
2405 BUG_ON(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002406 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02002407 if (get_work_cwq(work) == cwq)
2408 move_linked_works(work, scheduled, &n);
2409
2410 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002411
2412 /*
2413 * Leave this gcwq. If keep_working() is %true, notify a
2414 * regular worker; otherwise, we end up with 0 concurrency
2415 * and stalling the execution.
2416 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002417 if (keep_working(pool))
2418 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002419
Tejun Heoe22bee72010-06-29 10:07:14 +02002420 spin_unlock_irq(&gcwq->lock);
2421 }
2422
Tejun Heo111c2252013-01-17 17:16:24 -08002423 /* rescuers should never participate in concurrency management */
2424 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
Tejun Heoe22bee72010-06-29 10:07:14 +02002425 schedule();
2426 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002429struct wq_barrier {
2430 struct work_struct work;
2431 struct completion done;
2432};
2433
2434static void wq_barrier_func(struct work_struct *work)
2435{
2436 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2437 complete(&barr->done);
2438}
2439
Tejun Heo4690c4a2010-06-29 10:07:10 +02002440/**
2441 * insert_wq_barrier - insert a barrier work
2442 * @cwq: cwq to insert barrier into
2443 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002444 * @target: target work to attach @barr to
2445 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002446 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002447 * @barr is linked to @target such that @barr is completed only after
2448 * @target finishes execution. Please note that the ordering
2449 * guarantee is observed only with respect to @target and on the local
2450 * cpu.
2451 *
2452 * Currently, a queued barrier can't be canceled. This is because
2453 * try_to_grab_pending() can't determine whether the work to be
2454 * grabbed is at the head of the queue and thus can't clear LINKED
2455 * flag of the previous work while there must be a valid next work
2456 * after a work with LINKED flag set.
2457 *
2458 * Note that when @worker is non-NULL, @target may be modified
2459 * underneath us, so we can't reliably determine cwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002460 *
2461 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02002462 * spin_lock_irq(gcwq->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002463 */
Oleg Nesterov83c22522007-05-09 02:33:54 -07002464static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002465 struct wq_barrier *barr,
2466 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002467{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002468 struct list_head *head;
2469 unsigned int linked = 0;
2470
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002471 /*
Tejun Heo8b03ae32010-06-29 10:07:12 +02002472 * debugobject calls are safe here even with gcwq->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002473 * as we know for sure that this will not trigger any of the
2474 * checks and call back into the fixup functions where we
2475 * might deadlock.
2476 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002477 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002478 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002479 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002480
Tejun Heoaffee4b2010-06-29 10:07:12 +02002481 /*
2482 * If @target is currently being executed, schedule the
2483 * barrier to the worker; otherwise, put it after @target.
2484 */
2485 if (worker)
2486 head = worker->scheduled.next;
2487 else {
2488 unsigned long *bits = work_data_bits(target);
2489
2490 head = target->entry.next;
2491 /* there can already be other linked works, inherit and set */
2492 linked = *bits & WORK_STRUCT_LINKED;
2493 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2494 }
2495
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002496 debug_work_activate(&barr->work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002497 insert_work(cwq, &barr->work, head,
2498 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002499}
2500
Tejun Heo73f53c42010-06-29 10:07:11 +02002501/**
2502 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2503 * @wq: workqueue being flushed
2504 * @flush_color: new flush color, < 0 for no-op
2505 * @work_color: new work color, < 0 for no-op
2506 *
2507 * Prepare cwqs for workqueue flushing.
2508 *
2509 * If @flush_color is non-negative, flush_color on all cwqs should be
2510 * -1. If no cwq has in-flight commands at the specified color, all
2511 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2512 * has in flight commands, its cwq->flush_color is set to
2513 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2514 * wakeup logic is armed and %true is returned.
2515 *
2516 * The caller should have initialized @wq->first_flusher prior to
2517 * calling this function with non-negative @flush_color. If
2518 * @flush_color is negative, no flush color update is done and %false
2519 * is returned.
2520 *
2521 * If @work_color is non-negative, all cwqs should have the same
2522 * work_color which is previous to @work_color and all will be
2523 * advanced to @work_color.
2524 *
2525 * CONTEXT:
2526 * mutex_lock(wq->flush_mutex).
2527 *
2528 * RETURNS:
2529 * %true if @flush_color >= 0 and there's something to flush. %false
2530 * otherwise.
2531 */
2532static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2533 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Tejun Heo73f53c42010-06-29 10:07:11 +02002535 bool wait = false;
2536 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002537
Tejun Heo73f53c42010-06-29 10:07:11 +02002538 if (flush_color >= 0) {
2539 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2540 atomic_set(&wq->nr_cwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002541 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002542
Tejun Heof3421792010-07-02 10:03:51 +02002543 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002544 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002545 struct global_cwq *gcwq = cwq->pool->gcwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002546
Tejun Heo8b03ae32010-06-29 10:07:12 +02002547 spin_lock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002548
2549 if (flush_color >= 0) {
2550 BUG_ON(cwq->flush_color != -1);
2551
2552 if (cwq->nr_in_flight[flush_color]) {
2553 cwq->flush_color = flush_color;
2554 atomic_inc(&wq->nr_cwqs_to_flush);
2555 wait = true;
2556 }
2557 }
2558
2559 if (work_color >= 0) {
2560 BUG_ON(work_color != work_next_color(cwq->work_color));
2561 cwq->work_color = work_color;
2562 }
2563
Tejun Heo8b03ae32010-06-29 10:07:12 +02002564 spin_unlock_irq(&gcwq->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002565 }
2566
2567 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2568 complete(&wq->first_flusher->done);
2569
2570 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571}
2572
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002573/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002575 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 *
2577 * Forces execution of the workqueue and blocks until its completion.
2578 * This is typically used in driver shutdown handlers.
2579 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002580 * We sleep until all works which were queued on entry have been handled,
2581 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002583void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Tejun Heo73f53c42010-06-29 10:07:11 +02002585 struct wq_flusher this_flusher = {
2586 .list = LIST_HEAD_INIT(this_flusher.list),
2587 .flush_color = -1,
2588 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2589 };
2590 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002591
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002592 lock_map_acquire(&wq->lockdep_map);
2593 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002594
2595 mutex_lock(&wq->flush_mutex);
2596
2597 /*
2598 * Start-to-wait phase
2599 */
2600 next_color = work_next_color(wq->work_color);
2601
2602 if (next_color != wq->flush_color) {
2603 /*
2604 * Color space is not full. The current work_color
2605 * becomes our flush_color and work_color is advanced
2606 * by one.
2607 */
2608 BUG_ON(!list_empty(&wq->flusher_overflow));
2609 this_flusher.flush_color = wq->work_color;
2610 wq->work_color = next_color;
2611
2612 if (!wq->first_flusher) {
2613 /* no flush in progress, become the first flusher */
2614 BUG_ON(wq->flush_color != this_flusher.flush_color);
2615
2616 wq->first_flusher = &this_flusher;
2617
2618 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2619 wq->work_color)) {
2620 /* nothing to flush, done */
2621 wq->flush_color = next_color;
2622 wq->first_flusher = NULL;
2623 goto out_unlock;
2624 }
2625 } else {
2626 /* wait in queue */
2627 BUG_ON(wq->flush_color == this_flusher.flush_color);
2628 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2629 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2630 }
2631 } else {
2632 /*
2633 * Oops, color space is full, wait on overflow queue.
2634 * The next flush completion will assign us
2635 * flush_color and transfer to flusher_queue.
2636 */
2637 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2638 }
2639
2640 mutex_unlock(&wq->flush_mutex);
2641
2642 wait_for_completion(&this_flusher.done);
2643
2644 /*
2645 * Wake-up-and-cascade phase
2646 *
2647 * First flushers are responsible for cascading flushes and
2648 * handling overflow. Non-first flushers can simply return.
2649 */
2650 if (wq->first_flusher != &this_flusher)
2651 return;
2652
2653 mutex_lock(&wq->flush_mutex);
2654
Tejun Heo4ce48b32010-07-02 10:03:51 +02002655 /* we might have raced, check again with mutex held */
2656 if (wq->first_flusher != &this_flusher)
2657 goto out_unlock;
2658
Tejun Heo73f53c42010-06-29 10:07:11 +02002659 wq->first_flusher = NULL;
2660
2661 BUG_ON(!list_empty(&this_flusher.list));
2662 BUG_ON(wq->flush_color != this_flusher.flush_color);
2663
2664 while (true) {
2665 struct wq_flusher *next, *tmp;
2666
2667 /* complete all the flushers sharing the current flush color */
2668 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2669 if (next->flush_color != wq->flush_color)
2670 break;
2671 list_del_init(&next->list);
2672 complete(&next->done);
2673 }
2674
2675 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2676 wq->flush_color != work_next_color(wq->work_color));
2677
2678 /* this flush_color is finished, advance by one */
2679 wq->flush_color = work_next_color(wq->flush_color);
2680
2681 /* one color has been freed, handle overflow queue */
2682 if (!list_empty(&wq->flusher_overflow)) {
2683 /*
2684 * Assign the same color to all overflowed
2685 * flushers, advance work_color and append to
2686 * flusher_queue. This is the start-to-wait
2687 * phase for these overflowed flushers.
2688 */
2689 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2690 tmp->flush_color = wq->work_color;
2691
2692 wq->work_color = work_next_color(wq->work_color);
2693
2694 list_splice_tail_init(&wq->flusher_overflow,
2695 &wq->flusher_queue);
2696 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2697 }
2698
2699 if (list_empty(&wq->flusher_queue)) {
2700 BUG_ON(wq->flush_color != wq->work_color);
2701 break;
2702 }
2703
2704 /*
2705 * Need to flush more colors. Make the next flusher
2706 * the new first flusher and arm cwqs.
2707 */
2708 BUG_ON(wq->flush_color == wq->work_color);
2709 BUG_ON(wq->flush_color != next->flush_color);
2710
2711 list_del_init(&next->list);
2712 wq->first_flusher = next;
2713
2714 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2715 break;
2716
2717 /*
2718 * Meh... this color is already done, clear first
2719 * flusher and repeat cascading.
2720 */
2721 wq->first_flusher = NULL;
2722 }
2723
2724out_unlock:
2725 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726}
Dave Jonesae90dd52006-06-30 01:40:45 -04002727EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002729/**
2730 * drain_workqueue - drain a workqueue
2731 * @wq: workqueue to drain
2732 *
2733 * Wait until the workqueue becomes empty. While draining is in progress,
2734 * only chain queueing is allowed. IOW, only currently pending or running
2735 * work items on @wq can queue further work items on it. @wq is flushed
2736 * repeatedly until it becomes empty. The number of flushing is detemined
2737 * by the depth of chaining and should be relatively short. Whine if it
2738 * takes too long.
2739 */
2740void drain_workqueue(struct workqueue_struct *wq)
2741{
2742 unsigned int flush_cnt = 0;
2743 unsigned int cpu;
2744
2745 /*
2746 * __queue_work() needs to test whether there are drainers, is much
2747 * hotter than drain_workqueue() and already looks at @wq->flags.
2748 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2749 */
2750 spin_lock(&workqueue_lock);
2751 if (!wq->nr_drainers++)
2752 wq->flags |= WQ_DRAINING;
2753 spin_unlock(&workqueue_lock);
2754reflush:
2755 flush_workqueue(wq);
2756
2757 for_each_cwq_cpu(cpu, wq) {
2758 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002759 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002760
Tejun Heobd7bdd42012-07-12 14:46:37 -07002761 spin_lock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002762 drained = !cwq->nr_active && list_empty(&cwq->delayed_works);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002763 spin_unlock_irq(&cwq->pool->gcwq->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002764
2765 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002766 continue;
2767
2768 if (++flush_cnt == 10 ||
2769 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
Valentin Ilie044c7822012-08-19 00:52:42 +03002770 pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
2771 wq->name, flush_cnt);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002772 goto reflush;
2773 }
2774
2775 spin_lock(&workqueue_lock);
2776 if (!--wq->nr_drainers)
2777 wq->flags &= ~WQ_DRAINING;
2778 spin_unlock(&workqueue_lock);
2779}
2780EXPORT_SYMBOL_GPL(drain_workqueue);
2781
Tejun Heo606a5022012-08-20 14:51:23 -07002782static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
Tejun Heobaf59022010-09-16 10:42:16 +02002783{
2784 struct worker *worker = NULL;
2785 struct global_cwq *gcwq;
2786 struct cpu_workqueue_struct *cwq;
2787
2788 might_sleep();
2789 gcwq = get_work_gcwq(work);
2790 if (!gcwq)
2791 return false;
2792
2793 spin_lock_irq(&gcwq->lock);
2794 if (!list_empty(&work->entry)) {
2795 /*
2796 * See the comment near try_to_grab_pending()->smp_rmb().
2797 * If it was re-queued to a different gcwq under us, we
2798 * are not going to wait.
2799 */
2800 smp_rmb();
2801 cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002802 if (unlikely(!cwq || gcwq != cwq->pool->gcwq))
Tejun Heobaf59022010-09-16 10:42:16 +02002803 goto already_gone;
Tejun Heo606a5022012-08-20 14:51:23 -07002804 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002805 worker = find_worker_executing_work(gcwq, work);
2806 if (!worker)
2807 goto already_gone;
2808 cwq = worker->current_cwq;
Tejun Heo606a5022012-08-20 14:51:23 -07002809 }
Tejun Heobaf59022010-09-16 10:42:16 +02002810
2811 insert_wq_barrier(cwq, barr, work, worker);
2812 spin_unlock_irq(&gcwq->lock);
2813
Tejun Heoe1594892011-01-09 23:32:15 +01002814 /*
2815 * If @max_active is 1 or rescuer is in use, flushing another work
2816 * item on the same workqueue may lead to deadlock. Make sure the
2817 * flusher is not running on the same workqueue by verifying write
2818 * access.
2819 */
2820 if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER)
2821 lock_map_acquire(&cwq->wq->lockdep_map);
2822 else
2823 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heobaf59022010-09-16 10:42:16 +02002824 lock_map_release(&cwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002825
Tejun Heobaf59022010-09-16 10:42:16 +02002826 return true;
2827already_gone:
2828 spin_unlock_irq(&gcwq->lock);
2829 return false;
2830}
2831
Oleg Nesterovdb700892008-07-25 01:47:49 -07002832/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002833 * flush_work - wait for a work to finish executing the last queueing instance
2834 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002835 *
Tejun Heo606a5022012-08-20 14:51:23 -07002836 * Wait until @work has finished execution. @work is guaranteed to be idle
2837 * on return if it hasn't been requeued since flush started.
Tejun Heo401a8d02010-09-16 10:36:00 +02002838 *
2839 * RETURNS:
2840 * %true if flush_work() waited for the work to finish execution,
2841 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002842 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002843bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002844{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002845 struct wq_barrier barr;
2846
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002847 lock_map_acquire(&work->lockdep_map);
2848 lock_map_release(&work->lockdep_map);
2849
Tejun Heo606a5022012-08-20 14:51:23 -07002850 if (start_flush_work(work, &barr)) {
Tejun Heobaf59022010-09-16 10:42:16 +02002851 wait_for_completion(&barr.done);
2852 destroy_work_on_stack(&barr.work);
2853 return true;
Tejun Heo606a5022012-08-20 14:51:23 -07002854 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002855 return false;
Tejun Heo606a5022012-08-20 14:51:23 -07002856 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002857}
2858EXPORT_SYMBOL_GPL(flush_work);
2859
Tejun Heo36e227d2012-08-03 10:30:46 -07002860static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
Tejun Heo401a8d02010-09-16 10:36:00 +02002861{
Tejun Heobbb68df2012-08-03 10:30:46 -07002862 unsigned long flags;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002863 int ret;
2864
2865 do {
Tejun Heobbb68df2012-08-03 10:30:46 -07002866 ret = try_to_grab_pending(work, is_dwork, &flags);
2867 /*
2868 * If someone else is canceling, wait for the same event it
2869 * would be waiting for before retrying.
2870 */
2871 if (unlikely(ret == -ENOENT))
Tejun Heo606a5022012-08-20 14:51:23 -07002872 flush_work(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002873 } while (unlikely(ret < 0));
2874
Tejun Heobbb68df2012-08-03 10:30:46 -07002875 /* tell other tasks trying to grab @work to back off */
2876 mark_work_canceling(work);
2877 local_irq_restore(flags);
2878
Tejun Heo606a5022012-08-20 14:51:23 -07002879 flush_work(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002880 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002881 return ret;
2882}
2883
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002884/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002885 * cancel_work_sync - cancel a work and wait for it to finish
2886 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002887 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002888 * Cancel @work and wait for its execution to finish. This function
2889 * can be used even if the work re-queues itself or migrates to
2890 * another workqueue. On return from this function, @work is
2891 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002892 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002893 * cancel_work_sync(&delayed_work->work) must not be used for
2894 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002895 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002896 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002897 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002898 *
2899 * RETURNS:
2900 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002901 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002902bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002903{
Tejun Heo36e227d2012-08-03 10:30:46 -07002904 return __cancel_work_timer(work, false);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002905}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002906EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002907
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002908/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002909 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2910 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002911 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002912 * Delayed timer is cancelled and the pending work is queued for
2913 * immediate execution. Like flush_work(), this function only
2914 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002915 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002916 * RETURNS:
2917 * %true if flush_work() waited for the work to finish execution,
2918 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002919 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002920bool flush_delayed_work(struct delayed_work *dwork)
2921{
Tejun Heo8930cab2012-08-03 10:30:45 -07002922 local_irq_disable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002923 if (del_timer_sync(&dwork->timer))
Tejun Heo12650572012-08-08 09:38:42 -07002924 __queue_work(dwork->cpu,
Tejun Heo401a8d02010-09-16 10:36:00 +02002925 get_work_cwq(&dwork->work)->wq, &dwork->work);
Tejun Heo8930cab2012-08-03 10:30:45 -07002926 local_irq_enable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002927 return flush_work(&dwork->work);
2928}
2929EXPORT_SYMBOL(flush_delayed_work);
2930
2931/**
Tejun Heo57b30ae2012-08-21 13:18:24 -07002932 * cancel_delayed_work - cancel a delayed work
2933 * @dwork: delayed_work to cancel
Tejun Heo09383492010-09-16 10:48:29 +02002934 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002935 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2936 * and canceled; %false if wasn't pending. Note that the work callback
2937 * function may still be running on return, unless it returns %true and the
2938 * work doesn't re-arm itself. Explicitly flush or use
2939 * cancel_delayed_work_sync() to wait on it.
Tejun Heo09383492010-09-16 10:48:29 +02002940 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002941 * This function is safe to call from any context including IRQ handler.
Tejun Heo09383492010-09-16 10:48:29 +02002942 */
Tejun Heo57b30ae2012-08-21 13:18:24 -07002943bool cancel_delayed_work(struct delayed_work *dwork)
Tejun Heo09383492010-09-16 10:48:29 +02002944{
Tejun Heo57b30ae2012-08-21 13:18:24 -07002945 unsigned long flags;
2946 int ret;
2947
2948 do {
2949 ret = try_to_grab_pending(&dwork->work, true, &flags);
2950 } while (unlikely(ret == -EAGAIN));
2951
2952 if (unlikely(ret < 0))
2953 return false;
2954
2955 set_work_cpu_and_clear_pending(&dwork->work, work_cpu(&dwork->work));
2956 local_irq_restore(flags);
Dan Magenheimerc0158ca2012-10-18 16:31:37 -07002957 return ret;
Tejun Heo09383492010-09-16 10:48:29 +02002958}
Tejun Heo57b30ae2012-08-21 13:18:24 -07002959EXPORT_SYMBOL(cancel_delayed_work);
Tejun Heo09383492010-09-16 10:48:29 +02002960
2961/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002962 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2963 * @dwork: the delayed work cancel
2964 *
2965 * This is cancel_work_sync() for delayed works.
2966 *
2967 * RETURNS:
2968 * %true if @dwork was pending, %false otherwise.
2969 */
2970bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002971{
Tejun Heo36e227d2012-08-03 10:30:46 -07002972 return __cancel_work_timer(&dwork->work, true);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002973}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002974EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002976/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07002977 * schedule_work_on - put work task on a specific cpu
2978 * @cpu: cpu to put the work task on
2979 * @work: job to be done
2980 *
2981 * This puts a job on a specific cpu
2982 */
Tejun Heod4283e92012-08-03 10:30:44 -07002983bool schedule_work_on(int cpu, struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07002984{
Tejun Heod320c032010-06-29 10:07:14 +02002985 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002986}
2987EXPORT_SYMBOL(schedule_work_on);
2988
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002989/**
Dave Jonesae90dd52006-06-30 01:40:45 -04002990 * schedule_work - put work task in global workqueue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 * @work: job to be done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 *
Tejun Heod4283e92012-08-03 10:30:44 -07002993 * Returns %false if @work was already on the kernel-global workqueue and
2994 * %true otherwise.
David Howells52bad642006-11-22 14:54:01 +00002995 *
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002996 * This puts a job in the kernel-global workqueue if it was not already
2997 * queued and leaves it in the same position on the kernel-global
2998 * workqueue otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 */
Tejun Heod4283e92012-08-03 10:30:44 -07003000bool schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001{
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003002 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003}
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003004EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003006/**
3007 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
3008 * @cpu: cpu to use
3009 * @dwork: job to be done
3010 * @delay: number of jiffies to wait
3011 *
3012 * After waiting for a given time this puts a job in the kernel-global
3013 * workqueue on the specified CPU.
3014 */
Tejun Heod4283e92012-08-03 10:30:44 -07003015bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3016 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
Tejun Heod320c032010-06-29 10:07:14 +02003018 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019}
Dave Jonesae90dd52006-06-30 01:40:45 -04003020EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Andrew Mortonb6136772006-06-25 05:47:49 -07003022/**
Tejun Heo0a13c002012-08-03 10:30:44 -07003023 * schedule_delayed_work - put work task in global workqueue after delay
3024 * @dwork: job to be done
3025 * @delay: number of jiffies to wait or 0 for immediate execution
3026 *
3027 * After waiting for a given time this puts a job in the kernel-global
3028 * workqueue.
3029 */
Tejun Heod4283e92012-08-03 10:30:44 -07003030bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
Tejun Heo0a13c002012-08-03 10:30:44 -07003031{
3032 return queue_delayed_work(system_wq, dwork, delay);
3033}
3034EXPORT_SYMBOL(schedule_delayed_work);
3035
3036/**
Tejun Heo31ddd872010-10-19 11:14:49 +02003037 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07003038 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07003039 *
Tejun Heo31ddd872010-10-19 11:14:49 +02003040 * schedule_on_each_cpu() executes @func on each online CPU using the
3041 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07003042 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02003043 *
3044 * RETURNS:
3045 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07003046 */
David Howells65f27f32006-11-22 14:55:48 +00003047int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003048{
3049 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02003050 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08003051
Andrew Mortonb6136772006-06-25 05:47:49 -07003052 works = alloc_percpu(struct work_struct);
3053 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003054 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07003055
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003056 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08003057
Christoph Lameter15316ba2006-01-08 01:00:43 -08003058 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01003059 struct work_struct *work = per_cpu_ptr(works, cpu);
3060
3061 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003062 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003063 }
Tejun Heo93981802009-11-17 14:06:20 -08003064
3065 for_each_online_cpu(cpu)
3066 flush_work(per_cpu_ptr(works, cpu));
3067
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003068 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003069 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003070 return 0;
3071}
3072
Alan Sterneef6a7d2010-02-12 17:39:21 +09003073/**
3074 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3075 *
3076 * Forces execution of the kernel-global workqueue and blocks until its
3077 * completion.
3078 *
3079 * Think twice before calling this function! It's very easy to get into
3080 * trouble if you don't take great care. Either of the following situations
3081 * will lead to deadlock:
3082 *
3083 * One of the work items currently on the workqueue needs to acquire
3084 * a lock held by your code or its caller.
3085 *
3086 * Your code is running in the context of a work routine.
3087 *
3088 * They will be detected by lockdep when they occur, but the first might not
3089 * occur very often. It depends on what work items are on the workqueue and
3090 * what locks they need, which you have no control over.
3091 *
3092 * In most situations flushing the entire workqueue is overkill; you merely
3093 * need to know that a particular work item isn't queued and isn't running.
3094 * In such cases you should use cancel_delayed_work_sync() or
3095 * cancel_work_sync() instead.
3096 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097void flush_scheduled_work(void)
3098{
Tejun Heod320c032010-06-29 10:07:14 +02003099 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100}
Dave Jonesae90dd52006-06-30 01:40:45 -04003101EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
3103/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003104 * execute_in_process_context - reliably execute the routine with user context
3105 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003106 * @ew: guaranteed storage for the execute work structure (must
3107 * be available when the work executes)
3108 *
3109 * Executes the function immediately if process context is available,
3110 * otherwise schedules the function for delayed execution.
3111 *
3112 * Returns: 0 - function was executed
3113 * 1 - function was scheduled for execution
3114 */
David Howells65f27f32006-11-22 14:55:48 +00003115int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003116{
3117 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003118 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003119 return 0;
3120 }
3121
David Howells65f27f32006-11-22 14:55:48 +00003122 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003123 schedule_work(&ew->work);
3124
3125 return 1;
3126}
3127EXPORT_SYMBOL_GPL(execute_in_process_context);
3128
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129int keventd_up(void)
3130{
Tejun Heod320c032010-06-29 10:07:14 +02003131 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132}
3133
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003134static int alloc_cwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135{
Oleg Nesterov3af244332007-05-09 02:34:09 -07003136 /*
Tejun Heo0f900042010-06-29 10:07:11 +02003137 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
3138 * Make sure that the alignment isn't lower than that of
3139 * unsigned long long.
Oleg Nesterov3af244332007-05-09 02:34:09 -07003140 */
Tejun Heo0f900042010-06-29 10:07:11 +02003141 const size_t size = sizeof(struct cpu_workqueue_struct);
3142 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
3143 __alignof__(unsigned long long));
Oleg Nesterov3af244332007-05-09 02:34:09 -07003144
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003145 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02003146 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
Tejun Heo931ac772010-07-20 11:07:48 +02003147 else {
Tejun Heof3421792010-07-02 10:03:51 +02003148 void *ptr;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003149
Tejun Heof3421792010-07-02 10:03:51 +02003150 /*
3151 * Allocate enough room to align cwq and put an extra
3152 * pointer at the end pointing back to the originally
3153 * allocated pointer which will be used for free.
3154 */
3155 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
3156 if (ptr) {
3157 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
3158 *(void **)(wq->cpu_wq.single + 1) = ptr;
3159 }
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003160 }
Tejun Heof3421792010-07-02 10:03:51 +02003161
Tejun Heo0415b00d12011-03-24 18:50:09 +01003162 /* just in case, make sure it's actually aligned */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003163 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
3164 return wq->cpu_wq.v ? 0 : -ENOMEM;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003165}
3166
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003167static void free_cwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003168{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003169 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02003170 free_percpu(wq->cpu_wq.pcpu);
3171 else if (wq->cpu_wq.single) {
3172 /* the pointer to free is stored right after the cwq */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003173 kfree(*(void **)(wq->cpu_wq.single + 1));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003174 }
3175}
3176
Tejun Heof3421792010-07-02 10:03:51 +02003177static int wq_clamp_max_active(int max_active, unsigned int flags,
3178 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003179{
Tejun Heof3421792010-07-02 10:03:51 +02003180 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3181
3182 if (max_active < 1 || max_active > lim)
Valentin Ilie044c7822012-08-19 00:52:42 +03003183 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3184 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003185
Tejun Heof3421792010-07-02 10:03:51 +02003186 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003187}
3188
Tejun Heob196be82012-01-10 15:11:35 -08003189struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003190 unsigned int flags,
3191 int max_active,
3192 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003193 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003194{
Tejun Heob196be82012-01-10 15:11:35 -08003195 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003196 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02003197 unsigned int cpu;
Tejun Heob196be82012-01-10 15:11:35 -08003198 size_t namelen;
3199
3200 /* determine namelen, allocate wq and format name */
3201 va_start(args, lock_name);
3202 va_copy(args1, args);
3203 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3204
3205 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3206 if (!wq)
3207 goto err;
3208
3209 vsnprintf(wq->name, namelen, fmt, args1);
3210 va_end(args);
3211 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003212
Tejun Heof3421792010-07-02 10:03:51 +02003213 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02003214 * Workqueues which may be used during memory reclaim should
3215 * have a rescuer to guarantee forward progress.
3216 */
3217 if (flags & WQ_MEM_RECLAIM)
3218 flags |= WQ_RESCUER;
3219
Tejun Heod320c032010-06-29 10:07:14 +02003220 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003221 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003222
Tejun Heob196be82012-01-10 15:11:35 -08003223 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003224 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003225 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003226 mutex_init(&wq->flush_mutex);
3227 atomic_set(&wq->nr_cwqs_to_flush, 0);
3228 INIT_LIST_HEAD(&wq->flusher_queue);
3229 INIT_LIST_HEAD(&wq->flusher_overflow);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003230
Johannes Bergeb13ba82008-01-16 09:51:58 +01003231 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003232 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003233
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003234 if (alloc_cwqs(wq) < 0)
3235 goto err;
3236
Tejun Heof3421792010-07-02 10:03:51 +02003237 for_each_cwq_cpu(cpu, wq) {
Tejun Heo15376632010-06-29 10:07:11 +02003238 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003239 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo32704762012-07-13 22:16:45 -07003240 int pool_idx = (bool)(flags & WQ_HIGHPRI);
Tejun Heo15376632010-06-29 10:07:11 +02003241
Tejun Heo0f900042010-06-29 10:07:11 +02003242 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo32704762012-07-13 22:16:45 -07003243 cwq->pool = &gcwq->pools[pool_idx];
Tejun Heoc34056a2010-06-29 10:07:11 +02003244 cwq->wq = wq;
Tejun Heo73f53c42010-06-29 10:07:11 +02003245 cwq->flush_color = -1;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003246 cwq->max_active = max_active;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003247 INIT_LIST_HEAD(&cwq->delayed_works);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003248 }
3249
Tejun Heoe22bee72010-06-29 10:07:14 +02003250 if (flags & WQ_RESCUER) {
3251 struct worker *rescuer;
3252
Tejun Heof2e005a2010-07-20 15:59:09 +02003253 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
Tejun Heoe22bee72010-06-29 10:07:14 +02003254 goto err;
3255
3256 wq->rescuer = rescuer = alloc_worker();
3257 if (!rescuer)
3258 goto err;
3259
Tejun Heo111c2252013-01-17 17:16:24 -08003260 rescuer->rescue_wq = wq;
3261 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
Tejun Heob196be82012-01-10 15:11:35 -08003262 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003263 if (IS_ERR(rescuer->task))
3264 goto err;
3265
Tejun Heoe22bee72010-06-29 10:07:14 +02003266 rescuer->task->flags |= PF_THREAD_BOUND;
3267 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003268 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003269
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003270 /*
3271 * workqueue_lock protects global freeze state and workqueues
3272 * list. Grab it, set max_active accordingly and add the new
3273 * workqueue to workqueues list.
3274 */
Tejun Heo15376632010-06-29 10:07:11 +02003275 spin_lock(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003276
Tejun Heo58a69cb2011-02-16 09:25:31 +01003277 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heof3421792010-07-02 10:03:51 +02003278 for_each_cwq_cpu(cpu, wq)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003279 get_cwq(cpu, wq)->max_active = 0;
3280
Tejun Heo15376632010-06-29 10:07:11 +02003281 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003282
Tejun Heo15376632010-06-29 10:07:11 +02003283 spin_unlock(&workqueue_lock);
3284
Oleg Nesterov3af244332007-05-09 02:34:09 -07003285 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003286err:
3287 if (wq) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003288 free_cwqs(wq);
Tejun Heof2e005a2010-07-20 15:59:09 +02003289 free_mayday_mask(wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02003290 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003291 kfree(wq);
3292 }
3293 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003294}
Tejun Heod320c032010-06-29 10:07:14 +02003295EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003296
3297/**
3298 * destroy_workqueue - safely terminate a workqueue
3299 * @wq: target workqueue
3300 *
3301 * Safely destroy a workqueue. All work currently pending will be done first.
3302 */
3303void destroy_workqueue(struct workqueue_struct *wq)
3304{
Tejun Heoc8e55f32010-06-29 10:07:12 +02003305 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003306
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003307 /* drain it before proceeding with destruction */
3308 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003309
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003310 /*
3311 * wq list is used to freeze wq, remove from list after
3312 * flushing is complete in case freeze races us.
3313 */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003314 spin_lock(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003315 list_del(&wq->list);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003316 spin_unlock(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003317
Tejun Heoe22bee72010-06-29 10:07:14 +02003318 /* sanity check */
Tejun Heof3421792010-07-02 10:03:51 +02003319 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02003320 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3321 int i;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003322
Tejun Heo73f53c42010-06-29 10:07:11 +02003323 for (i = 0; i < WORK_NR_COLORS; i++)
3324 BUG_ON(cwq->nr_in_flight[i]);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003325 BUG_ON(cwq->nr_active);
3326 BUG_ON(!list_empty(&cwq->delayed_works));
Tejun Heo73f53c42010-06-29 10:07:11 +02003327 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003328
Tejun Heoe22bee72010-06-29 10:07:14 +02003329 if (wq->flags & WQ_RESCUER) {
3330 kthread_stop(wq->rescuer->task);
Tejun Heof2e005a2010-07-20 15:59:09 +02003331 free_mayday_mask(wq->mayday_mask);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003332 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003333 }
3334
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003335 free_cwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003336 kfree(wq);
3337}
3338EXPORT_SYMBOL_GPL(destroy_workqueue);
3339
Tejun Heodcd989c2010-06-29 10:07:14 +02003340/**
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003341 * cwq_set_max_active - adjust max_active of a cwq
3342 * @cwq: target cpu_workqueue_struct
3343 * @max_active: new max_active value.
3344 *
3345 * Set @cwq->max_active to @max_active and activate delayed works if
3346 * increased.
3347 *
3348 * CONTEXT:
3349 * spin_lock_irq(gcwq->lock).
3350 */
3351static void cwq_set_max_active(struct cpu_workqueue_struct *cwq, int max_active)
3352{
3353 cwq->max_active = max_active;
3354
3355 while (!list_empty(&cwq->delayed_works) &&
3356 cwq->nr_active < cwq->max_active)
3357 cwq_activate_first_delayed(cwq);
3358}
3359
3360/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003361 * workqueue_set_max_active - adjust max_active of a workqueue
3362 * @wq: target workqueue
3363 * @max_active: new max_active value.
3364 *
3365 * Set max_active of @wq to @max_active.
3366 *
3367 * CONTEXT:
3368 * Don't call from IRQ context.
3369 */
3370void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3371{
3372 unsigned int cpu;
3373
Tejun Heof3421792010-07-02 10:03:51 +02003374 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003375
3376 spin_lock(&workqueue_lock);
3377
3378 wq->saved_max_active = max_active;
3379
Tejun Heof3421792010-07-02 10:03:51 +02003380 for_each_cwq_cpu(cpu, wq) {
Tejun Heodcd989c2010-06-29 10:07:14 +02003381 struct global_cwq *gcwq = get_gcwq(cpu);
3382
3383 spin_lock_irq(&gcwq->lock);
3384
Tejun Heo58a69cb2011-02-16 09:25:31 +01003385 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heodcd989c2010-06-29 10:07:14 +02003386 !(gcwq->flags & GCWQ_FREEZING))
Lai Jiangshan70369b12012-09-19 10:40:48 -07003387 cwq_set_max_active(get_cwq(gcwq->cpu, wq), max_active);
Tejun Heodcd989c2010-06-29 10:07:14 +02003388
3389 spin_unlock_irq(&gcwq->lock);
3390 }
3391
3392 spin_unlock(&workqueue_lock);
3393}
3394EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3395
3396/**
3397 * workqueue_congested - test whether a workqueue is congested
3398 * @cpu: CPU in question
3399 * @wq: target workqueue
3400 *
3401 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3402 * no synchronization around this function and the test result is
3403 * unreliable and only useful as advisory hints or for debugging.
3404 *
3405 * RETURNS:
3406 * %true if congested, %false otherwise.
3407 */
3408bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
3409{
3410 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3411
3412 return !list_empty(&cwq->delayed_works);
3413}
3414EXPORT_SYMBOL_GPL(workqueue_congested);
3415
3416/**
3417 * work_cpu - return the last known associated cpu for @work
3418 * @work: the work of interest
3419 *
3420 * RETURNS:
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003421 * CPU number if @work was ever queued. WORK_CPU_NONE otherwise.
Tejun Heodcd989c2010-06-29 10:07:14 +02003422 */
Tejun Heoe2905b22013-01-24 11:01:32 -08003423static unsigned int work_cpu(struct work_struct *work)
Tejun Heodcd989c2010-06-29 10:07:14 +02003424{
3425 struct global_cwq *gcwq = get_work_gcwq(work);
3426
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003427 return gcwq ? gcwq->cpu : WORK_CPU_NONE;
Tejun Heodcd989c2010-06-29 10:07:14 +02003428}
Tejun Heodcd989c2010-06-29 10:07:14 +02003429
3430/**
3431 * work_busy - test whether a work is currently pending or running
3432 * @work: the work to be tested
3433 *
3434 * Test whether @work is currently pending or running. There is no
3435 * synchronization around this function and the test result is
3436 * unreliable and only useful as advisory hints or for debugging.
3437 * Especially for reentrant wqs, the pending state might hide the
3438 * running state.
3439 *
3440 * RETURNS:
3441 * OR'd bitmask of WORK_BUSY_* bits.
3442 */
3443unsigned int work_busy(struct work_struct *work)
3444{
3445 struct global_cwq *gcwq = get_work_gcwq(work);
3446 unsigned long flags;
3447 unsigned int ret = 0;
3448
3449 if (!gcwq)
Joonsoo Kim999767b2012-10-21 01:30:06 +09003450 return 0;
Tejun Heodcd989c2010-06-29 10:07:14 +02003451
3452 spin_lock_irqsave(&gcwq->lock, flags);
3453
3454 if (work_pending(work))
3455 ret |= WORK_BUSY_PENDING;
3456 if (find_worker_executing_work(gcwq, work))
3457 ret |= WORK_BUSY_RUNNING;
3458
3459 spin_unlock_irqrestore(&gcwq->lock, flags);
3460
3461 return ret;
3462}
3463EXPORT_SYMBOL_GPL(work_busy);
3464
Tejun Heodb7bccf2010-06-29 10:07:12 +02003465/*
3466 * CPU hotplug.
3467 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003468 * There are two challenges in supporting CPU hotplug. Firstly, there
3469 * are a lot of assumptions on strong associations among work, cwq and
3470 * gcwq which make migrating pending and scheduled works very
3471 * difficult to implement without impacting hot paths. Secondly,
3472 * gcwqs serve mix of short, long and very long running works making
3473 * blocked draining impractical.
3474 *
Tejun Heo628c78e2012-07-17 12:39:27 -07003475 * This is solved by allowing a gcwq to be disassociated from the CPU
3476 * running as an unbound one and allowing it to be reattached later if the
3477 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003478 */
3479
Tejun Heo60373152012-07-17 12:39:27 -07003480/* claim manager positions of all pools */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003481static void gcwq_claim_assoc_and_lock(struct global_cwq *gcwq)
Tejun Heo60373152012-07-17 12:39:27 -07003482{
3483 struct worker_pool *pool;
3484
3485 for_each_worker_pool(pool, gcwq)
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003486 mutex_lock_nested(&pool->assoc_mutex, pool - gcwq->pools);
Tejun Heo8db25e72012-07-17 12:39:28 -07003487 spin_lock_irq(&gcwq->lock);
Tejun Heo60373152012-07-17 12:39:27 -07003488}
3489
3490/* release manager positions */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003491static void gcwq_release_assoc_and_unlock(struct global_cwq *gcwq)
Tejun Heo60373152012-07-17 12:39:27 -07003492{
3493 struct worker_pool *pool;
3494
Tejun Heo8db25e72012-07-17 12:39:28 -07003495 spin_unlock_irq(&gcwq->lock);
Tejun Heo60373152012-07-17 12:39:27 -07003496 for_each_worker_pool(pool, gcwq)
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003497 mutex_unlock(&pool->assoc_mutex);
Tejun Heo60373152012-07-17 12:39:27 -07003498}
3499
Tejun Heo628c78e2012-07-17 12:39:27 -07003500static void gcwq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003501{
Tejun Heo628c78e2012-07-17 12:39:27 -07003502 struct global_cwq *gcwq = get_gcwq(smp_processor_id());
Tejun Heo4ce62e92012-07-13 22:16:44 -07003503 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003504 struct worker *worker;
3505 struct hlist_node *pos;
3506 int i;
3507
3508 BUG_ON(gcwq->cpu != smp_processor_id());
3509
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003510 gcwq_claim_assoc_and_lock(gcwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003511
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003512 /*
3513 * We've claimed all manager positions. Make all workers unbound
3514 * and set DISASSOCIATED. Before this, all workers except for the
3515 * ones which are still executing works from before the last CPU
3516 * down must be on the cpu. After this, they may become diasporas.
3517 */
Tejun Heo60373152012-07-17 12:39:27 -07003518 for_each_worker_pool(pool, gcwq)
Tejun Heo4ce62e92012-07-13 22:16:44 -07003519 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003520 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003521
3522 for_each_busy_worker(worker, i, pos, gcwq)
Tejun Heo403c8212012-07-17 12:39:27 -07003523 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003524
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003525 gcwq->flags |= GCWQ_DISASSOCIATED;
3526
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003527 gcwq_release_assoc_and_unlock(gcwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003528
3529 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07003530 * Call schedule() so that we cross rq->lock and thus can guarantee
3531 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3532 * as scheduler callbacks may be invoked from other cpus.
3533 */
3534 schedule();
3535
3536 /*
3537 * Sched callbacks are disabled now. Zap nr_running. After this,
3538 * nr_running stays zero and need_more_worker() and keep_working()
3539 * are always true as long as the worklist is not empty. @gcwq now
3540 * behaves as unbound (in terms of concurrency management) gcwq
3541 * which is served by workers tied to the CPU.
3542 *
3543 * On return from this function, the current worker would trigger
3544 * unbound chain execution of pending work items if other workers
3545 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02003546 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003547 for_each_worker_pool(pool, gcwq)
3548 atomic_set(get_pool_nr_running(pool), 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003549}
3550
Tejun Heo8db25e72012-07-17 12:39:28 -07003551/*
3552 * Workqueues should be brought up before normal priority CPU notifiers.
3553 * This will be registered high priority CPU notifier.
3554 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003555static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
Tejun Heo8db25e72012-07-17 12:39:28 -07003556 unsigned long action,
3557 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003558{
3559 unsigned int cpu = (unsigned long)hcpu;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003560 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003561 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562
Tejun Heo8db25e72012-07-17 12:39:28 -07003563 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 case CPU_UP_PREPARE:
Tejun Heo4ce62e92012-07-13 22:16:44 -07003565 for_each_worker_pool(pool, gcwq) {
Tejun Heo3ce63372012-07-17 12:39:27 -07003566 struct worker *worker;
3567
3568 if (pool->nr_workers)
3569 continue;
3570
3571 worker = create_worker(pool);
3572 if (!worker)
3573 return NOTIFY_BAD;
3574
3575 spin_lock_irq(&gcwq->lock);
3576 start_worker(worker);
3577 spin_unlock_irq(&gcwq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003579 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003580
Tejun Heo65758202012-07-17 12:39:26 -07003581 case CPU_DOWN_FAILED:
3582 case CPU_ONLINE:
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003583 gcwq_claim_assoc_and_lock(gcwq);
Tejun Heo8db25e72012-07-17 12:39:28 -07003584 gcwq->flags &= ~GCWQ_DISASSOCIATED;
3585 rebind_workers(gcwq);
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003586 gcwq_release_assoc_and_unlock(gcwq);
Tejun Heo8db25e72012-07-17 12:39:28 -07003587 break;
Tejun Heo65758202012-07-17 12:39:26 -07003588 }
3589 return NOTIFY_OK;
3590}
3591
3592/*
3593 * Workqueues should be brought down after normal priority CPU notifiers.
3594 * This will be registered as low priority CPU notifier.
3595 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003596static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
Tejun Heo65758202012-07-17 12:39:26 -07003597 unsigned long action,
3598 void *hcpu)
3599{
Tejun Heo8db25e72012-07-17 12:39:28 -07003600 unsigned int cpu = (unsigned long)hcpu;
3601 struct work_struct unbind_work;
3602
Tejun Heo65758202012-07-17 12:39:26 -07003603 switch (action & ~CPU_TASKS_FROZEN) {
3604 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003605 /* unbinding should happen on the local CPU */
3606 INIT_WORK_ONSTACK(&unbind_work, gcwq_unbind_fn);
Joonsoo Kim7635d2f2012-08-15 23:25:41 +09003607 queue_work_on(cpu, system_highpri_wq, &unbind_work);
Tejun Heo8db25e72012-07-17 12:39:28 -07003608 flush_work(&unbind_work);
3609 break;
Tejun Heo65758202012-07-17 12:39:26 -07003610 }
3611 return NOTIFY_OK;
3612}
3613
Rusty Russell2d3854a2008-11-05 13:39:10 +11003614#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003615
Rusty Russell2d3854a2008-11-05 13:39:10 +11003616struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07003617 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003618 long (*fn)(void *);
3619 void *arg;
3620 long ret;
3621};
3622
Tejun Heoed48ece2012-09-18 12:48:43 -07003623static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003624{
Tejun Heoed48ece2012-09-18 12:48:43 -07003625 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
3626
Rusty Russell2d3854a2008-11-05 13:39:10 +11003627 wfc->ret = wfc->fn(wfc->arg);
3628}
3629
3630/**
3631 * work_on_cpu - run a function in user context on a particular cpu
3632 * @cpu: the cpu to run on
3633 * @fn: the function to run
3634 * @arg: the function arg
3635 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003636 * This will return the value @fn returns.
3637 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b440032009-04-09 09:50:37 -06003638 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003639 */
3640long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3641{
Tejun Heoed48ece2012-09-18 12:48:43 -07003642 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003643
Tejun Heoed48ece2012-09-18 12:48:43 -07003644 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
3645 schedule_work_on(cpu, &wfc.work);
3646 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003647 return wfc.ret;
3648}
3649EXPORT_SYMBOL_GPL(work_on_cpu);
3650#endif /* CONFIG_SMP */
3651
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003652#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303653
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003654/**
3655 * freeze_workqueues_begin - begin freezing workqueues
3656 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003657 * Start freezing workqueues. After this function returns, all freezable
3658 * workqueues will queue new works to their frozen_works list instead of
3659 * gcwq->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003660 *
3661 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003662 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003663 */
3664void freeze_workqueues_begin(void)
3665{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003666 unsigned int cpu;
3667
3668 spin_lock(&workqueue_lock);
3669
3670 BUG_ON(workqueue_freezing);
3671 workqueue_freezing = true;
3672
Tejun Heof3421792010-07-02 10:03:51 +02003673 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003674 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003675 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003676
3677 spin_lock_irq(&gcwq->lock);
3678
Tejun Heodb7bccf2010-06-29 10:07:12 +02003679 BUG_ON(gcwq->flags & GCWQ_FREEZING);
3680 gcwq->flags |= GCWQ_FREEZING;
3681
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003682 list_for_each_entry(wq, &workqueues, list) {
3683 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3684
Tejun Heo58a69cb2011-02-16 09:25:31 +01003685 if (cwq && wq->flags & WQ_FREEZABLE)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003686 cwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003687 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003688
3689 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003690 }
3691
3692 spin_unlock(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003694
3695/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003696 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003697 *
3698 * Check whether freezing is complete. This function must be called
3699 * between freeze_workqueues_begin() and thaw_workqueues().
3700 *
3701 * CONTEXT:
3702 * Grabs and releases workqueue_lock.
3703 *
3704 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003705 * %true if some freezable workqueues are still busy. %false if freezing
3706 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003707 */
3708bool freeze_workqueues_busy(void)
3709{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003710 unsigned int cpu;
3711 bool busy = false;
3712
3713 spin_lock(&workqueue_lock);
3714
3715 BUG_ON(!workqueue_freezing);
3716
Tejun Heof3421792010-07-02 10:03:51 +02003717 for_each_gcwq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003718 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003719 /*
3720 * nr_active is monotonically decreasing. It's safe
3721 * to peek without lock.
3722 */
3723 list_for_each_entry(wq, &workqueues, list) {
3724 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3725
Tejun Heo58a69cb2011-02-16 09:25:31 +01003726 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003727 continue;
3728
3729 BUG_ON(cwq->nr_active < 0);
3730 if (cwq->nr_active) {
3731 busy = true;
3732 goto out_unlock;
3733 }
3734 }
3735 }
3736out_unlock:
3737 spin_unlock(&workqueue_lock);
3738 return busy;
3739}
3740
3741/**
3742 * thaw_workqueues - thaw workqueues
3743 *
3744 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo7e116292010-06-29 10:07:13 +02003745 * frozen works are transferred to their respective gcwq worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003746 *
3747 * CONTEXT:
Tejun Heo8b03ae32010-06-29 10:07:12 +02003748 * Grabs and releases workqueue_lock and gcwq->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003749 */
3750void thaw_workqueues(void)
3751{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003752 unsigned int cpu;
3753
3754 spin_lock(&workqueue_lock);
3755
3756 if (!workqueue_freezing)
3757 goto out_unlock;
3758
Tejun Heof3421792010-07-02 10:03:51 +02003759 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003760 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003761 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003762 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003763
3764 spin_lock_irq(&gcwq->lock);
3765
Tejun Heodb7bccf2010-06-29 10:07:12 +02003766 BUG_ON(!(gcwq->flags & GCWQ_FREEZING));
3767 gcwq->flags &= ~GCWQ_FREEZING;
3768
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003769 list_for_each_entry(wq, &workqueues, list) {
3770 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3771
Tejun Heo58a69cb2011-02-16 09:25:31 +01003772 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003773 continue;
3774
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003775 /* restore max_active and repopulate worklist */
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003776 cwq_set_max_active(cwq, wq->saved_max_active);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003777 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003778
Tejun Heo4ce62e92012-07-13 22:16:44 -07003779 for_each_worker_pool(pool, gcwq)
3780 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02003781
Tejun Heo8b03ae32010-06-29 10:07:12 +02003782 spin_unlock_irq(&gcwq->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003783 }
3784
3785 workqueue_freezing = false;
3786out_unlock:
3787 spin_unlock(&workqueue_lock);
3788}
3789#endif /* CONFIG_FREEZER */
3790
Suresh Siddha6ee05782010-07-30 14:57:37 -07003791static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792{
Tejun Heoc34056a2010-06-29 10:07:11 +02003793 unsigned int cpu;
3794
Tejun Heob5490072012-08-03 10:30:46 -07003795 /* make sure we have enough bits for OFFQ CPU number */
3796 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_CPU_SHIFT)) <
3797 WORK_CPU_LAST);
3798
Tejun Heo65758202012-07-17 12:39:26 -07003799 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
Lai Jiangshana5b4e572012-09-18 09:59:23 -07003800 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003801
3802 /* initialize gcwqs */
Tejun Heof3421792010-07-02 10:03:51 +02003803 for_each_gcwq_cpu(cpu) {
Tejun Heo8b03ae32010-06-29 10:07:12 +02003804 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003805 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003806
3807 spin_lock_init(&gcwq->lock);
3808 gcwq->cpu = cpu;
Tejun Heo477a3c32010-08-31 10:54:35 +02003809 gcwq->flags |= GCWQ_DISASSOCIATED;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003810
Sasha Levin42f85702012-12-17 10:01:23 -05003811 hash_init(gcwq->busy_hash);
Tejun Heoc8e55f32010-06-29 10:07:12 +02003812
Tejun Heo4ce62e92012-07-13 22:16:44 -07003813 for_each_worker_pool(pool, gcwq) {
3814 pool->gcwq = gcwq;
3815 INIT_LIST_HEAD(&pool->worklist);
3816 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoe22bee72010-06-29 10:07:14 +02003817
Tejun Heo4ce62e92012-07-13 22:16:44 -07003818 init_timer_deferrable(&pool->idle_timer);
3819 pool->idle_timer.function = idle_worker_timeout;
3820 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003821
Tejun Heo4ce62e92012-07-13 22:16:44 -07003822 setup_timer(&pool->mayday_timer, gcwq_mayday_timeout,
3823 (unsigned long)pool);
3824
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003825 mutex_init(&pool->assoc_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003826 ida_init(&pool->worker_ida);
3827 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003828 }
3829
Tejun Heoe22bee72010-06-29 10:07:14 +02003830 /* create the initial worker */
Tejun Heof3421792010-07-02 10:03:51 +02003831 for_each_online_gcwq_cpu(cpu) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003832 struct global_cwq *gcwq = get_gcwq(cpu);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003833 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003834
Tejun Heo477a3c32010-08-31 10:54:35 +02003835 if (cpu != WORK_CPU_UNBOUND)
3836 gcwq->flags &= ~GCWQ_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003837
3838 for_each_worker_pool(pool, gcwq) {
3839 struct worker *worker;
3840
Tejun Heobc2ae0f2012-07-17 12:39:27 -07003841 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003842 BUG_ON(!worker);
3843 spin_lock_irq(&gcwq->lock);
3844 start_worker(worker);
3845 spin_unlock_irq(&gcwq->lock);
3846 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003847 }
3848
Tejun Heod320c032010-06-29 10:07:14 +02003849 system_wq = alloc_workqueue("events", 0, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003850 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
Tejun Heod320c032010-06-29 10:07:14 +02003851 system_long_wq = alloc_workqueue("events_long", 0, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003852 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3853 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003854 system_freezable_wq = alloc_workqueue("events_freezable",
3855 WQ_FREEZABLE, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003856 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
Tejun Heoae930e02012-08-20 14:51:23 -07003857 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003860early_initcall(init_workqueues);