blob: acee7b525d51bd0ea0621bba43301725e18f677d [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 /*
Tejun Heo24647572013-01-24 11:01:33 -080050 * worker_pool flags
Tejun Heobc2ae0f2012-07-17 12:39:27 -070051 *
Tejun Heo24647572013-01-24 11:01:33 -080052 * A bound pool is either associated or disassociated with its CPU.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070053 * 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
Tejun Heo24647572013-01-24 11:01:33 -080059 * be executing on any CPU. The pool behaves as an unbound one.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070060 *
61 * Note that DISASSOCIATED can be flipped only while holding
Tejun Heo24647572013-01-24 11:01:33 -080062 * assoc_mutex to avoid changing binding state while
63 * create_worker() is in progress.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070064 */
Tejun Heo11ebea52012-07-12 14:46:37 -070065 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
Lai Jiangshan552a37e2012-09-10 10:03:33 -070066 POOL_MANAGING_WORKERS = 1 << 1, /* managing workers */
Tejun Heo24647572013-01-24 11:01:33 -080067 POOL_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */
Tejun Heo35b6bb62013-01-24 11:01:33 -080068 POOL_FREEZING = 1 << 3, /* freeze in progress */
Tejun Heodb7bccf2010-06-29 10:07:12 +020069
Tejun Heoc8e55f32010-06-29 10:07:12 +020070 /* worker flags */
71 WORKER_STARTED = 1 << 0, /* started */
72 WORKER_DIE = 1 << 1, /* die die die */
73 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020074 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heofb0e7be2010-06-29 10:07:15 +020075 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020076 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020077
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -070078 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_UNBOUND |
Tejun Heo403c8212012-07-17 12:39:27 -070079 WORKER_CPU_INTENSIVE,
Tejun Heodb7bccf2010-06-29 10:07:12 +020080
Tejun Heoe34cdddb2013-01-24 11:01:33 -080081 NR_STD_WORKER_POOLS = 2, /* # standard pools per cpu */
Tejun Heo4ce62e92012-07-13 22:16:44 -070082
Tejun Heoc8e55f32010-06-29 10:07:12 +020083 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020084
Tejun Heoe22bee72010-06-29 10:07:14 +020085 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
86 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
87
Tejun Heo3233cdb2011-02-16 18:10:19 +010088 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
89 /* call for help after 10ms
90 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020091 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
92 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heoe22bee72010-06-29 10:07:14 +020093
94 /*
95 * Rescue workers are used only on emergencies and shared by
96 * all cpus. Give -20.
97 */
98 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -070099 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +0200100};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/*
Tejun Heo4690c4a2010-06-29 10:07:10 +0200103 * Structure fields follow one of the following exclusion rules.
104 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200105 * I: Modifiable by initialization/destruction paths and read-only for
106 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200107 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200108 * P: Preemption protected. Disabling preemption is enough and should
109 * only be modified and accessed from the local cpu.
110 *
Tejun Heod565ed62013-01-24 11:01:33 -0800111 * L: pool->lock protected. Access with pool->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200112 *
Tejun Heod565ed62013-01-24 11:01:33 -0800113 * X: During normal operation, modification requires pool->lock and should
114 * be done only from local cpu. Either disabling preemption on local
115 * cpu or grabbing pool->lock is enough for read access. If
116 * POOL_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200117 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200118 * F: wq->flush_mutex protected.
119 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200120 * W: workqueue_lock protected.
121 */
122
Tejun Heo2eaebdb2013-01-18 14:05:55 -0800123/* struct worker is defined in workqueue_internal.h */
Tejun Heoc34056a2010-06-29 10:07:11 +0200124
Tejun Heobd7bdd42012-07-12 14:46:37 -0700125struct worker_pool {
Tejun Heod565ed62013-01-24 11:01:33 -0800126 spinlock_t lock; /* the pool lock */
Tejun Heod84ff052013-03-12 11:29:59 -0700127 int cpu; /* I: the associated cpu */
Tejun Heo9daf9e62013-01-24 11:01:33 -0800128 int id; /* I: pool ID */
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
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800141 /* workers are chained either in busy_hash or idle_list */
142 DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER);
143 /* L: hash of busy workers */
144
Tejun Heo24647572013-01-24 11:01:33 -0800145 struct mutex assoc_mutex; /* protect POOL_DISASSOCIATED */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700146 struct ida worker_ida; /* L: for worker IDs */
Tejun Heoe19e3972013-01-24 11:39:44 -0800147
148 /*
149 * The current concurrency level. As it's likely to be accessed
150 * from other CPUs during try_to_wake_up(), put it in a separate
151 * cacheline.
152 */
153 atomic_t nr_running ____cacheline_aligned_in_smp;
Tejun Heo8b03ae32010-06-29 10:07:12 +0200154} ____cacheline_aligned_in_smp;
155
156/*
Tejun Heo112202d2013-02-13 19:29:12 -0800157 * The per-pool workqueue. While queued, the lower WORK_STRUCT_FLAG_BITS
158 * of work_struct->data are used for flags and the remaining high bits
159 * point to the pwq; thus, pwqs need to be aligned at two's power of the
160 * number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
Tejun Heo112202d2013-02-13 19:29:12 -0800162struct pool_workqueue {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700163 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200164 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200165 int work_color; /* L: current color */
166 int flush_color; /* L: flushing color */
167 int nr_in_flight[WORK_NR_COLORS];
168 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200169 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200170 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200171 struct list_head delayed_works; /* L: delayed works */
Tejun Heo30cdf242013-03-12 11:29:57 -0700172 struct list_head pwqs_node; /* I: node on wq->pwqs */
Tejun Heo493a1722013-03-12 11:29:59 -0700173 struct list_head mayday_node; /* W: node on wq->maydays */
Tejun Heoe904e6c2013-03-12 11:29:57 -0700174} __aligned(1 << WORK_STRUCT_FLAG_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200177 * Structure used to wait for workqueue flush.
178 */
179struct wq_flusher {
180 struct list_head list; /* F: list of flushers */
181 int flush_color; /* F: flush color waiting for */
182 struct completion done; /* flush completion */
183};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Tejun Heo73f53c42010-06-29 10:07:11 +0200185/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * The externally visible workqueue abstraction is an array of
187 * per-CPU workqueues:
188 */
189struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200190 unsigned int flags; /* W: WQ_* flags */
Tejun Heo420c0dd2013-03-12 11:29:59 -0700191 struct pool_workqueue __percpu *cpu_pwqs; /* I: per-cpu pwq's */
Tejun Heo30cdf242013-03-12 11:29:57 -0700192 struct list_head pwqs; /* I: all pwqs of this wq */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200193 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200194
195 struct mutex flush_mutex; /* protects wq flushing */
196 int work_color; /* F: current work color */
197 int flush_color; /* F: current flush color */
Tejun Heo112202d2013-02-13 19:29:12 -0800198 atomic_t nr_pwqs_to_flush; /* flush in progress */
Tejun Heo73f53c42010-06-29 10:07:11 +0200199 struct wq_flusher *first_flusher; /* F: first flusher */
200 struct list_head flusher_queue; /* F: flush waiters */
201 struct list_head flusher_overflow; /* F: flush overflow list */
202
Tejun Heo493a1722013-03-12 11:29:59 -0700203 struct list_head maydays; /* W: pwqs requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200204 struct worker *rescuer; /* I: rescue worker */
205
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200206 int nr_drainers; /* W: drain in progress */
Tejun Heo112202d2013-02-13 19:29:12 -0800207 int saved_max_active; /* W: saved pwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700208#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200209 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700210#endif
Tejun Heob196be82012-01-10 15:11:35 -0800211 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Tejun Heoe904e6c2013-03-12 11:29:57 -0700214static struct kmem_cache *pwq_cache;
215
Tejun Heod320c032010-06-29 10:07:14 +0200216struct workqueue_struct *system_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200217EXPORT_SYMBOL_GPL(system_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300218struct workqueue_struct *system_highpri_wq __read_mostly;
Joonsoo Kim1aabe902012-08-15 23:25:39 +0900219EXPORT_SYMBOL_GPL(system_highpri_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300220struct workqueue_struct *system_long_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200221EXPORT_SYMBOL_GPL(system_long_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300222struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200223EXPORT_SYMBOL_GPL(system_unbound_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300224struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100225EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200226
Tejun Heo97bd2342010-10-05 10:41:14 +0200227#define CREATE_TRACE_POINTS
228#include <trace/events/workqueue.h>
229
Tejun Heo38db41d2013-01-24 11:01:34 -0800230#define for_each_std_worker_pool(pool, cpu) \
Tejun Heoa60dc392013-01-24 11:01:34 -0800231 for ((pool) = &std_worker_pools(cpu)[0]; \
232 (pool) < &std_worker_pools(cpu)[NR_STD_WORKER_POOLS]; (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700233
Sasha Levinb67bfe02013-02-27 17:06:00 -0800234#define for_each_busy_worker(worker, i, pool) \
235 hash_for_each(pool->busy_hash, i, worker, hentry)
Tejun Heodb7bccf2010-06-29 10:07:12 +0200236
Tejun Heo706026c2013-01-24 11:01:34 -0800237static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
238 unsigned int sw)
Tejun Heof3421792010-07-02 10:03:51 +0200239{
240 if (cpu < nr_cpu_ids) {
241 if (sw & 1) {
242 cpu = cpumask_next(cpu, mask);
243 if (cpu < nr_cpu_ids)
244 return cpu;
245 }
246 if (sw & 2)
247 return WORK_CPU_UNBOUND;
248 }
Lai Jiangshan6be19582013-02-06 18:04:53 -0800249 return WORK_CPU_END;
Tejun Heof3421792010-07-02 10:03:51 +0200250}
251
Tejun Heo09884952010-08-01 11:50:12 +0200252/*
253 * CPU iterators
254 *
Tejun Heo706026c2013-01-24 11:01:34 -0800255 * An extra cpu number is defined using an invalid cpu number
Tejun Heo09884952010-08-01 11:50:12 +0200256 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
Tejun Heo706026c2013-01-24 11:01:34 -0800257 * specific CPU. The following iterators are similar to for_each_*_cpu()
258 * iterators but also considers the unbound CPU.
Tejun Heo09884952010-08-01 11:50:12 +0200259 *
Tejun Heo706026c2013-01-24 11:01:34 -0800260 * for_each_wq_cpu() : possible CPUs + WORK_CPU_UNBOUND
261 * for_each_online_wq_cpu() : online CPUs + WORK_CPU_UNBOUND
Tejun Heo09884952010-08-01 11:50:12 +0200262 */
Tejun Heo706026c2013-01-24 11:01:34 -0800263#define for_each_wq_cpu(cpu) \
264 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, 3); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800265 (cpu) < WORK_CPU_END; \
Tejun Heo706026c2013-01-24 11:01:34 -0800266 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, 3))
Tejun Heof3421792010-07-02 10:03:51 +0200267
Tejun Heo706026c2013-01-24 11:01:34 -0800268#define for_each_online_wq_cpu(cpu) \
269 for ((cpu) = __next_wq_cpu(-1, cpu_online_mask, 3); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800270 (cpu) < WORK_CPU_END; \
Tejun Heo706026c2013-01-24 11:01:34 -0800271 (cpu) = __next_wq_cpu((cpu), cpu_online_mask, 3))
Tejun Heof3421792010-07-02 10:03:51 +0200272
Tejun Heo49e3cf42013-03-12 11:29:58 -0700273/**
Tejun Heo17116962013-03-12 11:29:58 -0700274 * for_each_pool - iterate through all worker_pools in the system
275 * @pool: iteration cursor
276 * @id: integer used for iteration
277 */
278#define for_each_pool(pool, id) \
279 idr_for_each_entry(&worker_pool_idr, pool, id)
280
281/**
Tejun Heo49e3cf42013-03-12 11:29:58 -0700282 * for_each_pwq - iterate through all pool_workqueues of the specified workqueue
283 * @pwq: iteration cursor
284 * @wq: the target workqueue
285 */
286#define for_each_pwq(pwq, wq) \
287 list_for_each_entry((pwq), &(wq)->pwqs, pwqs_node)
Tejun Heof3421792010-07-02 10:03:51 +0200288
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900289#ifdef CONFIG_DEBUG_OBJECTS_WORK
290
291static struct debug_obj_descr work_debug_descr;
292
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100293static void *work_debug_hint(void *addr)
294{
295 return ((struct work_struct *) addr)->func;
296}
297
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900298/*
299 * fixup_init is called when:
300 * - an active object is initialized
301 */
302static int work_fixup_init(void *addr, enum debug_obj_state state)
303{
304 struct work_struct *work = addr;
305
306 switch (state) {
307 case ODEBUG_STATE_ACTIVE:
308 cancel_work_sync(work);
309 debug_object_init(work, &work_debug_descr);
310 return 1;
311 default:
312 return 0;
313 }
314}
315
316/*
317 * fixup_activate is called when:
318 * - an active object is activated
319 * - an unknown object is activated (might be a statically initialized object)
320 */
321static int work_fixup_activate(void *addr, enum debug_obj_state state)
322{
323 struct work_struct *work = addr;
324
325 switch (state) {
326
327 case ODEBUG_STATE_NOTAVAILABLE:
328 /*
329 * This is not really a fixup. The work struct was
330 * statically initialized. We just make sure that it
331 * is tracked in the object tracker.
332 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200333 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900334 debug_object_init(work, &work_debug_descr);
335 debug_object_activate(work, &work_debug_descr);
336 return 0;
337 }
338 WARN_ON_ONCE(1);
339 return 0;
340
341 case ODEBUG_STATE_ACTIVE:
342 WARN_ON(1);
343
344 default:
345 return 0;
346 }
347}
348
349/*
350 * fixup_free is called when:
351 * - an active object is freed
352 */
353static int work_fixup_free(void *addr, enum debug_obj_state state)
354{
355 struct work_struct *work = addr;
356
357 switch (state) {
358 case ODEBUG_STATE_ACTIVE:
359 cancel_work_sync(work);
360 debug_object_free(work, &work_debug_descr);
361 return 1;
362 default:
363 return 0;
364 }
365}
366
367static struct debug_obj_descr work_debug_descr = {
368 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100369 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900370 .fixup_init = work_fixup_init,
371 .fixup_activate = work_fixup_activate,
372 .fixup_free = work_fixup_free,
373};
374
375static inline void debug_work_activate(struct work_struct *work)
376{
377 debug_object_activate(work, &work_debug_descr);
378}
379
380static inline void debug_work_deactivate(struct work_struct *work)
381{
382 debug_object_deactivate(work, &work_debug_descr);
383}
384
385void __init_work(struct work_struct *work, int onstack)
386{
387 if (onstack)
388 debug_object_init_on_stack(work, &work_debug_descr);
389 else
390 debug_object_init(work, &work_debug_descr);
391}
392EXPORT_SYMBOL_GPL(__init_work);
393
394void destroy_work_on_stack(struct work_struct *work)
395{
396 debug_object_free(work, &work_debug_descr);
397}
398EXPORT_SYMBOL_GPL(destroy_work_on_stack);
399
400#else
401static inline void debug_work_activate(struct work_struct *work) { }
402static inline void debug_work_deactivate(struct work_struct *work) { }
403#endif
404
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100405/* Serializes the accesses to the list of workqueues. */
406static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200408static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Oleg Nesterov14441962007-05-23 13:57:57 -0700410/*
Tejun Heoe19e3972013-01-24 11:39:44 -0800411 * The CPU and unbound standard worker pools. The unbound ones have
412 * POOL_DISASSOCIATED set, and their workers have WORKER_UNBOUND set.
Oleg Nesterov14441962007-05-23 13:57:57 -0700413 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800414static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
415 cpu_std_worker_pools);
Tejun Heoa60dc392013-01-24 11:01:34 -0800416static struct worker_pool unbound_std_worker_pools[NR_STD_WORKER_POOLS];
Tejun Heof3421792010-07-02 10:03:51 +0200417
Tejun Heo9daf9e62013-01-24 11:01:33 -0800418/* idr of all pools */
419static DEFINE_MUTEX(worker_pool_idr_mutex);
420static DEFINE_IDR(worker_pool_idr);
421
Tejun Heoc34056a2010-06-29 10:07:11 +0200422static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Tejun Heoa60dc392013-01-24 11:01:34 -0800424static struct worker_pool *std_worker_pools(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Tejun Heof3421792010-07-02 10:03:51 +0200426 if (cpu != WORK_CPU_UNBOUND)
Tejun Heoa60dc392013-01-24 11:01:34 -0800427 return per_cpu(cpu_std_worker_pools, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200428 else
Tejun Heoa60dc392013-01-24 11:01:34 -0800429 return unbound_std_worker_pools;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Tejun Heo4e8f0a62013-01-24 11:01:34 -0800432static int std_worker_pool_pri(struct worker_pool *pool)
433{
Tejun Heoa60dc392013-01-24 11:01:34 -0800434 return pool - std_worker_pools(pool->cpu);
Tejun Heo4e8f0a62013-01-24 11:01:34 -0800435}
436
Tejun Heo9daf9e62013-01-24 11:01:33 -0800437/* allocate ID and assign it to @pool */
438static int worker_pool_assign_id(struct worker_pool *pool)
439{
440 int ret;
441
442 mutex_lock(&worker_pool_idr_mutex);
443 idr_pre_get(&worker_pool_idr, GFP_KERNEL);
444 ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
445 mutex_unlock(&worker_pool_idr_mutex);
446
447 return ret;
448}
449
Tejun Heo7c3eed52013-01-24 11:01:33 -0800450/*
451 * Lookup worker_pool by id. The idr currently is built during boot and
452 * never modified. Don't worry about locking for now.
453 */
454static struct worker_pool *worker_pool_by_id(int pool_id)
455{
456 return idr_find(&worker_pool_idr, pool_id);
457}
458
Tejun Heod565ed62013-01-24 11:01:33 -0800459static struct worker_pool *get_std_worker_pool(int cpu, bool highpri)
460{
Tejun Heoa60dc392013-01-24 11:01:34 -0800461 struct worker_pool *pools = std_worker_pools(cpu);
Tejun Heod565ed62013-01-24 11:01:33 -0800462
Tejun Heoa60dc392013-01-24 11:01:34 -0800463 return &pools[highpri];
Tejun Heod565ed62013-01-24 11:01:33 -0800464}
465
Tejun Heod84ff052013-03-12 11:29:59 -0700466static struct pool_workqueue *get_pwq(int cpu, struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700467{
Tejun Heof3421792010-07-02 10:03:51 +0200468 if (!(wq->flags & WQ_UNBOUND)) {
Lai Jiangshane06ffa12012-03-09 18:03:20 +0800469 if (likely(cpu < nr_cpu_ids))
Tejun Heo420c0dd2013-03-12 11:29:59 -0700470 return per_cpu_ptr(wq->cpu_pwqs, cpu);
471 } else if (likely(cpu == WORK_CPU_UNBOUND)) {
472 return list_first_entry(&wq->pwqs, struct pool_workqueue,
473 pwqs_node);
474 }
Tejun Heof3421792010-07-02 10:03:51 +0200475 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700476}
477
Tejun Heo73f53c42010-06-29 10:07:11 +0200478static unsigned int work_color_to_flags(int color)
479{
480 return color << WORK_STRUCT_COLOR_SHIFT;
481}
482
483static int get_work_color(struct work_struct *work)
484{
485 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
486 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
487}
488
489static int work_next_color(int color)
490{
491 return (color + 1) % WORK_NR_COLORS;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700492}
493
David Howells4594bf12006-12-07 11:33:26 +0000494/*
Tejun Heo112202d2013-02-13 19:29:12 -0800495 * While queued, %WORK_STRUCT_PWQ is set and non flag bits of a work's data
496 * contain the pointer to the queued pwq. Once execution starts, the flag
Tejun Heo7c3eed52013-01-24 11:01:33 -0800497 * is cleared and the high bits contain OFFQ flags and pool ID.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200498 *
Tejun Heo112202d2013-02-13 19:29:12 -0800499 * set_work_pwq(), set_work_pool_and_clear_pending(), mark_work_canceling()
500 * and clear_work_data() can be used to set the pwq, pool or clear
Tejun Heobbb68df2012-08-03 10:30:46 -0700501 * work->data. These functions should only be called while the work is
502 * owned - ie. while the PENDING bit is set.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200503 *
Tejun Heo112202d2013-02-13 19:29:12 -0800504 * get_work_pool() and get_work_pwq() can be used to obtain the pool or pwq
Tejun Heo7c3eed52013-01-24 11:01:33 -0800505 * corresponding to a work. Pool is available once the work has been
Tejun Heo112202d2013-02-13 19:29:12 -0800506 * queued anywhere after initialization until it is sync canceled. pwq is
Tejun Heo7c3eed52013-01-24 11:01:33 -0800507 * available only while the work item is queued.
Tejun Heobbb68df2012-08-03 10:30:46 -0700508 *
509 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
510 * canceled. While being canceled, a work item may have its PENDING set
511 * but stay off timer and worklist for arbitrarily long and nobody should
512 * try to steal the PENDING bit.
David Howells4594bf12006-12-07 11:33:26 +0000513 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200514static inline void set_work_data(struct work_struct *work, unsigned long data,
515 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000516{
Tejun Heo6183c002013-03-12 11:29:57 -0700517 WARN_ON_ONCE(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200518 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000519}
David Howells365970a2006-11-22 14:54:49 +0000520
Tejun Heo112202d2013-02-13 19:29:12 -0800521static void set_work_pwq(struct work_struct *work, struct pool_workqueue *pwq,
Tejun Heo7a22ad72010-06-29 10:07:13 +0200522 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200523{
Tejun Heo112202d2013-02-13 19:29:12 -0800524 set_work_data(work, (unsigned long)pwq,
525 WORK_STRUCT_PENDING | WORK_STRUCT_PWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200526}
527
Lai Jiangshan4468a002013-02-06 18:04:53 -0800528static void set_work_pool_and_keep_pending(struct work_struct *work,
529 int pool_id)
530{
531 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT,
532 WORK_STRUCT_PENDING);
533}
534
Tejun Heo7c3eed52013-01-24 11:01:33 -0800535static void set_work_pool_and_clear_pending(struct work_struct *work,
536 int pool_id)
David Howells365970a2006-11-22 14:54:49 +0000537{
Tejun Heo23657bb2012-08-13 17:08:19 -0700538 /*
539 * The following wmb is paired with the implied mb in
540 * test_and_set_bit(PENDING) and ensures all updates to @work made
541 * here are visible to and precede any updates by the next PENDING
542 * owner.
543 */
544 smp_wmb();
Tejun Heo7c3eed52013-01-24 11:01:33 -0800545 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200546}
547
548static void clear_work_data(struct work_struct *work)
549{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800550 smp_wmb(); /* see set_work_pool_and_clear_pending() */
551 set_work_data(work, WORK_STRUCT_NO_POOL, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200552}
553
Tejun Heo112202d2013-02-13 19:29:12 -0800554static struct pool_workqueue *get_work_pwq(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200555{
Tejun Heoe1201532010-07-22 14:14:25 +0200556 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200557
Tejun Heo112202d2013-02-13 19:29:12 -0800558 if (data & WORK_STRUCT_PWQ)
Tejun Heoe1201532010-07-22 14:14:25 +0200559 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
560 else
561 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200562}
563
Tejun Heo7c3eed52013-01-24 11:01:33 -0800564/**
565 * get_work_pool - return the worker_pool a given work was associated with
566 * @work: the work item of interest
567 *
568 * Return the worker_pool @work was last associated with. %NULL if none.
569 */
570static struct worker_pool *get_work_pool(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200571{
Tejun Heoe1201532010-07-22 14:14:25 +0200572 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800573 struct worker_pool *pool;
574 int pool_id;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200575
Tejun Heo112202d2013-02-13 19:29:12 -0800576 if (data & WORK_STRUCT_PWQ)
577 return ((struct pool_workqueue *)
Tejun Heo7c3eed52013-01-24 11:01:33 -0800578 (data & WORK_STRUCT_WQ_DATA_MASK))->pool;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200579
Tejun Heo7c3eed52013-01-24 11:01:33 -0800580 pool_id = data >> WORK_OFFQ_POOL_SHIFT;
581 if (pool_id == WORK_OFFQ_POOL_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200582 return NULL;
583
Tejun Heo7c3eed52013-01-24 11:01:33 -0800584 pool = worker_pool_by_id(pool_id);
585 WARN_ON_ONCE(!pool);
586 return pool;
587}
588
589/**
590 * get_work_pool_id - return the worker pool ID a given work is associated with
591 * @work: the work item of interest
592 *
593 * Return the worker_pool ID @work was last associated with.
594 * %WORK_OFFQ_POOL_NONE if none.
595 */
596static int get_work_pool_id(struct work_struct *work)
597{
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800598 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800599
Tejun Heo112202d2013-02-13 19:29:12 -0800600 if (data & WORK_STRUCT_PWQ)
601 return ((struct pool_workqueue *)
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800602 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->id;
603
604 return data >> WORK_OFFQ_POOL_SHIFT;
Tejun Heo7c3eed52013-01-24 11:01:33 -0800605}
606
Tejun Heobbb68df2012-08-03 10:30:46 -0700607static void mark_work_canceling(struct work_struct *work)
608{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800609 unsigned long pool_id = get_work_pool_id(work);
Tejun Heobbb68df2012-08-03 10:30:46 -0700610
Tejun Heo7c3eed52013-01-24 11:01:33 -0800611 pool_id <<= WORK_OFFQ_POOL_SHIFT;
612 set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700613}
614
615static bool work_is_canceling(struct work_struct *work)
616{
617 unsigned long data = atomic_long_read(&work->data);
618
Tejun Heo112202d2013-02-13 19:29:12 -0800619 return !(data & WORK_STRUCT_PWQ) && (data & WORK_OFFQ_CANCELING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700620}
621
David Howells365970a2006-11-22 14:54:49 +0000622/*
Tejun Heo32704762012-07-13 22:16:45 -0700623 * Policy functions. These define the policies on how the global worker
624 * pools are managed. Unless noted otherwise, these functions assume that
Tejun Heod565ed62013-01-24 11:01:33 -0800625 * they're being called with pool->lock held.
David Howells365970a2006-11-22 14:54:49 +0000626 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200627
Tejun Heo63d95a92012-07-12 14:46:37 -0700628static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000629{
Tejun Heoe19e3972013-01-24 11:39:44 -0800630 return !atomic_read(&pool->nr_running);
David Howells365970a2006-11-22 14:54:49 +0000631}
632
Tejun Heoe22bee72010-06-29 10:07:14 +0200633/*
634 * Need to wake up a worker? Called from anything but currently
635 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700636 *
637 * Note that, because unbound workers never contribute to nr_running, this
Tejun Heo706026c2013-01-24 11:01:34 -0800638 * function will always return %true for unbound pools as long as the
Tejun Heo974271c2012-07-12 14:46:37 -0700639 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200640 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700641static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000642{
Tejun Heo63d95a92012-07-12 14:46:37 -0700643 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000644}
645
Tejun Heoe22bee72010-06-29 10:07:14 +0200646/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700647static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200648{
Tejun Heo63d95a92012-07-12 14:46:37 -0700649 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200650}
651
652/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700653static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200654{
Tejun Heoe19e3972013-01-24 11:39:44 -0800655 return !list_empty(&pool->worklist) &&
656 atomic_read(&pool->nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200657}
658
659/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700660static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200661{
Tejun Heo63d95a92012-07-12 14:46:37 -0700662 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200663}
664
665/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700666static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200667{
Tejun Heo63d95a92012-07-12 14:46:37 -0700668 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700669 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200670}
671
672/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700673static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200674{
Lai Jiangshan552a37e2012-09-10 10:03:33 -0700675 bool managing = pool->flags & POOL_MANAGING_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -0700676 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
677 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200678
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700679 /*
680 * nr_idle and idle_list may disagree if idle rebinding is in
681 * progress. Never return %true if idle_list is empty.
682 */
683 if (list_empty(&pool->idle_list))
684 return false;
685
Tejun Heoe22bee72010-06-29 10:07:14 +0200686 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
687}
688
689/*
690 * Wake up functions.
691 */
692
Tejun Heo7e116292010-06-29 10:07:13 +0200693/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700694static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200695{
Tejun Heo63d95a92012-07-12 14:46:37 -0700696 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200697 return NULL;
698
Tejun Heo63d95a92012-07-12 14:46:37 -0700699 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200700}
701
702/**
703 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700704 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200705 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700706 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200707 *
708 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800709 * spin_lock_irq(pool->lock).
Tejun Heo7e116292010-06-29 10:07:13 +0200710 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700711static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200712{
Tejun Heo63d95a92012-07-12 14:46:37 -0700713 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200714
715 if (likely(worker))
716 wake_up_process(worker->task);
717}
718
Tejun Heo4690c4a2010-06-29 10:07:10 +0200719/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200720 * wq_worker_waking_up - a worker is waking up
721 * @task: task waking up
722 * @cpu: CPU @task is waking up to
723 *
724 * This function is called during try_to_wake_up() when a worker is
725 * being awoken.
726 *
727 * CONTEXT:
728 * spin_lock_irq(rq->lock)
729 */
Tejun Heod84ff052013-03-12 11:29:59 -0700730void wq_worker_waking_up(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200731{
732 struct worker *worker = kthread_data(task);
733
Joonsoo Kim36576002012-10-26 23:03:49 +0900734 if (!(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoec22ca52013-01-24 11:01:33 -0800735 WARN_ON_ONCE(worker->pool->cpu != cpu);
Tejun Heoe19e3972013-01-24 11:39:44 -0800736 atomic_inc(&worker->pool->nr_running);
Joonsoo Kim36576002012-10-26 23:03:49 +0900737 }
Tejun Heoe22bee72010-06-29 10:07:14 +0200738}
739
740/**
741 * wq_worker_sleeping - a worker is going to sleep
742 * @task: task going to sleep
743 * @cpu: CPU in question, must be the current CPU number
744 *
745 * This function is called during schedule() when a busy worker is
746 * going to sleep. Worker on the same cpu can be woken up by
747 * returning pointer to its task.
748 *
749 * CONTEXT:
750 * spin_lock_irq(rq->lock)
751 *
752 * RETURNS:
753 * Worker task on @cpu to wake up, %NULL if none.
754 */
Tejun Heod84ff052013-03-12 11:29:59 -0700755struct task_struct *wq_worker_sleeping(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200756{
757 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heo111c2252013-01-17 17:16:24 -0800758 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200759
Tejun Heo111c2252013-01-17 17:16:24 -0800760 /*
761 * Rescuers, which may not have all the fields set up like normal
762 * workers, also reach here, let's not access anything before
763 * checking NOT_RUNNING.
764 */
Steven Rostedt2d646722010-12-03 23:12:33 -0500765 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200766 return NULL;
767
Tejun Heo111c2252013-01-17 17:16:24 -0800768 pool = worker->pool;
Tejun Heo111c2252013-01-17 17:16:24 -0800769
Tejun Heoe22bee72010-06-29 10:07:14 +0200770 /* this can only happen on the local cpu */
Tejun Heo6183c002013-03-12 11:29:57 -0700771 if (WARN_ON_ONCE(cpu != raw_smp_processor_id()))
772 return NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +0200773
774 /*
775 * The counterpart of the following dec_and_test, implied mb,
776 * worklist not empty test sequence is in insert_work().
777 * Please read comment there.
778 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700779 * NOT_RUNNING is clear. This means that we're bound to and
780 * running on the local cpu w/ rq lock held and preemption
781 * disabled, which in turn means that none else could be
Tejun Heod565ed62013-01-24 11:01:33 -0800782 * manipulating idle_list, so dereferencing idle_list without pool
Tejun Heo628c78e2012-07-17 12:39:27 -0700783 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200784 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800785 if (atomic_dec_and_test(&pool->nr_running) &&
786 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700787 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200788 return to_wakeup ? to_wakeup->task : NULL;
789}
790
791/**
792 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200793 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200794 * @flags: flags to set
795 * @wakeup: wakeup an idle worker if necessary
796 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200797 * Set @flags in @worker->flags and adjust nr_running accordingly. If
798 * nr_running becomes zero and @wakeup is %true, an idle worker is
799 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200800 *
Tejun Heocb444762010-07-02 10:03:50 +0200801 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800802 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200803 */
804static inline void worker_set_flags(struct worker *worker, unsigned int flags,
805 bool wakeup)
806{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700807 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200808
Tejun Heocb444762010-07-02 10:03:50 +0200809 WARN_ON_ONCE(worker->task != current);
810
Tejun Heoe22bee72010-06-29 10:07:14 +0200811 /*
812 * If transitioning into NOT_RUNNING, adjust nr_running and
813 * wake up an idle worker as necessary if requested by
814 * @wakeup.
815 */
816 if ((flags & WORKER_NOT_RUNNING) &&
817 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoe22bee72010-06-29 10:07:14 +0200818 if (wakeup) {
Tejun Heoe19e3972013-01-24 11:39:44 -0800819 if (atomic_dec_and_test(&pool->nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700820 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700821 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200822 } else
Tejun Heoe19e3972013-01-24 11:39:44 -0800823 atomic_dec(&pool->nr_running);
Tejun Heoe22bee72010-06-29 10:07:14 +0200824 }
825
Tejun Heod302f012010-06-29 10:07:13 +0200826 worker->flags |= flags;
827}
828
829/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200830 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200831 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200832 * @flags: flags to clear
833 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200834 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200835 *
Tejun Heocb444762010-07-02 10:03:50 +0200836 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800837 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200838 */
839static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
840{
Tejun Heo63d95a92012-07-12 14:46:37 -0700841 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200842 unsigned int oflags = worker->flags;
843
Tejun Heocb444762010-07-02 10:03:50 +0200844 WARN_ON_ONCE(worker->task != current);
845
Tejun Heod302f012010-06-29 10:07:13 +0200846 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200847
Tejun Heo42c025f2011-01-11 15:58:49 +0100848 /*
849 * If transitioning out of NOT_RUNNING, increment nr_running. Note
850 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
851 * of multiple flags, not a single flag.
852 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200853 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
854 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heoe19e3972013-01-24 11:39:44 -0800855 atomic_inc(&pool->nr_running);
Tejun Heod302f012010-06-29 10:07:13 +0200856}
857
858/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200859 * find_worker_executing_work - find worker which is executing a work
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800860 * @pool: pool of interest
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200861 * @work: work to find worker for
862 *
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800863 * Find a worker which is executing @work on @pool by searching
864 * @pool->busy_hash which is keyed by the address of @work. For a worker
Tejun Heoa2c1c572012-12-18 10:35:02 -0800865 * to match, its current execution should match the address of @work and
866 * its work function. This is to avoid unwanted dependency between
867 * unrelated work executions through a work item being recycled while still
868 * being executed.
869 *
870 * This is a bit tricky. A work item may be freed once its execution
871 * starts and nothing prevents the freed area from being recycled for
872 * another work item. If the same work item address ends up being reused
873 * before the original execution finishes, workqueue will identify the
874 * recycled work item as currently executing and make it wait until the
875 * current execution finishes, introducing an unwanted dependency.
876 *
877 * This function checks the work item address, work function and workqueue
878 * to avoid false positives. Note that this isn't complete as one may
879 * construct a work function which can introduce dependency onto itself
880 * through a recycled work item. Well, if somebody wants to shoot oneself
881 * in the foot that badly, there's only so much we can do, and if such
882 * deadlock actually occurs, it should be easy to locate the culprit work
883 * function.
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200884 *
885 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800886 * spin_lock_irq(pool->lock).
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200887 *
888 * RETURNS:
889 * Pointer to worker which is executing @work if found, NULL
890 * otherwise.
891 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800892static struct worker *find_worker_executing_work(struct worker_pool *pool,
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200893 struct work_struct *work)
894{
Sasha Levin42f85702012-12-17 10:01:23 -0500895 struct worker *worker;
Sasha Levin42f85702012-12-17 10:01:23 -0500896
Sasha Levinb67bfe02013-02-27 17:06:00 -0800897 hash_for_each_possible(pool->busy_hash, worker, hentry,
Tejun Heoa2c1c572012-12-18 10:35:02 -0800898 (unsigned long)work)
899 if (worker->current_work == work &&
900 worker->current_func == work->func)
Sasha Levin42f85702012-12-17 10:01:23 -0500901 return worker;
902
903 return NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200904}
905
906/**
Tejun Heobf4ede02012-08-03 10:30:46 -0700907 * move_linked_works - move linked works to a list
908 * @work: start of series of works to be scheduled
909 * @head: target list to append @work to
910 * @nextp: out paramter for nested worklist walking
911 *
912 * Schedule linked works starting from @work to @head. Work series to
913 * be scheduled starts at @work and includes any consecutive work with
914 * WORK_STRUCT_LINKED set in its predecessor.
915 *
916 * If @nextp is not NULL, it's updated to point to the next work of
917 * the last scheduled work. This allows move_linked_works() to be
918 * nested inside outer list_for_each_entry_safe().
919 *
920 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800921 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700922 */
923static void move_linked_works(struct work_struct *work, struct list_head *head,
924 struct work_struct **nextp)
925{
926 struct work_struct *n;
927
928 /*
929 * Linked worklist will always end before the end of the list,
930 * use NULL for list head.
931 */
932 list_for_each_entry_safe_from(work, n, NULL, entry) {
933 list_move_tail(&work->entry, head);
934 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
935 break;
936 }
937
938 /*
939 * If we're already inside safe list traversal and have moved
940 * multiple works to the scheduled queue, the next position
941 * needs to be updated.
942 */
943 if (nextp)
944 *nextp = n;
945}
946
Tejun Heo112202d2013-02-13 19:29:12 -0800947static void pwq_activate_delayed_work(struct work_struct *work)
Tejun Heobf4ede02012-08-03 10:30:46 -0700948{
Tejun Heo112202d2013-02-13 19:29:12 -0800949 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobf4ede02012-08-03 10:30:46 -0700950
951 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -0800952 move_linked_works(work, &pwq->pool->worklist, NULL);
Tejun Heobf4ede02012-08-03 10:30:46 -0700953 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo112202d2013-02-13 19:29:12 -0800954 pwq->nr_active++;
Tejun Heobf4ede02012-08-03 10:30:46 -0700955}
956
Tejun Heo112202d2013-02-13 19:29:12 -0800957static void pwq_activate_first_delayed(struct pool_workqueue *pwq)
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700958{
Tejun Heo112202d2013-02-13 19:29:12 -0800959 struct work_struct *work = list_first_entry(&pwq->delayed_works,
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700960 struct work_struct, entry);
961
Tejun Heo112202d2013-02-13 19:29:12 -0800962 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700963}
964
Tejun Heobf4ede02012-08-03 10:30:46 -0700965/**
Tejun Heo112202d2013-02-13 19:29:12 -0800966 * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight
967 * @pwq: pwq of interest
Tejun Heobf4ede02012-08-03 10:30:46 -0700968 * @color: color of work which left the queue
Tejun Heobf4ede02012-08-03 10:30:46 -0700969 *
970 * A work either has completed or is removed from pending queue,
Tejun Heo112202d2013-02-13 19:29:12 -0800971 * decrement nr_in_flight of its pwq and handle workqueue flushing.
Tejun Heobf4ede02012-08-03 10:30:46 -0700972 *
973 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800974 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700975 */
Tejun Heo112202d2013-02-13 19:29:12 -0800976static void pwq_dec_nr_in_flight(struct pool_workqueue *pwq, int color)
Tejun Heobf4ede02012-08-03 10:30:46 -0700977{
978 /* ignore uncolored works */
979 if (color == WORK_NO_COLOR)
980 return;
981
Tejun Heo112202d2013-02-13 19:29:12 -0800982 pwq->nr_in_flight[color]--;
Tejun Heobf4ede02012-08-03 10:30:46 -0700983
Tejun Heo112202d2013-02-13 19:29:12 -0800984 pwq->nr_active--;
985 if (!list_empty(&pwq->delayed_works)) {
Lai Jiangshanb3f9f402012-09-18 10:40:00 -0700986 /* one down, submit a delayed one */
Tejun Heo112202d2013-02-13 19:29:12 -0800987 if (pwq->nr_active < pwq->max_active)
988 pwq_activate_first_delayed(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -0700989 }
990
991 /* is flush in progress and are we at the flushing tip? */
Tejun Heo112202d2013-02-13 19:29:12 -0800992 if (likely(pwq->flush_color != color))
Tejun Heobf4ede02012-08-03 10:30:46 -0700993 return;
994
995 /* are there still in-flight works? */
Tejun Heo112202d2013-02-13 19:29:12 -0800996 if (pwq->nr_in_flight[color])
Tejun Heobf4ede02012-08-03 10:30:46 -0700997 return;
998
Tejun Heo112202d2013-02-13 19:29:12 -0800999 /* this pwq is done, clear flush_color */
1000 pwq->flush_color = -1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001001
1002 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001003 * If this was the last pwq, wake up the first flusher. It
Tejun Heobf4ede02012-08-03 10:30:46 -07001004 * will handle the rest.
1005 */
Tejun Heo112202d2013-02-13 19:29:12 -08001006 if (atomic_dec_and_test(&pwq->wq->nr_pwqs_to_flush))
1007 complete(&pwq->wq->first_flusher->done);
Tejun Heobf4ede02012-08-03 10:30:46 -07001008}
1009
Tejun Heo36e227d2012-08-03 10:30:46 -07001010/**
Tejun Heobbb68df2012-08-03 10:30:46 -07001011 * try_to_grab_pending - steal work item from worklist and disable irq
Tejun Heo36e227d2012-08-03 10:30:46 -07001012 * @work: work item to steal
1013 * @is_dwork: @work is a delayed_work
Tejun Heobbb68df2012-08-03 10:30:46 -07001014 * @flags: place to store irq state
Tejun Heo36e227d2012-08-03 10:30:46 -07001015 *
1016 * Try to grab PENDING bit of @work. This function can handle @work in any
1017 * stable state - idle, on timer or on worklist. Return values are
1018 *
1019 * 1 if @work was pending and we successfully stole PENDING
1020 * 0 if @work was idle and we claimed PENDING
1021 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
Tejun Heobbb68df2012-08-03 10:30:46 -07001022 * -ENOENT if someone else is canceling @work, this state may persist
1023 * for arbitrarily long
Tejun Heo36e227d2012-08-03 10:30:46 -07001024 *
Tejun Heobbb68df2012-08-03 10:30:46 -07001025 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001026 * interrupted while holding PENDING and @work off queue, irq must be
1027 * disabled on entry. This, combined with delayed_work->timer being
1028 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
Tejun Heobbb68df2012-08-03 10:30:46 -07001029 *
1030 * On successful return, >= 0, irq is disabled and the caller is
1031 * responsible for releasing it using local_irq_restore(*@flags).
1032 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001033 * This function is safe to call from any context including IRQ handler.
Tejun Heobf4ede02012-08-03 10:30:46 -07001034 */
Tejun Heobbb68df2012-08-03 10:30:46 -07001035static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1036 unsigned long *flags)
Tejun Heobf4ede02012-08-03 10:30:46 -07001037{
Tejun Heod565ed62013-01-24 11:01:33 -08001038 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08001039 struct pool_workqueue *pwq;
Tejun Heobf4ede02012-08-03 10:30:46 -07001040
Tejun Heobbb68df2012-08-03 10:30:46 -07001041 local_irq_save(*flags);
1042
Tejun Heo36e227d2012-08-03 10:30:46 -07001043 /* try to steal the timer if it exists */
1044 if (is_dwork) {
1045 struct delayed_work *dwork = to_delayed_work(work);
1046
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001047 /*
1048 * dwork->timer is irqsafe. If del_timer() fails, it's
1049 * guaranteed that the timer is not queued anywhere and not
1050 * running on the local CPU.
1051 */
Tejun Heo36e227d2012-08-03 10:30:46 -07001052 if (likely(del_timer(&dwork->timer)))
1053 return 1;
1054 }
1055
1056 /* try to claim PENDING the normal way */
Tejun Heobf4ede02012-08-03 10:30:46 -07001057 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1058 return 0;
1059
1060 /*
1061 * The queueing is in progress, or it is already queued. Try to
1062 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1063 */
Tejun Heod565ed62013-01-24 11:01:33 -08001064 pool = get_work_pool(work);
1065 if (!pool)
Tejun Heobbb68df2012-08-03 10:30:46 -07001066 goto fail;
Tejun Heobf4ede02012-08-03 10:30:46 -07001067
Tejun Heod565ed62013-01-24 11:01:33 -08001068 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001069 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001070 * work->data is guaranteed to point to pwq only while the work
1071 * item is queued on pwq->wq, and both updating work->data to point
1072 * to pwq on queueing and to pool on dequeueing are done under
1073 * pwq->pool->lock. This in turn guarantees that, if work->data
1074 * points to pwq which is associated with a locked pool, the work
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001075 * item is currently queued on that pool.
1076 */
Tejun Heo112202d2013-02-13 19:29:12 -08001077 pwq = get_work_pwq(work);
1078 if (pwq && pwq->pool == pool) {
Tejun Heo16062832013-02-06 18:04:53 -08001079 debug_work_deactivate(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001080
Tejun Heo16062832013-02-06 18:04:53 -08001081 /*
1082 * A delayed work item cannot be grabbed directly because
1083 * it might have linked NO_COLOR work items which, if left
Tejun Heo112202d2013-02-13 19:29:12 -08001084 * on the delayed_list, will confuse pwq->nr_active
Tejun Heo16062832013-02-06 18:04:53 -08001085 * management later on and cause stall. Make sure the work
1086 * item is activated before grabbing.
1087 */
1088 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
Tejun Heo112202d2013-02-13 19:29:12 -08001089 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001090
Tejun Heo16062832013-02-06 18:04:53 -08001091 list_del_init(&work->entry);
Tejun Heo112202d2013-02-13 19:29:12 -08001092 pwq_dec_nr_in_flight(get_work_pwq(work), get_work_color(work));
Tejun Heo36e227d2012-08-03 10:30:46 -07001093
Tejun Heo112202d2013-02-13 19:29:12 -08001094 /* work->data points to pwq iff queued, point to pool */
Tejun Heo16062832013-02-06 18:04:53 -08001095 set_work_pool_and_keep_pending(work, pool->id);
Lai Jiangshan4468a002013-02-06 18:04:53 -08001096
Tejun Heo16062832013-02-06 18:04:53 -08001097 spin_unlock(&pool->lock);
1098 return 1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001099 }
Tejun Heod565ed62013-01-24 11:01:33 -08001100 spin_unlock(&pool->lock);
Tejun Heobbb68df2012-08-03 10:30:46 -07001101fail:
1102 local_irq_restore(*flags);
1103 if (work_is_canceling(work))
1104 return -ENOENT;
1105 cpu_relax();
Tejun Heo36e227d2012-08-03 10:30:46 -07001106 return -EAGAIN;
Tejun Heobf4ede02012-08-03 10:30:46 -07001107}
1108
1109/**
Tejun Heo706026c2013-01-24 11:01:34 -08001110 * insert_work - insert a work into a pool
Tejun Heo112202d2013-02-13 19:29:12 -08001111 * @pwq: pwq @work belongs to
Tejun Heo4690c4a2010-06-29 10:07:10 +02001112 * @work: work to insert
1113 * @head: insertion point
1114 * @extra_flags: extra WORK_STRUCT_* flags to set
1115 *
Tejun Heo112202d2013-02-13 19:29:12 -08001116 * Insert @work which belongs to @pwq after @head. @extra_flags is or'd to
Tejun Heo706026c2013-01-24 11:01:34 -08001117 * work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001118 *
1119 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001120 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001121 */
Tejun Heo112202d2013-02-13 19:29:12 -08001122static void insert_work(struct pool_workqueue *pwq, struct work_struct *work,
1123 struct list_head *head, unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001124{
Tejun Heo112202d2013-02-13 19:29:12 -08001125 struct worker_pool *pool = pwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01001126
Tejun Heo4690c4a2010-06-29 10:07:10 +02001127 /* we own @work, set data and link */
Tejun Heo112202d2013-02-13 19:29:12 -08001128 set_work_pwq(work, pwq, extra_flags);
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -07001129 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +02001130
1131 /*
1132 * Ensure either worker_sched_deactivated() sees the above
1133 * list_add_tail() or we see zero nr_running to avoid workers
1134 * lying around lazily while there are works to be processed.
1135 */
1136 smp_mb();
1137
Tejun Heo63d95a92012-07-12 14:46:37 -07001138 if (__need_more_worker(pool))
1139 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001140}
1141
Tejun Heoc8efcc22010-12-20 19:32:04 +01001142/*
1143 * Test whether @work is being queued from another work executing on the
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001144 * same workqueue.
Tejun Heoc8efcc22010-12-20 19:32:04 +01001145 */
1146static bool is_chained_work(struct workqueue_struct *wq)
1147{
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001148 struct worker *worker;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001149
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001150 worker = current_wq_worker();
1151 /*
1152 * Return %true iff I'm a worker execuing a work item on @wq. If
1153 * I'm @worker, it's safe to dereference it without locking.
1154 */
Tejun Heo112202d2013-02-13 19:29:12 -08001155 return worker && worker->current_pwq->wq == wq;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001156}
1157
Tejun Heod84ff052013-03-12 11:29:59 -07001158static void __queue_work(int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 struct work_struct *work)
1160{
Tejun Heo112202d2013-02-13 19:29:12 -08001161 struct pool_workqueue *pwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001162 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001163 unsigned int work_flags;
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001164 unsigned int req_cpu = cpu;
Tejun Heo8930cab2012-08-03 10:30:45 -07001165
1166 /*
1167 * While a work item is PENDING && off queue, a task trying to
1168 * steal the PENDING will busy-loop waiting for it to either get
1169 * queued or lose PENDING. Grabbing PENDING and queueing should
1170 * happen with IRQ disabled.
1171 */
1172 WARN_ON_ONCE(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001174 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001175
Tejun Heoc8efcc22010-12-20 19:32:04 +01001176 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02001177 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +01001178 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +02001179 return;
1180
Tejun Heo112202d2013-02-13 19:29:12 -08001181 /* determine the pwq to use */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001182 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001183 struct worker_pool *last_pool;
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001184
Tejun Heo57469822012-08-03 10:30:45 -07001185 if (cpu == WORK_CPU_UNBOUND)
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001186 cpu = raw_smp_processor_id();
1187
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001188 /*
Tejun Heodbf25762012-08-20 14:51:23 -07001189 * It's multi cpu. If @work was previously on a different
1190 * cpu, it might still be running there, in which case the
1191 * work needs to be queued on that cpu to guarantee
1192 * non-reentrancy.
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001193 */
Tejun Heo112202d2013-02-13 19:29:12 -08001194 pwq = get_pwq(cpu, wq);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001195 last_pool = get_work_pool(work);
Tejun Heodbf25762012-08-20 14:51:23 -07001196
Tejun Heo112202d2013-02-13 19:29:12 -08001197 if (last_pool && last_pool != pwq->pool) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001198 struct worker *worker;
1199
Tejun Heod565ed62013-01-24 11:01:33 -08001200 spin_lock(&last_pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001201
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001202 worker = find_worker_executing_work(last_pool, work);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001203
Tejun Heo112202d2013-02-13 19:29:12 -08001204 if (worker && worker->current_pwq->wq == wq) {
1205 pwq = get_pwq(last_pool->cpu, wq);
Lai Jiangshan8594fad2013-02-07 13:14:20 -08001206 } else {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001207 /* meh... not running there, queue here */
Tejun Heod565ed62013-01-24 11:01:33 -08001208 spin_unlock(&last_pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08001209 spin_lock(&pwq->pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001210 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001211 } else {
Tejun Heo112202d2013-02-13 19:29:12 -08001212 spin_lock(&pwq->pool->lock);
Tejun Heo8930cab2012-08-03 10:30:45 -07001213 }
Tejun Heof3421792010-07-02 10:03:51 +02001214 } else {
Tejun Heo112202d2013-02-13 19:29:12 -08001215 pwq = get_pwq(WORK_CPU_UNBOUND, wq);
1216 spin_lock(&pwq->pool->lock);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001217 }
1218
Tejun Heo112202d2013-02-13 19:29:12 -08001219 /* pwq determined, queue */
1220 trace_workqueue_queue_work(req_cpu, pwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001221
Dan Carpenterf5b25522012-04-13 22:06:58 +03001222 if (WARN_ON(!list_empty(&work->entry))) {
Tejun Heo112202d2013-02-13 19:29:12 -08001223 spin_unlock(&pwq->pool->lock);
Dan Carpenterf5b25522012-04-13 22:06:58 +03001224 return;
1225 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001226
Tejun Heo112202d2013-02-13 19:29:12 -08001227 pwq->nr_in_flight[pwq->work_color]++;
1228 work_flags = work_color_to_flags(pwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001229
Tejun Heo112202d2013-02-13 19:29:12 -08001230 if (likely(pwq->nr_active < pwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001231 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -08001232 pwq->nr_active++;
1233 worklist = &pwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001234 } else {
1235 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo112202d2013-02-13 19:29:12 -08001236 worklist = &pwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001237 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001238
Tejun Heo112202d2013-02-13 19:29:12 -08001239 insert_work(pwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001240
Tejun Heo112202d2013-02-13 19:29:12 -08001241 spin_unlock(&pwq->pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001244/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07001245 * queue_work_on - queue work on specific cpu
1246 * @cpu: CPU number to execute work on
1247 * @wq: workqueue to use
1248 * @work: work to queue
1249 *
Tejun Heod4283e92012-08-03 10:30:44 -07001250 * Returns %false if @work was already on a queue, %true otherwise.
Zhang Ruic1a220e2008-07-23 21:28:39 -07001251 *
1252 * We queue the work to a specific CPU, the caller must ensure it
1253 * can't go away.
1254 */
Tejun Heod4283e92012-08-03 10:30:44 -07001255bool queue_work_on(int cpu, struct workqueue_struct *wq,
1256 struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07001257{
Tejun Heod4283e92012-08-03 10:30:44 -07001258 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001259 unsigned long flags;
1260
1261 local_irq_save(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001262
Tejun Heo22df02b2010-06-29 10:07:10 +02001263 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001264 __queue_work(cpu, wq, work);
Tejun Heod4283e92012-08-03 10:30:44 -07001265 ret = true;
Zhang Ruic1a220e2008-07-23 21:28:39 -07001266 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001267
1268 local_irq_restore(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001269 return ret;
1270}
1271EXPORT_SYMBOL_GPL(queue_work_on);
1272
Tejun Heo0a13c002012-08-03 10:30:44 -07001273/**
1274 * queue_work - queue work on a workqueue
1275 * @wq: workqueue to use
1276 * @work: work to queue
1277 *
Tejun Heod4283e92012-08-03 10:30:44 -07001278 * Returns %false if @work was already on a queue, %true otherwise.
Tejun Heo0a13c002012-08-03 10:30:44 -07001279 *
1280 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1281 * it can be processed by another CPU.
1282 */
Tejun Heod4283e92012-08-03 10:30:44 -07001283bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
Tejun Heo0a13c002012-08-03 10:30:44 -07001284{
Tejun Heo57469822012-08-03 10:30:45 -07001285 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
Tejun Heo0a13c002012-08-03 10:30:44 -07001286}
1287EXPORT_SYMBOL_GPL(queue_work);
1288
Tejun Heod8e794d2012-08-03 10:30:45 -07001289void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
David Howells52bad642006-11-22 14:54:01 +00001291 struct delayed_work *dwork = (struct delayed_work *)__data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001293 /* should have been called from irqsafe timer with irq already off */
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001294 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
Konstantin Khlebnikov1438ade52013-01-24 16:36:31 +04001296EXPORT_SYMBOL(delayed_work_timer_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001298static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1299 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001301 struct timer_list *timer = &dwork->timer;
1302 struct work_struct *work = &dwork->work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001304 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1305 timer->data != (unsigned long)dwork);
Tejun Heofc4b5142012-12-04 07:40:39 -08001306 WARN_ON_ONCE(timer_pending(timer));
1307 WARN_ON_ONCE(!list_empty(&work->entry));
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001308
Tejun Heo8852aac2012-12-01 16:23:42 -08001309 /*
1310 * If @delay is 0, queue @dwork->work immediately. This is for
1311 * both optimization and correctness. The earliest @timer can
1312 * expire is on the closest next tick and delayed_work users depend
1313 * on that there's no such delay when @delay is 0.
1314 */
1315 if (!delay) {
1316 __queue_work(cpu, wq, &dwork->work);
1317 return;
1318 }
1319
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001320 timer_stats_timer_set_start_info(&dwork->timer);
1321
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001322 dwork->wq = wq;
Tejun Heo12650572012-08-08 09:38:42 -07001323 dwork->cpu = cpu;
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001324 timer->expires = jiffies + delay;
1325
1326 if (unlikely(cpu != WORK_CPU_UNBOUND))
1327 add_timer_on(timer, cpu);
1328 else
1329 add_timer(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001332/**
1333 * queue_delayed_work_on - queue work on specific CPU after delay
1334 * @cpu: CPU number to execute work on
1335 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001336 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001337 * @delay: number of jiffies to wait before queueing
1338 *
Tejun Heo715f1302012-08-03 10:30:46 -07001339 * Returns %false if @work was already on a queue, %true otherwise. If
1340 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1341 * execution.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001342 */
Tejun Heod4283e92012-08-03 10:30:44 -07001343bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1344 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001345{
David Howells52bad642006-11-22 14:54:01 +00001346 struct work_struct *work = &dwork->work;
Tejun Heod4283e92012-08-03 10:30:44 -07001347 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001348 unsigned long flags;
1349
1350 /* read the comment in __queue_work() */
1351 local_irq_save(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001352
Tejun Heo22df02b2010-06-29 10:07:10 +02001353 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001354 __queue_delayed_work(cpu, wq, dwork, delay);
Tejun Heod4283e92012-08-03 10:30:44 -07001355 ret = true;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001356 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001357
1358 local_irq_restore(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001359 return ret;
1360}
Dave Jonesae90dd52006-06-30 01:40:45 -04001361EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Tejun Heoc8e55f32010-06-29 10:07:12 +02001363/**
Tejun Heo0a13c002012-08-03 10:30:44 -07001364 * queue_delayed_work - queue work on a workqueue after delay
1365 * @wq: workqueue to use
1366 * @dwork: delayable work to queue
1367 * @delay: number of jiffies to wait before queueing
1368 *
Tejun Heo715f1302012-08-03 10:30:46 -07001369 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
Tejun Heo0a13c002012-08-03 10:30:44 -07001370 */
Tejun Heod4283e92012-08-03 10:30:44 -07001371bool queue_delayed_work(struct workqueue_struct *wq,
Tejun Heo0a13c002012-08-03 10:30:44 -07001372 struct delayed_work *dwork, unsigned long delay)
1373{
Tejun Heo57469822012-08-03 10:30:45 -07001374 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
Tejun Heo0a13c002012-08-03 10:30:44 -07001375}
1376EXPORT_SYMBOL_GPL(queue_delayed_work);
1377
1378/**
Tejun Heo8376fe22012-08-03 10:30:47 -07001379 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1380 * @cpu: CPU number to execute work on
1381 * @wq: workqueue to use
1382 * @dwork: work to queue
1383 * @delay: number of jiffies to wait before queueing
1384 *
1385 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1386 * modify @dwork's timer so that it expires after @delay. If @delay is
1387 * zero, @work is guaranteed to be scheduled immediately regardless of its
1388 * current state.
1389 *
1390 * Returns %false if @dwork was idle and queued, %true if @dwork was
1391 * pending and its timer was modified.
1392 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001393 * This function is safe to call from any context including IRQ handler.
Tejun Heo8376fe22012-08-03 10:30:47 -07001394 * See try_to_grab_pending() for details.
1395 */
1396bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1397 struct delayed_work *dwork, unsigned long delay)
1398{
1399 unsigned long flags;
1400 int ret;
1401
1402 do {
1403 ret = try_to_grab_pending(&dwork->work, true, &flags);
1404 } while (unlikely(ret == -EAGAIN));
1405
1406 if (likely(ret >= 0)) {
1407 __queue_delayed_work(cpu, wq, dwork, delay);
1408 local_irq_restore(flags);
1409 }
1410
1411 /* -ENOENT from try_to_grab_pending() becomes %true */
1412 return ret;
1413}
1414EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1415
1416/**
1417 * mod_delayed_work - modify delay of or queue a delayed work
1418 * @wq: workqueue to use
1419 * @dwork: work to queue
1420 * @delay: number of jiffies to wait before queueing
1421 *
1422 * mod_delayed_work_on() on local CPU.
1423 */
1424bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
1425 unsigned long delay)
1426{
1427 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
1428}
1429EXPORT_SYMBOL_GPL(mod_delayed_work);
1430
1431/**
Tejun Heoc8e55f32010-06-29 10:07:12 +02001432 * worker_enter_idle - enter idle state
1433 * @worker: worker which is entering idle state
1434 *
1435 * @worker is entering idle state. Update stats and idle timer if
1436 * necessary.
1437 *
1438 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001439 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001440 */
1441static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001443 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Tejun Heo6183c002013-03-12 11:29:57 -07001445 if (WARN_ON_ONCE(worker->flags & WORKER_IDLE) ||
1446 WARN_ON_ONCE(!list_empty(&worker->entry) &&
1447 (worker->hentry.next || worker->hentry.pprev)))
1448 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Tejun Heocb444762010-07-02 10:03:50 +02001450 /* can't use worker_set_flags(), also called from start_worker() */
1451 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001452 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001453 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001454
Tejun Heoc8e55f32010-06-29 10:07:12 +02001455 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001456 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001457
Tejun Heo628c78e2012-07-17 12:39:27 -07001458 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1459 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001460
Tejun Heo544ecf32012-05-14 15:04:50 -07001461 /*
Tejun Heo706026c2013-01-24 11:01:34 -08001462 * Sanity check nr_running. Because wq_unbind_fn() releases
Tejun Heod565ed62013-01-24 11:01:33 -08001463 * pool->lock between setting %WORKER_UNBOUND and zapping
Tejun Heo628c78e2012-07-17 12:39:27 -07001464 * nr_running, the warning may trigger spuriously. Check iff
1465 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001466 */
Tejun Heo24647572013-01-24 11:01:33 -08001467 WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001468 pool->nr_workers == pool->nr_idle &&
Tejun Heoe19e3972013-01-24 11:39:44 -08001469 atomic_read(&pool->nr_running));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Tejun Heoc8e55f32010-06-29 10:07:12 +02001472/**
1473 * worker_leave_idle - leave idle state
1474 * @worker: worker which is leaving idle state
1475 *
1476 * @worker is leaving idle state. Update stats.
1477 *
1478 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001479 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001480 */
1481static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001483 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Tejun Heo6183c002013-03-12 11:29:57 -07001485 if (WARN_ON_ONCE(!(worker->flags & WORKER_IDLE)))
1486 return;
Tejun Heod302f012010-06-29 10:07:13 +02001487 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001488 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001489 list_del_init(&worker->entry);
1490}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Tejun Heoe22bee72010-06-29 10:07:14 +02001492/**
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001493 * worker_maybe_bind_and_lock - try to bind %current to worker_pool and lock it
1494 * @pool: target worker_pool
1495 *
1496 * Bind %current to the cpu of @pool if it is associated and lock @pool.
Tejun Heoe22bee72010-06-29 10:07:14 +02001497 *
1498 * Works which are scheduled while the cpu is online must at least be
1499 * scheduled to a worker which is bound to the cpu so that if they are
1500 * flushed from cpu callbacks while cpu is going down, they are
1501 * guaranteed to execute on the cpu.
1502 *
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001503 * This function is to be used by unbound workers and rescuers to bind
Tejun Heoe22bee72010-06-29 10:07:14 +02001504 * themselves to the target cpu and may race with cpu going down or
1505 * coming online. kthread_bind() can't be used because it may put the
1506 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
Tejun Heo706026c2013-01-24 11:01:34 -08001507 * verbatim as it's best effort and blocking and pool may be
Tejun Heoe22bee72010-06-29 10:07:14 +02001508 * [dis]associated in the meantime.
1509 *
Tejun Heo706026c2013-01-24 11:01:34 -08001510 * This function tries set_cpus_allowed() and locks pool and verifies the
Tejun Heo24647572013-01-24 11:01:33 -08001511 * binding against %POOL_DISASSOCIATED which is set during
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001512 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1513 * enters idle state or fetches works without dropping lock, it can
1514 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001515 *
1516 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001517 * Might sleep. Called without any lock but returns with pool->lock
Tejun Heoe22bee72010-06-29 10:07:14 +02001518 * held.
1519 *
1520 * RETURNS:
Tejun Heo706026c2013-01-24 11:01:34 -08001521 * %true if the associated pool is online (@worker is successfully
Tejun Heoe22bee72010-06-29 10:07:14 +02001522 * bound), %false if offline.
1523 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001524static bool worker_maybe_bind_and_lock(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001525__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001526{
Tejun Heoe22bee72010-06-29 10:07:14 +02001527 while (true) {
1528 /*
1529 * The following call may fail, succeed or succeed
1530 * without actually migrating the task to the cpu if
1531 * it races with cpu hotunplug operation. Verify
Tejun Heo24647572013-01-24 11:01:33 -08001532 * against POOL_DISASSOCIATED.
Tejun Heoe22bee72010-06-29 10:07:14 +02001533 */
Tejun Heo24647572013-01-24 11:01:33 -08001534 if (!(pool->flags & POOL_DISASSOCIATED))
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001535 set_cpus_allowed_ptr(current, get_cpu_mask(pool->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001536
Tejun Heod565ed62013-01-24 11:01:33 -08001537 spin_lock_irq(&pool->lock);
Tejun Heo24647572013-01-24 11:01:33 -08001538 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heoe22bee72010-06-29 10:07:14 +02001539 return false;
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001540 if (task_cpu(current) == pool->cpu &&
Tejun Heoe22bee72010-06-29 10:07:14 +02001541 cpumask_equal(&current->cpus_allowed,
Tejun Heoec22ca52013-01-24 11:01:33 -08001542 get_cpu_mask(pool->cpu)))
Tejun Heoe22bee72010-06-29 10:07:14 +02001543 return true;
Tejun Heod565ed62013-01-24 11:01:33 -08001544 spin_unlock_irq(&pool->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001545
Tejun Heo5035b202011-04-29 18:08:37 +02001546 /*
1547 * We've raced with CPU hot[un]plug. Give it a breather
1548 * and retry migration. cond_resched() is required here;
1549 * otherwise, we might deadlock against cpu_stop trying to
1550 * bring down the CPU on non-preemptive kernel.
1551 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001552 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001553 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001554 }
1555}
1556
1557/*
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001558 * Rebind an idle @worker to its CPU. worker_thread() will test
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001559 * list_empty(@worker->entry) before leaving idle and call this function.
Tejun Heo25511a42012-07-17 12:39:27 -07001560 */
1561static void idle_worker_rebind(struct worker *worker)
1562{
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001563 /* CPU may go down again inbetween, clear UNBOUND only on success */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001564 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001565 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heo25511a42012-07-17 12:39:27 -07001566
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001567 /* rebind complete, become available again */
1568 list_add(&worker->entry, &worker->pool->idle_list);
Tejun Heod565ed62013-01-24 11:01:33 -08001569 spin_unlock_irq(&worker->pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001570}
1571
1572/*
1573 * Function for @worker->rebind.work used to rebind unbound busy workers to
Tejun Heo403c8212012-07-17 12:39:27 -07001574 * the associated cpu which is coming back online. This is scheduled by
1575 * cpu up but can race with other cpu hotplug operations and may be
1576 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001577 */
Tejun Heo25511a42012-07-17 12:39:27 -07001578static void busy_worker_rebind_fn(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001579{
1580 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heoe22bee72010-06-29 10:07:14 +02001581
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001582 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshaneab6d822012-09-18 09:59:22 -07001583 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heoe22bee72010-06-29 10:07:14 +02001584
Tejun Heod565ed62013-01-24 11:01:33 -08001585 spin_unlock_irq(&worker->pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001586}
1587
Tejun Heo25511a42012-07-17 12:39:27 -07001588/**
Tejun Heo94cf58b2013-01-24 11:01:33 -08001589 * rebind_workers - rebind all workers of a pool to the associated CPU
1590 * @pool: pool of interest
Tejun Heo25511a42012-07-17 12:39:27 -07001591 *
Tejun Heo94cf58b2013-01-24 11:01:33 -08001592 * @pool->cpu is coming online. Rebind all workers to the CPU. Rebinding
Tejun Heo25511a42012-07-17 12:39:27 -07001593 * is different for idle and busy ones.
1594 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001595 * Idle ones will be removed from the idle_list and woken up. They will
1596 * add themselves back after completing rebind. This ensures that the
1597 * idle_list doesn't contain any unbound workers when re-bound busy workers
1598 * try to perform local wake-ups for concurrency management.
Tejun Heo25511a42012-07-17 12:39:27 -07001599 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001600 * Busy workers can rebind after they finish their current work items.
1601 * Queueing the rebind work item at the head of the scheduled list is
1602 * enough. Note that nr_running will be properly bumped as busy workers
1603 * rebind.
Tejun Heo25511a42012-07-17 12:39:27 -07001604 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001605 * On return, all non-manager workers are scheduled for rebind - see
1606 * manage_workers() for the manager special case. Any idle worker
1607 * including the manager will not appear on @idle_list until rebind is
1608 * complete, making local wake-ups safe.
Tejun Heo25511a42012-07-17 12:39:27 -07001609 */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001610static void rebind_workers(struct worker_pool *pool)
Tejun Heo25511a42012-07-17 12:39:27 -07001611{
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001612 struct worker *worker, *n;
Tejun Heo25511a42012-07-17 12:39:27 -07001613 int i;
1614
Tejun Heo94cf58b2013-01-24 11:01:33 -08001615 lockdep_assert_held(&pool->assoc_mutex);
1616 lockdep_assert_held(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001617
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001618 /* dequeue and kick idle ones */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001619 list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
1620 /*
1621 * idle workers should be off @pool->idle_list until rebind
1622 * is complete to avoid receiving premature local wake-ups.
1623 */
1624 list_del_init(&worker->entry);
Lai Jiangshan96e65302012-09-02 00:28:19 +08001625
Tejun Heo94cf58b2013-01-24 11:01:33 -08001626 /*
1627 * worker_thread() will see the above dequeuing and call
1628 * idle_worker_rebind().
1629 */
1630 wake_up_process(worker->task);
1631 }
Tejun Heo25511a42012-07-17 12:39:27 -07001632
Tejun Heo94cf58b2013-01-24 11:01:33 -08001633 /* rebind busy workers */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001634 for_each_busy_worker(worker, i, pool) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08001635 struct work_struct *rebind_work = &worker->rebind_work;
1636 struct workqueue_struct *wq;
Tejun Heo25511a42012-07-17 12:39:27 -07001637
Tejun Heo94cf58b2013-01-24 11:01:33 -08001638 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1639 work_data_bits(rebind_work)))
1640 continue;
Tejun Heo25511a42012-07-17 12:39:27 -07001641
Tejun Heo94cf58b2013-01-24 11:01:33 -08001642 debug_work_activate(rebind_work);
Tejun Heo90beca52012-09-04 23:12:33 -07001643
Tejun Heo94cf58b2013-01-24 11:01:33 -08001644 /*
1645 * wq doesn't really matter but let's keep @worker->pool
Tejun Heo112202d2013-02-13 19:29:12 -08001646 * and @pwq->pool consistent for sanity.
Tejun Heo94cf58b2013-01-24 11:01:33 -08001647 */
1648 if (std_worker_pool_pri(worker->pool))
1649 wq = system_highpri_wq;
1650 else
1651 wq = system_wq;
Tejun Heoec588152012-09-04 23:16:32 -07001652
Tejun Heo112202d2013-02-13 19:29:12 -08001653 insert_work(get_pwq(pool->cpu, wq), rebind_work,
Tejun Heo94cf58b2013-01-24 11:01:33 -08001654 worker->scheduled.next,
1655 work_color_to_flags(WORK_NO_COLOR));
Tejun Heoec588152012-09-04 23:16:32 -07001656 }
Tejun Heo25511a42012-07-17 12:39:27 -07001657}
1658
Tejun Heoc34056a2010-06-29 10:07:11 +02001659static struct worker *alloc_worker(void)
1660{
1661 struct worker *worker;
1662
1663 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001664 if (worker) {
1665 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001666 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001667 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001668 /* on creation a worker is in !idle && prep state */
1669 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001670 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001671 return worker;
1672}
1673
1674/**
1675 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001676 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001677 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001678 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001679 * can be started by calling start_worker() or destroyed using
1680 * destroy_worker().
1681 *
1682 * CONTEXT:
1683 * Might sleep. Does GFP_KERNEL allocations.
1684 *
1685 * RETURNS:
1686 * Pointer to the newly created worker.
1687 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001688static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001689{
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001690 const char *pri = std_worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001691 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001692 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001693
Tejun Heod565ed62013-01-24 11:01:33 -08001694 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001695 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heod565ed62013-01-24 11:01:33 -08001696 spin_unlock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001697 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001698 goto fail;
Tejun Heod565ed62013-01-24 11:01:33 -08001699 spin_lock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001700 }
Tejun Heod565ed62013-01-24 11:01:33 -08001701 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001702
1703 worker = alloc_worker();
1704 if (!worker)
1705 goto fail;
1706
Tejun Heobd7bdd42012-07-12 14:46:37 -07001707 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001708 worker->id = id;
1709
Tejun Heoec22ca52013-01-24 11:01:33 -08001710 if (pool->cpu != WORK_CPU_UNBOUND)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001711 worker->task = kthread_create_on_node(worker_thread,
Tejun Heoec22ca52013-01-24 11:01:33 -08001712 worker, cpu_to_node(pool->cpu),
Tejun Heod84ff052013-03-12 11:29:59 -07001713 "kworker/%d:%d%s", pool->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001714 else
1715 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001716 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001717 if (IS_ERR(worker->task))
1718 goto fail;
1719
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001720 if (std_worker_pool_pri(pool))
Tejun Heo32704762012-07-13 22:16:45 -07001721 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1722
Tejun Heodb7bccf2010-06-29 10:07:12 +02001723 /*
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001724 * Determine CPU binding of the new worker depending on
Tejun Heo24647572013-01-24 11:01:33 -08001725 * %POOL_DISASSOCIATED. The caller is responsible for ensuring the
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001726 * flag remains stable across this function. See the comments
1727 * above the flag definition for details.
1728 *
1729 * As an unbound worker may later become a regular one if CPU comes
1730 * online, make sure every worker has %PF_THREAD_BOUND set.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001731 */
Tejun Heo24647572013-01-24 11:01:33 -08001732 if (!(pool->flags & POOL_DISASSOCIATED)) {
Tejun Heoec22ca52013-01-24 11:01:33 -08001733 kthread_bind(worker->task, pool->cpu);
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001734 } else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001735 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001736 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001738
Tejun Heoc34056a2010-06-29 10:07:11 +02001739 return worker;
1740fail:
1741 if (id >= 0) {
Tejun Heod565ed62013-01-24 11:01:33 -08001742 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001743 ida_remove(&pool->worker_ida, id);
Tejun Heod565ed62013-01-24 11:01:33 -08001744 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001745 }
1746 kfree(worker);
1747 return NULL;
1748}
1749
1750/**
1751 * start_worker - start a newly created worker
1752 * @worker: worker to start
1753 *
Tejun Heo706026c2013-01-24 11:01:34 -08001754 * Make the pool aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001755 *
1756 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001757 * spin_lock_irq(pool->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001758 */
1759static void start_worker(struct worker *worker)
1760{
Tejun Heocb444762010-07-02 10:03:50 +02001761 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001762 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001763 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001764 wake_up_process(worker->task);
1765}
1766
1767/**
1768 * destroy_worker - destroy a workqueue worker
1769 * @worker: worker to be destroyed
1770 *
Tejun Heo706026c2013-01-24 11:01:34 -08001771 * Destroy @worker and adjust @pool stats accordingly.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001772 *
1773 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001774 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001775 */
1776static void destroy_worker(struct worker *worker)
1777{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001778 struct worker_pool *pool = worker->pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001779 int id = worker->id;
1780
1781 /* sanity check frenzy */
Tejun Heo6183c002013-03-12 11:29:57 -07001782 if (WARN_ON(worker->current_work) ||
1783 WARN_ON(!list_empty(&worker->scheduled)))
1784 return;
Tejun Heoc34056a2010-06-29 10:07:11 +02001785
Tejun Heoc8e55f32010-06-29 10:07:12 +02001786 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001787 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001788 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001789 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001790
1791 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001792 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001793
Tejun Heod565ed62013-01-24 11:01:33 -08001794 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001795
Tejun Heoc34056a2010-06-29 10:07:11 +02001796 kthread_stop(worker->task);
1797 kfree(worker);
1798
Tejun Heod565ed62013-01-24 11:01:33 -08001799 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001800 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001801}
1802
Tejun Heo63d95a92012-07-12 14:46:37 -07001803static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001804{
Tejun Heo63d95a92012-07-12 14:46:37 -07001805 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001806
Tejun Heod565ed62013-01-24 11:01:33 -08001807 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001808
Tejun Heo63d95a92012-07-12 14:46:37 -07001809 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001810 struct worker *worker;
1811 unsigned long expires;
1812
1813 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001814 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001815 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1816
1817 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001818 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001819 else {
1820 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001821 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001822 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001823 }
1824 }
1825
Tejun Heod565ed62013-01-24 11:01:33 -08001826 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001827}
1828
Tejun Heo493a1722013-03-12 11:29:59 -07001829static void send_mayday(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001830{
Tejun Heo112202d2013-02-13 19:29:12 -08001831 struct pool_workqueue *pwq = get_work_pwq(work);
1832 struct workqueue_struct *wq = pwq->wq;
Tejun Heo493a1722013-03-12 11:29:59 -07001833
1834 lockdep_assert_held(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001835
1836 if (!(wq->flags & WQ_RESCUER))
Tejun Heo493a1722013-03-12 11:29:59 -07001837 return;
Tejun Heoe22bee72010-06-29 10:07:14 +02001838
1839 /* mayday mayday mayday */
Tejun Heo493a1722013-03-12 11:29:59 -07001840 if (list_empty(&pwq->mayday_node)) {
1841 list_add_tail(&pwq->mayday_node, &wq->maydays);
Tejun Heoe22bee72010-06-29 10:07:14 +02001842 wake_up_process(wq->rescuer->task);
Tejun Heo493a1722013-03-12 11:29:59 -07001843 }
Tejun Heoe22bee72010-06-29 10:07:14 +02001844}
1845
Tejun Heo706026c2013-01-24 11:01:34 -08001846static void pool_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001847{
Tejun Heo63d95a92012-07-12 14:46:37 -07001848 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001849 struct work_struct *work;
1850
Tejun Heo493a1722013-03-12 11:29:59 -07001851 spin_lock_irq(&workqueue_lock); /* for wq->maydays */
1852 spin_lock(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001853
Tejun Heo63d95a92012-07-12 14:46:37 -07001854 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001855 /*
1856 * We've been trying to create a new worker but
1857 * haven't been successful. We might be hitting an
1858 * allocation deadlock. Send distress signals to
1859 * rescuers.
1860 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001861 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001862 send_mayday(work);
1863 }
1864
Tejun Heo493a1722013-03-12 11:29:59 -07001865 spin_unlock(&pool->lock);
1866 spin_unlock_irq(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001867
Tejun Heo63d95a92012-07-12 14:46:37 -07001868 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001869}
1870
1871/**
1872 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001873 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001874 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001875 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001876 * have at least one idle worker on return from this function. If
1877 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001878 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001879 * possible allocation deadlock.
1880 *
1881 * On return, need_to_create_worker() is guaranteed to be false and
1882 * may_start_working() true.
1883 *
1884 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001885 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001886 * multiple times. Does GFP_KERNEL allocations. Called only from
1887 * manager.
1888 *
1889 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001890 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001891 * otherwise.
1892 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001893static bool maybe_create_worker(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001894__releases(&pool->lock)
1895__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001896{
Tejun Heo63d95a92012-07-12 14:46:37 -07001897 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001898 return false;
1899restart:
Tejun Heod565ed62013-01-24 11:01:33 -08001900 spin_unlock_irq(&pool->lock);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001901
Tejun Heoe22bee72010-06-29 10:07:14 +02001902 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001903 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001904
1905 while (true) {
1906 struct worker *worker;
1907
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001908 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001909 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001910 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001911 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001912 start_worker(worker);
Tejun Heo6183c002013-03-12 11:29:57 -07001913 if (WARN_ON_ONCE(need_to_create_worker(pool)))
1914 goto restart;
Tejun Heoe22bee72010-06-29 10:07:14 +02001915 return true;
1916 }
1917
Tejun Heo63d95a92012-07-12 14:46:37 -07001918 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001919 break;
1920
Tejun Heoe22bee72010-06-29 10:07:14 +02001921 __set_current_state(TASK_INTERRUPTIBLE);
1922 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001923
Tejun Heo63d95a92012-07-12 14:46:37 -07001924 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001925 break;
1926 }
1927
Tejun Heo63d95a92012-07-12 14:46:37 -07001928 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001929 spin_lock_irq(&pool->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001930 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001931 goto restart;
1932 return true;
1933}
1934
1935/**
1936 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001937 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001938 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001939 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001940 * IDLE_WORKER_TIMEOUT.
1941 *
1942 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001943 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001944 * multiple times. Called only from manager.
1945 *
1946 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001947 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001948 * otherwise.
1949 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001950static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001951{
1952 bool ret = false;
1953
Tejun Heo63d95a92012-07-12 14:46:37 -07001954 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001955 struct worker *worker;
1956 unsigned long expires;
1957
Tejun Heo63d95a92012-07-12 14:46:37 -07001958 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001959 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1960
1961 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001962 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001963 break;
1964 }
1965
1966 destroy_worker(worker);
1967 ret = true;
1968 }
1969
1970 return ret;
1971}
1972
1973/**
1974 * manage_workers - manage worker pool
1975 * @worker: self
1976 *
Tejun Heo706026c2013-01-24 11:01:34 -08001977 * Assume the manager role and manage the worker pool @worker belongs
Tejun Heoe22bee72010-06-29 10:07:14 +02001978 * to. At any given time, there can be only zero or one manager per
Tejun Heo706026c2013-01-24 11:01:34 -08001979 * pool. The exclusion is handled automatically by this function.
Tejun Heoe22bee72010-06-29 10:07:14 +02001980 *
1981 * The caller can safely start processing works on false return. On
1982 * true return, it's guaranteed that need_to_create_worker() is false
1983 * and may_start_working() is true.
1984 *
1985 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001986 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001987 * multiple times. Does GFP_KERNEL allocations.
1988 *
1989 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001990 * spin_lock_irq(pool->lock) which may be released and regrabbed
1991 * multiple times. Does GFP_KERNEL allocations.
Tejun Heoe22bee72010-06-29 10:07:14 +02001992 */
1993static bool manage_workers(struct worker *worker)
1994{
Tejun Heo63d95a92012-07-12 14:46:37 -07001995 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001996 bool ret = false;
1997
Lai Jiangshanee378aa2012-09-10 10:03:44 -07001998 if (pool->flags & POOL_MANAGING_WORKERS)
Tejun Heoe22bee72010-06-29 10:07:14 +02001999 return ret;
2000
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002001 pool->flags |= POOL_MANAGING_WORKERS;
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002002
2003 /*
2004 * To simplify both worker management and CPU hotplug, hold off
2005 * management while hotplug is in progress. CPU hotplug path can't
2006 * grab %POOL_MANAGING_WORKERS to achieve this because that can
2007 * lead to idle worker depletion (all become busy thinking someone
2008 * else is managing) which in turn can result in deadlock under
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002009 * extreme circumstances. Use @pool->assoc_mutex to synchronize
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002010 * manager against CPU hotplug.
2011 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002012 * assoc_mutex would always be free unless CPU hotplug is in
Tejun Heod565ed62013-01-24 11:01:33 -08002013 * progress. trylock first without dropping @pool->lock.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002014 */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002015 if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002016 spin_unlock_irq(&pool->lock);
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002017 mutex_lock(&pool->assoc_mutex);
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002018 /*
2019 * CPU hotplug could have happened while we were waiting
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002020 * for assoc_mutex. Hotplug itself can't handle us
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002021 * because manager isn't either on idle or busy list, and
Tejun Heo706026c2013-01-24 11:01:34 -08002022 * @pool's state and ours could have deviated.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002023 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002024 * As hotplug is now excluded via assoc_mutex, we can
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002025 * simply try to bind. It will succeed or fail depending
Tejun Heo706026c2013-01-24 11:01:34 -08002026 * on @pool's current state. Try it and adjust
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002027 * %WORKER_UNBOUND accordingly.
2028 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002029 if (worker_maybe_bind_and_lock(pool))
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002030 worker->flags &= ~WORKER_UNBOUND;
2031 else
2032 worker->flags |= WORKER_UNBOUND;
2033
2034 ret = true;
2035 }
2036
Tejun Heo11ebea52012-07-12 14:46:37 -07002037 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02002038
2039 /*
2040 * Destroy and then create so that may_start_working() is true
2041 * on return.
2042 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002043 ret |= maybe_destroy_workers(pool);
2044 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02002045
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002046 pool->flags &= ~POOL_MANAGING_WORKERS;
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002047 mutex_unlock(&pool->assoc_mutex);
Tejun Heoe22bee72010-06-29 10:07:14 +02002048 return ret;
2049}
2050
Tejun Heoa62428c2010-06-29 10:07:10 +02002051/**
2052 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02002053 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02002054 * @work: work to process
2055 *
2056 * Process @work. This function contains all the logics necessary to
2057 * process a single work including synchronization against and
2058 * interaction with other workers on the same cpu, queueing and
2059 * flushing. As long as context requirement is met, any worker can
2060 * call this function to process a work.
2061 *
2062 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002063 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002064 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002065static void process_one_work(struct worker *worker, struct work_struct *work)
Tejun Heod565ed62013-01-24 11:01:33 -08002066__releases(&pool->lock)
2067__acquires(&pool->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002068{
Tejun Heo112202d2013-02-13 19:29:12 -08002069 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002070 struct worker_pool *pool = worker->pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002071 bool cpu_intensive = pwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heo73f53c42010-06-29 10:07:11 +02002072 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002073 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002074#ifdef CONFIG_LOCKDEP
2075 /*
2076 * It is permissible to free the struct work_struct from
2077 * inside the function that is called from it, this we need to
2078 * take into account for lockdep too. To avoid bogus "held
2079 * lock freed" warnings as well as problems when looking into
2080 * work->lockdep_map, make a copy and use that here.
2081 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002082 struct lockdep_map lockdep_map;
2083
2084 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002085#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002086 /*
2087 * Ensure we're on the correct CPU. DISASSOCIATED test is
2088 * necessary to avoid spurious warnings from rescuers servicing the
Tejun Heo24647572013-01-24 11:01:33 -08002089 * unbound or a disassociated pool.
Tejun Heo6fec10a2012-07-22 10:16:34 -07002090 */
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002091 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
Tejun Heo24647572013-01-24 11:01:33 -08002092 !(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heoec22ca52013-01-24 11:01:33 -08002093 raw_smp_processor_id() != pool->cpu);
Tejun Heo25511a42012-07-17 12:39:27 -07002094
Tejun Heo7e116292010-06-29 10:07:13 +02002095 /*
2096 * A single work shouldn't be executed concurrently by
2097 * multiple workers on a single cpu. Check whether anyone is
2098 * already processing the work. If so, defer the work to the
2099 * currently executing one.
2100 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002101 collision = find_worker_executing_work(pool, work);
Tejun Heo7e116292010-06-29 10:07:13 +02002102 if (unlikely(collision)) {
2103 move_linked_works(work, &collision->scheduled, NULL);
2104 return;
2105 }
2106
Tejun Heo8930cab2012-08-03 10:30:45 -07002107 /* claim and dequeue */
Tejun Heoa62428c2010-06-29 10:07:10 +02002108 debug_work_deactivate(work);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002109 hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work);
Tejun Heoc34056a2010-06-29 10:07:11 +02002110 worker->current_work = work;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002111 worker->current_func = work->func;
Tejun Heo112202d2013-02-13 19:29:12 -08002112 worker->current_pwq = pwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002113 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002114
Tejun Heoa62428c2010-06-29 10:07:10 +02002115 list_del_init(&work->entry);
2116
Tejun Heo649027d2010-06-29 10:07:14 +02002117 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002118 * CPU intensive works don't participate in concurrency
2119 * management. They're the scheduler's responsibility.
2120 */
2121 if (unlikely(cpu_intensive))
2122 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2123
Tejun Heo974271c2012-07-12 14:46:37 -07002124 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002125 * Unbound pool isn't concurrency managed and work items should be
Tejun Heo974271c2012-07-12 14:46:37 -07002126 * executed ASAP. Wake up another worker if necessary.
2127 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002128 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2129 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002130
Tejun Heo8930cab2012-08-03 10:30:45 -07002131 /*
Tejun Heo7c3eed52013-01-24 11:01:33 -08002132 * Record the last pool and clear PENDING which should be the last
Tejun Heod565ed62013-01-24 11:01:33 -08002133 * update to @work. Also, do this inside @pool->lock so that
Tejun Heo23657bb2012-08-13 17:08:19 -07002134 * PENDING and queued state changes happen together while IRQ is
2135 * disabled.
Tejun Heo8930cab2012-08-03 10:30:45 -07002136 */
Tejun Heo7c3eed52013-01-24 11:01:33 -08002137 set_work_pool_and_clear_pending(work, pool->id);
Tejun Heoa62428c2010-06-29 10:07:10 +02002138
Tejun Heod565ed62013-01-24 11:01:33 -08002139 spin_unlock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002140
Tejun Heo112202d2013-02-13 19:29:12 -08002141 lock_map_acquire_read(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002142 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002143 trace_workqueue_execute_start(work);
Tejun Heoa2c1c572012-12-18 10:35:02 -08002144 worker->current_func(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002145 /*
2146 * While we must be careful to not use "work" after this, the trace
2147 * point will only record its address.
2148 */
2149 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002150 lock_map_release(&lockdep_map);
Tejun Heo112202d2013-02-13 19:29:12 -08002151 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002152
2153 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
Valentin Ilie044c7822012-08-19 00:52:42 +03002154 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2155 " last function: %pf\n",
Tejun Heoa2c1c572012-12-18 10:35:02 -08002156 current->comm, preempt_count(), task_pid_nr(current),
2157 worker->current_func);
Tejun Heoa62428c2010-06-29 10:07:10 +02002158 debug_show_held_locks(current);
2159 dump_stack();
2160 }
2161
Tejun Heod565ed62013-01-24 11:01:33 -08002162 spin_lock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002163
Tejun Heofb0e7be2010-06-29 10:07:15 +02002164 /* clear cpu intensive status */
2165 if (unlikely(cpu_intensive))
2166 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2167
Tejun Heoa62428c2010-06-29 10:07:10 +02002168 /* we're done with it, release */
Sasha Levin42f85702012-12-17 10:01:23 -05002169 hash_del(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002170 worker->current_work = NULL;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002171 worker->current_func = NULL;
Tejun Heo112202d2013-02-13 19:29:12 -08002172 worker->current_pwq = NULL;
2173 pwq_dec_nr_in_flight(pwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02002174}
2175
Tejun Heoaffee4b2010-06-29 10:07:12 +02002176/**
2177 * process_scheduled_works - process scheduled works
2178 * @worker: self
2179 *
2180 * Process all scheduled works. Please note that the scheduled list
2181 * may change while processing a work, so this function repeatedly
2182 * fetches a work from the top and executes it.
2183 *
2184 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002185 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002186 * multiple times.
2187 */
2188static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002190 while (!list_empty(&worker->scheduled)) {
2191 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002193 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195}
2196
Tejun Heo4690c4a2010-06-29 10:07:10 +02002197/**
2198 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002199 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002200 *
Tejun Heo706026c2013-01-24 11:01:34 -08002201 * The worker thread function. There are NR_CPU_WORKER_POOLS dynamic pools
2202 * of these per each cpu. These workers process all works regardless of
Tejun Heoe22bee72010-06-29 10:07:14 +02002203 * their specific target workqueue. The only exception is works which
2204 * belong to workqueues with a rescuer which will be explained in
2205 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002206 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002207static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
Tejun Heoc34056a2010-06-29 10:07:11 +02002209 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002210 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Tejun Heoe22bee72010-06-29 10:07:14 +02002212 /* tell the scheduler that this is a workqueue worker */
2213 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002214woke_up:
Tejun Heod565ed62013-01-24 11:01:33 -08002215 spin_lock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002217 /* we are off idle list if destruction or rebind is requested */
2218 if (unlikely(list_empty(&worker->entry))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002219 spin_unlock_irq(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002220
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002221 /* if DIE is set, destruction is requested */
Tejun Heo25511a42012-07-17 12:39:27 -07002222 if (worker->flags & WORKER_DIE) {
2223 worker->task->flags &= ~PF_WQ_WORKER;
2224 return 0;
2225 }
2226
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002227 /* otherwise, rebind */
Tejun Heo25511a42012-07-17 12:39:27 -07002228 idle_worker_rebind(worker);
2229 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 }
2231
Tejun Heoc8e55f32010-06-29 10:07:12 +02002232 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002233recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002234 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002235 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002236 goto sleep;
2237
2238 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002239 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002240 goto recheck;
2241
Tejun Heoc8e55f32010-06-29 10:07:12 +02002242 /*
2243 * ->scheduled list can only be filled while a worker is
2244 * preparing to process a work or actually processing it.
2245 * Make sure nobody diddled with it while I was sleeping.
2246 */
Tejun Heo6183c002013-03-12 11:29:57 -07002247 WARN_ON_ONCE(!list_empty(&worker->scheduled));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002248
Tejun Heoe22bee72010-06-29 10:07:14 +02002249 /*
2250 * When control reaches this point, we're guaranteed to have
2251 * at least one idle worker or that someone else has already
2252 * assumed the manager role.
2253 */
2254 worker_clr_flags(worker, WORKER_PREP);
2255
2256 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002257 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002258 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002259 struct work_struct, entry);
2260
2261 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2262 /* optimization path, not strictly necessary */
2263 process_one_work(worker, work);
2264 if (unlikely(!list_empty(&worker->scheduled)))
2265 process_scheduled_works(worker);
2266 } else {
2267 move_linked_works(work, &worker->scheduled, NULL);
2268 process_scheduled_works(worker);
2269 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002270 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002271
Tejun Heoe22bee72010-06-29 10:07:14 +02002272 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002273sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002274 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002275 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002276
Tejun Heoc8e55f32010-06-29 10:07:12 +02002277 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002278 * pool->lock is held and there's no work to process and no need to
2279 * manage, sleep. Workers are woken up only while holding
2280 * pool->lock or from local cpu, so setting the current state
2281 * before releasing pool->lock is enough to prevent losing any
2282 * event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002283 */
2284 worker_enter_idle(worker);
2285 __set_current_state(TASK_INTERRUPTIBLE);
Tejun Heod565ed62013-01-24 11:01:33 -08002286 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002287 schedule();
2288 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
Tejun Heoe22bee72010-06-29 10:07:14 +02002291/**
2292 * rescuer_thread - the rescuer thread function
Tejun Heo111c2252013-01-17 17:16:24 -08002293 * @__rescuer: self
Tejun Heoe22bee72010-06-29 10:07:14 +02002294 *
2295 * Workqueue rescuer thread function. There's one rescuer for each
2296 * workqueue which has WQ_RESCUER set.
2297 *
Tejun Heo706026c2013-01-24 11:01:34 -08002298 * Regular work processing on a pool may block trying to create a new
Tejun Heoe22bee72010-06-29 10:07:14 +02002299 * worker which uses GFP_KERNEL allocation which has slight chance of
2300 * developing into deadlock if some works currently on the same queue
2301 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2302 * the problem rescuer solves.
2303 *
Tejun Heo706026c2013-01-24 11:01:34 -08002304 * When such condition is possible, the pool summons rescuers of all
2305 * workqueues which have works queued on the pool and let them process
Tejun Heoe22bee72010-06-29 10:07:14 +02002306 * those works so that forward progress can be guaranteed.
2307 *
2308 * This should happen rarely.
2309 */
Tejun Heo111c2252013-01-17 17:16:24 -08002310static int rescuer_thread(void *__rescuer)
Tejun Heoe22bee72010-06-29 10:07:14 +02002311{
Tejun Heo111c2252013-01-17 17:16:24 -08002312 struct worker *rescuer = __rescuer;
2313 struct workqueue_struct *wq = rescuer->rescue_wq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002314 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heoe22bee72010-06-29 10:07:14 +02002315
2316 set_user_nice(current, RESCUER_NICE_LEVEL);
Tejun Heo111c2252013-01-17 17:16:24 -08002317
2318 /*
2319 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2320 * doesn't participate in concurrency management.
2321 */
2322 rescuer->task->flags |= PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002323repeat:
2324 set_current_state(TASK_INTERRUPTIBLE);
2325
Mike Galbraith412d32e2012-11-28 07:17:18 +01002326 if (kthread_should_stop()) {
2327 __set_current_state(TASK_RUNNING);
Tejun Heo111c2252013-01-17 17:16:24 -08002328 rescuer->task->flags &= ~PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002329 return 0;
Mike Galbraith412d32e2012-11-28 07:17:18 +01002330 }
Tejun Heoe22bee72010-06-29 10:07:14 +02002331
Tejun Heo493a1722013-03-12 11:29:59 -07002332 /* see whether any pwq is asking for help */
2333 spin_lock_irq(&workqueue_lock);
2334
2335 while (!list_empty(&wq->maydays)) {
2336 struct pool_workqueue *pwq = list_first_entry(&wq->maydays,
2337 struct pool_workqueue, mayday_node);
Tejun Heo112202d2013-02-13 19:29:12 -08002338 struct worker_pool *pool = pwq->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002339 struct work_struct *work, *n;
2340
2341 __set_current_state(TASK_RUNNING);
Tejun Heo493a1722013-03-12 11:29:59 -07002342 list_del_init(&pwq->mayday_node);
2343
2344 spin_unlock_irq(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002345
2346 /* migrate to the target cpu if possible */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002347 worker_maybe_bind_and_lock(pool);
Lai Jiangshanb3104102013-02-19 12:17:02 -08002348 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002349
2350 /*
2351 * Slurp in all works issued via this workqueue and
2352 * process'em.
2353 */
Tejun Heo6183c002013-03-12 11:29:57 -07002354 WARN_ON_ONCE(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002355 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heo112202d2013-02-13 19:29:12 -08002356 if (get_work_pwq(work) == pwq)
Tejun Heoe22bee72010-06-29 10:07:14 +02002357 move_linked_works(work, scheduled, &n);
2358
2359 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002360
2361 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002362 * Leave this pool. If keep_working() is %true, notify a
Tejun Heo75769582011-02-14 14:04:46 +01002363 * regular worker; otherwise, we end up with 0 concurrency
2364 * and stalling the execution.
2365 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002366 if (keep_working(pool))
2367 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002368
Lai Jiangshanb3104102013-02-19 12:17:02 -08002369 rescuer->pool = NULL;
Tejun Heo493a1722013-03-12 11:29:59 -07002370 spin_unlock(&pool->lock);
2371 spin_lock(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002372 }
2373
Tejun Heo493a1722013-03-12 11:29:59 -07002374 spin_unlock_irq(&workqueue_lock);
2375
Tejun Heo111c2252013-01-17 17:16:24 -08002376 /* rescuers should never participate in concurrency management */
2377 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
Tejun Heoe22bee72010-06-29 10:07:14 +02002378 schedule();
2379 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
2381
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002382struct wq_barrier {
2383 struct work_struct work;
2384 struct completion done;
2385};
2386
2387static void wq_barrier_func(struct work_struct *work)
2388{
2389 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2390 complete(&barr->done);
2391}
2392
Tejun Heo4690c4a2010-06-29 10:07:10 +02002393/**
2394 * insert_wq_barrier - insert a barrier work
Tejun Heo112202d2013-02-13 19:29:12 -08002395 * @pwq: pwq to insert barrier into
Tejun Heo4690c4a2010-06-29 10:07:10 +02002396 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002397 * @target: target work to attach @barr to
2398 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002399 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002400 * @barr is linked to @target such that @barr is completed only after
2401 * @target finishes execution. Please note that the ordering
2402 * guarantee is observed only with respect to @target and on the local
2403 * cpu.
2404 *
2405 * Currently, a queued barrier can't be canceled. This is because
2406 * try_to_grab_pending() can't determine whether the work to be
2407 * grabbed is at the head of the queue and thus can't clear LINKED
2408 * flag of the previous work while there must be a valid next work
2409 * after a work with LINKED flag set.
2410 *
2411 * Note that when @worker is non-NULL, @target may be modified
Tejun Heo112202d2013-02-13 19:29:12 -08002412 * underneath us, so we can't reliably determine pwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002413 *
2414 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002415 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002416 */
Tejun Heo112202d2013-02-13 19:29:12 -08002417static void insert_wq_barrier(struct pool_workqueue *pwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002418 struct wq_barrier *barr,
2419 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002420{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002421 struct list_head *head;
2422 unsigned int linked = 0;
2423
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002424 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002425 * debugobject calls are safe here even with pool->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002426 * as we know for sure that this will not trigger any of the
2427 * checks and call back into the fixup functions where we
2428 * might deadlock.
2429 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002430 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002431 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002432 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002433
Tejun Heoaffee4b2010-06-29 10:07:12 +02002434 /*
2435 * If @target is currently being executed, schedule the
2436 * barrier to the worker; otherwise, put it after @target.
2437 */
2438 if (worker)
2439 head = worker->scheduled.next;
2440 else {
2441 unsigned long *bits = work_data_bits(target);
2442
2443 head = target->entry.next;
2444 /* there can already be other linked works, inherit and set */
2445 linked = *bits & WORK_STRUCT_LINKED;
2446 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2447 }
2448
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002449 debug_work_activate(&barr->work);
Tejun Heo112202d2013-02-13 19:29:12 -08002450 insert_work(pwq, &barr->work, head,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002451 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002452}
2453
Tejun Heo73f53c42010-06-29 10:07:11 +02002454/**
Tejun Heo112202d2013-02-13 19:29:12 -08002455 * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing
Tejun Heo73f53c42010-06-29 10:07:11 +02002456 * @wq: workqueue being flushed
2457 * @flush_color: new flush color, < 0 for no-op
2458 * @work_color: new work color, < 0 for no-op
2459 *
Tejun Heo112202d2013-02-13 19:29:12 -08002460 * Prepare pwqs for workqueue flushing.
Tejun Heo73f53c42010-06-29 10:07:11 +02002461 *
Tejun Heo112202d2013-02-13 19:29:12 -08002462 * If @flush_color is non-negative, flush_color on all pwqs should be
2463 * -1. If no pwq has in-flight commands at the specified color, all
2464 * pwq->flush_color's stay at -1 and %false is returned. If any pwq
2465 * has in flight commands, its pwq->flush_color is set to
2466 * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq
Tejun Heo73f53c42010-06-29 10:07:11 +02002467 * wakeup logic is armed and %true is returned.
2468 *
2469 * The caller should have initialized @wq->first_flusher prior to
2470 * calling this function with non-negative @flush_color. If
2471 * @flush_color is negative, no flush color update is done and %false
2472 * is returned.
2473 *
Tejun Heo112202d2013-02-13 19:29:12 -08002474 * If @work_color is non-negative, all pwqs should have the same
Tejun Heo73f53c42010-06-29 10:07:11 +02002475 * work_color which is previous to @work_color and all will be
2476 * advanced to @work_color.
2477 *
2478 * CONTEXT:
2479 * mutex_lock(wq->flush_mutex).
2480 *
2481 * RETURNS:
2482 * %true if @flush_color >= 0 and there's something to flush. %false
2483 * otherwise.
2484 */
Tejun Heo112202d2013-02-13 19:29:12 -08002485static bool flush_workqueue_prep_pwqs(struct workqueue_struct *wq,
Tejun Heo73f53c42010-06-29 10:07:11 +02002486 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
Tejun Heo73f53c42010-06-29 10:07:11 +02002488 bool wait = false;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002489 struct pool_workqueue *pwq;
Oleg Nesterov14441962007-05-23 13:57:57 -07002490
Tejun Heo73f53c42010-06-29 10:07:11 +02002491 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002492 WARN_ON_ONCE(atomic_read(&wq->nr_pwqs_to_flush));
Tejun Heo112202d2013-02-13 19:29:12 -08002493 atomic_set(&wq->nr_pwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002494 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002495
Tejun Heo49e3cf42013-03-12 11:29:58 -07002496 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08002497 struct worker_pool *pool = pwq->pool;
Tejun Heo73f53c42010-06-29 10:07:11 +02002498
Tejun Heod565ed62013-01-24 11:01:33 -08002499 spin_lock_irq(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002500
2501 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002502 WARN_ON_ONCE(pwq->flush_color != -1);
Tejun Heo73f53c42010-06-29 10:07:11 +02002503
Tejun Heo112202d2013-02-13 19:29:12 -08002504 if (pwq->nr_in_flight[flush_color]) {
2505 pwq->flush_color = flush_color;
2506 atomic_inc(&wq->nr_pwqs_to_flush);
Tejun Heo73f53c42010-06-29 10:07:11 +02002507 wait = true;
2508 }
2509 }
2510
2511 if (work_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002512 WARN_ON_ONCE(work_color != work_next_color(pwq->work_color));
Tejun Heo112202d2013-02-13 19:29:12 -08002513 pwq->work_color = work_color;
Tejun Heo73f53c42010-06-29 10:07:11 +02002514 }
2515
Tejun Heod565ed62013-01-24 11:01:33 -08002516 spin_unlock_irq(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002517 }
2518
Tejun Heo112202d2013-02-13 19:29:12 -08002519 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_pwqs_to_flush))
Tejun Heo73f53c42010-06-29 10:07:11 +02002520 complete(&wq->first_flusher->done);
2521
2522 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523}
2524
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002525/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002527 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 *
2529 * Forces execution of the workqueue and blocks until its completion.
2530 * This is typically used in driver shutdown handlers.
2531 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002532 * We sleep until all works which were queued on entry have been handled,
2533 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002535void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
Tejun Heo73f53c42010-06-29 10:07:11 +02002537 struct wq_flusher this_flusher = {
2538 .list = LIST_HEAD_INIT(this_flusher.list),
2539 .flush_color = -1,
2540 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2541 };
2542 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002543
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002544 lock_map_acquire(&wq->lockdep_map);
2545 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002546
2547 mutex_lock(&wq->flush_mutex);
2548
2549 /*
2550 * Start-to-wait phase
2551 */
2552 next_color = work_next_color(wq->work_color);
2553
2554 if (next_color != wq->flush_color) {
2555 /*
2556 * Color space is not full. The current work_color
2557 * becomes our flush_color and work_color is advanced
2558 * by one.
2559 */
Tejun Heo6183c002013-03-12 11:29:57 -07002560 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow));
Tejun Heo73f53c42010-06-29 10:07:11 +02002561 this_flusher.flush_color = wq->work_color;
2562 wq->work_color = next_color;
2563
2564 if (!wq->first_flusher) {
2565 /* no flush in progress, become the first flusher */
Tejun Heo6183c002013-03-12 11:29:57 -07002566 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002567
2568 wq->first_flusher = &this_flusher;
2569
Tejun Heo112202d2013-02-13 19:29:12 -08002570 if (!flush_workqueue_prep_pwqs(wq, wq->flush_color,
Tejun Heo73f53c42010-06-29 10:07:11 +02002571 wq->work_color)) {
2572 /* nothing to flush, done */
2573 wq->flush_color = next_color;
2574 wq->first_flusher = NULL;
2575 goto out_unlock;
2576 }
2577 } else {
2578 /* wait in queue */
Tejun Heo6183c002013-03-12 11:29:57 -07002579 WARN_ON_ONCE(wq->flush_color == this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002580 list_add_tail(&this_flusher.list, &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002581 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002582 }
2583 } else {
2584 /*
2585 * Oops, color space is full, wait on overflow queue.
2586 * The next flush completion will assign us
2587 * flush_color and transfer to flusher_queue.
2588 */
2589 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2590 }
2591
2592 mutex_unlock(&wq->flush_mutex);
2593
2594 wait_for_completion(&this_flusher.done);
2595
2596 /*
2597 * Wake-up-and-cascade phase
2598 *
2599 * First flushers are responsible for cascading flushes and
2600 * handling overflow. Non-first flushers can simply return.
2601 */
2602 if (wq->first_flusher != &this_flusher)
2603 return;
2604
2605 mutex_lock(&wq->flush_mutex);
2606
Tejun Heo4ce48b32010-07-02 10:03:51 +02002607 /* we might have raced, check again with mutex held */
2608 if (wq->first_flusher != &this_flusher)
2609 goto out_unlock;
2610
Tejun Heo73f53c42010-06-29 10:07:11 +02002611 wq->first_flusher = NULL;
2612
Tejun Heo6183c002013-03-12 11:29:57 -07002613 WARN_ON_ONCE(!list_empty(&this_flusher.list));
2614 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002615
2616 while (true) {
2617 struct wq_flusher *next, *tmp;
2618
2619 /* complete all the flushers sharing the current flush color */
2620 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2621 if (next->flush_color != wq->flush_color)
2622 break;
2623 list_del_init(&next->list);
2624 complete(&next->done);
2625 }
2626
Tejun Heo6183c002013-03-12 11:29:57 -07002627 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow) &&
2628 wq->flush_color != work_next_color(wq->work_color));
Tejun Heo73f53c42010-06-29 10:07:11 +02002629
2630 /* this flush_color is finished, advance by one */
2631 wq->flush_color = work_next_color(wq->flush_color);
2632
2633 /* one color has been freed, handle overflow queue */
2634 if (!list_empty(&wq->flusher_overflow)) {
2635 /*
2636 * Assign the same color to all overflowed
2637 * flushers, advance work_color and append to
2638 * flusher_queue. This is the start-to-wait
2639 * phase for these overflowed flushers.
2640 */
2641 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2642 tmp->flush_color = wq->work_color;
2643
2644 wq->work_color = work_next_color(wq->work_color);
2645
2646 list_splice_tail_init(&wq->flusher_overflow,
2647 &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002648 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002649 }
2650
2651 if (list_empty(&wq->flusher_queue)) {
Tejun Heo6183c002013-03-12 11:29:57 -07002652 WARN_ON_ONCE(wq->flush_color != wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002653 break;
2654 }
2655
2656 /*
2657 * Need to flush more colors. Make the next flusher
Tejun Heo112202d2013-02-13 19:29:12 -08002658 * the new first flusher and arm pwqs.
Tejun Heo73f53c42010-06-29 10:07:11 +02002659 */
Tejun Heo6183c002013-03-12 11:29:57 -07002660 WARN_ON_ONCE(wq->flush_color == wq->work_color);
2661 WARN_ON_ONCE(wq->flush_color != next->flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002662
2663 list_del_init(&next->list);
2664 wq->first_flusher = next;
2665
Tejun Heo112202d2013-02-13 19:29:12 -08002666 if (flush_workqueue_prep_pwqs(wq, wq->flush_color, -1))
Tejun Heo73f53c42010-06-29 10:07:11 +02002667 break;
2668
2669 /*
2670 * Meh... this color is already done, clear first
2671 * flusher and repeat cascading.
2672 */
2673 wq->first_flusher = NULL;
2674 }
2675
2676out_unlock:
2677 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678}
Dave Jonesae90dd52006-06-30 01:40:45 -04002679EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002681/**
2682 * drain_workqueue - drain a workqueue
2683 * @wq: workqueue to drain
2684 *
2685 * Wait until the workqueue becomes empty. While draining is in progress,
2686 * only chain queueing is allowed. IOW, only currently pending or running
2687 * work items on @wq can queue further work items on it. @wq is flushed
2688 * repeatedly until it becomes empty. The number of flushing is detemined
2689 * by the depth of chaining and should be relatively short. Whine if it
2690 * takes too long.
2691 */
2692void drain_workqueue(struct workqueue_struct *wq)
2693{
2694 unsigned int flush_cnt = 0;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002695 struct pool_workqueue *pwq;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002696
2697 /*
2698 * __queue_work() needs to test whether there are drainers, is much
2699 * hotter than drain_workqueue() and already looks at @wq->flags.
2700 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2701 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07002702 spin_lock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002703 if (!wq->nr_drainers++)
2704 wq->flags |= WQ_DRAINING;
Tejun Heoe98d5b12013-03-12 11:29:57 -07002705 spin_unlock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002706reflush:
2707 flush_workqueue(wq);
2708
Tejun Heo49e3cf42013-03-12 11:29:58 -07002709 for_each_pwq(pwq, wq) {
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002710 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002711
Tejun Heo112202d2013-02-13 19:29:12 -08002712 spin_lock_irq(&pwq->pool->lock);
2713 drained = !pwq->nr_active && list_empty(&pwq->delayed_works);
2714 spin_unlock_irq(&pwq->pool->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002715
2716 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002717 continue;
2718
2719 if (++flush_cnt == 10 ||
2720 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
Valentin Ilie044c7822012-08-19 00:52:42 +03002721 pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
2722 wq->name, flush_cnt);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002723 goto reflush;
2724 }
2725
Tejun Heoe98d5b12013-03-12 11:29:57 -07002726 spin_lock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002727 if (!--wq->nr_drainers)
2728 wq->flags &= ~WQ_DRAINING;
Tejun Heoe98d5b12013-03-12 11:29:57 -07002729 spin_unlock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002730}
2731EXPORT_SYMBOL_GPL(drain_workqueue);
2732
Tejun Heo606a5022012-08-20 14:51:23 -07002733static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
Tejun Heobaf59022010-09-16 10:42:16 +02002734{
2735 struct worker *worker = NULL;
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002736 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002737 struct pool_workqueue *pwq;
Tejun Heobaf59022010-09-16 10:42:16 +02002738
2739 might_sleep();
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002740 pool = get_work_pool(work);
2741 if (!pool)
Tejun Heobaf59022010-09-16 10:42:16 +02002742 return false;
2743
Tejun Heod565ed62013-01-24 11:01:33 -08002744 spin_lock_irq(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08002745 /* see the comment in try_to_grab_pending() with the same code */
Tejun Heo112202d2013-02-13 19:29:12 -08002746 pwq = get_work_pwq(work);
2747 if (pwq) {
2748 if (unlikely(pwq->pool != pool))
Tejun Heobaf59022010-09-16 10:42:16 +02002749 goto already_gone;
Tejun Heo606a5022012-08-20 14:51:23 -07002750 } else {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002751 worker = find_worker_executing_work(pool, work);
Tejun Heobaf59022010-09-16 10:42:16 +02002752 if (!worker)
2753 goto already_gone;
Tejun Heo112202d2013-02-13 19:29:12 -08002754 pwq = worker->current_pwq;
Tejun Heo606a5022012-08-20 14:51:23 -07002755 }
Tejun Heobaf59022010-09-16 10:42:16 +02002756
Tejun Heo112202d2013-02-13 19:29:12 -08002757 insert_wq_barrier(pwq, barr, work, worker);
Tejun Heod565ed62013-01-24 11:01:33 -08002758 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002759
Tejun Heoe1594892011-01-09 23:32:15 +01002760 /*
2761 * If @max_active is 1 or rescuer is in use, flushing another work
2762 * item on the same workqueue may lead to deadlock. Make sure the
2763 * flusher is not running on the same workqueue by verifying write
2764 * access.
2765 */
Tejun Heo112202d2013-02-13 19:29:12 -08002766 if (pwq->wq->saved_max_active == 1 || pwq->wq->flags & WQ_RESCUER)
2767 lock_map_acquire(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002768 else
Tejun Heo112202d2013-02-13 19:29:12 -08002769 lock_map_acquire_read(&pwq->wq->lockdep_map);
2770 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002771
Tejun Heobaf59022010-09-16 10:42:16 +02002772 return true;
2773already_gone:
Tejun Heod565ed62013-01-24 11:01:33 -08002774 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002775 return false;
2776}
2777
Oleg Nesterovdb700892008-07-25 01:47:49 -07002778/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002779 * flush_work - wait for a work to finish executing the last queueing instance
2780 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002781 *
Tejun Heo606a5022012-08-20 14:51:23 -07002782 * Wait until @work has finished execution. @work is guaranteed to be idle
2783 * on return if it hasn't been requeued since flush started.
Tejun Heo401a8d02010-09-16 10:36:00 +02002784 *
2785 * RETURNS:
2786 * %true if flush_work() waited for the work to finish execution,
2787 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002788 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002789bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002790{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002791 struct wq_barrier barr;
2792
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002793 lock_map_acquire(&work->lockdep_map);
2794 lock_map_release(&work->lockdep_map);
2795
Tejun Heo606a5022012-08-20 14:51:23 -07002796 if (start_flush_work(work, &barr)) {
Tejun Heobaf59022010-09-16 10:42:16 +02002797 wait_for_completion(&barr.done);
2798 destroy_work_on_stack(&barr.work);
2799 return true;
Tejun Heo606a5022012-08-20 14:51:23 -07002800 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002801 return false;
Tejun Heo606a5022012-08-20 14:51:23 -07002802 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002803}
2804EXPORT_SYMBOL_GPL(flush_work);
2805
Tejun Heo36e227d2012-08-03 10:30:46 -07002806static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
Tejun Heo401a8d02010-09-16 10:36:00 +02002807{
Tejun Heobbb68df2012-08-03 10:30:46 -07002808 unsigned long flags;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002809 int ret;
2810
2811 do {
Tejun Heobbb68df2012-08-03 10:30:46 -07002812 ret = try_to_grab_pending(work, is_dwork, &flags);
2813 /*
2814 * If someone else is canceling, wait for the same event it
2815 * would be waiting for before retrying.
2816 */
2817 if (unlikely(ret == -ENOENT))
Tejun Heo606a5022012-08-20 14:51:23 -07002818 flush_work(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002819 } while (unlikely(ret < 0));
2820
Tejun Heobbb68df2012-08-03 10:30:46 -07002821 /* tell other tasks trying to grab @work to back off */
2822 mark_work_canceling(work);
2823 local_irq_restore(flags);
2824
Tejun Heo606a5022012-08-20 14:51:23 -07002825 flush_work(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002826 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002827 return ret;
2828}
2829
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002830/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002831 * cancel_work_sync - cancel a work and wait for it to finish
2832 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002833 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002834 * Cancel @work and wait for its execution to finish. This function
2835 * can be used even if the work re-queues itself or migrates to
2836 * another workqueue. On return from this function, @work is
2837 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002838 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002839 * cancel_work_sync(&delayed_work->work) must not be used for
2840 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002841 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002842 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002843 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002844 *
2845 * RETURNS:
2846 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002847 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002848bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002849{
Tejun Heo36e227d2012-08-03 10:30:46 -07002850 return __cancel_work_timer(work, false);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002851}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002852EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002853
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002854/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002855 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2856 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002857 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002858 * Delayed timer is cancelled and the pending work is queued for
2859 * immediate execution. Like flush_work(), this function only
2860 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002861 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002862 * RETURNS:
2863 * %true if flush_work() waited for the work to finish execution,
2864 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002865 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002866bool flush_delayed_work(struct delayed_work *dwork)
2867{
Tejun Heo8930cab2012-08-03 10:30:45 -07002868 local_irq_disable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002869 if (del_timer_sync(&dwork->timer))
Lai Jiangshan60c057b2013-02-06 18:04:53 -08002870 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Tejun Heo8930cab2012-08-03 10:30:45 -07002871 local_irq_enable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002872 return flush_work(&dwork->work);
2873}
2874EXPORT_SYMBOL(flush_delayed_work);
2875
2876/**
Tejun Heo57b30ae2012-08-21 13:18:24 -07002877 * cancel_delayed_work - cancel a delayed work
2878 * @dwork: delayed_work to cancel
Tejun Heo09383492010-09-16 10:48:29 +02002879 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002880 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2881 * and canceled; %false if wasn't pending. Note that the work callback
2882 * function may still be running on return, unless it returns %true and the
2883 * work doesn't re-arm itself. Explicitly flush or use
2884 * cancel_delayed_work_sync() to wait on it.
Tejun Heo09383492010-09-16 10:48:29 +02002885 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002886 * This function is safe to call from any context including IRQ handler.
Tejun Heo09383492010-09-16 10:48:29 +02002887 */
Tejun Heo57b30ae2012-08-21 13:18:24 -07002888bool cancel_delayed_work(struct delayed_work *dwork)
Tejun Heo09383492010-09-16 10:48:29 +02002889{
Tejun Heo57b30ae2012-08-21 13:18:24 -07002890 unsigned long flags;
2891 int ret;
2892
2893 do {
2894 ret = try_to_grab_pending(&dwork->work, true, &flags);
2895 } while (unlikely(ret == -EAGAIN));
2896
2897 if (unlikely(ret < 0))
2898 return false;
2899
Tejun Heo7c3eed52013-01-24 11:01:33 -08002900 set_work_pool_and_clear_pending(&dwork->work,
2901 get_work_pool_id(&dwork->work));
Tejun Heo57b30ae2012-08-21 13:18:24 -07002902 local_irq_restore(flags);
Dan Magenheimerc0158ca2012-10-18 16:31:37 -07002903 return ret;
Tejun Heo09383492010-09-16 10:48:29 +02002904}
Tejun Heo57b30ae2012-08-21 13:18:24 -07002905EXPORT_SYMBOL(cancel_delayed_work);
Tejun Heo09383492010-09-16 10:48:29 +02002906
2907/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002908 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2909 * @dwork: the delayed work cancel
2910 *
2911 * This is cancel_work_sync() for delayed works.
2912 *
2913 * RETURNS:
2914 * %true if @dwork was pending, %false otherwise.
2915 */
2916bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002917{
Tejun Heo36e227d2012-08-03 10:30:46 -07002918 return __cancel_work_timer(&dwork->work, true);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002919}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002920EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002922/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07002923 * schedule_work_on - put work task on a specific cpu
2924 * @cpu: cpu to put the work task on
2925 * @work: job to be done
2926 *
2927 * This puts a job on a specific cpu
2928 */
Tejun Heod4283e92012-08-03 10:30:44 -07002929bool schedule_work_on(int cpu, struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07002930{
Tejun Heod320c032010-06-29 10:07:14 +02002931 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002932}
2933EXPORT_SYMBOL(schedule_work_on);
2934
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002935/**
Dave Jonesae90dd52006-06-30 01:40:45 -04002936 * schedule_work - put work task in global workqueue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 * @work: job to be done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 *
Tejun Heod4283e92012-08-03 10:30:44 -07002939 * Returns %false if @work was already on the kernel-global workqueue and
2940 * %true otherwise.
David Howells52bad642006-11-22 14:54:01 +00002941 *
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002942 * This puts a job in the kernel-global workqueue if it was not already
2943 * queued and leaves it in the same position on the kernel-global
2944 * workqueue otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 */
Tejun Heod4283e92012-08-03 10:30:44 -07002946bool schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947{
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002948 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949}
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002950EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002952/**
2953 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
2954 * @cpu: cpu to use
2955 * @dwork: job to be done
2956 * @delay: number of jiffies to wait
2957 *
2958 * After waiting for a given time this puts a job in the kernel-global
2959 * workqueue on the specified CPU.
2960 */
Tejun Heod4283e92012-08-03 10:30:44 -07002961bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
2962 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
Tejun Heod320c032010-06-29 10:07:14 +02002964 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965}
Dave Jonesae90dd52006-06-30 01:40:45 -04002966EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
Andrew Mortonb6136772006-06-25 05:47:49 -07002968/**
Tejun Heo0a13c002012-08-03 10:30:44 -07002969 * schedule_delayed_work - put work task in global workqueue after delay
2970 * @dwork: job to be done
2971 * @delay: number of jiffies to wait or 0 for immediate execution
2972 *
2973 * After waiting for a given time this puts a job in the kernel-global
2974 * workqueue.
2975 */
Tejun Heod4283e92012-08-03 10:30:44 -07002976bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
Tejun Heo0a13c002012-08-03 10:30:44 -07002977{
2978 return queue_delayed_work(system_wq, dwork, delay);
2979}
2980EXPORT_SYMBOL(schedule_delayed_work);
2981
2982/**
Tejun Heo31ddd872010-10-19 11:14:49 +02002983 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07002984 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07002985 *
Tejun Heo31ddd872010-10-19 11:14:49 +02002986 * schedule_on_each_cpu() executes @func on each online CPU using the
2987 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07002988 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02002989 *
2990 * RETURNS:
2991 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07002992 */
David Howells65f27f32006-11-22 14:55:48 +00002993int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002994{
2995 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02002996 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08002997
Andrew Mortonb6136772006-06-25 05:47:49 -07002998 works = alloc_percpu(struct work_struct);
2999 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003000 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07003001
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003002 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08003003
Christoph Lameter15316ba2006-01-08 01:00:43 -08003004 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01003005 struct work_struct *work = per_cpu_ptr(works, cpu);
3006
3007 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003008 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003009 }
Tejun Heo93981802009-11-17 14:06:20 -08003010
3011 for_each_online_cpu(cpu)
3012 flush_work(per_cpu_ptr(works, cpu));
3013
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003014 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003015 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003016 return 0;
3017}
3018
Alan Sterneef6a7d2010-02-12 17:39:21 +09003019/**
3020 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3021 *
3022 * Forces execution of the kernel-global workqueue and blocks until its
3023 * completion.
3024 *
3025 * Think twice before calling this function! It's very easy to get into
3026 * trouble if you don't take great care. Either of the following situations
3027 * will lead to deadlock:
3028 *
3029 * One of the work items currently on the workqueue needs to acquire
3030 * a lock held by your code or its caller.
3031 *
3032 * Your code is running in the context of a work routine.
3033 *
3034 * They will be detected by lockdep when they occur, but the first might not
3035 * occur very often. It depends on what work items are on the workqueue and
3036 * what locks they need, which you have no control over.
3037 *
3038 * In most situations flushing the entire workqueue is overkill; you merely
3039 * need to know that a particular work item isn't queued and isn't running.
3040 * In such cases you should use cancel_delayed_work_sync() or
3041 * cancel_work_sync() instead.
3042 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043void flush_scheduled_work(void)
3044{
Tejun Heod320c032010-06-29 10:07:14 +02003045 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046}
Dave Jonesae90dd52006-06-30 01:40:45 -04003047EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
3049/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003050 * execute_in_process_context - reliably execute the routine with user context
3051 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003052 * @ew: guaranteed storage for the execute work structure (must
3053 * be available when the work executes)
3054 *
3055 * Executes the function immediately if process context is available,
3056 * otherwise schedules the function for delayed execution.
3057 *
3058 * Returns: 0 - function was executed
3059 * 1 - function was scheduled for execution
3060 */
David Howells65f27f32006-11-22 14:55:48 +00003061int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003062{
3063 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003064 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003065 return 0;
3066 }
3067
David Howells65f27f32006-11-22 14:55:48 +00003068 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003069 schedule_work(&ew->work);
3070
3071 return 1;
3072}
3073EXPORT_SYMBOL_GPL(execute_in_process_context);
3074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075int keventd_up(void)
3076{
Tejun Heod320c032010-06-29 10:07:14 +02003077 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078}
3079
Tejun Heo30cdf242013-03-12 11:29:57 -07003080static int alloc_and_link_pwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003082 bool highpri = wq->flags & WQ_HIGHPRI;
Tejun Heo30cdf242013-03-12 11:29:57 -07003083 int cpu;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003084
Tejun Heo30cdf242013-03-12 11:29:57 -07003085 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo420c0dd2013-03-12 11:29:59 -07003086 wq->cpu_pwqs = alloc_percpu(struct pool_workqueue);
3087 if (!wq->cpu_pwqs)
Tejun Heo30cdf242013-03-12 11:29:57 -07003088 return -ENOMEM;
3089
3090 for_each_possible_cpu(cpu) {
3091 struct pool_workqueue *pwq = get_pwq(cpu, wq);
3092
Tejun Heo49e3cf42013-03-12 11:29:58 -07003093 pwq->pool = get_std_worker_pool(cpu, highpri);
Tejun Heo30cdf242013-03-12 11:29:57 -07003094 list_add_tail(&pwq->pwqs_node, &wq->pwqs);
3095 }
3096 } else {
3097 struct pool_workqueue *pwq;
3098
3099 pwq = kmem_cache_zalloc(pwq_cache, GFP_KERNEL);
3100 if (!pwq)
3101 return -ENOMEM;
3102
Tejun Heo49e3cf42013-03-12 11:29:58 -07003103 pwq->pool = get_std_worker_pool(WORK_CPU_UNBOUND, highpri);
Tejun Heo30cdf242013-03-12 11:29:57 -07003104 list_add_tail(&pwq->pwqs_node, &wq->pwqs);
3105 }
3106
3107 return 0;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003108}
3109
Tejun Heo112202d2013-02-13 19:29:12 -08003110static void free_pwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003111{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003112 if (!(wq->flags & WQ_UNBOUND))
Tejun Heo420c0dd2013-03-12 11:29:59 -07003113 free_percpu(wq->cpu_pwqs);
3114 else if (!list_empty(&wq->pwqs))
3115 kmem_cache_free(pwq_cache, list_first_entry(&wq->pwqs,
3116 struct pool_workqueue, pwqs_node));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003117}
3118
Tejun Heof3421792010-07-02 10:03:51 +02003119static int wq_clamp_max_active(int max_active, unsigned int flags,
3120 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003121{
Tejun Heof3421792010-07-02 10:03:51 +02003122 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3123
3124 if (max_active < 1 || max_active > lim)
Valentin Ilie044c7822012-08-19 00:52:42 +03003125 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3126 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003127
Tejun Heof3421792010-07-02 10:03:51 +02003128 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003129}
3130
Tejun Heob196be82012-01-10 15:11:35 -08003131struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003132 unsigned int flags,
3133 int max_active,
3134 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003135 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003136{
Tejun Heob196be82012-01-10 15:11:35 -08003137 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003138 struct workqueue_struct *wq;
Tejun Heo49e3cf42013-03-12 11:29:58 -07003139 struct pool_workqueue *pwq;
Tejun Heob196be82012-01-10 15:11:35 -08003140 size_t namelen;
3141
3142 /* determine namelen, allocate wq and format name */
3143 va_start(args, lock_name);
3144 va_copy(args1, args);
3145 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3146
3147 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3148 if (!wq)
3149 goto err;
3150
3151 vsnprintf(wq->name, namelen, fmt, args1);
3152 va_end(args);
3153 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003154
Tejun Heof3421792010-07-02 10:03:51 +02003155 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02003156 * Workqueues which may be used during memory reclaim should
3157 * have a rescuer to guarantee forward progress.
3158 */
3159 if (flags & WQ_MEM_RECLAIM)
3160 flags |= WQ_RESCUER;
3161
Tejun Heod320c032010-06-29 10:07:14 +02003162 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003163 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003164
Tejun Heob196be82012-01-10 15:11:35 -08003165 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003166 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003167 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003168 mutex_init(&wq->flush_mutex);
Tejun Heo112202d2013-02-13 19:29:12 -08003169 atomic_set(&wq->nr_pwqs_to_flush, 0);
Tejun Heo30cdf242013-03-12 11:29:57 -07003170 INIT_LIST_HEAD(&wq->pwqs);
Tejun Heo73f53c42010-06-29 10:07:11 +02003171 INIT_LIST_HEAD(&wq->flusher_queue);
3172 INIT_LIST_HEAD(&wq->flusher_overflow);
Tejun Heo493a1722013-03-12 11:29:59 -07003173 INIT_LIST_HEAD(&wq->maydays);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003174
Johannes Bergeb13ba82008-01-16 09:51:58 +01003175 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003176 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003177
Tejun Heo30cdf242013-03-12 11:29:57 -07003178 if (alloc_and_link_pwqs(wq) < 0)
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003179 goto err;
3180
Tejun Heo49e3cf42013-03-12 11:29:58 -07003181 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08003182 BUG_ON((unsigned long)pwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo112202d2013-02-13 19:29:12 -08003183 pwq->wq = wq;
3184 pwq->flush_color = -1;
3185 pwq->max_active = max_active;
3186 INIT_LIST_HEAD(&pwq->delayed_works);
Tejun Heo493a1722013-03-12 11:29:59 -07003187 INIT_LIST_HEAD(&pwq->mayday_node);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003188 }
3189
Tejun Heoe22bee72010-06-29 10:07:14 +02003190 if (flags & WQ_RESCUER) {
3191 struct worker *rescuer;
3192
Tejun Heoe22bee72010-06-29 10:07:14 +02003193 wq->rescuer = rescuer = alloc_worker();
3194 if (!rescuer)
3195 goto err;
3196
Tejun Heo111c2252013-01-17 17:16:24 -08003197 rescuer->rescue_wq = wq;
3198 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
Tejun Heob196be82012-01-10 15:11:35 -08003199 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003200 if (IS_ERR(rescuer->task))
3201 goto err;
3202
Tejun Heoe22bee72010-06-29 10:07:14 +02003203 rescuer->task->flags |= PF_THREAD_BOUND;
3204 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003205 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003206
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003207 /*
3208 * workqueue_lock protects global freeze state and workqueues
3209 * list. Grab it, set max_active accordingly and add the new
3210 * workqueue to workqueues list.
3211 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07003212 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003213
Tejun Heo58a69cb2011-02-16 09:25:31 +01003214 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heo49e3cf42013-03-12 11:29:58 -07003215 for_each_pwq(pwq, wq)
3216 pwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003217
Tejun Heo15376632010-06-29 10:07:11 +02003218 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003219
Tejun Heoe98d5b12013-03-12 11:29:57 -07003220 spin_unlock_irq(&workqueue_lock);
Tejun Heo15376632010-06-29 10:07:11 +02003221
Oleg Nesterov3af244332007-05-09 02:34:09 -07003222 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003223err:
3224 if (wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08003225 free_pwqs(wq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003226 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003227 kfree(wq);
3228 }
3229 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003230}
Tejun Heod320c032010-06-29 10:07:14 +02003231EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003232
3233/**
3234 * destroy_workqueue - safely terminate a workqueue
3235 * @wq: target workqueue
3236 *
3237 * Safely destroy a workqueue. All work currently pending will be done first.
3238 */
3239void destroy_workqueue(struct workqueue_struct *wq)
3240{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003241 struct pool_workqueue *pwq;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003242
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003243 /* drain it before proceeding with destruction */
3244 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003245
Tejun Heo6183c002013-03-12 11:29:57 -07003246 /* sanity checks */
Tejun Heo49e3cf42013-03-12 11:29:58 -07003247 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07003248 int i;
3249
3250 for (i = 0; i < WORK_NR_COLORS; i++)
3251 if (WARN_ON(pwq->nr_in_flight[i]))
3252 return;
3253 if (WARN_ON(pwq->nr_active) ||
3254 WARN_ON(!list_empty(&pwq->delayed_works)))
3255 return;
3256 }
3257
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003258 /*
3259 * wq list is used to freeze wq, remove from list after
3260 * flushing is complete in case freeze races us.
3261 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07003262 spin_lock_irq(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003263 list_del(&wq->list);
Tejun Heoe98d5b12013-03-12 11:29:57 -07003264 spin_unlock_irq(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003265
Tejun Heoe22bee72010-06-29 10:07:14 +02003266 if (wq->flags & WQ_RESCUER) {
3267 kthread_stop(wq->rescuer->task);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003268 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003269 }
3270
Tejun Heo112202d2013-02-13 19:29:12 -08003271 free_pwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003272 kfree(wq);
3273}
3274EXPORT_SYMBOL_GPL(destroy_workqueue);
3275
Tejun Heodcd989c2010-06-29 10:07:14 +02003276/**
Tejun Heo112202d2013-02-13 19:29:12 -08003277 * pwq_set_max_active - adjust max_active of a pwq
3278 * @pwq: target pool_workqueue
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003279 * @max_active: new max_active value.
3280 *
Tejun Heo112202d2013-02-13 19:29:12 -08003281 * Set @pwq->max_active to @max_active and activate delayed works if
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003282 * increased.
3283 *
3284 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003285 * spin_lock_irq(pool->lock).
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003286 */
Tejun Heo112202d2013-02-13 19:29:12 -08003287static void pwq_set_max_active(struct pool_workqueue *pwq, int max_active)
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003288{
Tejun Heo112202d2013-02-13 19:29:12 -08003289 pwq->max_active = max_active;
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003290
Tejun Heo112202d2013-02-13 19:29:12 -08003291 while (!list_empty(&pwq->delayed_works) &&
3292 pwq->nr_active < pwq->max_active)
3293 pwq_activate_first_delayed(pwq);
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003294}
3295
3296/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003297 * workqueue_set_max_active - adjust max_active of a workqueue
3298 * @wq: target workqueue
3299 * @max_active: new max_active value.
3300 *
3301 * Set max_active of @wq to @max_active.
3302 *
3303 * CONTEXT:
3304 * Don't call from IRQ context.
3305 */
3306void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3307{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003308 struct pool_workqueue *pwq;
Tejun Heodcd989c2010-06-29 10:07:14 +02003309
Tejun Heof3421792010-07-02 10:03:51 +02003310 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003311
Tejun Heoe98d5b12013-03-12 11:29:57 -07003312 spin_lock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003313
3314 wq->saved_max_active = max_active;
3315
Tejun Heo49e3cf42013-03-12 11:29:58 -07003316 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08003317 struct worker_pool *pool = pwq->pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02003318
Tejun Heoe98d5b12013-03-12 11:29:57 -07003319 spin_lock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003320
Tejun Heo58a69cb2011-02-16 09:25:31 +01003321 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heo35b6bb62013-01-24 11:01:33 -08003322 !(pool->flags & POOL_FREEZING))
Tejun Heo112202d2013-02-13 19:29:12 -08003323 pwq_set_max_active(pwq, max_active);
Tejun Heodcd989c2010-06-29 10:07:14 +02003324
Tejun Heoe98d5b12013-03-12 11:29:57 -07003325 spin_unlock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003326 }
3327
Tejun Heoe98d5b12013-03-12 11:29:57 -07003328 spin_unlock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003329}
3330EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3331
3332/**
3333 * workqueue_congested - test whether a workqueue is congested
3334 * @cpu: CPU in question
3335 * @wq: target workqueue
3336 *
3337 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3338 * no synchronization around this function and the test result is
3339 * unreliable and only useful as advisory hints or for debugging.
3340 *
3341 * RETURNS:
3342 * %true if congested, %false otherwise.
3343 */
Tejun Heod84ff052013-03-12 11:29:59 -07003344bool workqueue_congested(int cpu, struct workqueue_struct *wq)
Tejun Heodcd989c2010-06-29 10:07:14 +02003345{
Tejun Heo112202d2013-02-13 19:29:12 -08003346 struct pool_workqueue *pwq = get_pwq(cpu, wq);
Tejun Heodcd989c2010-06-29 10:07:14 +02003347
Tejun Heo112202d2013-02-13 19:29:12 -08003348 return !list_empty(&pwq->delayed_works);
Tejun Heodcd989c2010-06-29 10:07:14 +02003349}
3350EXPORT_SYMBOL_GPL(workqueue_congested);
3351
3352/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003353 * work_busy - test whether a work is currently pending or running
3354 * @work: the work to be tested
3355 *
3356 * Test whether @work is currently pending or running. There is no
3357 * synchronization around this function and the test result is
3358 * unreliable and only useful as advisory hints or for debugging.
Tejun Heodcd989c2010-06-29 10:07:14 +02003359 *
3360 * RETURNS:
3361 * OR'd bitmask of WORK_BUSY_* bits.
3362 */
3363unsigned int work_busy(struct work_struct *work)
3364{
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003365 struct worker_pool *pool = get_work_pool(work);
Tejun Heodcd989c2010-06-29 10:07:14 +02003366 unsigned long flags;
3367 unsigned int ret = 0;
3368
Tejun Heodcd989c2010-06-29 10:07:14 +02003369 if (work_pending(work))
3370 ret |= WORK_BUSY_PENDING;
Tejun Heodcd989c2010-06-29 10:07:14 +02003371
Lai Jiangshan038366c2013-02-06 18:04:53 -08003372 if (pool) {
3373 spin_lock_irqsave(&pool->lock, flags);
3374 if (find_worker_executing_work(pool, work))
3375 ret |= WORK_BUSY_RUNNING;
3376 spin_unlock_irqrestore(&pool->lock, flags);
3377 }
Tejun Heodcd989c2010-06-29 10:07:14 +02003378
3379 return ret;
3380}
3381EXPORT_SYMBOL_GPL(work_busy);
3382
Tejun Heodb7bccf2010-06-29 10:07:12 +02003383/*
3384 * CPU hotplug.
3385 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003386 * There are two challenges in supporting CPU hotplug. Firstly, there
Tejun Heo112202d2013-02-13 19:29:12 -08003387 * are a lot of assumptions on strong associations among work, pwq and
Tejun Heo706026c2013-01-24 11:01:34 -08003388 * pool which make migrating pending and scheduled works very
Tejun Heoe22bee72010-06-29 10:07:14 +02003389 * difficult to implement without impacting hot paths. Secondly,
Tejun Heo94cf58b2013-01-24 11:01:33 -08003390 * worker pools serve mix of short, long and very long running works making
Tejun Heoe22bee72010-06-29 10:07:14 +02003391 * blocked draining impractical.
3392 *
Tejun Heo24647572013-01-24 11:01:33 -08003393 * This is solved by allowing the pools to be disassociated from the CPU
Tejun Heo628c78e2012-07-17 12:39:27 -07003394 * running as an unbound one and allowing it to be reattached later if the
3395 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003396 */
3397
Tejun Heo706026c2013-01-24 11:01:34 -08003398static void wq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003399{
Tejun Heo38db41d2013-01-24 11:01:34 -08003400 int cpu = smp_processor_id();
Tejun Heo4ce62e92012-07-13 22:16:44 -07003401 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003402 struct worker *worker;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003403 int i;
3404
Tejun Heo38db41d2013-01-24 11:01:34 -08003405 for_each_std_worker_pool(pool, cpu) {
Tejun Heo6183c002013-03-12 11:29:57 -07003406 WARN_ON_ONCE(cpu != smp_processor_id());
Tejun Heo94cf58b2013-01-24 11:01:33 -08003407
3408 mutex_lock(&pool->assoc_mutex);
3409 spin_lock_irq(&pool->lock);
3410
3411 /*
3412 * We've claimed all manager positions. Make all workers
3413 * unbound and set DISASSOCIATED. Before this, all workers
3414 * except for the ones which are still executing works from
3415 * before the last CPU down must be on the cpu. After
3416 * this, they may become diasporas.
3417 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003418 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003419 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003420
Sasha Levinb67bfe02013-02-27 17:06:00 -08003421 for_each_busy_worker(worker, i, pool)
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003422 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003423
Tejun Heo24647572013-01-24 11:01:33 -08003424 pool->flags |= POOL_DISASSOCIATED;
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003425
Tejun Heo94cf58b2013-01-24 11:01:33 -08003426 spin_unlock_irq(&pool->lock);
3427 mutex_unlock(&pool->assoc_mutex);
3428 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003429
3430 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07003431 * Call schedule() so that we cross rq->lock and thus can guarantee
3432 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3433 * as scheduler callbacks may be invoked from other cpus.
3434 */
3435 schedule();
3436
3437 /*
3438 * Sched callbacks are disabled now. Zap nr_running. After this,
3439 * nr_running stays zero and need_more_worker() and keep_working()
Tejun Heo38db41d2013-01-24 11:01:34 -08003440 * are always true as long as the worklist is not empty. Pools on
3441 * @cpu now behave as unbound (in terms of concurrency management)
3442 * pools which are served by workers tied to the CPU.
Tejun Heo628c78e2012-07-17 12:39:27 -07003443 *
3444 * On return from this function, the current worker would trigger
3445 * unbound chain execution of pending work items if other workers
3446 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02003447 */
Tejun Heo38db41d2013-01-24 11:01:34 -08003448 for_each_std_worker_pool(pool, cpu)
Tejun Heoe19e3972013-01-24 11:39:44 -08003449 atomic_set(&pool->nr_running, 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003450}
3451
Tejun Heo8db25e72012-07-17 12:39:28 -07003452/*
3453 * Workqueues should be brought up before normal priority CPU notifiers.
3454 * This will be registered high priority CPU notifier.
3455 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003456static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
Tejun Heo8db25e72012-07-17 12:39:28 -07003457 unsigned long action,
3458 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003459{
Tejun Heod84ff052013-03-12 11:29:59 -07003460 int cpu = (unsigned long)hcpu;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003461 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
Tejun Heo8db25e72012-07-17 12:39:28 -07003463 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 case CPU_UP_PREPARE:
Tejun Heo38db41d2013-01-24 11:01:34 -08003465 for_each_std_worker_pool(pool, cpu) {
Tejun Heo3ce63372012-07-17 12:39:27 -07003466 struct worker *worker;
3467
3468 if (pool->nr_workers)
3469 continue;
3470
3471 worker = create_worker(pool);
3472 if (!worker)
3473 return NOTIFY_BAD;
3474
Tejun Heod565ed62013-01-24 11:01:33 -08003475 spin_lock_irq(&pool->lock);
Tejun Heo3ce63372012-07-17 12:39:27 -07003476 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003477 spin_unlock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003479 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003480
Tejun Heo65758202012-07-17 12:39:26 -07003481 case CPU_DOWN_FAILED:
3482 case CPU_ONLINE:
Tejun Heo38db41d2013-01-24 11:01:34 -08003483 for_each_std_worker_pool(pool, cpu) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08003484 mutex_lock(&pool->assoc_mutex);
3485 spin_lock_irq(&pool->lock);
3486
Tejun Heo24647572013-01-24 11:01:33 -08003487 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heo94cf58b2013-01-24 11:01:33 -08003488 rebind_workers(pool);
3489
3490 spin_unlock_irq(&pool->lock);
3491 mutex_unlock(&pool->assoc_mutex);
3492 }
Tejun Heo8db25e72012-07-17 12:39:28 -07003493 break;
Tejun Heo65758202012-07-17 12:39:26 -07003494 }
3495 return NOTIFY_OK;
3496}
3497
3498/*
3499 * Workqueues should be brought down after normal priority CPU notifiers.
3500 * This will be registered as low priority CPU notifier.
3501 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003502static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
Tejun Heo65758202012-07-17 12:39:26 -07003503 unsigned long action,
3504 void *hcpu)
3505{
Tejun Heod84ff052013-03-12 11:29:59 -07003506 int cpu = (unsigned long)hcpu;
Tejun Heo8db25e72012-07-17 12:39:28 -07003507 struct work_struct unbind_work;
3508
Tejun Heo65758202012-07-17 12:39:26 -07003509 switch (action & ~CPU_TASKS_FROZEN) {
3510 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003511 /* unbinding should happen on the local CPU */
Tejun Heo706026c2013-01-24 11:01:34 -08003512 INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
Joonsoo Kim7635d2f2012-08-15 23:25:41 +09003513 queue_work_on(cpu, system_highpri_wq, &unbind_work);
Tejun Heo8db25e72012-07-17 12:39:28 -07003514 flush_work(&unbind_work);
3515 break;
Tejun Heo65758202012-07-17 12:39:26 -07003516 }
3517 return NOTIFY_OK;
3518}
3519
Rusty Russell2d3854a2008-11-05 13:39:10 +11003520#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003521
Rusty Russell2d3854a2008-11-05 13:39:10 +11003522struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07003523 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003524 long (*fn)(void *);
3525 void *arg;
3526 long ret;
3527};
3528
Tejun Heoed48ece2012-09-18 12:48:43 -07003529static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003530{
Tejun Heoed48ece2012-09-18 12:48:43 -07003531 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
3532
Rusty Russell2d3854a2008-11-05 13:39:10 +11003533 wfc->ret = wfc->fn(wfc->arg);
3534}
3535
3536/**
3537 * work_on_cpu - run a function in user context on a particular cpu
3538 * @cpu: the cpu to run on
3539 * @fn: the function to run
3540 * @arg: the function arg
3541 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003542 * This will return the value @fn returns.
3543 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b440032009-04-09 09:50:37 -06003544 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003545 */
Tejun Heod84ff052013-03-12 11:29:59 -07003546long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003547{
Tejun Heoed48ece2012-09-18 12:48:43 -07003548 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003549
Tejun Heoed48ece2012-09-18 12:48:43 -07003550 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
3551 schedule_work_on(cpu, &wfc.work);
3552 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003553 return wfc.ret;
3554}
3555EXPORT_SYMBOL_GPL(work_on_cpu);
3556#endif /* CONFIG_SMP */
3557
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003558#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303559
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003560/**
3561 * freeze_workqueues_begin - begin freezing workqueues
3562 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003563 * Start freezing workqueues. After this function returns, all freezable
3564 * workqueues will queue new works to their frozen_works list instead of
Tejun Heo706026c2013-01-24 11:01:34 -08003565 * pool->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003566 *
3567 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003568 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003569 */
3570void freeze_workqueues_begin(void)
3571{
Tejun Heo17116962013-03-12 11:29:58 -07003572 struct worker_pool *pool;
Tejun Heo24b8a842013-03-12 11:29:58 -07003573 struct workqueue_struct *wq;
3574 struct pool_workqueue *pwq;
Tejun Heo17116962013-03-12 11:29:58 -07003575 int id;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003576
Tejun Heoe98d5b12013-03-12 11:29:57 -07003577 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003578
Tejun Heo6183c002013-03-12 11:29:57 -07003579 WARN_ON_ONCE(workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003580 workqueue_freezing = true;
3581
Tejun Heo24b8a842013-03-12 11:29:58 -07003582 /* set FREEZING */
Tejun Heo17116962013-03-12 11:29:58 -07003583 for_each_pool(pool, id) {
Tejun Heo17116962013-03-12 11:29:58 -07003584 spin_lock(&pool->lock);
Tejun Heo17116962013-03-12 11:29:58 -07003585 WARN_ON_ONCE(pool->flags & POOL_FREEZING);
3586 pool->flags |= POOL_FREEZING;
Tejun Heo17116962013-03-12 11:29:58 -07003587 spin_unlock(&pool->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003588 }
3589
Tejun Heo24b8a842013-03-12 11:29:58 -07003590 /* suppress further executions by setting max_active to zero */
3591 list_for_each_entry(wq, &workqueues, list) {
3592 if (!(wq->flags & WQ_FREEZABLE))
3593 continue;
3594
3595 for_each_pwq(pwq, wq) {
3596 spin_lock(&pwq->pool->lock);
3597 pwq->max_active = 0;
3598 spin_unlock(&pwq->pool->lock);
3599 }
3600 }
3601
Tejun Heoe98d5b12013-03-12 11:29:57 -07003602 spin_unlock_irq(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003604
3605/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003606 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003607 *
3608 * Check whether freezing is complete. This function must be called
3609 * between freeze_workqueues_begin() and thaw_workqueues().
3610 *
3611 * CONTEXT:
3612 * Grabs and releases workqueue_lock.
3613 *
3614 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003615 * %true if some freezable workqueues are still busy. %false if freezing
3616 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003617 */
3618bool freeze_workqueues_busy(void)
3619{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003620 bool busy = false;
Tejun Heo24b8a842013-03-12 11:29:58 -07003621 struct workqueue_struct *wq;
3622 struct pool_workqueue *pwq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003623
Tejun Heoe98d5b12013-03-12 11:29:57 -07003624 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003625
Tejun Heo6183c002013-03-12 11:29:57 -07003626 WARN_ON_ONCE(!workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003627
Tejun Heo24b8a842013-03-12 11:29:58 -07003628 list_for_each_entry(wq, &workqueues, list) {
3629 if (!(wq->flags & WQ_FREEZABLE))
3630 continue;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003631 /*
3632 * nr_active is monotonically decreasing. It's safe
3633 * to peek without lock.
3634 */
Tejun Heo24b8a842013-03-12 11:29:58 -07003635 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07003636 WARN_ON_ONCE(pwq->nr_active < 0);
Tejun Heo112202d2013-02-13 19:29:12 -08003637 if (pwq->nr_active) {
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003638 busy = true;
3639 goto out_unlock;
3640 }
3641 }
3642 }
3643out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07003644 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003645 return busy;
3646}
3647
3648/**
3649 * thaw_workqueues - thaw workqueues
3650 *
3651 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo706026c2013-01-24 11:01:34 -08003652 * frozen works are transferred to their respective pool worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003653 *
3654 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003655 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003656 */
3657void thaw_workqueues(void)
3658{
Tejun Heo24b8a842013-03-12 11:29:58 -07003659 struct workqueue_struct *wq;
3660 struct pool_workqueue *pwq;
3661 struct worker_pool *pool;
3662 int id;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003663
Tejun Heoe98d5b12013-03-12 11:29:57 -07003664 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003665
3666 if (!workqueue_freezing)
3667 goto out_unlock;
3668
Tejun Heo24b8a842013-03-12 11:29:58 -07003669 /* clear FREEZING */
3670 for_each_pool(pool, id) {
3671 spin_lock(&pool->lock);
3672 WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
3673 pool->flags &= ~POOL_FREEZING;
3674 spin_unlock(&pool->lock);
3675 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003676
Tejun Heo24b8a842013-03-12 11:29:58 -07003677 /* restore max_active and repopulate worklist */
3678 list_for_each_entry(wq, &workqueues, list) {
3679 if (!(wq->flags & WQ_FREEZABLE))
3680 continue;
Tejun Heod565ed62013-01-24 11:01:33 -08003681
Tejun Heo24b8a842013-03-12 11:29:58 -07003682 for_each_pwq(pwq, wq) {
3683 spin_lock(&pwq->pool->lock);
3684 pwq_set_max_active(pwq, wq->saved_max_active);
3685 spin_unlock(&pwq->pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08003686 }
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003687 }
3688
Tejun Heo24b8a842013-03-12 11:29:58 -07003689 /* kick workers */
3690 for_each_pool(pool, id) {
3691 spin_lock(&pool->lock);
3692 wake_up_worker(pool);
3693 spin_unlock(&pool->lock);
3694 }
3695
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003696 workqueue_freezing = false;
3697out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07003698 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003699}
3700#endif /* CONFIG_FREEZER */
3701
Suresh Siddha6ee05782010-07-30 14:57:37 -07003702static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703{
Tejun Heod84ff052013-03-12 11:29:59 -07003704 int cpu;
Tejun Heoc34056a2010-06-29 10:07:11 +02003705
Tejun Heo7c3eed52013-01-24 11:01:33 -08003706 /* make sure we have enough bits for OFFQ pool ID */
3707 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) <
Lai Jiangshan6be19582013-02-06 18:04:53 -08003708 WORK_CPU_END * NR_STD_WORKER_POOLS);
Tejun Heob5490072012-08-03 10:30:46 -07003709
Tejun Heoe904e6c2013-03-12 11:29:57 -07003710 WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long));
3711
3712 pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);
3713
Tejun Heo65758202012-07-17 12:39:26 -07003714 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
Lai Jiangshana5b4e572012-09-18 09:59:23 -07003715 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003716
Tejun Heo706026c2013-01-24 11:01:34 -08003717 /* initialize CPU pools */
3718 for_each_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003719 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003720
Tejun Heo38db41d2013-01-24 11:01:34 -08003721 for_each_std_worker_pool(pool, cpu) {
Tejun Heod565ed62013-01-24 11:01:33 -08003722 spin_lock_init(&pool->lock);
Tejun Heoec22ca52013-01-24 11:01:33 -08003723 pool->cpu = cpu;
Tejun Heo24647572013-01-24 11:01:33 -08003724 pool->flags |= POOL_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003725 INIT_LIST_HEAD(&pool->worklist);
3726 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003727 hash_init(pool->busy_hash);
Tejun Heoe22bee72010-06-29 10:07:14 +02003728
Tejun Heo4ce62e92012-07-13 22:16:44 -07003729 init_timer_deferrable(&pool->idle_timer);
3730 pool->idle_timer.function = idle_worker_timeout;
3731 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003732
Tejun Heo706026c2013-01-24 11:01:34 -08003733 setup_timer(&pool->mayday_timer, pool_mayday_timeout,
Tejun Heo4ce62e92012-07-13 22:16:44 -07003734 (unsigned long)pool);
3735
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003736 mutex_init(&pool->assoc_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003737 ida_init(&pool->worker_ida);
Tejun Heo9daf9e62013-01-24 11:01:33 -08003738
3739 /* alloc pool ID */
3740 BUG_ON(worker_pool_assign_id(pool));
Tejun Heo4ce62e92012-07-13 22:16:44 -07003741 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003742 }
3743
Tejun Heoe22bee72010-06-29 10:07:14 +02003744 /* create the initial worker */
Tejun Heo706026c2013-01-24 11:01:34 -08003745 for_each_online_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003746 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003747
Tejun Heo38db41d2013-01-24 11:01:34 -08003748 for_each_std_worker_pool(pool, cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003749 struct worker *worker;
3750
Tejun Heo24647572013-01-24 11:01:33 -08003751 if (cpu != WORK_CPU_UNBOUND)
3752 pool->flags &= ~POOL_DISASSOCIATED;
3753
Tejun Heobc2ae0f2012-07-17 12:39:27 -07003754 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003755 BUG_ON(!worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003756 spin_lock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003757 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003758 spin_unlock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003759 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003760 }
3761
Tejun Heod320c032010-06-29 10:07:14 +02003762 system_wq = alloc_workqueue("events", 0, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003763 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
Tejun Heod320c032010-06-29 10:07:14 +02003764 system_long_wq = alloc_workqueue("events_long", 0, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003765 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3766 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003767 system_freezable_wq = alloc_workqueue("events_freezable",
3768 WQ_FREEZABLE, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003769 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
Tejun Heoae930e02012-08-20 14:51:23 -07003770 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003771 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003773early_initcall(init_workqueues);