blob: cecd4ffe2c40c20ec554da3e0058dcb355658469 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heoc54fce62010-09-10 16:51:36 +02002 * kernel/workqueue.c - generic async execution with shared worker pool
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Tejun Heoc54fce62010-09-10 16:51:36 +02004 * Copyright (C) 2002 Ingo Molnar
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Tejun Heoc54fce62010-09-10 16:51:36 +02006 * Derived from the taskqueue/keventd code by:
7 * David Woodhouse <dwmw2@infradead.org>
8 * Andrew Morton
9 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
10 * Theodore Ts'o <tytso@mit.edu>
Christoph Lameter89ada672005-10-30 15:01:59 -080011 *
Christoph Lametercde53532008-07-04 09:59:22 -070012 * Made to use alloc_percpu by Christoph Lameter.
Tejun Heoc54fce62010-09-10 16:51:36 +020013 *
14 * Copyright (C) 2010 SUSE Linux Products GmbH
15 * Copyright (C) 2010 Tejun Heo <tj@kernel.org>
16 *
17 * This is the generic async execution mechanism. Work items as are
18 * executed in process context. The worker pool is shared and
19 * automatically managed. There is one worker pool for each CPU and
20 * one extra for works which are better served by workers which are
21 * not bound to any specific CPU.
22 *
23 * Please read Documentation/workqueue.txt for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Paul Gortmaker9984de12011-05-23 14:51:41 -040026#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/init.h>
30#include <linux/signal.h>
31#include <linux/completion.h>
32#include <linux/workqueue.h>
33#include <linux/slab.h>
34#include <linux/cpu.h>
35#include <linux/notifier.h>
36#include <linux/kthread.h>
James Bottomley1fa44ec2006-02-23 12:43:43 -060037#include <linux/hardirq.h>
Christoph Lameter46934022006-10-11 01:21:26 -070038#include <linux/mempolicy.h>
Rafael J. Wysocki341a5952006-12-06 20:34:49 -080039#include <linux/freezer.h>
Peter Zijlstrad5abe662006-12-06 20:37:26 -080040#include <linux/kallsyms.h>
41#include <linux/debug_locks.h>
Johannes Berg4e6045f2007-10-18 23:39:55 -070042#include <linux/lockdep.h>
Tejun Heoc34056a2010-06-29 10:07:11 +020043#include <linux/idr.h>
Tejun Heo29c91e92013-03-12 11:30:03 -070044#include <linux/jhash.h>
Sasha Levin42f85702012-12-17 10:01:23 -050045#include <linux/hashtable.h>
Tejun Heo76af4d92013-03-12 11:30:00 -070046#include <linux/rculist.h>
Tejun Heoe22bee72010-06-29 10:07:14 +020047
Tejun Heoea138442013-01-18 14:05:55 -080048#include "workqueue_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Tejun Heoc8e55f32010-06-29 10:07:12 +020050enum {
Tejun Heobc2ae0f2012-07-17 12:39:27 -070051 /*
Tejun Heo24647572013-01-24 11:01:33 -080052 * worker_pool flags
Tejun Heobc2ae0f2012-07-17 12:39:27 -070053 *
Tejun Heo24647572013-01-24 11:01:33 -080054 * A bound pool is either associated or disassociated with its CPU.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070055 * While associated (!DISASSOCIATED), all workers are bound to the
56 * CPU and none has %WORKER_UNBOUND set and concurrency management
57 * is in effect.
58 *
59 * While DISASSOCIATED, the cpu may be offline and all workers have
60 * %WORKER_UNBOUND set and concurrency management disabled, and may
Tejun Heo24647572013-01-24 11:01:33 -080061 * be executing on any CPU. The pool behaves as an unbound one.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070062 *
63 * Note that DISASSOCIATED can be flipped only while holding
Tejun Heo24647572013-01-24 11:01:33 -080064 * assoc_mutex to avoid changing binding state while
65 * create_worker() is in progress.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070066 */
Tejun Heo11ebea52012-07-12 14:46:37 -070067 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
Tejun Heo24647572013-01-24 11:01:33 -080068 POOL_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */
Tejun Heo35b6bb62013-01-24 11:01:33 -080069 POOL_FREEZING = 1 << 3, /* freeze in progress */
Tejun Heodb7bccf2010-06-29 10:07:12 +020070
Tejun Heoc8e55f32010-06-29 10:07:12 +020071 /* worker flags */
72 WORKER_STARTED = 1 << 0, /* started */
73 WORKER_DIE = 1 << 1, /* die die die */
74 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020075 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heofb0e7be2010-06-29 10:07:15 +020076 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020077 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020078
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -070079 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_UNBOUND |
Tejun Heo403c8212012-07-17 12:39:27 -070080 WORKER_CPU_INTENSIVE,
Tejun Heodb7bccf2010-06-29 10:07:12 +020081
Tejun Heoe34cdddb2013-01-24 11:01:33 -080082 NR_STD_WORKER_POOLS = 2, /* # standard pools per cpu */
Tejun Heo4ce62e92012-07-13 22:16:44 -070083
Tejun Heo29c91e92013-03-12 11:30:03 -070084 UNBOUND_POOL_HASH_ORDER = 6, /* hashed by pool->attrs */
Tejun Heoc8e55f32010-06-29 10:07:12 +020085 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020086
Tejun Heoe22bee72010-06-29 10:07:14 +020087 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
88 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
89
Tejun Heo3233cdb2011-02-16 18:10:19 +010090 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
91 /* call for help after 10ms
92 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020093 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
94 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heoe22bee72010-06-29 10:07:14 +020095
96 /*
97 * Rescue workers are used only on emergencies and shared by
98 * all cpus. Give -20.
99 */
100 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -0700101 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +0200102};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/*
Tejun Heo4690c4a2010-06-29 10:07:10 +0200105 * Structure fields follow one of the following exclusion rules.
106 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200107 * I: Modifiable by initialization/destruction paths and read-only for
108 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200109 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200110 * P: Preemption protected. Disabling preemption is enough and should
111 * only be modified and accessed from the local cpu.
112 *
Tejun Heod565ed62013-01-24 11:01:33 -0800113 * L: pool->lock protected. Access with pool->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200114 *
Tejun Heod565ed62013-01-24 11:01:33 -0800115 * X: During normal operation, modification requires pool->lock and should
116 * be done only from local cpu. Either disabling preemption on local
117 * cpu or grabbing pool->lock is enough for read access. If
118 * POOL_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200119 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200120 * F: wq->flush_mutex protected.
121 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200122 * W: workqueue_lock protected.
Tejun Heo76af4d92013-03-12 11:30:00 -0700123 *
124 * R: workqueue_lock protected for writes. Sched-RCU protected for reads.
Tejun Heo75ccf592013-03-12 11:30:04 -0700125 *
126 * FR: wq->flush_mutex and workqueue_lock protected for writes. Sched-RCU
127 * protected for reads.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200128 */
129
Tejun Heo2eaebdb2013-01-18 14:05:55 -0800130/* struct worker is defined in workqueue_internal.h */
Tejun Heoc34056a2010-06-29 10:07:11 +0200131
Tejun Heobd7bdd42012-07-12 14:46:37 -0700132struct worker_pool {
Tejun Heod565ed62013-01-24 11:01:33 -0800133 spinlock_t lock; /* the pool lock */
Tejun Heod84ff052013-03-12 11:29:59 -0700134 int cpu; /* I: the associated cpu */
Tejun Heo9daf9e62013-01-24 11:01:33 -0800135 int id; /* I: pool ID */
Tejun Heo11ebea52012-07-12 14:46:37 -0700136 unsigned int flags; /* X: flags */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700137
138 struct list_head worklist; /* L: list of pending works */
139 int nr_workers; /* L: total number of workers */
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700140
141 /* nr_idle includes the ones off idle_list for rebinding */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700142 int nr_idle; /* L: currently idle ones */
143
144 struct list_head idle_list; /* X: list of idle workers */
145 struct timer_list idle_timer; /* L: worker idle timeout */
146 struct timer_list mayday_timer; /* L: SOS timer for workers */
147
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800148 /* workers are chained either in busy_hash or idle_list */
149 DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER);
150 /* L: hash of busy workers */
151
Tejun Heo34a06bd2013-03-12 11:30:00 -0700152 struct mutex manager_arb; /* manager arbitration */
Tejun Heo24647572013-01-24 11:01:33 -0800153 struct mutex assoc_mutex; /* protect POOL_DISASSOCIATED */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700154 struct ida worker_ida; /* L: for worker IDs */
Tejun Heoe19e3972013-01-24 11:39:44 -0800155
Tejun Heo7a4e3442013-03-12 11:30:00 -0700156 struct workqueue_attrs *attrs; /* I: worker attributes */
Tejun Heo29c91e92013-03-12 11:30:03 -0700157 struct hlist_node hash_node; /* R: unbound_pool_hash node */
158 int refcnt; /* refcnt for unbound pools */
Tejun Heo7a4e3442013-03-12 11:30:00 -0700159
Tejun Heoe19e3972013-01-24 11:39:44 -0800160 /*
161 * The current concurrency level. As it's likely to be accessed
162 * from other CPUs during try_to_wake_up(), put it in a separate
163 * cacheline.
164 */
165 atomic_t nr_running ____cacheline_aligned_in_smp;
Tejun Heo29c91e92013-03-12 11:30:03 -0700166
167 /*
168 * Destruction of pool is sched-RCU protected to allow dereferences
169 * from get_work_pool().
170 */
171 struct rcu_head rcu;
Tejun Heo8b03ae32010-06-29 10:07:12 +0200172} ____cacheline_aligned_in_smp;
173
174/*
Tejun Heo112202d2013-02-13 19:29:12 -0800175 * The per-pool workqueue. While queued, the lower WORK_STRUCT_FLAG_BITS
176 * of work_struct->data are used for flags and the remaining high bits
177 * point to the pwq; thus, pwqs need to be aligned at two's power of the
178 * number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
Tejun Heo112202d2013-02-13 19:29:12 -0800180struct pool_workqueue {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700181 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200182 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200183 int work_color; /* L: current color */
184 int flush_color; /* L: flushing color */
Tejun Heo8864b4e2013-03-12 11:30:04 -0700185 int refcnt; /* L: reference count */
Tejun Heo73f53c42010-06-29 10:07:11 +0200186 int nr_in_flight[WORK_NR_COLORS];
187 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200188 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200189 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200190 struct list_head delayed_works; /* L: delayed works */
Tejun Heo75ccf592013-03-12 11:30:04 -0700191 struct list_head pwqs_node; /* FR: node on wq->pwqs */
Tejun Heo493a1722013-03-12 11:29:59 -0700192 struct list_head mayday_node; /* W: node on wq->maydays */
Tejun Heo8864b4e2013-03-12 11:30:04 -0700193
194 /*
195 * Release of unbound pwq is punted to system_wq. See put_pwq()
196 * and pwq_unbound_release_workfn() for details. pool_workqueue
197 * itself is also sched-RCU protected so that the first pwq can be
198 * determined without grabbing workqueue_lock.
199 */
200 struct work_struct unbound_release_work;
201 struct rcu_head rcu;
Tejun Heoe904e6c2013-03-12 11:29:57 -0700202} __aligned(1 << WORK_STRUCT_FLAG_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200205 * Structure used to wait for workqueue flush.
206 */
207struct wq_flusher {
208 struct list_head list; /* F: list of flushers */
209 int flush_color; /* F: flush color waiting for */
210 struct completion done; /* flush completion */
211};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Tejun Heo73f53c42010-06-29 10:07:11 +0200213/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * The externally visible workqueue abstraction is an array of
215 * per-CPU workqueues:
216 */
217struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200218 unsigned int flags; /* W: WQ_* flags */
Tejun Heo420c0dd2013-03-12 11:29:59 -0700219 struct pool_workqueue __percpu *cpu_pwqs; /* I: per-cpu pwq's */
Tejun Heo75ccf592013-03-12 11:30:04 -0700220 struct list_head pwqs; /* FR: all pwqs of this wq */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200221 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200222
223 struct mutex flush_mutex; /* protects wq flushing */
224 int work_color; /* F: current work color */
225 int flush_color; /* F: current flush color */
Tejun Heo112202d2013-02-13 19:29:12 -0800226 atomic_t nr_pwqs_to_flush; /* flush in progress */
Tejun Heo73f53c42010-06-29 10:07:11 +0200227 struct wq_flusher *first_flusher; /* F: first flusher */
228 struct list_head flusher_queue; /* F: flush waiters */
229 struct list_head flusher_overflow; /* F: flush overflow list */
230
Tejun Heo493a1722013-03-12 11:29:59 -0700231 struct list_head maydays; /* W: pwqs requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200232 struct worker *rescuer; /* I: rescue worker */
233
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200234 int nr_drainers; /* W: drain in progress */
Tejun Heo112202d2013-02-13 19:29:12 -0800235 int saved_max_active; /* W: saved pwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700236#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200237 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700238#endif
Tejun Heob196be82012-01-10 15:11:35 -0800239 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Tejun Heoe904e6c2013-03-12 11:29:57 -0700242static struct kmem_cache *pwq_cache;
243
Tejun Heo29c91e92013-03-12 11:30:03 -0700244/* hash of all unbound pools keyed by pool->attrs */
245static DEFINE_HASHTABLE(unbound_pool_hash, UNBOUND_POOL_HASH_ORDER);
246
247static struct workqueue_attrs *unbound_std_wq_attrs[NR_STD_WORKER_POOLS];
248
Tejun Heod320c032010-06-29 10:07:14 +0200249struct workqueue_struct *system_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200250EXPORT_SYMBOL_GPL(system_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300251struct workqueue_struct *system_highpri_wq __read_mostly;
Joonsoo Kim1aabe902012-08-15 23:25:39 +0900252EXPORT_SYMBOL_GPL(system_highpri_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300253struct workqueue_struct *system_long_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200254EXPORT_SYMBOL_GPL(system_long_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300255struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200256EXPORT_SYMBOL_GPL(system_unbound_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300257struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100258EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200259
Tejun Heo97bd2342010-10-05 10:41:14 +0200260#define CREATE_TRACE_POINTS
261#include <trace/events/workqueue.h>
262
Tejun Heo76af4d92013-03-12 11:30:00 -0700263#define assert_rcu_or_wq_lock() \
264 rcu_lockdep_assert(rcu_read_lock_sched_held() || \
265 lockdep_is_held(&workqueue_lock), \
266 "sched RCU or workqueue lock should be held")
267
Tejun Heof02ae732013-03-12 11:30:03 -0700268#define for_each_cpu_worker_pool(pool, cpu) \
269 for ((pool) = &per_cpu(cpu_worker_pools, cpu)[0]; \
270 (pool) < &per_cpu(cpu_worker_pools, cpu)[NR_STD_WORKER_POOLS]; \
Tejun Heo7a62c2c2013-03-12 11:30:03 -0700271 (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700272
Sasha Levinb67bfe02013-02-27 17:06:00 -0800273#define for_each_busy_worker(worker, i, pool) \
274 hash_for_each(pool->busy_hash, i, worker, hentry)
Tejun Heodb7bccf2010-06-29 10:07:12 +0200275
Tejun Heo49e3cf42013-03-12 11:29:58 -0700276/**
Tejun Heo17116962013-03-12 11:29:58 -0700277 * for_each_pool - iterate through all worker_pools in the system
278 * @pool: iteration cursor
279 * @id: integer used for iteration
Tejun Heofa1b54e2013-03-12 11:30:00 -0700280 *
281 * This must be called either with workqueue_lock held or sched RCU read
282 * locked. If the pool needs to be used beyond the locking in effect, the
283 * caller is responsible for guaranteeing that the pool stays online.
284 *
285 * The if/else clause exists only for the lockdep assertion and can be
286 * ignored.
Tejun Heo17116962013-03-12 11:29:58 -0700287 */
288#define for_each_pool(pool, id) \
Tejun Heofa1b54e2013-03-12 11:30:00 -0700289 idr_for_each_entry(&worker_pool_idr, pool, id) \
290 if (({ assert_rcu_or_wq_lock(); false; })) { } \
291 else
Tejun Heo17116962013-03-12 11:29:58 -0700292
293/**
Tejun Heo49e3cf42013-03-12 11:29:58 -0700294 * for_each_pwq - iterate through all pool_workqueues of the specified workqueue
295 * @pwq: iteration cursor
296 * @wq: the target workqueue
Tejun Heo76af4d92013-03-12 11:30:00 -0700297 *
298 * This must be called either with workqueue_lock held or sched RCU read
299 * locked. If the pwq needs to be used beyond the locking in effect, the
300 * caller is responsible for guaranteeing that the pwq stays online.
301 *
302 * The if/else clause exists only for the lockdep assertion and can be
303 * ignored.
Tejun Heo49e3cf42013-03-12 11:29:58 -0700304 */
305#define for_each_pwq(pwq, wq) \
Tejun Heo76af4d92013-03-12 11:30:00 -0700306 list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node) \
307 if (({ assert_rcu_or_wq_lock(); false; })) { } \
308 else
Tejun Heof3421792010-07-02 10:03:51 +0200309
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900310#ifdef CONFIG_DEBUG_OBJECTS_WORK
311
312static struct debug_obj_descr work_debug_descr;
313
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100314static void *work_debug_hint(void *addr)
315{
316 return ((struct work_struct *) addr)->func;
317}
318
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900319/*
320 * fixup_init is called when:
321 * - an active object is initialized
322 */
323static int work_fixup_init(void *addr, enum debug_obj_state state)
324{
325 struct work_struct *work = addr;
326
327 switch (state) {
328 case ODEBUG_STATE_ACTIVE:
329 cancel_work_sync(work);
330 debug_object_init(work, &work_debug_descr);
331 return 1;
332 default:
333 return 0;
334 }
335}
336
337/*
338 * fixup_activate is called when:
339 * - an active object is activated
340 * - an unknown object is activated (might be a statically initialized object)
341 */
342static int work_fixup_activate(void *addr, enum debug_obj_state state)
343{
344 struct work_struct *work = addr;
345
346 switch (state) {
347
348 case ODEBUG_STATE_NOTAVAILABLE:
349 /*
350 * This is not really a fixup. The work struct was
351 * statically initialized. We just make sure that it
352 * is tracked in the object tracker.
353 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200354 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900355 debug_object_init(work, &work_debug_descr);
356 debug_object_activate(work, &work_debug_descr);
357 return 0;
358 }
359 WARN_ON_ONCE(1);
360 return 0;
361
362 case ODEBUG_STATE_ACTIVE:
363 WARN_ON(1);
364
365 default:
366 return 0;
367 }
368}
369
370/*
371 * fixup_free is called when:
372 * - an active object is freed
373 */
374static int work_fixup_free(void *addr, enum debug_obj_state state)
375{
376 struct work_struct *work = addr;
377
378 switch (state) {
379 case ODEBUG_STATE_ACTIVE:
380 cancel_work_sync(work);
381 debug_object_free(work, &work_debug_descr);
382 return 1;
383 default:
384 return 0;
385 }
386}
387
388static struct debug_obj_descr work_debug_descr = {
389 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100390 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900391 .fixup_init = work_fixup_init,
392 .fixup_activate = work_fixup_activate,
393 .fixup_free = work_fixup_free,
394};
395
396static inline void debug_work_activate(struct work_struct *work)
397{
398 debug_object_activate(work, &work_debug_descr);
399}
400
401static inline void debug_work_deactivate(struct work_struct *work)
402{
403 debug_object_deactivate(work, &work_debug_descr);
404}
405
406void __init_work(struct work_struct *work, int onstack)
407{
408 if (onstack)
409 debug_object_init_on_stack(work, &work_debug_descr);
410 else
411 debug_object_init(work, &work_debug_descr);
412}
413EXPORT_SYMBOL_GPL(__init_work);
414
415void destroy_work_on_stack(struct work_struct *work)
416{
417 debug_object_free(work, &work_debug_descr);
418}
419EXPORT_SYMBOL_GPL(destroy_work_on_stack);
420
421#else
422static inline void debug_work_activate(struct work_struct *work) { }
423static inline void debug_work_deactivate(struct work_struct *work) { }
424#endif
425
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100426/* Serializes the accesses to the list of workqueues. */
427static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200429static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Oleg Nesterov14441962007-05-23 13:57:57 -0700431/*
Tejun Heoe19e3972013-01-24 11:39:44 -0800432 * The CPU and unbound standard worker pools. The unbound ones have
433 * POOL_DISASSOCIATED set, and their workers have WORKER_UNBOUND set.
Oleg Nesterov14441962007-05-23 13:57:57 -0700434 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800435static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
Tejun Heof02ae732013-03-12 11:30:03 -0700436 cpu_worker_pools);
Tejun Heof3421792010-07-02 10:03:51 +0200437
Tejun Heofa1b54e2013-03-12 11:30:00 -0700438/*
439 * idr of all pools. Modifications are protected by workqueue_lock. Read
440 * accesses are protected by sched-RCU protected.
441 */
Tejun Heo9daf9e62013-01-24 11:01:33 -0800442static DEFINE_IDR(worker_pool_idr);
443
Tejun Heoc34056a2010-06-29 10:07:11 +0200444static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Tejun Heo9daf9e62013-01-24 11:01:33 -0800446/* allocate ID and assign it to @pool */
447static int worker_pool_assign_id(struct worker_pool *pool)
448{
449 int ret;
450
Tejun Heofa1b54e2013-03-12 11:30:00 -0700451 do {
452 if (!idr_pre_get(&worker_pool_idr, GFP_KERNEL))
453 return -ENOMEM;
454
455 spin_lock_irq(&workqueue_lock);
456 ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
457 spin_unlock_irq(&workqueue_lock);
458 } while (ret == -EAGAIN);
Tejun Heo9daf9e62013-01-24 11:01:33 -0800459
460 return ret;
461}
462
Tejun Heo76af4d92013-03-12 11:30:00 -0700463/**
464 * first_pwq - return the first pool_workqueue of the specified workqueue
465 * @wq: the target workqueue
466 *
467 * This must be called either with workqueue_lock held or sched RCU read
468 * locked. If the pwq needs to be used beyond the locking in effect, the
469 * caller is responsible for guaranteeing that the pwq stays online.
470 */
Tejun Heo7fb98ea2013-03-12 11:30:00 -0700471static struct pool_workqueue *first_pwq(struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700472{
Tejun Heo76af4d92013-03-12 11:30:00 -0700473 assert_rcu_or_wq_lock();
474 return list_first_or_null_rcu(&wq->pwqs, struct pool_workqueue,
475 pwqs_node);
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.
Tejun Heofa1b54e2013-03-12 11:30:00 -0700569 *
570 * Pools are created and destroyed under workqueue_lock, and allows read
571 * access under sched-RCU read lock. As such, this function should be
572 * called under workqueue_lock or with preemption disabled.
573 *
574 * All fields of the returned pool are accessible as long as the above
575 * mentioned locking is in effect. If the returned pool needs to be used
576 * beyond the critical section, the caller is responsible for ensuring the
577 * returned pool is and stays online.
Tejun Heo7c3eed52013-01-24 11:01:33 -0800578 */
579static struct worker_pool *get_work_pool(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200580{
Tejun Heoe1201532010-07-22 14:14:25 +0200581 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800582 int pool_id;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200583
Tejun Heofa1b54e2013-03-12 11:30:00 -0700584 assert_rcu_or_wq_lock();
585
Tejun Heo112202d2013-02-13 19:29:12 -0800586 if (data & WORK_STRUCT_PWQ)
587 return ((struct pool_workqueue *)
Tejun Heo7c3eed52013-01-24 11:01:33 -0800588 (data & WORK_STRUCT_WQ_DATA_MASK))->pool;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200589
Tejun Heo7c3eed52013-01-24 11:01:33 -0800590 pool_id = data >> WORK_OFFQ_POOL_SHIFT;
591 if (pool_id == WORK_OFFQ_POOL_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200592 return NULL;
593
Tejun Heofa1b54e2013-03-12 11:30:00 -0700594 return idr_find(&worker_pool_idr, pool_id);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800595}
596
597/**
598 * get_work_pool_id - return the worker pool ID a given work is associated with
599 * @work: the work item of interest
600 *
601 * Return the worker_pool ID @work was last associated with.
602 * %WORK_OFFQ_POOL_NONE if none.
603 */
604static int get_work_pool_id(struct work_struct *work)
605{
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800606 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800607
Tejun Heo112202d2013-02-13 19:29:12 -0800608 if (data & WORK_STRUCT_PWQ)
609 return ((struct pool_workqueue *)
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800610 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->id;
611
612 return data >> WORK_OFFQ_POOL_SHIFT;
Tejun Heo7c3eed52013-01-24 11:01:33 -0800613}
614
Tejun Heobbb68df2012-08-03 10:30:46 -0700615static void mark_work_canceling(struct work_struct *work)
616{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800617 unsigned long pool_id = get_work_pool_id(work);
Tejun Heobbb68df2012-08-03 10:30:46 -0700618
Tejun Heo7c3eed52013-01-24 11:01:33 -0800619 pool_id <<= WORK_OFFQ_POOL_SHIFT;
620 set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700621}
622
623static bool work_is_canceling(struct work_struct *work)
624{
625 unsigned long data = atomic_long_read(&work->data);
626
Tejun Heo112202d2013-02-13 19:29:12 -0800627 return !(data & WORK_STRUCT_PWQ) && (data & WORK_OFFQ_CANCELING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700628}
629
David Howells365970a2006-11-22 14:54:49 +0000630/*
Tejun Heo32704762012-07-13 22:16:45 -0700631 * Policy functions. These define the policies on how the global worker
632 * pools are managed. Unless noted otherwise, these functions assume that
Tejun Heod565ed62013-01-24 11:01:33 -0800633 * they're being called with pool->lock held.
David Howells365970a2006-11-22 14:54:49 +0000634 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200635
Tejun Heo63d95a92012-07-12 14:46:37 -0700636static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000637{
Tejun Heoe19e3972013-01-24 11:39:44 -0800638 return !atomic_read(&pool->nr_running);
David Howells365970a2006-11-22 14:54:49 +0000639}
640
Tejun Heoe22bee72010-06-29 10:07:14 +0200641/*
642 * Need to wake up a worker? Called from anything but currently
643 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700644 *
645 * Note that, because unbound workers never contribute to nr_running, this
Tejun Heo706026c2013-01-24 11:01:34 -0800646 * function will always return %true for unbound pools as long as the
Tejun Heo974271c2012-07-12 14:46:37 -0700647 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200648 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700649static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000650{
Tejun Heo63d95a92012-07-12 14:46:37 -0700651 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000652}
653
Tejun Heoe22bee72010-06-29 10:07:14 +0200654/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700655static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200656{
Tejun Heo63d95a92012-07-12 14:46:37 -0700657 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200658}
659
660/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700661static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200662{
Tejun Heoe19e3972013-01-24 11:39:44 -0800663 return !list_empty(&pool->worklist) &&
664 atomic_read(&pool->nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200665}
666
667/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700668static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200669{
Tejun Heo63d95a92012-07-12 14:46:37 -0700670 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200671}
672
673/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700674static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200675{
Tejun Heo63d95a92012-07-12 14:46:37 -0700676 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700677 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200678}
679
680/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700681static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200682{
Tejun Heo34a06bd2013-03-12 11:30:00 -0700683 bool managing = mutex_is_locked(&pool->manager_arb);
Tejun Heo63d95a92012-07-12 14:46:37 -0700684 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
685 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200686
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700687 /*
688 * nr_idle and idle_list may disagree if idle rebinding is in
689 * progress. Never return %true if idle_list is empty.
690 */
691 if (list_empty(&pool->idle_list))
692 return false;
693
Tejun Heoe22bee72010-06-29 10:07:14 +0200694 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
695}
696
697/*
698 * Wake up functions.
699 */
700
Tejun Heo7e116292010-06-29 10:07:13 +0200701/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700702static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200703{
Tejun Heo63d95a92012-07-12 14:46:37 -0700704 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200705 return NULL;
706
Tejun Heo63d95a92012-07-12 14:46:37 -0700707 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200708}
709
710/**
711 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700712 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200713 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700714 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200715 *
716 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800717 * spin_lock_irq(pool->lock).
Tejun Heo7e116292010-06-29 10:07:13 +0200718 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700719static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200720{
Tejun Heo63d95a92012-07-12 14:46:37 -0700721 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200722
723 if (likely(worker))
724 wake_up_process(worker->task);
725}
726
Tejun Heo4690c4a2010-06-29 10:07:10 +0200727/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200728 * wq_worker_waking_up - a worker is waking up
729 * @task: task waking up
730 * @cpu: CPU @task is waking up to
731 *
732 * This function is called during try_to_wake_up() when a worker is
733 * being awoken.
734 *
735 * CONTEXT:
736 * spin_lock_irq(rq->lock)
737 */
Tejun Heod84ff052013-03-12 11:29:59 -0700738void wq_worker_waking_up(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200739{
740 struct worker *worker = kthread_data(task);
741
Joonsoo Kim36576002012-10-26 23:03:49 +0900742 if (!(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoec22ca52013-01-24 11:01:33 -0800743 WARN_ON_ONCE(worker->pool->cpu != cpu);
Tejun Heoe19e3972013-01-24 11:39:44 -0800744 atomic_inc(&worker->pool->nr_running);
Joonsoo Kim36576002012-10-26 23:03:49 +0900745 }
Tejun Heoe22bee72010-06-29 10:07:14 +0200746}
747
748/**
749 * wq_worker_sleeping - a worker is going to sleep
750 * @task: task going to sleep
751 * @cpu: CPU in question, must be the current CPU number
752 *
753 * This function is called during schedule() when a busy worker is
754 * going to sleep. Worker on the same cpu can be woken up by
755 * returning pointer to its task.
756 *
757 * CONTEXT:
758 * spin_lock_irq(rq->lock)
759 *
760 * RETURNS:
761 * Worker task on @cpu to wake up, %NULL if none.
762 */
Tejun Heod84ff052013-03-12 11:29:59 -0700763struct task_struct *wq_worker_sleeping(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200764{
765 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heo111c2252013-01-17 17:16:24 -0800766 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200767
Tejun Heo111c2252013-01-17 17:16:24 -0800768 /*
769 * Rescuers, which may not have all the fields set up like normal
770 * workers, also reach here, let's not access anything before
771 * checking NOT_RUNNING.
772 */
Steven Rostedt2d646722010-12-03 23:12:33 -0500773 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200774 return NULL;
775
Tejun Heo111c2252013-01-17 17:16:24 -0800776 pool = worker->pool;
Tejun Heo111c2252013-01-17 17:16:24 -0800777
Tejun Heoe22bee72010-06-29 10:07:14 +0200778 /* this can only happen on the local cpu */
Tejun Heo6183c002013-03-12 11:29:57 -0700779 if (WARN_ON_ONCE(cpu != raw_smp_processor_id()))
780 return NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +0200781
782 /*
783 * The counterpart of the following dec_and_test, implied mb,
784 * worklist not empty test sequence is in insert_work().
785 * Please read comment there.
786 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700787 * NOT_RUNNING is clear. This means that we're bound to and
788 * running on the local cpu w/ rq lock held and preemption
789 * disabled, which in turn means that none else could be
Tejun Heod565ed62013-01-24 11:01:33 -0800790 * manipulating idle_list, so dereferencing idle_list without pool
Tejun Heo628c78e2012-07-17 12:39:27 -0700791 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200792 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800793 if (atomic_dec_and_test(&pool->nr_running) &&
794 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700795 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200796 return to_wakeup ? to_wakeup->task : NULL;
797}
798
799/**
800 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200801 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200802 * @flags: flags to set
803 * @wakeup: wakeup an idle worker if necessary
804 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200805 * Set @flags in @worker->flags and adjust nr_running accordingly. If
806 * nr_running becomes zero and @wakeup is %true, an idle worker is
807 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200808 *
Tejun Heocb444762010-07-02 10:03:50 +0200809 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800810 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200811 */
812static inline void worker_set_flags(struct worker *worker, unsigned int flags,
813 bool wakeup)
814{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700815 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200816
Tejun Heocb444762010-07-02 10:03:50 +0200817 WARN_ON_ONCE(worker->task != current);
818
Tejun Heoe22bee72010-06-29 10:07:14 +0200819 /*
820 * If transitioning into NOT_RUNNING, adjust nr_running and
821 * wake up an idle worker as necessary if requested by
822 * @wakeup.
823 */
824 if ((flags & WORKER_NOT_RUNNING) &&
825 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoe22bee72010-06-29 10:07:14 +0200826 if (wakeup) {
Tejun Heoe19e3972013-01-24 11:39:44 -0800827 if (atomic_dec_and_test(&pool->nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700828 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700829 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200830 } else
Tejun Heoe19e3972013-01-24 11:39:44 -0800831 atomic_dec(&pool->nr_running);
Tejun Heoe22bee72010-06-29 10:07:14 +0200832 }
833
Tejun Heod302f012010-06-29 10:07:13 +0200834 worker->flags |= flags;
835}
836
837/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200838 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200839 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200840 * @flags: flags to clear
841 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200842 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200843 *
Tejun Heocb444762010-07-02 10:03:50 +0200844 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800845 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200846 */
847static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
848{
Tejun Heo63d95a92012-07-12 14:46:37 -0700849 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200850 unsigned int oflags = worker->flags;
851
Tejun Heocb444762010-07-02 10:03:50 +0200852 WARN_ON_ONCE(worker->task != current);
853
Tejun Heod302f012010-06-29 10:07:13 +0200854 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200855
Tejun Heo42c025f2011-01-11 15:58:49 +0100856 /*
857 * If transitioning out of NOT_RUNNING, increment nr_running. Note
858 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
859 * of multiple flags, not a single flag.
860 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200861 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
862 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heoe19e3972013-01-24 11:39:44 -0800863 atomic_inc(&pool->nr_running);
Tejun Heod302f012010-06-29 10:07:13 +0200864}
865
866/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200867 * find_worker_executing_work - find worker which is executing a work
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800868 * @pool: pool of interest
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200869 * @work: work to find worker for
870 *
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800871 * Find a worker which is executing @work on @pool by searching
872 * @pool->busy_hash which is keyed by the address of @work. For a worker
Tejun Heoa2c1c572012-12-18 10:35:02 -0800873 * to match, its current execution should match the address of @work and
874 * its work function. This is to avoid unwanted dependency between
875 * unrelated work executions through a work item being recycled while still
876 * being executed.
877 *
878 * This is a bit tricky. A work item may be freed once its execution
879 * starts and nothing prevents the freed area from being recycled for
880 * another work item. If the same work item address ends up being reused
881 * before the original execution finishes, workqueue will identify the
882 * recycled work item as currently executing and make it wait until the
883 * current execution finishes, introducing an unwanted dependency.
884 *
885 * This function checks the work item address, work function and workqueue
886 * to avoid false positives. Note that this isn't complete as one may
887 * construct a work function which can introduce dependency onto itself
888 * through a recycled work item. Well, if somebody wants to shoot oneself
889 * in the foot that badly, there's only so much we can do, and if such
890 * deadlock actually occurs, it should be easy to locate the culprit work
891 * function.
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200892 *
893 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800894 * spin_lock_irq(pool->lock).
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200895 *
896 * RETURNS:
897 * Pointer to worker which is executing @work if found, NULL
898 * otherwise.
899 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800900static struct worker *find_worker_executing_work(struct worker_pool *pool,
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200901 struct work_struct *work)
902{
Sasha Levin42f85702012-12-17 10:01:23 -0500903 struct worker *worker;
Sasha Levin42f85702012-12-17 10:01:23 -0500904
Sasha Levinb67bfe02013-02-27 17:06:00 -0800905 hash_for_each_possible(pool->busy_hash, worker, hentry,
Tejun Heoa2c1c572012-12-18 10:35:02 -0800906 (unsigned long)work)
907 if (worker->current_work == work &&
908 worker->current_func == work->func)
Sasha Levin42f85702012-12-17 10:01:23 -0500909 return worker;
910
911 return NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200912}
913
914/**
Tejun Heobf4ede02012-08-03 10:30:46 -0700915 * move_linked_works - move linked works to a list
916 * @work: start of series of works to be scheduled
917 * @head: target list to append @work to
918 * @nextp: out paramter for nested worklist walking
919 *
920 * Schedule linked works starting from @work to @head. Work series to
921 * be scheduled starts at @work and includes any consecutive work with
922 * WORK_STRUCT_LINKED set in its predecessor.
923 *
924 * If @nextp is not NULL, it's updated to point to the next work of
925 * the last scheduled work. This allows move_linked_works() to be
926 * nested inside outer list_for_each_entry_safe().
927 *
928 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800929 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700930 */
931static void move_linked_works(struct work_struct *work, struct list_head *head,
932 struct work_struct **nextp)
933{
934 struct work_struct *n;
935
936 /*
937 * Linked worklist will always end before the end of the list,
938 * use NULL for list head.
939 */
940 list_for_each_entry_safe_from(work, n, NULL, entry) {
941 list_move_tail(&work->entry, head);
942 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
943 break;
944 }
945
946 /*
947 * If we're already inside safe list traversal and have moved
948 * multiple works to the scheduled queue, the next position
949 * needs to be updated.
950 */
951 if (nextp)
952 *nextp = n;
953}
954
Tejun Heo8864b4e2013-03-12 11:30:04 -0700955/**
956 * get_pwq - get an extra reference on the specified pool_workqueue
957 * @pwq: pool_workqueue to get
958 *
959 * Obtain an extra reference on @pwq. The caller should guarantee that
960 * @pwq has positive refcnt and be holding the matching pool->lock.
961 */
962static void get_pwq(struct pool_workqueue *pwq)
963{
964 lockdep_assert_held(&pwq->pool->lock);
965 WARN_ON_ONCE(pwq->refcnt <= 0);
966 pwq->refcnt++;
967}
968
969/**
970 * put_pwq - put a pool_workqueue reference
971 * @pwq: pool_workqueue to put
972 *
973 * Drop a reference of @pwq. If its refcnt reaches zero, schedule its
974 * destruction. The caller should be holding the matching pool->lock.
975 */
976static void put_pwq(struct pool_workqueue *pwq)
977{
978 lockdep_assert_held(&pwq->pool->lock);
979 if (likely(--pwq->refcnt))
980 return;
981 if (WARN_ON_ONCE(!(pwq->wq->flags & WQ_UNBOUND)))
982 return;
983 /*
984 * @pwq can't be released under pool->lock, bounce to
985 * pwq_unbound_release_workfn(). This never recurses on the same
986 * pool->lock as this path is taken only for unbound workqueues and
987 * the release work item is scheduled on a per-cpu workqueue. To
988 * avoid lockdep warning, unbound pool->locks are given lockdep
989 * subclass of 1 in get_unbound_pool().
990 */
991 schedule_work(&pwq->unbound_release_work);
992}
993
Tejun Heo112202d2013-02-13 19:29:12 -0800994static void pwq_activate_delayed_work(struct work_struct *work)
Tejun Heobf4ede02012-08-03 10:30:46 -0700995{
Tejun Heo112202d2013-02-13 19:29:12 -0800996 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobf4ede02012-08-03 10:30:46 -0700997
998 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -0800999 move_linked_works(work, &pwq->pool->worklist, NULL);
Tejun Heobf4ede02012-08-03 10:30:46 -07001000 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo112202d2013-02-13 19:29:12 -08001001 pwq->nr_active++;
Tejun Heobf4ede02012-08-03 10:30:46 -07001002}
1003
Tejun Heo112202d2013-02-13 19:29:12 -08001004static void pwq_activate_first_delayed(struct pool_workqueue *pwq)
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001005{
Tejun Heo112202d2013-02-13 19:29:12 -08001006 struct work_struct *work = list_first_entry(&pwq->delayed_works,
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001007 struct work_struct, entry);
1008
Tejun Heo112202d2013-02-13 19:29:12 -08001009 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001010}
1011
Tejun Heobf4ede02012-08-03 10:30:46 -07001012/**
Tejun Heo112202d2013-02-13 19:29:12 -08001013 * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight
1014 * @pwq: pwq of interest
Tejun Heobf4ede02012-08-03 10:30:46 -07001015 * @color: color of work which left the queue
Tejun Heobf4ede02012-08-03 10:30:46 -07001016 *
1017 * A work either has completed or is removed from pending queue,
Tejun Heo112202d2013-02-13 19:29:12 -08001018 * decrement nr_in_flight of its pwq and handle workqueue flushing.
Tejun Heobf4ede02012-08-03 10:30:46 -07001019 *
1020 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001021 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -07001022 */
Tejun Heo112202d2013-02-13 19:29:12 -08001023static void pwq_dec_nr_in_flight(struct pool_workqueue *pwq, int color)
Tejun Heobf4ede02012-08-03 10:30:46 -07001024{
Tejun Heo8864b4e2013-03-12 11:30:04 -07001025 /* uncolored work items don't participate in flushing or nr_active */
Tejun Heobf4ede02012-08-03 10:30:46 -07001026 if (color == WORK_NO_COLOR)
Tejun Heo8864b4e2013-03-12 11:30:04 -07001027 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001028
Tejun Heo112202d2013-02-13 19:29:12 -08001029 pwq->nr_in_flight[color]--;
Tejun Heobf4ede02012-08-03 10:30:46 -07001030
Tejun Heo112202d2013-02-13 19:29:12 -08001031 pwq->nr_active--;
1032 if (!list_empty(&pwq->delayed_works)) {
Lai Jiangshanb3f9f402012-09-18 10:40:00 -07001033 /* one down, submit a delayed one */
Tejun Heo112202d2013-02-13 19:29:12 -08001034 if (pwq->nr_active < pwq->max_active)
1035 pwq_activate_first_delayed(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001036 }
1037
1038 /* is flush in progress and are we at the flushing tip? */
Tejun Heo112202d2013-02-13 19:29:12 -08001039 if (likely(pwq->flush_color != color))
Tejun Heo8864b4e2013-03-12 11:30:04 -07001040 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001041
1042 /* are there still in-flight works? */
Tejun Heo112202d2013-02-13 19:29:12 -08001043 if (pwq->nr_in_flight[color])
Tejun Heo8864b4e2013-03-12 11:30:04 -07001044 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001045
Tejun Heo112202d2013-02-13 19:29:12 -08001046 /* this pwq is done, clear flush_color */
1047 pwq->flush_color = -1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001048
1049 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001050 * If this was the last pwq, wake up the first flusher. It
Tejun Heobf4ede02012-08-03 10:30:46 -07001051 * will handle the rest.
1052 */
Tejun Heo112202d2013-02-13 19:29:12 -08001053 if (atomic_dec_and_test(&pwq->wq->nr_pwqs_to_flush))
1054 complete(&pwq->wq->first_flusher->done);
Tejun Heo8864b4e2013-03-12 11:30:04 -07001055out_put:
1056 put_pwq(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001057}
1058
Tejun Heo36e227d2012-08-03 10:30:46 -07001059/**
Tejun Heobbb68df2012-08-03 10:30:46 -07001060 * try_to_grab_pending - steal work item from worklist and disable irq
Tejun Heo36e227d2012-08-03 10:30:46 -07001061 * @work: work item to steal
1062 * @is_dwork: @work is a delayed_work
Tejun Heobbb68df2012-08-03 10:30:46 -07001063 * @flags: place to store irq state
Tejun Heo36e227d2012-08-03 10:30:46 -07001064 *
1065 * Try to grab PENDING bit of @work. This function can handle @work in any
1066 * stable state - idle, on timer or on worklist. Return values are
1067 *
1068 * 1 if @work was pending and we successfully stole PENDING
1069 * 0 if @work was idle and we claimed PENDING
1070 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
Tejun Heobbb68df2012-08-03 10:30:46 -07001071 * -ENOENT if someone else is canceling @work, this state may persist
1072 * for arbitrarily long
Tejun Heo36e227d2012-08-03 10:30:46 -07001073 *
Tejun Heobbb68df2012-08-03 10:30:46 -07001074 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001075 * interrupted while holding PENDING and @work off queue, irq must be
1076 * disabled on entry. This, combined with delayed_work->timer being
1077 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
Tejun Heobbb68df2012-08-03 10:30:46 -07001078 *
1079 * On successful return, >= 0, irq is disabled and the caller is
1080 * responsible for releasing it using local_irq_restore(*@flags).
1081 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001082 * This function is safe to call from any context including IRQ handler.
Tejun Heobf4ede02012-08-03 10:30:46 -07001083 */
Tejun Heobbb68df2012-08-03 10:30:46 -07001084static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1085 unsigned long *flags)
Tejun Heobf4ede02012-08-03 10:30:46 -07001086{
Tejun Heod565ed62013-01-24 11:01:33 -08001087 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08001088 struct pool_workqueue *pwq;
Tejun Heobf4ede02012-08-03 10:30:46 -07001089
Tejun Heobbb68df2012-08-03 10:30:46 -07001090 local_irq_save(*flags);
1091
Tejun Heo36e227d2012-08-03 10:30:46 -07001092 /* try to steal the timer if it exists */
1093 if (is_dwork) {
1094 struct delayed_work *dwork = to_delayed_work(work);
1095
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001096 /*
1097 * dwork->timer is irqsafe. If del_timer() fails, it's
1098 * guaranteed that the timer is not queued anywhere and not
1099 * running on the local CPU.
1100 */
Tejun Heo36e227d2012-08-03 10:30:46 -07001101 if (likely(del_timer(&dwork->timer)))
1102 return 1;
1103 }
1104
1105 /* try to claim PENDING the normal way */
Tejun Heobf4ede02012-08-03 10:30:46 -07001106 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1107 return 0;
1108
1109 /*
1110 * The queueing is in progress, or it is already queued. Try to
1111 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1112 */
Tejun Heod565ed62013-01-24 11:01:33 -08001113 pool = get_work_pool(work);
1114 if (!pool)
Tejun Heobbb68df2012-08-03 10:30:46 -07001115 goto fail;
Tejun Heobf4ede02012-08-03 10:30:46 -07001116
Tejun Heod565ed62013-01-24 11:01:33 -08001117 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001118 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001119 * work->data is guaranteed to point to pwq only while the work
1120 * item is queued on pwq->wq, and both updating work->data to point
1121 * to pwq on queueing and to pool on dequeueing are done under
1122 * pwq->pool->lock. This in turn guarantees that, if work->data
1123 * points to pwq which is associated with a locked pool, the work
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001124 * item is currently queued on that pool.
1125 */
Tejun Heo112202d2013-02-13 19:29:12 -08001126 pwq = get_work_pwq(work);
1127 if (pwq && pwq->pool == pool) {
Tejun Heo16062832013-02-06 18:04:53 -08001128 debug_work_deactivate(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001129
Tejun Heo16062832013-02-06 18:04:53 -08001130 /*
1131 * A delayed work item cannot be grabbed directly because
1132 * it might have linked NO_COLOR work items which, if left
Tejun Heo112202d2013-02-13 19:29:12 -08001133 * on the delayed_list, will confuse pwq->nr_active
Tejun Heo16062832013-02-06 18:04:53 -08001134 * management later on and cause stall. Make sure the work
1135 * item is activated before grabbing.
1136 */
1137 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
Tejun Heo112202d2013-02-13 19:29:12 -08001138 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001139
Tejun Heo16062832013-02-06 18:04:53 -08001140 list_del_init(&work->entry);
Tejun Heo112202d2013-02-13 19:29:12 -08001141 pwq_dec_nr_in_flight(get_work_pwq(work), get_work_color(work));
Tejun Heo36e227d2012-08-03 10:30:46 -07001142
Tejun Heo112202d2013-02-13 19:29:12 -08001143 /* work->data points to pwq iff queued, point to pool */
Tejun Heo16062832013-02-06 18:04:53 -08001144 set_work_pool_and_keep_pending(work, pool->id);
Lai Jiangshan4468a002013-02-06 18:04:53 -08001145
Tejun Heo16062832013-02-06 18:04:53 -08001146 spin_unlock(&pool->lock);
1147 return 1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001148 }
Tejun Heod565ed62013-01-24 11:01:33 -08001149 spin_unlock(&pool->lock);
Tejun Heobbb68df2012-08-03 10:30:46 -07001150fail:
1151 local_irq_restore(*flags);
1152 if (work_is_canceling(work))
1153 return -ENOENT;
1154 cpu_relax();
Tejun Heo36e227d2012-08-03 10:30:46 -07001155 return -EAGAIN;
Tejun Heobf4ede02012-08-03 10:30:46 -07001156}
1157
1158/**
Tejun Heo706026c2013-01-24 11:01:34 -08001159 * insert_work - insert a work into a pool
Tejun Heo112202d2013-02-13 19:29:12 -08001160 * @pwq: pwq @work belongs to
Tejun Heo4690c4a2010-06-29 10:07:10 +02001161 * @work: work to insert
1162 * @head: insertion point
1163 * @extra_flags: extra WORK_STRUCT_* flags to set
1164 *
Tejun Heo112202d2013-02-13 19:29:12 -08001165 * Insert @work which belongs to @pwq after @head. @extra_flags is or'd to
Tejun Heo706026c2013-01-24 11:01:34 -08001166 * work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001167 *
1168 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001169 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001170 */
Tejun Heo112202d2013-02-13 19:29:12 -08001171static void insert_work(struct pool_workqueue *pwq, struct work_struct *work,
1172 struct list_head *head, unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001173{
Tejun Heo112202d2013-02-13 19:29:12 -08001174 struct worker_pool *pool = pwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01001175
Tejun Heo4690c4a2010-06-29 10:07:10 +02001176 /* we own @work, set data and link */
Tejun Heo112202d2013-02-13 19:29:12 -08001177 set_work_pwq(work, pwq, extra_flags);
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -07001178 list_add_tail(&work->entry, head);
Tejun Heo8864b4e2013-03-12 11:30:04 -07001179 get_pwq(pwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02001180
1181 /*
1182 * Ensure either worker_sched_deactivated() sees the above
1183 * list_add_tail() or we see zero nr_running to avoid workers
1184 * lying around lazily while there are works to be processed.
1185 */
1186 smp_mb();
1187
Tejun Heo63d95a92012-07-12 14:46:37 -07001188 if (__need_more_worker(pool))
1189 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001190}
1191
Tejun Heoc8efcc22010-12-20 19:32:04 +01001192/*
1193 * Test whether @work is being queued from another work executing on the
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001194 * same workqueue.
Tejun Heoc8efcc22010-12-20 19:32:04 +01001195 */
1196static bool is_chained_work(struct workqueue_struct *wq)
1197{
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001198 struct worker *worker;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001199
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001200 worker = current_wq_worker();
1201 /*
1202 * Return %true iff I'm a worker execuing a work item on @wq. If
1203 * I'm @worker, it's safe to dereference it without locking.
1204 */
Tejun Heo112202d2013-02-13 19:29:12 -08001205 return worker && worker->current_pwq->wq == wq;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001206}
1207
Tejun Heod84ff052013-03-12 11:29:59 -07001208static void __queue_work(int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 struct work_struct *work)
1210{
Tejun Heo112202d2013-02-13 19:29:12 -08001211 struct pool_workqueue *pwq;
Tejun Heoc9178082013-03-12 11:30:04 -07001212 struct worker_pool *last_pool;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001213 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001214 unsigned int work_flags;
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001215 unsigned int req_cpu = cpu;
Tejun Heo8930cab2012-08-03 10:30:45 -07001216
1217 /*
1218 * While a work item is PENDING && off queue, a task trying to
1219 * steal the PENDING will busy-loop waiting for it to either get
1220 * queued or lose PENDING. Grabbing PENDING and queueing should
1221 * happen with IRQ disabled.
1222 */
1223 WARN_ON_ONCE(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001225 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001226
Tejun Heoc8efcc22010-12-20 19:32:04 +01001227 /* if dying, only works from the same workqueue are allowed */
Tejun Heo618b01e2013-03-12 11:30:04 -07001228 if (unlikely(wq->flags & __WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +01001229 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +02001230 return;
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07001231retry:
Tejun Heoc9178082013-03-12 11:30:04 -07001232 /* pwq which will be used unless @work is executing elsewhere */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001233 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo57469822012-08-03 10:30:45 -07001234 if (cpu == WORK_CPU_UNBOUND)
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001235 cpu = raw_smp_processor_id();
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001236 pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
Tejun Heoc9178082013-03-12 11:30:04 -07001237 } else {
1238 pwq = first_pwq(wq);
1239 }
Tejun Heodbf25762012-08-20 14:51:23 -07001240
Tejun Heoc9178082013-03-12 11:30:04 -07001241 /*
1242 * If @work was previously on a different pool, it might still be
1243 * running there, in which case the work needs to be queued on that
1244 * pool to guarantee non-reentrancy.
1245 */
1246 last_pool = get_work_pool(work);
1247 if (last_pool && last_pool != pwq->pool) {
1248 struct worker *worker;
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001249
Tejun Heoc9178082013-03-12 11:30:04 -07001250 spin_lock(&last_pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001251
Tejun Heoc9178082013-03-12 11:30:04 -07001252 worker = find_worker_executing_work(last_pool, work);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001253
Tejun Heoc9178082013-03-12 11:30:04 -07001254 if (worker && worker->current_pwq->wq == wq) {
1255 pwq = worker->current_pwq;
Tejun Heo8930cab2012-08-03 10:30:45 -07001256 } else {
Tejun Heoc9178082013-03-12 11:30:04 -07001257 /* meh... not running there, queue here */
1258 spin_unlock(&last_pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08001259 spin_lock(&pwq->pool->lock);
Tejun Heo8930cab2012-08-03 10:30:45 -07001260 }
Tejun Heof3421792010-07-02 10:03:51 +02001261 } else {
Tejun Heo112202d2013-02-13 19:29:12 -08001262 spin_lock(&pwq->pool->lock);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001263 }
1264
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07001265 /*
1266 * pwq is determined and locked. For unbound pools, we could have
1267 * raced with pwq release and it could already be dead. If its
1268 * refcnt is zero, repeat pwq selection. Note that pwqs never die
1269 * without another pwq replacing it as the first pwq or while a
1270 * work item is executing on it, so the retying is guaranteed to
1271 * make forward-progress.
1272 */
1273 if (unlikely(!pwq->refcnt)) {
1274 if (wq->flags & WQ_UNBOUND) {
1275 spin_unlock(&pwq->pool->lock);
1276 cpu_relax();
1277 goto retry;
1278 }
1279 /* oops */
1280 WARN_ONCE(true, "workqueue: per-cpu pwq for %s on cpu%d has 0 refcnt",
1281 wq->name, cpu);
1282 }
1283
Tejun Heo112202d2013-02-13 19:29:12 -08001284 /* pwq determined, queue */
1285 trace_workqueue_queue_work(req_cpu, pwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001286
Dan Carpenterf5b25522012-04-13 22:06:58 +03001287 if (WARN_ON(!list_empty(&work->entry))) {
Tejun Heo112202d2013-02-13 19:29:12 -08001288 spin_unlock(&pwq->pool->lock);
Dan Carpenterf5b25522012-04-13 22:06:58 +03001289 return;
1290 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001291
Tejun Heo112202d2013-02-13 19:29:12 -08001292 pwq->nr_in_flight[pwq->work_color]++;
1293 work_flags = work_color_to_flags(pwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001294
Tejun Heo112202d2013-02-13 19:29:12 -08001295 if (likely(pwq->nr_active < pwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001296 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -08001297 pwq->nr_active++;
1298 worklist = &pwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001299 } else {
1300 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo112202d2013-02-13 19:29:12 -08001301 worklist = &pwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001302 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001303
Tejun Heo112202d2013-02-13 19:29:12 -08001304 insert_work(pwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001305
Tejun Heo112202d2013-02-13 19:29:12 -08001306 spin_unlock(&pwq->pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001309/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07001310 * queue_work_on - queue work on specific cpu
1311 * @cpu: CPU number to execute work on
1312 * @wq: workqueue to use
1313 * @work: work to queue
1314 *
Tejun Heod4283e92012-08-03 10:30:44 -07001315 * Returns %false if @work was already on a queue, %true otherwise.
Zhang Ruic1a220e2008-07-23 21:28:39 -07001316 *
1317 * We queue the work to a specific CPU, the caller must ensure it
1318 * can't go away.
1319 */
Tejun Heod4283e92012-08-03 10:30:44 -07001320bool queue_work_on(int cpu, struct workqueue_struct *wq,
1321 struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07001322{
Tejun Heod4283e92012-08-03 10:30:44 -07001323 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001324 unsigned long flags;
1325
1326 local_irq_save(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001327
Tejun Heo22df02b2010-06-29 10:07:10 +02001328 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001329 __queue_work(cpu, wq, work);
Tejun Heod4283e92012-08-03 10:30:44 -07001330 ret = true;
Zhang Ruic1a220e2008-07-23 21:28:39 -07001331 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001332
1333 local_irq_restore(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001334 return ret;
1335}
1336EXPORT_SYMBOL_GPL(queue_work_on);
1337
Tejun Heo0a13c002012-08-03 10:30:44 -07001338/**
1339 * queue_work - queue work on a workqueue
1340 * @wq: workqueue to use
1341 * @work: work to queue
1342 *
Tejun Heod4283e92012-08-03 10:30:44 -07001343 * Returns %false if @work was already on a queue, %true otherwise.
Tejun Heo0a13c002012-08-03 10:30:44 -07001344 *
1345 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1346 * it can be processed by another CPU.
1347 */
Tejun Heod4283e92012-08-03 10:30:44 -07001348bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
Tejun Heo0a13c002012-08-03 10:30:44 -07001349{
Tejun Heo57469822012-08-03 10:30:45 -07001350 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
Tejun Heo0a13c002012-08-03 10:30:44 -07001351}
1352EXPORT_SYMBOL_GPL(queue_work);
1353
Tejun Heod8e794d2012-08-03 10:30:45 -07001354void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
David Howells52bad642006-11-22 14:54:01 +00001356 struct delayed_work *dwork = (struct delayed_work *)__data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001358 /* should have been called from irqsafe timer with irq already off */
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001359 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
Konstantin Khlebnikov1438ade52013-01-24 16:36:31 +04001361EXPORT_SYMBOL(delayed_work_timer_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001363static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1364 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001366 struct timer_list *timer = &dwork->timer;
1367 struct work_struct *work = &dwork->work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001369 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1370 timer->data != (unsigned long)dwork);
Tejun Heofc4b5142012-12-04 07:40:39 -08001371 WARN_ON_ONCE(timer_pending(timer));
1372 WARN_ON_ONCE(!list_empty(&work->entry));
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001373
Tejun Heo8852aac2012-12-01 16:23:42 -08001374 /*
1375 * If @delay is 0, queue @dwork->work immediately. This is for
1376 * both optimization and correctness. The earliest @timer can
1377 * expire is on the closest next tick and delayed_work users depend
1378 * on that there's no such delay when @delay is 0.
1379 */
1380 if (!delay) {
1381 __queue_work(cpu, wq, &dwork->work);
1382 return;
1383 }
1384
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001385 timer_stats_timer_set_start_info(&dwork->timer);
1386
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001387 dwork->wq = wq;
Tejun Heo12650572012-08-08 09:38:42 -07001388 dwork->cpu = cpu;
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001389 timer->expires = jiffies + delay;
1390
1391 if (unlikely(cpu != WORK_CPU_UNBOUND))
1392 add_timer_on(timer, cpu);
1393 else
1394 add_timer(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001397/**
1398 * queue_delayed_work_on - queue work on specific CPU after delay
1399 * @cpu: CPU number to execute work on
1400 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001401 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001402 * @delay: number of jiffies to wait before queueing
1403 *
Tejun Heo715f1302012-08-03 10:30:46 -07001404 * Returns %false if @work was already on a queue, %true otherwise. If
1405 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1406 * execution.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001407 */
Tejun Heod4283e92012-08-03 10:30:44 -07001408bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1409 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001410{
David Howells52bad642006-11-22 14:54:01 +00001411 struct work_struct *work = &dwork->work;
Tejun Heod4283e92012-08-03 10:30:44 -07001412 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001413 unsigned long flags;
1414
1415 /* read the comment in __queue_work() */
1416 local_irq_save(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001417
Tejun Heo22df02b2010-06-29 10:07:10 +02001418 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001419 __queue_delayed_work(cpu, wq, dwork, delay);
Tejun Heod4283e92012-08-03 10:30:44 -07001420 ret = true;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001421 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001422
1423 local_irq_restore(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001424 return ret;
1425}
Dave Jonesae90dd52006-06-30 01:40:45 -04001426EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Tejun Heoc8e55f32010-06-29 10:07:12 +02001428/**
Tejun Heo0a13c002012-08-03 10:30:44 -07001429 * queue_delayed_work - queue work on a workqueue after delay
1430 * @wq: workqueue to use
1431 * @dwork: delayable work to queue
1432 * @delay: number of jiffies to wait before queueing
1433 *
Tejun Heo715f1302012-08-03 10:30:46 -07001434 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
Tejun Heo0a13c002012-08-03 10:30:44 -07001435 */
Tejun Heod4283e92012-08-03 10:30:44 -07001436bool queue_delayed_work(struct workqueue_struct *wq,
Tejun Heo0a13c002012-08-03 10:30:44 -07001437 struct delayed_work *dwork, unsigned long delay)
1438{
Tejun Heo57469822012-08-03 10:30:45 -07001439 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
Tejun Heo0a13c002012-08-03 10:30:44 -07001440}
1441EXPORT_SYMBOL_GPL(queue_delayed_work);
1442
1443/**
Tejun Heo8376fe22012-08-03 10:30:47 -07001444 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1445 * @cpu: CPU number to execute work on
1446 * @wq: workqueue to use
1447 * @dwork: work to queue
1448 * @delay: number of jiffies to wait before queueing
1449 *
1450 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1451 * modify @dwork's timer so that it expires after @delay. If @delay is
1452 * zero, @work is guaranteed to be scheduled immediately regardless of its
1453 * current state.
1454 *
1455 * Returns %false if @dwork was idle and queued, %true if @dwork was
1456 * pending and its timer was modified.
1457 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001458 * This function is safe to call from any context including IRQ handler.
Tejun Heo8376fe22012-08-03 10:30:47 -07001459 * See try_to_grab_pending() for details.
1460 */
1461bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1462 struct delayed_work *dwork, unsigned long delay)
1463{
1464 unsigned long flags;
1465 int ret;
1466
1467 do {
1468 ret = try_to_grab_pending(&dwork->work, true, &flags);
1469 } while (unlikely(ret == -EAGAIN));
1470
1471 if (likely(ret >= 0)) {
1472 __queue_delayed_work(cpu, wq, dwork, delay);
1473 local_irq_restore(flags);
1474 }
1475
1476 /* -ENOENT from try_to_grab_pending() becomes %true */
1477 return ret;
1478}
1479EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1480
1481/**
1482 * mod_delayed_work - modify delay of or queue a delayed work
1483 * @wq: workqueue to use
1484 * @dwork: work to queue
1485 * @delay: number of jiffies to wait before queueing
1486 *
1487 * mod_delayed_work_on() on local CPU.
1488 */
1489bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
1490 unsigned long delay)
1491{
1492 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
1493}
1494EXPORT_SYMBOL_GPL(mod_delayed_work);
1495
1496/**
Tejun Heoc8e55f32010-06-29 10:07:12 +02001497 * worker_enter_idle - enter idle state
1498 * @worker: worker which is entering idle state
1499 *
1500 * @worker is entering idle state. Update stats and idle timer if
1501 * necessary.
1502 *
1503 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001504 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001505 */
1506static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001508 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Tejun Heo6183c002013-03-12 11:29:57 -07001510 if (WARN_ON_ONCE(worker->flags & WORKER_IDLE) ||
1511 WARN_ON_ONCE(!list_empty(&worker->entry) &&
1512 (worker->hentry.next || worker->hentry.pprev)))
1513 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Tejun Heocb444762010-07-02 10:03:50 +02001515 /* can't use worker_set_flags(), also called from start_worker() */
1516 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001517 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001518 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001519
Tejun Heoc8e55f32010-06-29 10:07:12 +02001520 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001521 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001522
Tejun Heo628c78e2012-07-17 12:39:27 -07001523 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1524 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001525
Tejun Heo544ecf32012-05-14 15:04:50 -07001526 /*
Tejun Heo706026c2013-01-24 11:01:34 -08001527 * Sanity check nr_running. Because wq_unbind_fn() releases
Tejun Heod565ed62013-01-24 11:01:33 -08001528 * pool->lock between setting %WORKER_UNBOUND and zapping
Tejun Heo628c78e2012-07-17 12:39:27 -07001529 * nr_running, the warning may trigger spuriously. Check iff
1530 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001531 */
Tejun Heo24647572013-01-24 11:01:33 -08001532 WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001533 pool->nr_workers == pool->nr_idle &&
Tejun Heoe19e3972013-01-24 11:39:44 -08001534 atomic_read(&pool->nr_running));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
Tejun Heoc8e55f32010-06-29 10:07:12 +02001537/**
1538 * worker_leave_idle - leave idle state
1539 * @worker: worker which is leaving idle state
1540 *
1541 * @worker is leaving idle state. Update stats.
1542 *
1543 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001544 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001545 */
1546static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001548 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Tejun Heo6183c002013-03-12 11:29:57 -07001550 if (WARN_ON_ONCE(!(worker->flags & WORKER_IDLE)))
1551 return;
Tejun Heod302f012010-06-29 10:07:13 +02001552 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001553 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001554 list_del_init(&worker->entry);
1555}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Tejun Heoe22bee72010-06-29 10:07:14 +02001557/**
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001558 * worker_maybe_bind_and_lock - try to bind %current to worker_pool and lock it
1559 * @pool: target worker_pool
1560 *
1561 * Bind %current to the cpu of @pool if it is associated and lock @pool.
Tejun Heoe22bee72010-06-29 10:07:14 +02001562 *
1563 * Works which are scheduled while the cpu is online must at least be
1564 * scheduled to a worker which is bound to the cpu so that if they are
1565 * flushed from cpu callbacks while cpu is going down, they are
1566 * guaranteed to execute on the cpu.
1567 *
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001568 * This function is to be used by unbound workers and rescuers to bind
Tejun Heoe22bee72010-06-29 10:07:14 +02001569 * themselves to the target cpu and may race with cpu going down or
1570 * coming online. kthread_bind() can't be used because it may put the
1571 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
Tejun Heo706026c2013-01-24 11:01:34 -08001572 * verbatim as it's best effort and blocking and pool may be
Tejun Heoe22bee72010-06-29 10:07:14 +02001573 * [dis]associated in the meantime.
1574 *
Tejun Heo706026c2013-01-24 11:01:34 -08001575 * This function tries set_cpus_allowed() and locks pool and verifies the
Tejun Heo24647572013-01-24 11:01:33 -08001576 * binding against %POOL_DISASSOCIATED which is set during
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001577 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1578 * enters idle state or fetches works without dropping lock, it can
1579 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001580 *
1581 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001582 * Might sleep. Called without any lock but returns with pool->lock
Tejun Heoe22bee72010-06-29 10:07:14 +02001583 * held.
1584 *
1585 * RETURNS:
Tejun Heo706026c2013-01-24 11:01:34 -08001586 * %true if the associated pool is online (@worker is successfully
Tejun Heoe22bee72010-06-29 10:07:14 +02001587 * bound), %false if offline.
1588 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001589static bool worker_maybe_bind_and_lock(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001590__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001591{
Tejun Heoe22bee72010-06-29 10:07:14 +02001592 while (true) {
1593 /*
1594 * The following call may fail, succeed or succeed
1595 * without actually migrating the task to the cpu if
1596 * it races with cpu hotunplug operation. Verify
Tejun Heo24647572013-01-24 11:01:33 -08001597 * against POOL_DISASSOCIATED.
Tejun Heoe22bee72010-06-29 10:07:14 +02001598 */
Tejun Heo24647572013-01-24 11:01:33 -08001599 if (!(pool->flags & POOL_DISASSOCIATED))
Tejun Heo7a4e3442013-03-12 11:30:00 -07001600 set_cpus_allowed_ptr(current, pool->attrs->cpumask);
Oleg Nesterov85f41862007-05-09 02:34:20 -07001601
Tejun Heod565ed62013-01-24 11:01:33 -08001602 spin_lock_irq(&pool->lock);
Tejun Heo24647572013-01-24 11:01:33 -08001603 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heoe22bee72010-06-29 10:07:14 +02001604 return false;
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001605 if (task_cpu(current) == pool->cpu &&
Tejun Heo7a4e3442013-03-12 11:30:00 -07001606 cpumask_equal(&current->cpus_allowed, pool->attrs->cpumask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001607 return true;
Tejun Heod565ed62013-01-24 11:01:33 -08001608 spin_unlock_irq(&pool->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001609
Tejun Heo5035b202011-04-29 18:08:37 +02001610 /*
1611 * We've raced with CPU hot[un]plug. Give it a breather
1612 * and retry migration. cond_resched() is required here;
1613 * otherwise, we might deadlock against cpu_stop trying to
1614 * bring down the CPU on non-preemptive kernel.
1615 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001616 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001617 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001618 }
1619}
1620
1621/*
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001622 * Rebind an idle @worker to its CPU. worker_thread() will test
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001623 * list_empty(@worker->entry) before leaving idle and call this function.
Tejun Heo25511a42012-07-17 12:39:27 -07001624 */
1625static void idle_worker_rebind(struct worker *worker)
1626{
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001627 /* CPU may go down again inbetween, clear UNBOUND only on success */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001628 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001629 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heo25511a42012-07-17 12:39:27 -07001630
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001631 /* rebind complete, become available again */
1632 list_add(&worker->entry, &worker->pool->idle_list);
Tejun Heod565ed62013-01-24 11:01:33 -08001633 spin_unlock_irq(&worker->pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001634}
1635
1636/*
1637 * Function for @worker->rebind.work used to rebind unbound busy workers to
Tejun Heo403c8212012-07-17 12:39:27 -07001638 * the associated cpu which is coming back online. This is scheduled by
1639 * cpu up but can race with other cpu hotplug operations and may be
1640 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001641 */
Tejun Heo25511a42012-07-17 12:39:27 -07001642static void busy_worker_rebind_fn(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001643{
1644 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heoe22bee72010-06-29 10:07:14 +02001645
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001646 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshaneab6d822012-09-18 09:59:22 -07001647 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heoe22bee72010-06-29 10:07:14 +02001648
Tejun Heod565ed62013-01-24 11:01:33 -08001649 spin_unlock_irq(&worker->pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001650}
1651
Tejun Heo25511a42012-07-17 12:39:27 -07001652/**
Tejun Heo94cf58b2013-01-24 11:01:33 -08001653 * rebind_workers - rebind all workers of a pool to the associated CPU
1654 * @pool: pool of interest
Tejun Heo25511a42012-07-17 12:39:27 -07001655 *
Tejun Heo94cf58b2013-01-24 11:01:33 -08001656 * @pool->cpu is coming online. Rebind all workers to the CPU. Rebinding
Tejun Heo25511a42012-07-17 12:39:27 -07001657 * is different for idle and busy ones.
1658 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001659 * Idle ones will be removed from the idle_list and woken up. They will
1660 * add themselves back after completing rebind. This ensures that the
1661 * idle_list doesn't contain any unbound workers when re-bound busy workers
1662 * try to perform local wake-ups for concurrency management.
Tejun Heo25511a42012-07-17 12:39:27 -07001663 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001664 * Busy workers can rebind after they finish their current work items.
1665 * Queueing the rebind work item at the head of the scheduled list is
1666 * enough. Note that nr_running will be properly bumped as busy workers
1667 * rebind.
Tejun Heo25511a42012-07-17 12:39:27 -07001668 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001669 * On return, all non-manager workers are scheduled for rebind - see
1670 * manage_workers() for the manager special case. Any idle worker
1671 * including the manager will not appear on @idle_list until rebind is
1672 * complete, making local wake-ups safe.
Tejun Heo25511a42012-07-17 12:39:27 -07001673 */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001674static void rebind_workers(struct worker_pool *pool)
Tejun Heo25511a42012-07-17 12:39:27 -07001675{
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001676 struct worker *worker, *n;
Tejun Heo25511a42012-07-17 12:39:27 -07001677 int i;
1678
Tejun Heo94cf58b2013-01-24 11:01:33 -08001679 lockdep_assert_held(&pool->assoc_mutex);
1680 lockdep_assert_held(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001681
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001682 /* dequeue and kick idle ones */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001683 list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
1684 /*
1685 * idle workers should be off @pool->idle_list until rebind
1686 * is complete to avoid receiving premature local wake-ups.
1687 */
1688 list_del_init(&worker->entry);
Lai Jiangshan96e65302012-09-02 00:28:19 +08001689
Tejun Heo94cf58b2013-01-24 11:01:33 -08001690 /*
1691 * worker_thread() will see the above dequeuing and call
1692 * idle_worker_rebind().
1693 */
1694 wake_up_process(worker->task);
1695 }
Tejun Heo25511a42012-07-17 12:39:27 -07001696
Tejun Heo94cf58b2013-01-24 11:01:33 -08001697 /* rebind busy workers */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001698 for_each_busy_worker(worker, i, pool) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08001699 struct work_struct *rebind_work = &worker->rebind_work;
1700 struct workqueue_struct *wq;
Tejun Heo25511a42012-07-17 12:39:27 -07001701
Tejun Heo94cf58b2013-01-24 11:01:33 -08001702 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1703 work_data_bits(rebind_work)))
1704 continue;
Tejun Heo25511a42012-07-17 12:39:27 -07001705
Tejun Heo94cf58b2013-01-24 11:01:33 -08001706 debug_work_activate(rebind_work);
Tejun Heo90beca52012-09-04 23:12:33 -07001707
Tejun Heo94cf58b2013-01-24 11:01:33 -08001708 /*
1709 * wq doesn't really matter but let's keep @worker->pool
Tejun Heo112202d2013-02-13 19:29:12 -08001710 * and @pwq->pool consistent for sanity.
Tejun Heo94cf58b2013-01-24 11:01:33 -08001711 */
Tejun Heo7a4e3442013-03-12 11:30:00 -07001712 if (worker->pool->attrs->nice < 0)
Tejun Heo94cf58b2013-01-24 11:01:33 -08001713 wq = system_highpri_wq;
1714 else
1715 wq = system_wq;
Tejun Heoec588152012-09-04 23:16:32 -07001716
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001717 insert_work(per_cpu_ptr(wq->cpu_pwqs, pool->cpu), rebind_work,
Tejun Heo94cf58b2013-01-24 11:01:33 -08001718 worker->scheduled.next,
1719 work_color_to_flags(WORK_NO_COLOR));
Tejun Heoec588152012-09-04 23:16:32 -07001720 }
Tejun Heo25511a42012-07-17 12:39:27 -07001721}
1722
Tejun Heoc34056a2010-06-29 10:07:11 +02001723static struct worker *alloc_worker(void)
1724{
1725 struct worker *worker;
1726
1727 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001728 if (worker) {
1729 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001730 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001731 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001732 /* on creation a worker is in !idle && prep state */
1733 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001734 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001735 return worker;
1736}
1737
1738/**
1739 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001740 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001741 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001742 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001743 * can be started by calling start_worker() or destroyed using
1744 * destroy_worker().
1745 *
1746 * CONTEXT:
1747 * Might sleep. Does GFP_KERNEL allocations.
1748 *
1749 * RETURNS:
1750 * Pointer to the newly created worker.
1751 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001752static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001753{
Tejun Heo7a4e3442013-03-12 11:30:00 -07001754 const char *pri = pool->attrs->nice < 0 ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001755 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001756 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001757
Tejun Heod565ed62013-01-24 11:01:33 -08001758 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001759 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heod565ed62013-01-24 11:01:33 -08001760 spin_unlock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001761 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001762 goto fail;
Tejun Heod565ed62013-01-24 11:01:33 -08001763 spin_lock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001764 }
Tejun Heod565ed62013-01-24 11:01:33 -08001765 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001766
1767 worker = alloc_worker();
1768 if (!worker)
1769 goto fail;
1770
Tejun Heobd7bdd42012-07-12 14:46:37 -07001771 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001772 worker->id = id;
1773
Tejun Heo29c91e92013-03-12 11:30:03 -07001774 if (pool->cpu >= 0)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001775 worker->task = kthread_create_on_node(worker_thread,
Tejun Heoec22ca52013-01-24 11:01:33 -08001776 worker, cpu_to_node(pool->cpu),
Tejun Heod84ff052013-03-12 11:29:59 -07001777 "kworker/%d:%d%s", pool->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001778 else
1779 worker->task = kthread_create(worker_thread, worker,
Tejun Heoac6104c2013-03-12 11:30:03 -07001780 "kworker/u%d:%d%s",
1781 pool->id, id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001782 if (IS_ERR(worker->task))
1783 goto fail;
1784
Tejun Heo7a4e3442013-03-12 11:30:00 -07001785 set_user_nice(worker->task, pool->attrs->nice);
1786 set_cpus_allowed_ptr(worker->task, pool->attrs->cpumask);
Tejun Heo32704762012-07-13 22:16:45 -07001787
Tejun Heodb7bccf2010-06-29 10:07:12 +02001788 /*
Tejun Heo7a4e3442013-03-12 11:30:00 -07001789 * %PF_THREAD_BOUND is used to prevent userland from meddling with
1790 * cpumask of workqueue workers. This is an abuse. We need
1791 * %PF_NO_SETAFFINITY.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001792 */
Tejun Heo7a4e3442013-03-12 11:30:00 -07001793 worker->task->flags |= PF_THREAD_BOUND;
1794
1795 /*
1796 * The caller is responsible for ensuring %POOL_DISASSOCIATED
1797 * remains stable across this function. See the comments above the
1798 * flag definition for details.
1799 */
1800 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001801 worker->flags |= WORKER_UNBOUND;
Oleg Nesterov3af244332007-05-09 02:34:09 -07001802
Tejun Heoc34056a2010-06-29 10:07:11 +02001803 return worker;
1804fail:
1805 if (id >= 0) {
Tejun Heod565ed62013-01-24 11:01:33 -08001806 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001807 ida_remove(&pool->worker_ida, id);
Tejun Heod565ed62013-01-24 11:01:33 -08001808 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001809 }
1810 kfree(worker);
1811 return NULL;
1812}
1813
1814/**
1815 * start_worker - start a newly created worker
1816 * @worker: worker to start
1817 *
Tejun Heo706026c2013-01-24 11:01:34 -08001818 * Make the pool aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001819 *
1820 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001821 * spin_lock_irq(pool->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001822 */
1823static void start_worker(struct worker *worker)
1824{
Tejun Heocb444762010-07-02 10:03:50 +02001825 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001826 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001827 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001828 wake_up_process(worker->task);
1829}
1830
1831/**
1832 * destroy_worker - destroy a workqueue worker
1833 * @worker: worker to be destroyed
1834 *
Tejun Heo706026c2013-01-24 11:01:34 -08001835 * Destroy @worker and adjust @pool stats accordingly.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001836 *
1837 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001838 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001839 */
1840static void destroy_worker(struct worker *worker)
1841{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001842 struct worker_pool *pool = worker->pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001843 int id = worker->id;
1844
1845 /* sanity check frenzy */
Tejun Heo6183c002013-03-12 11:29:57 -07001846 if (WARN_ON(worker->current_work) ||
1847 WARN_ON(!list_empty(&worker->scheduled)))
1848 return;
Tejun Heoc34056a2010-06-29 10:07:11 +02001849
Tejun Heoc8e55f32010-06-29 10:07:12 +02001850 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001851 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001852 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001853 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001854
1855 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001856 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001857
Tejun Heod565ed62013-01-24 11:01:33 -08001858 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001859
Tejun Heoc34056a2010-06-29 10:07:11 +02001860 kthread_stop(worker->task);
1861 kfree(worker);
1862
Tejun Heod565ed62013-01-24 11:01:33 -08001863 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001864 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001865}
1866
Tejun Heo63d95a92012-07-12 14:46:37 -07001867static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001868{
Tejun Heo63d95a92012-07-12 14:46:37 -07001869 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001870
Tejun Heod565ed62013-01-24 11:01:33 -08001871 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001872
Tejun Heo63d95a92012-07-12 14:46:37 -07001873 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001874 struct worker *worker;
1875 unsigned long expires;
1876
1877 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001878 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001879 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1880
1881 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001882 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001883 else {
1884 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001885 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001886 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001887 }
1888 }
1889
Tejun Heod565ed62013-01-24 11:01:33 -08001890 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001891}
1892
Tejun Heo493a1722013-03-12 11:29:59 -07001893static void send_mayday(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001894{
Tejun Heo112202d2013-02-13 19:29:12 -08001895 struct pool_workqueue *pwq = get_work_pwq(work);
1896 struct workqueue_struct *wq = pwq->wq;
Tejun Heo493a1722013-03-12 11:29:59 -07001897
1898 lockdep_assert_held(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001899
Tejun Heo493008a2013-03-12 11:30:03 -07001900 if (!wq->rescuer)
Tejun Heo493a1722013-03-12 11:29:59 -07001901 return;
Tejun Heoe22bee72010-06-29 10:07:14 +02001902
1903 /* mayday mayday mayday */
Tejun Heo493a1722013-03-12 11:29:59 -07001904 if (list_empty(&pwq->mayday_node)) {
1905 list_add_tail(&pwq->mayday_node, &wq->maydays);
Tejun Heoe22bee72010-06-29 10:07:14 +02001906 wake_up_process(wq->rescuer->task);
Tejun Heo493a1722013-03-12 11:29:59 -07001907 }
Tejun Heoe22bee72010-06-29 10:07:14 +02001908}
1909
Tejun Heo706026c2013-01-24 11:01:34 -08001910static void pool_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001911{
Tejun Heo63d95a92012-07-12 14:46:37 -07001912 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001913 struct work_struct *work;
1914
Tejun Heo493a1722013-03-12 11:29:59 -07001915 spin_lock_irq(&workqueue_lock); /* for wq->maydays */
1916 spin_lock(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001917
Tejun Heo63d95a92012-07-12 14:46:37 -07001918 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001919 /*
1920 * We've been trying to create a new worker but
1921 * haven't been successful. We might be hitting an
1922 * allocation deadlock. Send distress signals to
1923 * rescuers.
1924 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001925 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001926 send_mayday(work);
1927 }
1928
Tejun Heo493a1722013-03-12 11:29:59 -07001929 spin_unlock(&pool->lock);
1930 spin_unlock_irq(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001931
Tejun Heo63d95a92012-07-12 14:46:37 -07001932 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001933}
1934
1935/**
1936 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001937 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001938 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001939 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001940 * have at least one idle worker on return from this function. If
1941 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001942 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001943 * possible allocation deadlock.
1944 *
1945 * On return, need_to_create_worker() is guaranteed to be false and
1946 * may_start_working() true.
1947 *
1948 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001949 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001950 * multiple times. Does GFP_KERNEL allocations. Called only from
1951 * manager.
1952 *
1953 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001954 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001955 * otherwise.
1956 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001957static bool maybe_create_worker(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001958__releases(&pool->lock)
1959__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001960{
Tejun Heo63d95a92012-07-12 14:46:37 -07001961 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001962 return false;
1963restart:
Tejun Heod565ed62013-01-24 11:01:33 -08001964 spin_unlock_irq(&pool->lock);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001965
Tejun Heoe22bee72010-06-29 10:07:14 +02001966 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001967 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001968
1969 while (true) {
1970 struct worker *worker;
1971
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001972 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001973 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001974 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001975 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001976 start_worker(worker);
Tejun Heo6183c002013-03-12 11:29:57 -07001977 if (WARN_ON_ONCE(need_to_create_worker(pool)))
1978 goto restart;
Tejun Heoe22bee72010-06-29 10:07:14 +02001979 return true;
1980 }
1981
Tejun Heo63d95a92012-07-12 14:46:37 -07001982 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001983 break;
1984
Tejun Heoe22bee72010-06-29 10:07:14 +02001985 __set_current_state(TASK_INTERRUPTIBLE);
1986 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001987
Tejun Heo63d95a92012-07-12 14:46:37 -07001988 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001989 break;
1990 }
1991
Tejun Heo63d95a92012-07-12 14:46:37 -07001992 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001993 spin_lock_irq(&pool->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001994 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001995 goto restart;
1996 return true;
1997}
1998
1999/**
2000 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07002001 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02002002 *
Tejun Heo63d95a92012-07-12 14:46:37 -07002003 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02002004 * IDLE_WORKER_TIMEOUT.
2005 *
2006 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08002007 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02002008 * multiple times. Called only from manager.
2009 *
2010 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08002011 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02002012 * otherwise.
2013 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002014static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02002015{
2016 bool ret = false;
2017
Tejun Heo63d95a92012-07-12 14:46:37 -07002018 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02002019 struct worker *worker;
2020 unsigned long expires;
2021
Tejun Heo63d95a92012-07-12 14:46:37 -07002022 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02002023 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
2024
2025 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07002026 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02002027 break;
2028 }
2029
2030 destroy_worker(worker);
2031 ret = true;
2032 }
2033
2034 return ret;
2035}
2036
2037/**
2038 * manage_workers - manage worker pool
2039 * @worker: self
2040 *
Tejun Heo706026c2013-01-24 11:01:34 -08002041 * Assume the manager role and manage the worker pool @worker belongs
Tejun Heoe22bee72010-06-29 10:07:14 +02002042 * to. At any given time, there can be only zero or one manager per
Tejun Heo706026c2013-01-24 11:01:34 -08002043 * pool. The exclusion is handled automatically by this function.
Tejun Heoe22bee72010-06-29 10:07:14 +02002044 *
2045 * The caller can safely start processing works on false return. On
2046 * true return, it's guaranteed that need_to_create_worker() is false
2047 * and may_start_working() is true.
2048 *
2049 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002050 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02002051 * multiple times. Does GFP_KERNEL allocations.
2052 *
2053 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08002054 * spin_lock_irq(pool->lock) which may be released and regrabbed
2055 * multiple times. Does GFP_KERNEL allocations.
Tejun Heoe22bee72010-06-29 10:07:14 +02002056 */
2057static bool manage_workers(struct worker *worker)
2058{
Tejun Heo63d95a92012-07-12 14:46:37 -07002059 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002060 bool ret = false;
2061
Tejun Heo34a06bd2013-03-12 11:30:00 -07002062 if (!mutex_trylock(&pool->manager_arb))
Tejun Heoe22bee72010-06-29 10:07:14 +02002063 return ret;
2064
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002065 /*
2066 * To simplify both worker management and CPU hotplug, hold off
2067 * management while hotplug is in progress. CPU hotplug path can't
Tejun Heo34a06bd2013-03-12 11:30:00 -07002068 * grab @pool->manager_arb to achieve this because that can lead to
2069 * idle worker depletion (all become busy thinking someone else is
2070 * managing) which in turn can result in deadlock under extreme
2071 * circumstances. Use @pool->assoc_mutex to synchronize manager
2072 * against CPU hotplug.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002073 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002074 * assoc_mutex would always be free unless CPU hotplug is in
Tejun Heod565ed62013-01-24 11:01:33 -08002075 * progress. trylock first without dropping @pool->lock.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002076 */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002077 if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002078 spin_unlock_irq(&pool->lock);
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002079 mutex_lock(&pool->assoc_mutex);
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002080 /*
2081 * CPU hotplug could have happened while we were waiting
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002082 * for assoc_mutex. Hotplug itself can't handle us
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002083 * because manager isn't either on idle or busy list, and
Tejun Heo706026c2013-01-24 11:01:34 -08002084 * @pool's state and ours could have deviated.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002085 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002086 * As hotplug is now excluded via assoc_mutex, we can
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002087 * simply try to bind. It will succeed or fail depending
Tejun Heo706026c2013-01-24 11:01:34 -08002088 * on @pool's current state. Try it and adjust
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002089 * %WORKER_UNBOUND accordingly.
2090 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002091 if (worker_maybe_bind_and_lock(pool))
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002092 worker->flags &= ~WORKER_UNBOUND;
2093 else
2094 worker->flags |= WORKER_UNBOUND;
2095
2096 ret = true;
2097 }
2098
Tejun Heo11ebea52012-07-12 14:46:37 -07002099 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02002100
2101 /*
2102 * Destroy and then create so that may_start_working() is true
2103 * on return.
2104 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002105 ret |= maybe_destroy_workers(pool);
2106 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02002107
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002108 mutex_unlock(&pool->assoc_mutex);
Tejun Heo34a06bd2013-03-12 11:30:00 -07002109 mutex_unlock(&pool->manager_arb);
Tejun Heoe22bee72010-06-29 10:07:14 +02002110 return ret;
2111}
2112
Tejun Heoa62428c2010-06-29 10:07:10 +02002113/**
2114 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02002115 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02002116 * @work: work to process
2117 *
2118 * Process @work. This function contains all the logics necessary to
2119 * process a single work including synchronization against and
2120 * interaction with other workers on the same cpu, queueing and
2121 * flushing. As long as context requirement is met, any worker can
2122 * call this function to process a work.
2123 *
2124 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002125 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002126 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002127static void process_one_work(struct worker *worker, struct work_struct *work)
Tejun Heod565ed62013-01-24 11:01:33 -08002128__releases(&pool->lock)
2129__acquires(&pool->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002130{
Tejun Heo112202d2013-02-13 19:29:12 -08002131 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002132 struct worker_pool *pool = worker->pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002133 bool cpu_intensive = pwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heo73f53c42010-06-29 10:07:11 +02002134 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002135 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002136#ifdef CONFIG_LOCKDEP
2137 /*
2138 * It is permissible to free the struct work_struct from
2139 * inside the function that is called from it, this we need to
2140 * take into account for lockdep too. To avoid bogus "held
2141 * lock freed" warnings as well as problems when looking into
2142 * work->lockdep_map, make a copy and use that here.
2143 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002144 struct lockdep_map lockdep_map;
2145
2146 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002147#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002148 /*
2149 * Ensure we're on the correct CPU. DISASSOCIATED test is
2150 * necessary to avoid spurious warnings from rescuers servicing the
Tejun Heo24647572013-01-24 11:01:33 -08002151 * unbound or a disassociated pool.
Tejun Heo6fec10a2012-07-22 10:16:34 -07002152 */
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002153 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
Tejun Heo24647572013-01-24 11:01:33 -08002154 !(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heoec22ca52013-01-24 11:01:33 -08002155 raw_smp_processor_id() != pool->cpu);
Tejun Heo25511a42012-07-17 12:39:27 -07002156
Tejun Heo7e116292010-06-29 10:07:13 +02002157 /*
2158 * A single work shouldn't be executed concurrently by
2159 * multiple workers on a single cpu. Check whether anyone is
2160 * already processing the work. If so, defer the work to the
2161 * currently executing one.
2162 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002163 collision = find_worker_executing_work(pool, work);
Tejun Heo7e116292010-06-29 10:07:13 +02002164 if (unlikely(collision)) {
2165 move_linked_works(work, &collision->scheduled, NULL);
2166 return;
2167 }
2168
Tejun Heo8930cab2012-08-03 10:30:45 -07002169 /* claim and dequeue */
Tejun Heoa62428c2010-06-29 10:07:10 +02002170 debug_work_deactivate(work);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002171 hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work);
Tejun Heoc34056a2010-06-29 10:07:11 +02002172 worker->current_work = work;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002173 worker->current_func = work->func;
Tejun Heo112202d2013-02-13 19:29:12 -08002174 worker->current_pwq = pwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002175 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002176
Tejun Heoa62428c2010-06-29 10:07:10 +02002177 list_del_init(&work->entry);
2178
Tejun Heo649027d2010-06-29 10:07:14 +02002179 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002180 * CPU intensive works don't participate in concurrency
2181 * management. They're the scheduler's responsibility.
2182 */
2183 if (unlikely(cpu_intensive))
2184 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2185
Tejun Heo974271c2012-07-12 14:46:37 -07002186 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002187 * Unbound pool isn't concurrency managed and work items should be
Tejun Heo974271c2012-07-12 14:46:37 -07002188 * executed ASAP. Wake up another worker if necessary.
2189 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002190 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2191 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002192
Tejun Heo8930cab2012-08-03 10:30:45 -07002193 /*
Tejun Heo7c3eed52013-01-24 11:01:33 -08002194 * Record the last pool and clear PENDING which should be the last
Tejun Heod565ed62013-01-24 11:01:33 -08002195 * update to @work. Also, do this inside @pool->lock so that
Tejun Heo23657bb2012-08-13 17:08:19 -07002196 * PENDING and queued state changes happen together while IRQ is
2197 * disabled.
Tejun Heo8930cab2012-08-03 10:30:45 -07002198 */
Tejun Heo7c3eed52013-01-24 11:01:33 -08002199 set_work_pool_and_clear_pending(work, pool->id);
Tejun Heoa62428c2010-06-29 10:07:10 +02002200
Tejun Heod565ed62013-01-24 11:01:33 -08002201 spin_unlock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002202
Tejun Heo112202d2013-02-13 19:29:12 -08002203 lock_map_acquire_read(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002204 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002205 trace_workqueue_execute_start(work);
Tejun Heoa2c1c572012-12-18 10:35:02 -08002206 worker->current_func(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002207 /*
2208 * While we must be careful to not use "work" after this, the trace
2209 * point will only record its address.
2210 */
2211 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002212 lock_map_release(&lockdep_map);
Tejun Heo112202d2013-02-13 19:29:12 -08002213 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002214
2215 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
Valentin Ilie044c7822012-08-19 00:52:42 +03002216 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2217 " last function: %pf\n",
Tejun Heoa2c1c572012-12-18 10:35:02 -08002218 current->comm, preempt_count(), task_pid_nr(current),
2219 worker->current_func);
Tejun Heoa62428c2010-06-29 10:07:10 +02002220 debug_show_held_locks(current);
2221 dump_stack();
2222 }
2223
Tejun Heod565ed62013-01-24 11:01:33 -08002224 spin_lock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002225
Tejun Heofb0e7be2010-06-29 10:07:15 +02002226 /* clear cpu intensive status */
2227 if (unlikely(cpu_intensive))
2228 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2229
Tejun Heoa62428c2010-06-29 10:07:10 +02002230 /* we're done with it, release */
Sasha Levin42f85702012-12-17 10:01:23 -05002231 hash_del(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002232 worker->current_work = NULL;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002233 worker->current_func = NULL;
Tejun Heo112202d2013-02-13 19:29:12 -08002234 worker->current_pwq = NULL;
2235 pwq_dec_nr_in_flight(pwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02002236}
2237
Tejun Heoaffee4b2010-06-29 10:07:12 +02002238/**
2239 * process_scheduled_works - process scheduled works
2240 * @worker: self
2241 *
2242 * Process all scheduled works. Please note that the scheduled list
2243 * may change while processing a work, so this function repeatedly
2244 * fetches a work from the top and executes it.
2245 *
2246 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002247 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002248 * multiple times.
2249 */
2250static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002252 while (!list_empty(&worker->scheduled)) {
2253 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002255 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
2258
Tejun Heo4690c4a2010-06-29 10:07:10 +02002259/**
2260 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002261 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002262 *
Tejun Heo706026c2013-01-24 11:01:34 -08002263 * The worker thread function. There are NR_CPU_WORKER_POOLS dynamic pools
2264 * of these per each cpu. These workers process all works regardless of
Tejun Heoe22bee72010-06-29 10:07:14 +02002265 * their specific target workqueue. The only exception is works which
2266 * belong to workqueues with a rescuer which will be explained in
2267 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002268 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002269static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
Tejun Heoc34056a2010-06-29 10:07:11 +02002271 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002272 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Tejun Heoe22bee72010-06-29 10:07:14 +02002274 /* tell the scheduler that this is a workqueue worker */
2275 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002276woke_up:
Tejun Heod565ed62013-01-24 11:01:33 -08002277 spin_lock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002279 /* we are off idle list if destruction or rebind is requested */
2280 if (unlikely(list_empty(&worker->entry))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002281 spin_unlock_irq(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002282
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002283 /* if DIE is set, destruction is requested */
Tejun Heo25511a42012-07-17 12:39:27 -07002284 if (worker->flags & WORKER_DIE) {
2285 worker->task->flags &= ~PF_WQ_WORKER;
2286 return 0;
2287 }
2288
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002289 /* otherwise, rebind */
Tejun Heo25511a42012-07-17 12:39:27 -07002290 idle_worker_rebind(worker);
2291 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293
Tejun Heoc8e55f32010-06-29 10:07:12 +02002294 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002295recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002296 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002297 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002298 goto sleep;
2299
2300 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002301 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002302 goto recheck;
2303
Tejun Heoc8e55f32010-06-29 10:07:12 +02002304 /*
2305 * ->scheduled list can only be filled while a worker is
2306 * preparing to process a work or actually processing it.
2307 * Make sure nobody diddled with it while I was sleeping.
2308 */
Tejun Heo6183c002013-03-12 11:29:57 -07002309 WARN_ON_ONCE(!list_empty(&worker->scheduled));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002310
Tejun Heoe22bee72010-06-29 10:07:14 +02002311 /*
2312 * When control reaches this point, we're guaranteed to have
2313 * at least one idle worker or that someone else has already
2314 * assumed the manager role.
2315 */
2316 worker_clr_flags(worker, WORKER_PREP);
2317
2318 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002319 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002320 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002321 struct work_struct, entry);
2322
2323 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2324 /* optimization path, not strictly necessary */
2325 process_one_work(worker, work);
2326 if (unlikely(!list_empty(&worker->scheduled)))
2327 process_scheduled_works(worker);
2328 } else {
2329 move_linked_works(work, &worker->scheduled, NULL);
2330 process_scheduled_works(worker);
2331 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002332 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002333
Tejun Heoe22bee72010-06-29 10:07:14 +02002334 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002335sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002336 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002337 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002338
Tejun Heoc8e55f32010-06-29 10:07:12 +02002339 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002340 * pool->lock is held and there's no work to process and no need to
2341 * manage, sleep. Workers are woken up only while holding
2342 * pool->lock or from local cpu, so setting the current state
2343 * before releasing pool->lock is enough to prevent losing any
2344 * event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002345 */
2346 worker_enter_idle(worker);
2347 __set_current_state(TASK_INTERRUPTIBLE);
Tejun Heod565ed62013-01-24 11:01:33 -08002348 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002349 schedule();
2350 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
Tejun Heoe22bee72010-06-29 10:07:14 +02002353/**
2354 * rescuer_thread - the rescuer thread function
Tejun Heo111c2252013-01-17 17:16:24 -08002355 * @__rescuer: self
Tejun Heoe22bee72010-06-29 10:07:14 +02002356 *
2357 * Workqueue rescuer thread function. There's one rescuer for each
Tejun Heo493008a2013-03-12 11:30:03 -07002358 * workqueue which has WQ_MEM_RECLAIM set.
Tejun Heoe22bee72010-06-29 10:07:14 +02002359 *
Tejun Heo706026c2013-01-24 11:01:34 -08002360 * Regular work processing on a pool may block trying to create a new
Tejun Heoe22bee72010-06-29 10:07:14 +02002361 * worker which uses GFP_KERNEL allocation which has slight chance of
2362 * developing into deadlock if some works currently on the same queue
2363 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2364 * the problem rescuer solves.
2365 *
Tejun Heo706026c2013-01-24 11:01:34 -08002366 * When such condition is possible, the pool summons rescuers of all
2367 * workqueues which have works queued on the pool and let them process
Tejun Heoe22bee72010-06-29 10:07:14 +02002368 * those works so that forward progress can be guaranteed.
2369 *
2370 * This should happen rarely.
2371 */
Tejun Heo111c2252013-01-17 17:16:24 -08002372static int rescuer_thread(void *__rescuer)
Tejun Heoe22bee72010-06-29 10:07:14 +02002373{
Tejun Heo111c2252013-01-17 17:16:24 -08002374 struct worker *rescuer = __rescuer;
2375 struct workqueue_struct *wq = rescuer->rescue_wq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002376 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heoe22bee72010-06-29 10:07:14 +02002377
2378 set_user_nice(current, RESCUER_NICE_LEVEL);
Tejun Heo111c2252013-01-17 17:16:24 -08002379
2380 /*
2381 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2382 * doesn't participate in concurrency management.
2383 */
2384 rescuer->task->flags |= PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002385repeat:
2386 set_current_state(TASK_INTERRUPTIBLE);
2387
Mike Galbraith412d32e2012-11-28 07:17:18 +01002388 if (kthread_should_stop()) {
2389 __set_current_state(TASK_RUNNING);
Tejun Heo111c2252013-01-17 17:16:24 -08002390 rescuer->task->flags &= ~PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002391 return 0;
Mike Galbraith412d32e2012-11-28 07:17:18 +01002392 }
Tejun Heoe22bee72010-06-29 10:07:14 +02002393
Tejun Heo493a1722013-03-12 11:29:59 -07002394 /* see whether any pwq is asking for help */
2395 spin_lock_irq(&workqueue_lock);
2396
2397 while (!list_empty(&wq->maydays)) {
2398 struct pool_workqueue *pwq = list_first_entry(&wq->maydays,
2399 struct pool_workqueue, mayday_node);
Tejun Heo112202d2013-02-13 19:29:12 -08002400 struct worker_pool *pool = pwq->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002401 struct work_struct *work, *n;
2402
2403 __set_current_state(TASK_RUNNING);
Tejun Heo493a1722013-03-12 11:29:59 -07002404 list_del_init(&pwq->mayday_node);
2405
2406 spin_unlock_irq(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002407
2408 /* migrate to the target cpu if possible */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002409 worker_maybe_bind_and_lock(pool);
Lai Jiangshanb3104102013-02-19 12:17:02 -08002410 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002411
2412 /*
2413 * Slurp in all works issued via this workqueue and
2414 * process'em.
2415 */
Tejun Heo6183c002013-03-12 11:29:57 -07002416 WARN_ON_ONCE(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002417 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heo112202d2013-02-13 19:29:12 -08002418 if (get_work_pwq(work) == pwq)
Tejun Heoe22bee72010-06-29 10:07:14 +02002419 move_linked_works(work, scheduled, &n);
2420
2421 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002422
2423 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002424 * Leave this pool. If keep_working() is %true, notify a
Tejun Heo75769582011-02-14 14:04:46 +01002425 * regular worker; otherwise, we end up with 0 concurrency
2426 * and stalling the execution.
2427 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002428 if (keep_working(pool))
2429 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002430
Lai Jiangshanb3104102013-02-19 12:17:02 -08002431 rescuer->pool = NULL;
Tejun Heo493a1722013-03-12 11:29:59 -07002432 spin_unlock(&pool->lock);
2433 spin_lock(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002434 }
2435
Tejun Heo493a1722013-03-12 11:29:59 -07002436 spin_unlock_irq(&workqueue_lock);
2437
Tejun Heo111c2252013-01-17 17:16:24 -08002438 /* rescuers should never participate in concurrency management */
2439 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
Tejun Heoe22bee72010-06-29 10:07:14 +02002440 schedule();
2441 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
2443
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002444struct wq_barrier {
2445 struct work_struct work;
2446 struct completion done;
2447};
2448
2449static void wq_barrier_func(struct work_struct *work)
2450{
2451 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2452 complete(&barr->done);
2453}
2454
Tejun Heo4690c4a2010-06-29 10:07:10 +02002455/**
2456 * insert_wq_barrier - insert a barrier work
Tejun Heo112202d2013-02-13 19:29:12 -08002457 * @pwq: pwq to insert barrier into
Tejun Heo4690c4a2010-06-29 10:07:10 +02002458 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002459 * @target: target work to attach @barr to
2460 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002461 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002462 * @barr is linked to @target such that @barr is completed only after
2463 * @target finishes execution. Please note that the ordering
2464 * guarantee is observed only with respect to @target and on the local
2465 * cpu.
2466 *
2467 * Currently, a queued barrier can't be canceled. This is because
2468 * try_to_grab_pending() can't determine whether the work to be
2469 * grabbed is at the head of the queue and thus can't clear LINKED
2470 * flag of the previous work while there must be a valid next work
2471 * after a work with LINKED flag set.
2472 *
2473 * Note that when @worker is non-NULL, @target may be modified
Tejun Heo112202d2013-02-13 19:29:12 -08002474 * underneath us, so we can't reliably determine pwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002475 *
2476 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002477 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002478 */
Tejun Heo112202d2013-02-13 19:29:12 -08002479static void insert_wq_barrier(struct pool_workqueue *pwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002480 struct wq_barrier *barr,
2481 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002482{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002483 struct list_head *head;
2484 unsigned int linked = 0;
2485
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002486 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002487 * debugobject calls are safe here even with pool->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002488 * as we know for sure that this will not trigger any of the
2489 * checks and call back into the fixup functions where we
2490 * might deadlock.
2491 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002492 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002493 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002494 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002495
Tejun Heoaffee4b2010-06-29 10:07:12 +02002496 /*
2497 * If @target is currently being executed, schedule the
2498 * barrier to the worker; otherwise, put it after @target.
2499 */
2500 if (worker)
2501 head = worker->scheduled.next;
2502 else {
2503 unsigned long *bits = work_data_bits(target);
2504
2505 head = target->entry.next;
2506 /* there can already be other linked works, inherit and set */
2507 linked = *bits & WORK_STRUCT_LINKED;
2508 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2509 }
2510
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002511 debug_work_activate(&barr->work);
Tejun Heo112202d2013-02-13 19:29:12 -08002512 insert_work(pwq, &barr->work, head,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002513 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002514}
2515
Tejun Heo73f53c42010-06-29 10:07:11 +02002516/**
Tejun Heo112202d2013-02-13 19:29:12 -08002517 * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing
Tejun Heo73f53c42010-06-29 10:07:11 +02002518 * @wq: workqueue being flushed
2519 * @flush_color: new flush color, < 0 for no-op
2520 * @work_color: new work color, < 0 for no-op
2521 *
Tejun Heo112202d2013-02-13 19:29:12 -08002522 * Prepare pwqs for workqueue flushing.
Tejun Heo73f53c42010-06-29 10:07:11 +02002523 *
Tejun Heo112202d2013-02-13 19:29:12 -08002524 * If @flush_color is non-negative, flush_color on all pwqs should be
2525 * -1. If no pwq has in-flight commands at the specified color, all
2526 * pwq->flush_color's stay at -1 and %false is returned. If any pwq
2527 * has in flight commands, its pwq->flush_color is set to
2528 * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq
Tejun Heo73f53c42010-06-29 10:07:11 +02002529 * wakeup logic is armed and %true is returned.
2530 *
2531 * The caller should have initialized @wq->first_flusher prior to
2532 * calling this function with non-negative @flush_color. If
2533 * @flush_color is negative, no flush color update is done and %false
2534 * is returned.
2535 *
Tejun Heo112202d2013-02-13 19:29:12 -08002536 * If @work_color is non-negative, all pwqs should have the same
Tejun Heo73f53c42010-06-29 10:07:11 +02002537 * work_color which is previous to @work_color and all will be
2538 * advanced to @work_color.
2539 *
2540 * CONTEXT:
2541 * mutex_lock(wq->flush_mutex).
2542 *
2543 * RETURNS:
2544 * %true if @flush_color >= 0 and there's something to flush. %false
2545 * otherwise.
2546 */
Tejun Heo112202d2013-02-13 19:29:12 -08002547static bool flush_workqueue_prep_pwqs(struct workqueue_struct *wq,
Tejun Heo73f53c42010-06-29 10:07:11 +02002548 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
Tejun Heo73f53c42010-06-29 10:07:11 +02002550 bool wait = false;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002551 struct pool_workqueue *pwq;
Oleg Nesterov14441962007-05-23 13:57:57 -07002552
Tejun Heo73f53c42010-06-29 10:07:11 +02002553 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002554 WARN_ON_ONCE(atomic_read(&wq->nr_pwqs_to_flush));
Tejun Heo112202d2013-02-13 19:29:12 -08002555 atomic_set(&wq->nr_pwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002556 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002557
Tejun Heo76af4d92013-03-12 11:30:00 -07002558 local_irq_disable();
2559
Tejun Heo49e3cf42013-03-12 11:29:58 -07002560 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08002561 struct worker_pool *pool = pwq->pool;
Tejun Heo73f53c42010-06-29 10:07:11 +02002562
Tejun Heo76af4d92013-03-12 11:30:00 -07002563 spin_lock(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002564
2565 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002566 WARN_ON_ONCE(pwq->flush_color != -1);
Tejun Heo73f53c42010-06-29 10:07:11 +02002567
Tejun Heo112202d2013-02-13 19:29:12 -08002568 if (pwq->nr_in_flight[flush_color]) {
2569 pwq->flush_color = flush_color;
2570 atomic_inc(&wq->nr_pwqs_to_flush);
Tejun Heo73f53c42010-06-29 10:07:11 +02002571 wait = true;
2572 }
2573 }
2574
2575 if (work_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002576 WARN_ON_ONCE(work_color != work_next_color(pwq->work_color));
Tejun Heo112202d2013-02-13 19:29:12 -08002577 pwq->work_color = work_color;
Tejun Heo73f53c42010-06-29 10:07:11 +02002578 }
2579
Tejun Heo76af4d92013-03-12 11:30:00 -07002580 spin_unlock(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002581 }
2582
Tejun Heo76af4d92013-03-12 11:30:00 -07002583 local_irq_enable();
2584
Tejun Heo112202d2013-02-13 19:29:12 -08002585 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_pwqs_to_flush))
Tejun Heo73f53c42010-06-29 10:07:11 +02002586 complete(&wq->first_flusher->done);
2587
2588 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589}
2590
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002591/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002593 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 *
2595 * Forces execution of the workqueue and blocks until its completion.
2596 * This is typically used in driver shutdown handlers.
2597 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002598 * We sleep until all works which were queued on entry have been handled,
2599 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002601void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602{
Tejun Heo73f53c42010-06-29 10:07:11 +02002603 struct wq_flusher this_flusher = {
2604 .list = LIST_HEAD_INIT(this_flusher.list),
2605 .flush_color = -1,
2606 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2607 };
2608 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002609
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002610 lock_map_acquire(&wq->lockdep_map);
2611 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002612
2613 mutex_lock(&wq->flush_mutex);
2614
2615 /*
2616 * Start-to-wait phase
2617 */
2618 next_color = work_next_color(wq->work_color);
2619
2620 if (next_color != wq->flush_color) {
2621 /*
2622 * Color space is not full. The current work_color
2623 * becomes our flush_color and work_color is advanced
2624 * by one.
2625 */
Tejun Heo6183c002013-03-12 11:29:57 -07002626 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow));
Tejun Heo73f53c42010-06-29 10:07:11 +02002627 this_flusher.flush_color = wq->work_color;
2628 wq->work_color = next_color;
2629
2630 if (!wq->first_flusher) {
2631 /* no flush in progress, become the first flusher */
Tejun Heo6183c002013-03-12 11:29:57 -07002632 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002633
2634 wq->first_flusher = &this_flusher;
2635
Tejun Heo112202d2013-02-13 19:29:12 -08002636 if (!flush_workqueue_prep_pwqs(wq, wq->flush_color,
Tejun Heo73f53c42010-06-29 10:07:11 +02002637 wq->work_color)) {
2638 /* nothing to flush, done */
2639 wq->flush_color = next_color;
2640 wq->first_flusher = NULL;
2641 goto out_unlock;
2642 }
2643 } else {
2644 /* wait in queue */
Tejun Heo6183c002013-03-12 11:29:57 -07002645 WARN_ON_ONCE(wq->flush_color == this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002646 list_add_tail(&this_flusher.list, &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002647 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002648 }
2649 } else {
2650 /*
2651 * Oops, color space is full, wait on overflow queue.
2652 * The next flush completion will assign us
2653 * flush_color and transfer to flusher_queue.
2654 */
2655 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2656 }
2657
2658 mutex_unlock(&wq->flush_mutex);
2659
2660 wait_for_completion(&this_flusher.done);
2661
2662 /*
2663 * Wake-up-and-cascade phase
2664 *
2665 * First flushers are responsible for cascading flushes and
2666 * handling overflow. Non-first flushers can simply return.
2667 */
2668 if (wq->first_flusher != &this_flusher)
2669 return;
2670
2671 mutex_lock(&wq->flush_mutex);
2672
Tejun Heo4ce48b32010-07-02 10:03:51 +02002673 /* we might have raced, check again with mutex held */
2674 if (wq->first_flusher != &this_flusher)
2675 goto out_unlock;
2676
Tejun Heo73f53c42010-06-29 10:07:11 +02002677 wq->first_flusher = NULL;
2678
Tejun Heo6183c002013-03-12 11:29:57 -07002679 WARN_ON_ONCE(!list_empty(&this_flusher.list));
2680 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002681
2682 while (true) {
2683 struct wq_flusher *next, *tmp;
2684
2685 /* complete all the flushers sharing the current flush color */
2686 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2687 if (next->flush_color != wq->flush_color)
2688 break;
2689 list_del_init(&next->list);
2690 complete(&next->done);
2691 }
2692
Tejun Heo6183c002013-03-12 11:29:57 -07002693 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow) &&
2694 wq->flush_color != work_next_color(wq->work_color));
Tejun Heo73f53c42010-06-29 10:07:11 +02002695
2696 /* this flush_color is finished, advance by one */
2697 wq->flush_color = work_next_color(wq->flush_color);
2698
2699 /* one color has been freed, handle overflow queue */
2700 if (!list_empty(&wq->flusher_overflow)) {
2701 /*
2702 * Assign the same color to all overflowed
2703 * flushers, advance work_color and append to
2704 * flusher_queue. This is the start-to-wait
2705 * phase for these overflowed flushers.
2706 */
2707 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2708 tmp->flush_color = wq->work_color;
2709
2710 wq->work_color = work_next_color(wq->work_color);
2711
2712 list_splice_tail_init(&wq->flusher_overflow,
2713 &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002714 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002715 }
2716
2717 if (list_empty(&wq->flusher_queue)) {
Tejun Heo6183c002013-03-12 11:29:57 -07002718 WARN_ON_ONCE(wq->flush_color != wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002719 break;
2720 }
2721
2722 /*
2723 * Need to flush more colors. Make the next flusher
Tejun Heo112202d2013-02-13 19:29:12 -08002724 * the new first flusher and arm pwqs.
Tejun Heo73f53c42010-06-29 10:07:11 +02002725 */
Tejun Heo6183c002013-03-12 11:29:57 -07002726 WARN_ON_ONCE(wq->flush_color == wq->work_color);
2727 WARN_ON_ONCE(wq->flush_color != next->flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002728
2729 list_del_init(&next->list);
2730 wq->first_flusher = next;
2731
Tejun Heo112202d2013-02-13 19:29:12 -08002732 if (flush_workqueue_prep_pwqs(wq, wq->flush_color, -1))
Tejun Heo73f53c42010-06-29 10:07:11 +02002733 break;
2734
2735 /*
2736 * Meh... this color is already done, clear first
2737 * flusher and repeat cascading.
2738 */
2739 wq->first_flusher = NULL;
2740 }
2741
2742out_unlock:
2743 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744}
Dave Jonesae90dd52006-06-30 01:40:45 -04002745EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002747/**
2748 * drain_workqueue - drain a workqueue
2749 * @wq: workqueue to drain
2750 *
2751 * Wait until the workqueue becomes empty. While draining is in progress,
2752 * only chain queueing is allowed. IOW, only currently pending or running
2753 * work items on @wq can queue further work items on it. @wq is flushed
2754 * repeatedly until it becomes empty. The number of flushing is detemined
2755 * by the depth of chaining and should be relatively short. Whine if it
2756 * takes too long.
2757 */
2758void drain_workqueue(struct workqueue_struct *wq)
2759{
2760 unsigned int flush_cnt = 0;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002761 struct pool_workqueue *pwq;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002762
2763 /*
2764 * __queue_work() needs to test whether there are drainers, is much
2765 * hotter than drain_workqueue() and already looks at @wq->flags.
Tejun Heo618b01e2013-03-12 11:30:04 -07002766 * Use __WQ_DRAINING so that queue doesn't have to check nr_drainers.
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002767 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07002768 spin_lock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002769 if (!wq->nr_drainers++)
Tejun Heo618b01e2013-03-12 11:30:04 -07002770 wq->flags |= __WQ_DRAINING;
Tejun Heoe98d5b12013-03-12 11:29:57 -07002771 spin_unlock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002772reflush:
2773 flush_workqueue(wq);
2774
Tejun Heo76af4d92013-03-12 11:30:00 -07002775 local_irq_disable();
2776
Tejun Heo49e3cf42013-03-12 11:29:58 -07002777 for_each_pwq(pwq, wq) {
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002778 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002779
Tejun Heo76af4d92013-03-12 11:30:00 -07002780 spin_lock(&pwq->pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08002781 drained = !pwq->nr_active && list_empty(&pwq->delayed_works);
Tejun Heo76af4d92013-03-12 11:30:00 -07002782 spin_unlock(&pwq->pool->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002783
2784 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002785 continue;
2786
2787 if (++flush_cnt == 10 ||
2788 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
Valentin Ilie044c7822012-08-19 00:52:42 +03002789 pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
2790 wq->name, flush_cnt);
Tejun Heo76af4d92013-03-12 11:30:00 -07002791
2792 local_irq_enable();
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002793 goto reflush;
2794 }
2795
Tejun Heo76af4d92013-03-12 11:30:00 -07002796 spin_lock(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002797 if (!--wq->nr_drainers)
Tejun Heo618b01e2013-03-12 11:30:04 -07002798 wq->flags &= ~__WQ_DRAINING;
Tejun Heo76af4d92013-03-12 11:30:00 -07002799 spin_unlock(&workqueue_lock);
2800
2801 local_irq_enable();
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002802}
2803EXPORT_SYMBOL_GPL(drain_workqueue);
2804
Tejun Heo606a5022012-08-20 14:51:23 -07002805static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
Tejun Heobaf59022010-09-16 10:42:16 +02002806{
2807 struct worker *worker = NULL;
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002808 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002809 struct pool_workqueue *pwq;
Tejun Heobaf59022010-09-16 10:42:16 +02002810
2811 might_sleep();
Tejun Heobaf59022010-09-16 10:42:16 +02002812
Tejun Heofa1b54e2013-03-12 11:30:00 -07002813 local_irq_disable();
2814 pool = get_work_pool(work);
2815 if (!pool) {
2816 local_irq_enable();
2817 return false;
2818 }
2819
2820 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08002821 /* see the comment in try_to_grab_pending() with the same code */
Tejun Heo112202d2013-02-13 19:29:12 -08002822 pwq = get_work_pwq(work);
2823 if (pwq) {
2824 if (unlikely(pwq->pool != pool))
Tejun Heobaf59022010-09-16 10:42:16 +02002825 goto already_gone;
Tejun Heo606a5022012-08-20 14:51:23 -07002826 } else {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002827 worker = find_worker_executing_work(pool, work);
Tejun Heobaf59022010-09-16 10:42:16 +02002828 if (!worker)
2829 goto already_gone;
Tejun Heo112202d2013-02-13 19:29:12 -08002830 pwq = worker->current_pwq;
Tejun Heo606a5022012-08-20 14:51:23 -07002831 }
Tejun Heobaf59022010-09-16 10:42:16 +02002832
Tejun Heo112202d2013-02-13 19:29:12 -08002833 insert_wq_barrier(pwq, barr, work, worker);
Tejun Heod565ed62013-01-24 11:01:33 -08002834 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002835
Tejun Heoe1594892011-01-09 23:32:15 +01002836 /*
2837 * If @max_active is 1 or rescuer is in use, flushing another work
2838 * item on the same workqueue may lead to deadlock. Make sure the
2839 * flusher is not running on the same workqueue by verifying write
2840 * access.
2841 */
Tejun Heo493008a2013-03-12 11:30:03 -07002842 if (pwq->wq->saved_max_active == 1 || pwq->wq->rescuer)
Tejun Heo112202d2013-02-13 19:29:12 -08002843 lock_map_acquire(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002844 else
Tejun Heo112202d2013-02-13 19:29:12 -08002845 lock_map_acquire_read(&pwq->wq->lockdep_map);
2846 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002847
Tejun Heobaf59022010-09-16 10:42:16 +02002848 return true;
2849already_gone:
Tejun Heod565ed62013-01-24 11:01:33 -08002850 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002851 return false;
2852}
2853
Oleg Nesterovdb700892008-07-25 01:47:49 -07002854/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002855 * flush_work - wait for a work to finish executing the last queueing instance
2856 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002857 *
Tejun Heo606a5022012-08-20 14:51:23 -07002858 * Wait until @work has finished execution. @work is guaranteed to be idle
2859 * on return if it hasn't been requeued since flush started.
Tejun Heo401a8d02010-09-16 10:36:00 +02002860 *
2861 * RETURNS:
2862 * %true if flush_work() waited for the work to finish execution,
2863 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002864 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002865bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002866{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002867 struct wq_barrier barr;
2868
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002869 lock_map_acquire(&work->lockdep_map);
2870 lock_map_release(&work->lockdep_map);
2871
Tejun Heo606a5022012-08-20 14:51:23 -07002872 if (start_flush_work(work, &barr)) {
Tejun Heobaf59022010-09-16 10:42:16 +02002873 wait_for_completion(&barr.done);
2874 destroy_work_on_stack(&barr.work);
2875 return true;
Tejun Heo606a5022012-08-20 14:51:23 -07002876 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002877 return false;
Tejun Heo606a5022012-08-20 14:51:23 -07002878 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002879}
2880EXPORT_SYMBOL_GPL(flush_work);
2881
Tejun Heo36e227d2012-08-03 10:30:46 -07002882static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
Tejun Heo401a8d02010-09-16 10:36:00 +02002883{
Tejun Heobbb68df2012-08-03 10:30:46 -07002884 unsigned long flags;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002885 int ret;
2886
2887 do {
Tejun Heobbb68df2012-08-03 10:30:46 -07002888 ret = try_to_grab_pending(work, is_dwork, &flags);
2889 /*
2890 * If someone else is canceling, wait for the same event it
2891 * would be waiting for before retrying.
2892 */
2893 if (unlikely(ret == -ENOENT))
Tejun Heo606a5022012-08-20 14:51:23 -07002894 flush_work(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002895 } while (unlikely(ret < 0));
2896
Tejun Heobbb68df2012-08-03 10:30:46 -07002897 /* tell other tasks trying to grab @work to back off */
2898 mark_work_canceling(work);
2899 local_irq_restore(flags);
2900
Tejun Heo606a5022012-08-20 14:51:23 -07002901 flush_work(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002902 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002903 return ret;
2904}
2905
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002906/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002907 * cancel_work_sync - cancel a work and wait for it to finish
2908 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002909 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002910 * Cancel @work and wait for its execution to finish. This function
2911 * can be used even if the work re-queues itself or migrates to
2912 * another workqueue. On return from this function, @work is
2913 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002914 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002915 * cancel_work_sync(&delayed_work->work) must not be used for
2916 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002917 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002918 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002919 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002920 *
2921 * RETURNS:
2922 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002923 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002924bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002925{
Tejun Heo36e227d2012-08-03 10:30:46 -07002926 return __cancel_work_timer(work, false);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002927}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002928EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002929
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002930/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002931 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2932 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002933 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002934 * Delayed timer is cancelled and the pending work is queued for
2935 * immediate execution. Like flush_work(), this function only
2936 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002937 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002938 * RETURNS:
2939 * %true if flush_work() waited for the work to finish execution,
2940 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002941 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002942bool flush_delayed_work(struct delayed_work *dwork)
2943{
Tejun Heo8930cab2012-08-03 10:30:45 -07002944 local_irq_disable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002945 if (del_timer_sync(&dwork->timer))
Lai Jiangshan60c057b2013-02-06 18:04:53 -08002946 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Tejun Heo8930cab2012-08-03 10:30:45 -07002947 local_irq_enable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002948 return flush_work(&dwork->work);
2949}
2950EXPORT_SYMBOL(flush_delayed_work);
2951
2952/**
Tejun Heo57b30ae2012-08-21 13:18:24 -07002953 * cancel_delayed_work - cancel a delayed work
2954 * @dwork: delayed_work to cancel
Tejun Heo09383492010-09-16 10:48:29 +02002955 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002956 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2957 * and canceled; %false if wasn't pending. Note that the work callback
2958 * function may still be running on return, unless it returns %true and the
2959 * work doesn't re-arm itself. Explicitly flush or use
2960 * cancel_delayed_work_sync() to wait on it.
Tejun Heo09383492010-09-16 10:48:29 +02002961 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002962 * This function is safe to call from any context including IRQ handler.
Tejun Heo09383492010-09-16 10:48:29 +02002963 */
Tejun Heo57b30ae2012-08-21 13:18:24 -07002964bool cancel_delayed_work(struct delayed_work *dwork)
Tejun Heo09383492010-09-16 10:48:29 +02002965{
Tejun Heo57b30ae2012-08-21 13:18:24 -07002966 unsigned long flags;
2967 int ret;
2968
2969 do {
2970 ret = try_to_grab_pending(&dwork->work, true, &flags);
2971 } while (unlikely(ret == -EAGAIN));
2972
2973 if (unlikely(ret < 0))
2974 return false;
2975
Tejun Heo7c3eed52013-01-24 11:01:33 -08002976 set_work_pool_and_clear_pending(&dwork->work,
2977 get_work_pool_id(&dwork->work));
Tejun Heo57b30ae2012-08-21 13:18:24 -07002978 local_irq_restore(flags);
Dan Magenheimerc0158ca2012-10-18 16:31:37 -07002979 return ret;
Tejun Heo09383492010-09-16 10:48:29 +02002980}
Tejun Heo57b30ae2012-08-21 13:18:24 -07002981EXPORT_SYMBOL(cancel_delayed_work);
Tejun Heo09383492010-09-16 10:48:29 +02002982
2983/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002984 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2985 * @dwork: the delayed work cancel
2986 *
2987 * This is cancel_work_sync() for delayed works.
2988 *
2989 * RETURNS:
2990 * %true if @dwork was pending, %false otherwise.
2991 */
2992bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002993{
Tejun Heo36e227d2012-08-03 10:30:46 -07002994 return __cancel_work_timer(&dwork->work, true);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002995}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002996EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002998/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07002999 * schedule_work_on - put work task on a specific cpu
3000 * @cpu: cpu to put the work task on
3001 * @work: job to be done
3002 *
3003 * This puts a job on a specific cpu
3004 */
Tejun Heod4283e92012-08-03 10:30:44 -07003005bool schedule_work_on(int cpu, struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07003006{
Tejun Heod320c032010-06-29 10:07:14 +02003007 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07003008}
3009EXPORT_SYMBOL(schedule_work_on);
3010
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003011/**
Dave Jonesae90dd52006-06-30 01:40:45 -04003012 * schedule_work - put work task in global workqueue
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 * @work: job to be done
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 *
Tejun Heod4283e92012-08-03 10:30:44 -07003015 * Returns %false if @work was already on the kernel-global workqueue and
3016 * %true otherwise.
David Howells52bad642006-11-22 14:54:01 +00003017 *
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003018 * This puts a job in the kernel-global workqueue if it was not already
3019 * queued and leaves it in the same position on the kernel-global
3020 * workqueue otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 */
Tejun Heod4283e92012-08-03 10:30:44 -07003022bool schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023{
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003024 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003026EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003028/**
3029 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
3030 * @cpu: cpu to use
3031 * @dwork: job to be done
3032 * @delay: number of jiffies to wait
3033 *
3034 * After waiting for a given time this puts a job in the kernel-global
3035 * workqueue on the specified CPU.
3036 */
Tejun Heod4283e92012-08-03 10:30:44 -07003037bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3038 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039{
Tejun Heod320c032010-06-29 10:07:14 +02003040 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041}
Dave Jonesae90dd52006-06-30 01:40:45 -04003042EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Andrew Mortonb6136772006-06-25 05:47:49 -07003044/**
Tejun Heo0a13c002012-08-03 10:30:44 -07003045 * schedule_delayed_work - put work task in global workqueue after delay
3046 * @dwork: job to be done
3047 * @delay: number of jiffies to wait or 0 for immediate execution
3048 *
3049 * After waiting for a given time this puts a job in the kernel-global
3050 * workqueue.
3051 */
Tejun Heod4283e92012-08-03 10:30:44 -07003052bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
Tejun Heo0a13c002012-08-03 10:30:44 -07003053{
3054 return queue_delayed_work(system_wq, dwork, delay);
3055}
3056EXPORT_SYMBOL(schedule_delayed_work);
3057
3058/**
Tejun Heo31ddd872010-10-19 11:14:49 +02003059 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07003060 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07003061 *
Tejun Heo31ddd872010-10-19 11:14:49 +02003062 * schedule_on_each_cpu() executes @func on each online CPU using the
3063 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07003064 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02003065 *
3066 * RETURNS:
3067 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07003068 */
David Howells65f27f32006-11-22 14:55:48 +00003069int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003070{
3071 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02003072 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08003073
Andrew Mortonb6136772006-06-25 05:47:49 -07003074 works = alloc_percpu(struct work_struct);
3075 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003076 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07003077
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003078 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08003079
Christoph Lameter15316ba2006-01-08 01:00:43 -08003080 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01003081 struct work_struct *work = per_cpu_ptr(works, cpu);
3082
3083 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003084 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003085 }
Tejun Heo93981802009-11-17 14:06:20 -08003086
3087 for_each_online_cpu(cpu)
3088 flush_work(per_cpu_ptr(works, cpu));
3089
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003090 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003091 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003092 return 0;
3093}
3094
Alan Sterneef6a7d2010-02-12 17:39:21 +09003095/**
3096 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3097 *
3098 * Forces execution of the kernel-global workqueue and blocks until its
3099 * completion.
3100 *
3101 * Think twice before calling this function! It's very easy to get into
3102 * trouble if you don't take great care. Either of the following situations
3103 * will lead to deadlock:
3104 *
3105 * One of the work items currently on the workqueue needs to acquire
3106 * a lock held by your code or its caller.
3107 *
3108 * Your code is running in the context of a work routine.
3109 *
3110 * They will be detected by lockdep when they occur, but the first might not
3111 * occur very often. It depends on what work items are on the workqueue and
3112 * what locks they need, which you have no control over.
3113 *
3114 * In most situations flushing the entire workqueue is overkill; you merely
3115 * need to know that a particular work item isn't queued and isn't running.
3116 * In such cases you should use cancel_delayed_work_sync() or
3117 * cancel_work_sync() instead.
3118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119void flush_scheduled_work(void)
3120{
Tejun Heod320c032010-06-29 10:07:14 +02003121 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122}
Dave Jonesae90dd52006-06-30 01:40:45 -04003123EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003126 * execute_in_process_context - reliably execute the routine with user context
3127 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003128 * @ew: guaranteed storage for the execute work structure (must
3129 * be available when the work executes)
3130 *
3131 * Executes the function immediately if process context is available,
3132 * otherwise schedules the function for delayed execution.
3133 *
3134 * Returns: 0 - function was executed
3135 * 1 - function was scheduled for execution
3136 */
David Howells65f27f32006-11-22 14:55:48 +00003137int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003138{
3139 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003140 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003141 return 0;
3142 }
3143
David Howells65f27f32006-11-22 14:55:48 +00003144 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003145 schedule_work(&ew->work);
3146
3147 return 1;
3148}
3149EXPORT_SYMBOL_GPL(execute_in_process_context);
3150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151int keventd_up(void)
3152{
Tejun Heod320c032010-06-29 10:07:14 +02003153 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154}
3155
Tejun Heo7a4e3442013-03-12 11:30:00 -07003156/**
3157 * free_workqueue_attrs - free a workqueue_attrs
3158 * @attrs: workqueue_attrs to free
3159 *
3160 * Undo alloc_workqueue_attrs().
3161 */
3162void free_workqueue_attrs(struct workqueue_attrs *attrs)
3163{
3164 if (attrs) {
3165 free_cpumask_var(attrs->cpumask);
3166 kfree(attrs);
3167 }
3168}
3169
3170/**
3171 * alloc_workqueue_attrs - allocate a workqueue_attrs
3172 * @gfp_mask: allocation mask to use
3173 *
3174 * Allocate a new workqueue_attrs, initialize with default settings and
3175 * return it. Returns NULL on failure.
3176 */
3177struct workqueue_attrs *alloc_workqueue_attrs(gfp_t gfp_mask)
3178{
3179 struct workqueue_attrs *attrs;
3180
3181 attrs = kzalloc(sizeof(*attrs), gfp_mask);
3182 if (!attrs)
3183 goto fail;
3184 if (!alloc_cpumask_var(&attrs->cpumask, gfp_mask))
3185 goto fail;
3186
3187 cpumask_setall(attrs->cpumask);
3188 return attrs;
3189fail:
3190 free_workqueue_attrs(attrs);
3191 return NULL;
3192}
3193
Tejun Heo29c91e92013-03-12 11:30:03 -07003194static void copy_workqueue_attrs(struct workqueue_attrs *to,
3195 const struct workqueue_attrs *from)
3196{
3197 to->nice = from->nice;
3198 cpumask_copy(to->cpumask, from->cpumask);
3199}
3200
3201/*
3202 * Hacky implementation of jhash of bitmaps which only considers the
3203 * specified number of bits. We probably want a proper implementation in
3204 * include/linux/jhash.h.
3205 */
3206static u32 jhash_bitmap(const unsigned long *bitmap, int bits, u32 hash)
3207{
3208 int nr_longs = bits / BITS_PER_LONG;
3209 int nr_leftover = bits % BITS_PER_LONG;
3210 unsigned long leftover = 0;
3211
3212 if (nr_longs)
3213 hash = jhash(bitmap, nr_longs * sizeof(long), hash);
3214 if (nr_leftover) {
3215 bitmap_copy(&leftover, bitmap + nr_longs, nr_leftover);
3216 hash = jhash(&leftover, sizeof(long), hash);
3217 }
3218 return hash;
3219}
3220
3221/* hash value of the content of @attr */
3222static u32 wqattrs_hash(const struct workqueue_attrs *attrs)
3223{
3224 u32 hash = 0;
3225
3226 hash = jhash_1word(attrs->nice, hash);
3227 hash = jhash_bitmap(cpumask_bits(attrs->cpumask), nr_cpu_ids, hash);
3228 return hash;
3229}
3230
3231/* content equality test */
3232static bool wqattrs_equal(const struct workqueue_attrs *a,
3233 const struct workqueue_attrs *b)
3234{
3235 if (a->nice != b->nice)
3236 return false;
3237 if (!cpumask_equal(a->cpumask, b->cpumask))
3238 return false;
3239 return true;
3240}
3241
Tejun Heo7a4e3442013-03-12 11:30:00 -07003242/**
3243 * init_worker_pool - initialize a newly zalloc'd worker_pool
3244 * @pool: worker_pool to initialize
3245 *
3246 * Initiailize a newly zalloc'd @pool. It also allocates @pool->attrs.
Tejun Heo29c91e92013-03-12 11:30:03 -07003247 * Returns 0 on success, -errno on failure. Even on failure, all fields
3248 * inside @pool proper are initialized and put_unbound_pool() can be called
3249 * on @pool safely to release it.
Tejun Heo7a4e3442013-03-12 11:30:00 -07003250 */
3251static int init_worker_pool(struct worker_pool *pool)
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003252{
3253 spin_lock_init(&pool->lock);
Tejun Heo29c91e92013-03-12 11:30:03 -07003254 pool->id = -1;
3255 pool->cpu = -1;
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003256 pool->flags |= POOL_DISASSOCIATED;
3257 INIT_LIST_HEAD(&pool->worklist);
3258 INIT_LIST_HEAD(&pool->idle_list);
3259 hash_init(pool->busy_hash);
3260
3261 init_timer_deferrable(&pool->idle_timer);
3262 pool->idle_timer.function = idle_worker_timeout;
3263 pool->idle_timer.data = (unsigned long)pool;
3264
3265 setup_timer(&pool->mayday_timer, pool_mayday_timeout,
3266 (unsigned long)pool);
3267
3268 mutex_init(&pool->manager_arb);
3269 mutex_init(&pool->assoc_mutex);
3270 ida_init(&pool->worker_ida);
Tejun Heo7a4e3442013-03-12 11:30:00 -07003271
Tejun Heo29c91e92013-03-12 11:30:03 -07003272 INIT_HLIST_NODE(&pool->hash_node);
3273 pool->refcnt = 1;
3274
3275 /* shouldn't fail above this point */
Tejun Heo7a4e3442013-03-12 11:30:00 -07003276 pool->attrs = alloc_workqueue_attrs(GFP_KERNEL);
3277 if (!pool->attrs)
3278 return -ENOMEM;
3279 return 0;
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003280}
3281
Tejun Heo29c91e92013-03-12 11:30:03 -07003282static void rcu_free_pool(struct rcu_head *rcu)
3283{
3284 struct worker_pool *pool = container_of(rcu, struct worker_pool, rcu);
3285
3286 ida_destroy(&pool->worker_ida);
3287 free_workqueue_attrs(pool->attrs);
3288 kfree(pool);
3289}
3290
3291/**
3292 * put_unbound_pool - put a worker_pool
3293 * @pool: worker_pool to put
3294 *
3295 * Put @pool. If its refcnt reaches zero, it gets destroyed in sched-RCU
3296 * safe manner.
3297 */
3298static void put_unbound_pool(struct worker_pool *pool)
3299{
3300 struct worker *worker;
3301
3302 spin_lock_irq(&workqueue_lock);
3303 if (--pool->refcnt) {
3304 spin_unlock_irq(&workqueue_lock);
3305 return;
3306 }
3307
3308 /* sanity checks */
3309 if (WARN_ON(!(pool->flags & POOL_DISASSOCIATED)) ||
3310 WARN_ON(!list_empty(&pool->worklist))) {
3311 spin_unlock_irq(&workqueue_lock);
3312 return;
3313 }
3314
3315 /* release id and unhash */
3316 if (pool->id >= 0)
3317 idr_remove(&worker_pool_idr, pool->id);
3318 hash_del(&pool->hash_node);
3319
3320 spin_unlock_irq(&workqueue_lock);
3321
3322 /* lock out manager and destroy all workers */
3323 mutex_lock(&pool->manager_arb);
3324 spin_lock_irq(&pool->lock);
3325
3326 while ((worker = first_worker(pool)))
3327 destroy_worker(worker);
3328 WARN_ON(pool->nr_workers || pool->nr_idle);
3329
3330 spin_unlock_irq(&pool->lock);
3331 mutex_unlock(&pool->manager_arb);
3332
3333 /* shut down the timers */
3334 del_timer_sync(&pool->idle_timer);
3335 del_timer_sync(&pool->mayday_timer);
3336
3337 /* sched-RCU protected to allow dereferences from get_work_pool() */
3338 call_rcu_sched(&pool->rcu, rcu_free_pool);
3339}
3340
3341/**
3342 * get_unbound_pool - get a worker_pool with the specified attributes
3343 * @attrs: the attributes of the worker_pool to get
3344 *
3345 * Obtain a worker_pool which has the same attributes as @attrs, bump the
3346 * reference count and return it. If there already is a matching
3347 * worker_pool, it will be used; otherwise, this function attempts to
3348 * create a new one. On failure, returns NULL.
3349 */
3350static struct worker_pool *get_unbound_pool(const struct workqueue_attrs *attrs)
3351{
3352 static DEFINE_MUTEX(create_mutex);
3353 u32 hash = wqattrs_hash(attrs);
3354 struct worker_pool *pool;
3355 struct worker *worker;
3356
3357 mutex_lock(&create_mutex);
3358
3359 /* do we already have a matching pool? */
3360 spin_lock_irq(&workqueue_lock);
3361 hash_for_each_possible(unbound_pool_hash, pool, hash_node, hash) {
3362 if (wqattrs_equal(pool->attrs, attrs)) {
3363 pool->refcnt++;
3364 goto out_unlock;
3365 }
3366 }
3367 spin_unlock_irq(&workqueue_lock);
3368
3369 /* nope, create a new one */
3370 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
3371 if (!pool || init_worker_pool(pool) < 0)
3372 goto fail;
3373
Tejun Heo8864b4e2013-03-12 11:30:04 -07003374 lockdep_set_subclass(&pool->lock, 1); /* see put_pwq() */
Tejun Heo29c91e92013-03-12 11:30:03 -07003375 copy_workqueue_attrs(pool->attrs, attrs);
3376
3377 if (worker_pool_assign_id(pool) < 0)
3378 goto fail;
3379
3380 /* create and start the initial worker */
3381 worker = create_worker(pool);
3382 if (!worker)
3383 goto fail;
3384
3385 spin_lock_irq(&pool->lock);
3386 start_worker(worker);
3387 spin_unlock_irq(&pool->lock);
3388
3389 /* install */
3390 spin_lock_irq(&workqueue_lock);
3391 hash_add(unbound_pool_hash, &pool->hash_node, hash);
3392out_unlock:
3393 spin_unlock_irq(&workqueue_lock);
3394 mutex_unlock(&create_mutex);
3395 return pool;
3396fail:
3397 mutex_unlock(&create_mutex);
3398 if (pool)
3399 put_unbound_pool(pool);
3400 return NULL;
3401}
3402
Tejun Heo8864b4e2013-03-12 11:30:04 -07003403static void rcu_free_pwq(struct rcu_head *rcu)
3404{
3405 kmem_cache_free(pwq_cache,
3406 container_of(rcu, struct pool_workqueue, rcu));
3407}
3408
3409/*
3410 * Scheduled on system_wq by put_pwq() when an unbound pwq hits zero refcnt
3411 * and needs to be destroyed.
3412 */
3413static void pwq_unbound_release_workfn(struct work_struct *work)
3414{
3415 struct pool_workqueue *pwq = container_of(work, struct pool_workqueue,
3416 unbound_release_work);
3417 struct workqueue_struct *wq = pwq->wq;
3418 struct worker_pool *pool = pwq->pool;
3419
3420 if (WARN_ON_ONCE(!(wq->flags & WQ_UNBOUND)))
3421 return;
3422
Tejun Heo75ccf592013-03-12 11:30:04 -07003423 /*
3424 * Unlink @pwq. Synchronization against flush_mutex isn't strictly
3425 * necessary on release but do it anyway. It's easier to verify
3426 * and consistent with the linking path.
3427 */
3428 mutex_lock(&wq->flush_mutex);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003429 spin_lock_irq(&workqueue_lock);
3430 list_del_rcu(&pwq->pwqs_node);
3431 spin_unlock_irq(&workqueue_lock);
Tejun Heo75ccf592013-03-12 11:30:04 -07003432 mutex_unlock(&wq->flush_mutex);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003433
3434 put_unbound_pool(pool);
3435 call_rcu_sched(&pwq->rcu, rcu_free_pwq);
3436
3437 /*
3438 * If we're the last pwq going away, @wq is already dead and no one
3439 * is gonna access it anymore. Free it.
3440 */
3441 if (list_empty(&wq->pwqs))
3442 kfree(wq);
3443}
3444
Tejun Heod2c1d402013-03-12 11:30:04 -07003445static void init_and_link_pwq(struct pool_workqueue *pwq,
3446 struct workqueue_struct *wq,
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003447 struct worker_pool *pool,
3448 struct pool_workqueue **p_last_pwq)
Tejun Heod2c1d402013-03-12 11:30:04 -07003449{
3450 BUG_ON((unsigned long)pwq & WORK_STRUCT_FLAG_MASK);
3451
3452 pwq->pool = pool;
3453 pwq->wq = wq;
3454 pwq->flush_color = -1;
Tejun Heo8864b4e2013-03-12 11:30:04 -07003455 pwq->refcnt = 1;
Tejun Heod2c1d402013-03-12 11:30:04 -07003456 pwq->max_active = wq->saved_max_active;
3457 INIT_LIST_HEAD(&pwq->delayed_works);
3458 INIT_LIST_HEAD(&pwq->mayday_node);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003459 INIT_WORK(&pwq->unbound_release_work, pwq_unbound_release_workfn);
Tejun Heod2c1d402013-03-12 11:30:04 -07003460
Tejun Heo75ccf592013-03-12 11:30:04 -07003461 /*
3462 * Link @pwq and set the matching work_color. This is synchronized
3463 * with flush_mutex to avoid confusing flush_workqueue().
3464 */
3465 mutex_lock(&wq->flush_mutex);
3466 spin_lock_irq(&workqueue_lock);
3467
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003468 if (p_last_pwq)
3469 *p_last_pwq = first_pwq(wq);
Tejun Heo75ccf592013-03-12 11:30:04 -07003470 pwq->work_color = wq->work_color;
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003471 list_add_rcu(&pwq->pwqs_node, &wq->pwqs);
Tejun Heo75ccf592013-03-12 11:30:04 -07003472
3473 spin_unlock_irq(&workqueue_lock);
3474 mutex_unlock(&wq->flush_mutex);
Tejun Heod2c1d402013-03-12 11:30:04 -07003475}
3476
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003477/**
3478 * apply_workqueue_attrs - apply new workqueue_attrs to an unbound workqueue
3479 * @wq: the target workqueue
3480 * @attrs: the workqueue_attrs to apply, allocated with alloc_workqueue_attrs()
3481 *
3482 * Apply @attrs to an unbound workqueue @wq. If @attrs doesn't match the
3483 * current attributes, a new pwq is created and made the first pwq which
3484 * will serve all new work items. Older pwqs are released as in-flight
3485 * work items finish. Note that a work item which repeatedly requeues
3486 * itself back-to-back will stay on its current pwq.
3487 *
3488 * Performs GFP_KERNEL allocations. Returns 0 on success and -errno on
3489 * failure.
3490 */
3491int apply_workqueue_attrs(struct workqueue_struct *wq,
3492 const struct workqueue_attrs *attrs)
3493{
3494 struct pool_workqueue *pwq, *last_pwq;
3495 struct worker_pool *pool;
3496
Tejun Heo8719dce2013-03-12 11:30:04 -07003497 /* only unbound workqueues can change attributes */
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003498 if (WARN_ON(!(wq->flags & WQ_UNBOUND)))
3499 return -EINVAL;
3500
Tejun Heo8719dce2013-03-12 11:30:04 -07003501 /* creating multiple pwqs breaks ordering guarantee */
3502 if (WARN_ON((wq->flags & __WQ_ORDERED) && !list_empty(&wq->pwqs)))
3503 return -EINVAL;
3504
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003505 pwq = kmem_cache_zalloc(pwq_cache, GFP_KERNEL);
3506 if (!pwq)
3507 return -ENOMEM;
3508
3509 pool = get_unbound_pool(attrs);
3510 if (!pool) {
3511 kmem_cache_free(pwq_cache, pwq);
3512 return -ENOMEM;
3513 }
3514
3515 init_and_link_pwq(pwq, wq, pool, &last_pwq);
3516 if (last_pwq) {
3517 spin_lock_irq(&last_pwq->pool->lock);
3518 put_pwq(last_pwq);
3519 spin_unlock_irq(&last_pwq->pool->lock);
3520 }
3521
3522 return 0;
3523}
3524
Tejun Heo30cdf242013-03-12 11:29:57 -07003525static int alloc_and_link_pwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003527 bool highpri = wq->flags & WQ_HIGHPRI;
Tejun Heo30cdf242013-03-12 11:29:57 -07003528 int cpu;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003529
Tejun Heo30cdf242013-03-12 11:29:57 -07003530 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo420c0dd2013-03-12 11:29:59 -07003531 wq->cpu_pwqs = alloc_percpu(struct pool_workqueue);
3532 if (!wq->cpu_pwqs)
Tejun Heo30cdf242013-03-12 11:29:57 -07003533 return -ENOMEM;
3534
3535 for_each_possible_cpu(cpu) {
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003536 struct pool_workqueue *pwq =
3537 per_cpu_ptr(wq->cpu_pwqs, cpu);
Tejun Heo7a62c2c2013-03-12 11:30:03 -07003538 struct worker_pool *cpu_pools =
Tejun Heof02ae732013-03-12 11:30:03 -07003539 per_cpu(cpu_worker_pools, cpu);
Tejun Heo30cdf242013-03-12 11:29:57 -07003540
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003541 init_and_link_pwq(pwq, wq, &cpu_pools[highpri], NULL);
Tejun Heo30cdf242013-03-12 11:29:57 -07003542 }
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003543 return 0;
Tejun Heo30cdf242013-03-12 11:29:57 -07003544 } else {
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003545 return apply_workqueue_attrs(wq, unbound_std_wq_attrs[highpri]);
Tejun Heo30cdf242013-03-12 11:29:57 -07003546 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003547}
3548
Tejun Heof3421792010-07-02 10:03:51 +02003549static int wq_clamp_max_active(int max_active, unsigned int flags,
3550 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003551{
Tejun Heof3421792010-07-02 10:03:51 +02003552 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3553
3554 if (max_active < 1 || max_active > lim)
Valentin Ilie044c7822012-08-19 00:52:42 +03003555 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3556 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003557
Tejun Heof3421792010-07-02 10:03:51 +02003558 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003559}
3560
Tejun Heob196be82012-01-10 15:11:35 -08003561struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003562 unsigned int flags,
3563 int max_active,
3564 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003565 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003566{
Tejun Heob196be82012-01-10 15:11:35 -08003567 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003568 struct workqueue_struct *wq;
Tejun Heo49e3cf42013-03-12 11:29:58 -07003569 struct pool_workqueue *pwq;
Tejun Heob196be82012-01-10 15:11:35 -08003570 size_t namelen;
3571
3572 /* determine namelen, allocate wq and format name */
3573 va_start(args, lock_name);
3574 va_copy(args1, args);
3575 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3576
3577 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3578 if (!wq)
Tejun Heod2c1d402013-03-12 11:30:04 -07003579 return NULL;
Tejun Heob196be82012-01-10 15:11:35 -08003580
3581 vsnprintf(wq->name, namelen, fmt, args1);
3582 va_end(args);
3583 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003584
Tejun Heod320c032010-06-29 10:07:14 +02003585 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003586 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003587
Tejun Heob196be82012-01-10 15:11:35 -08003588 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003589 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003590 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003591 mutex_init(&wq->flush_mutex);
Tejun Heo112202d2013-02-13 19:29:12 -08003592 atomic_set(&wq->nr_pwqs_to_flush, 0);
Tejun Heo30cdf242013-03-12 11:29:57 -07003593 INIT_LIST_HEAD(&wq->pwqs);
Tejun Heo73f53c42010-06-29 10:07:11 +02003594 INIT_LIST_HEAD(&wq->flusher_queue);
3595 INIT_LIST_HEAD(&wq->flusher_overflow);
Tejun Heo493a1722013-03-12 11:29:59 -07003596 INIT_LIST_HEAD(&wq->maydays);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003597
Johannes Bergeb13ba82008-01-16 09:51:58 +01003598 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003599 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003600
Tejun Heo30cdf242013-03-12 11:29:57 -07003601 if (alloc_and_link_pwqs(wq) < 0)
Tejun Heod2c1d402013-03-12 11:30:04 -07003602 goto err_free_wq;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003603
Tejun Heo493008a2013-03-12 11:30:03 -07003604 /*
3605 * Workqueues which may be used during memory reclaim should
3606 * have a rescuer to guarantee forward progress.
3607 */
3608 if (flags & WQ_MEM_RECLAIM) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003609 struct worker *rescuer;
3610
Tejun Heod2c1d402013-03-12 11:30:04 -07003611 rescuer = alloc_worker();
Tejun Heoe22bee72010-06-29 10:07:14 +02003612 if (!rescuer)
Tejun Heod2c1d402013-03-12 11:30:04 -07003613 goto err_destroy;
Tejun Heoe22bee72010-06-29 10:07:14 +02003614
Tejun Heo111c2252013-01-17 17:16:24 -08003615 rescuer->rescue_wq = wq;
3616 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
Tejun Heob196be82012-01-10 15:11:35 -08003617 wq->name);
Tejun Heod2c1d402013-03-12 11:30:04 -07003618 if (IS_ERR(rescuer->task)) {
3619 kfree(rescuer);
3620 goto err_destroy;
3621 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003622
Tejun Heod2c1d402013-03-12 11:30:04 -07003623 wq->rescuer = rescuer;
Tejun Heoe22bee72010-06-29 10:07:14 +02003624 rescuer->task->flags |= PF_THREAD_BOUND;
3625 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003626 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003627
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003628 /*
3629 * workqueue_lock protects global freeze state and workqueues
3630 * list. Grab it, set max_active accordingly and add the new
3631 * workqueue to workqueues list.
3632 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07003633 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003634
Tejun Heo58a69cb2011-02-16 09:25:31 +01003635 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heo49e3cf42013-03-12 11:29:58 -07003636 for_each_pwq(pwq, wq)
3637 pwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003638
Tejun Heo15376632010-06-29 10:07:11 +02003639 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003640
Tejun Heoe98d5b12013-03-12 11:29:57 -07003641 spin_unlock_irq(&workqueue_lock);
Tejun Heo15376632010-06-29 10:07:11 +02003642
Oleg Nesterov3af244332007-05-09 02:34:09 -07003643 return wq;
Tejun Heod2c1d402013-03-12 11:30:04 -07003644
3645err_free_wq:
3646 kfree(wq);
3647 return NULL;
3648err_destroy:
3649 destroy_workqueue(wq);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003650 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003651}
Tejun Heod320c032010-06-29 10:07:14 +02003652EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003653
3654/**
3655 * destroy_workqueue - safely terminate a workqueue
3656 * @wq: target workqueue
3657 *
3658 * Safely destroy a workqueue. All work currently pending will be done first.
3659 */
3660void destroy_workqueue(struct workqueue_struct *wq)
3661{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003662 struct pool_workqueue *pwq;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003663
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003664 /* drain it before proceeding with destruction */
3665 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003666
Tejun Heo76af4d92013-03-12 11:30:00 -07003667 spin_lock_irq(&workqueue_lock);
3668
Tejun Heo6183c002013-03-12 11:29:57 -07003669 /* sanity checks */
Tejun Heo49e3cf42013-03-12 11:29:58 -07003670 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07003671 int i;
3672
Tejun Heo76af4d92013-03-12 11:30:00 -07003673 for (i = 0; i < WORK_NR_COLORS; i++) {
3674 if (WARN_ON(pwq->nr_in_flight[i])) {
3675 spin_unlock_irq(&workqueue_lock);
Tejun Heo6183c002013-03-12 11:29:57 -07003676 return;
Tejun Heo76af4d92013-03-12 11:30:00 -07003677 }
3678 }
3679
Tejun Heo8864b4e2013-03-12 11:30:04 -07003680 if (WARN_ON(pwq->refcnt > 1) ||
3681 WARN_ON(pwq->nr_active) ||
Tejun Heo76af4d92013-03-12 11:30:00 -07003682 WARN_ON(!list_empty(&pwq->delayed_works))) {
3683 spin_unlock_irq(&workqueue_lock);
Tejun Heo6183c002013-03-12 11:29:57 -07003684 return;
Tejun Heo76af4d92013-03-12 11:30:00 -07003685 }
Tejun Heo6183c002013-03-12 11:29:57 -07003686 }
3687
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003688 /*
3689 * wq list is used to freeze wq, remove from list after
3690 * flushing is complete in case freeze races us.
3691 */
Tejun Heod2c1d402013-03-12 11:30:04 -07003692 list_del_init(&wq->list);
Tejun Heo76af4d92013-03-12 11:30:00 -07003693
Tejun Heoe98d5b12013-03-12 11:29:57 -07003694 spin_unlock_irq(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003695
Tejun Heo493008a2013-03-12 11:30:03 -07003696 if (wq->rescuer) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003697 kthread_stop(wq->rescuer->task);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003698 kfree(wq->rescuer);
Tejun Heo493008a2013-03-12 11:30:03 -07003699 wq->rescuer = NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +02003700 }
3701
Tejun Heo8864b4e2013-03-12 11:30:04 -07003702 if (!(wq->flags & WQ_UNBOUND)) {
3703 /*
3704 * The base ref is never dropped on per-cpu pwqs. Directly
3705 * free the pwqs and wq.
3706 */
3707 free_percpu(wq->cpu_pwqs);
3708 kfree(wq);
3709 } else {
3710 /*
3711 * We're the sole accessor of @wq at this point. Directly
3712 * access the first pwq and put the base ref. As both pwqs
3713 * and pools are sched-RCU protected, the lock operations
3714 * are safe. @wq will be freed when the last pwq is
3715 * released.
3716 */
Tejun Heo29c91e92013-03-12 11:30:03 -07003717 pwq = list_first_entry(&wq->pwqs, struct pool_workqueue,
3718 pwqs_node);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003719 spin_lock_irq(&pwq->pool->lock);
3720 put_pwq(pwq);
3721 spin_unlock_irq(&pwq->pool->lock);
Tejun Heo29c91e92013-03-12 11:30:03 -07003722 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003723}
3724EXPORT_SYMBOL_GPL(destroy_workqueue);
3725
Tejun Heodcd989c2010-06-29 10:07:14 +02003726/**
Tejun Heo112202d2013-02-13 19:29:12 -08003727 * pwq_set_max_active - adjust max_active of a pwq
3728 * @pwq: target pool_workqueue
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003729 * @max_active: new max_active value.
3730 *
Tejun Heo112202d2013-02-13 19:29:12 -08003731 * Set @pwq->max_active to @max_active and activate delayed works if
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003732 * increased.
3733 *
3734 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003735 * spin_lock_irq(pool->lock).
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003736 */
Tejun Heo112202d2013-02-13 19:29:12 -08003737static void pwq_set_max_active(struct pool_workqueue *pwq, int max_active)
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003738{
Tejun Heo112202d2013-02-13 19:29:12 -08003739 pwq->max_active = max_active;
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003740
Tejun Heo112202d2013-02-13 19:29:12 -08003741 while (!list_empty(&pwq->delayed_works) &&
3742 pwq->nr_active < pwq->max_active)
3743 pwq_activate_first_delayed(pwq);
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003744}
3745
3746/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003747 * workqueue_set_max_active - adjust max_active of a workqueue
3748 * @wq: target workqueue
3749 * @max_active: new max_active value.
3750 *
3751 * Set max_active of @wq to @max_active.
3752 *
3753 * CONTEXT:
3754 * Don't call from IRQ context.
3755 */
3756void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3757{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003758 struct pool_workqueue *pwq;
Tejun Heodcd989c2010-06-29 10:07:14 +02003759
Tejun Heo8719dce2013-03-12 11:30:04 -07003760 /* disallow meddling with max_active for ordered workqueues */
3761 if (WARN_ON(wq->flags & __WQ_ORDERED))
3762 return;
3763
Tejun Heof3421792010-07-02 10:03:51 +02003764 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003765
Tejun Heoe98d5b12013-03-12 11:29:57 -07003766 spin_lock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003767
3768 wq->saved_max_active = max_active;
3769
Tejun Heo49e3cf42013-03-12 11:29:58 -07003770 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08003771 struct worker_pool *pool = pwq->pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02003772
Tejun Heoe98d5b12013-03-12 11:29:57 -07003773 spin_lock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003774
Tejun Heo58a69cb2011-02-16 09:25:31 +01003775 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heo35b6bb62013-01-24 11:01:33 -08003776 !(pool->flags & POOL_FREEZING))
Tejun Heo112202d2013-02-13 19:29:12 -08003777 pwq_set_max_active(pwq, max_active);
Tejun Heodcd989c2010-06-29 10:07:14 +02003778
Tejun Heoe98d5b12013-03-12 11:29:57 -07003779 spin_unlock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003780 }
3781
Tejun Heoe98d5b12013-03-12 11:29:57 -07003782 spin_unlock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003783}
3784EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3785
3786/**
3787 * workqueue_congested - test whether a workqueue is congested
3788 * @cpu: CPU in question
3789 * @wq: target workqueue
3790 *
3791 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3792 * no synchronization around this function and the test result is
3793 * unreliable and only useful as advisory hints or for debugging.
3794 *
3795 * RETURNS:
3796 * %true if congested, %false otherwise.
3797 */
Tejun Heod84ff052013-03-12 11:29:59 -07003798bool workqueue_congested(int cpu, struct workqueue_struct *wq)
Tejun Heodcd989c2010-06-29 10:07:14 +02003799{
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003800 struct pool_workqueue *pwq;
Tejun Heo76af4d92013-03-12 11:30:00 -07003801 bool ret;
3802
3803 preempt_disable();
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003804
3805 if (!(wq->flags & WQ_UNBOUND))
3806 pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
3807 else
3808 pwq = first_pwq(wq);
Tejun Heodcd989c2010-06-29 10:07:14 +02003809
Tejun Heo76af4d92013-03-12 11:30:00 -07003810 ret = !list_empty(&pwq->delayed_works);
3811 preempt_enable();
3812
3813 return ret;
Tejun Heodcd989c2010-06-29 10:07:14 +02003814}
3815EXPORT_SYMBOL_GPL(workqueue_congested);
3816
3817/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003818 * work_busy - test whether a work is currently pending or running
3819 * @work: the work to be tested
3820 *
3821 * Test whether @work is currently pending or running. There is no
3822 * synchronization around this function and the test result is
3823 * unreliable and only useful as advisory hints or for debugging.
Tejun Heodcd989c2010-06-29 10:07:14 +02003824 *
3825 * RETURNS:
3826 * OR'd bitmask of WORK_BUSY_* bits.
3827 */
3828unsigned int work_busy(struct work_struct *work)
3829{
Tejun Heofa1b54e2013-03-12 11:30:00 -07003830 struct worker_pool *pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02003831 unsigned long flags;
3832 unsigned int ret = 0;
3833
Tejun Heodcd989c2010-06-29 10:07:14 +02003834 if (work_pending(work))
3835 ret |= WORK_BUSY_PENDING;
Tejun Heodcd989c2010-06-29 10:07:14 +02003836
Tejun Heofa1b54e2013-03-12 11:30:00 -07003837 local_irq_save(flags);
3838 pool = get_work_pool(work);
Lai Jiangshan038366c2013-02-06 18:04:53 -08003839 if (pool) {
Tejun Heofa1b54e2013-03-12 11:30:00 -07003840 spin_lock(&pool->lock);
Lai Jiangshan038366c2013-02-06 18:04:53 -08003841 if (find_worker_executing_work(pool, work))
3842 ret |= WORK_BUSY_RUNNING;
Tejun Heofa1b54e2013-03-12 11:30:00 -07003843 spin_unlock(&pool->lock);
Lai Jiangshan038366c2013-02-06 18:04:53 -08003844 }
Tejun Heofa1b54e2013-03-12 11:30:00 -07003845 local_irq_restore(flags);
Tejun Heodcd989c2010-06-29 10:07:14 +02003846
3847 return ret;
3848}
3849EXPORT_SYMBOL_GPL(work_busy);
3850
Tejun Heodb7bccf2010-06-29 10:07:12 +02003851/*
3852 * CPU hotplug.
3853 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003854 * There are two challenges in supporting CPU hotplug. Firstly, there
Tejun Heo112202d2013-02-13 19:29:12 -08003855 * are a lot of assumptions on strong associations among work, pwq and
Tejun Heo706026c2013-01-24 11:01:34 -08003856 * pool which make migrating pending and scheduled works very
Tejun Heoe22bee72010-06-29 10:07:14 +02003857 * difficult to implement without impacting hot paths. Secondly,
Tejun Heo94cf58b2013-01-24 11:01:33 -08003858 * worker pools serve mix of short, long and very long running works making
Tejun Heoe22bee72010-06-29 10:07:14 +02003859 * blocked draining impractical.
3860 *
Tejun Heo24647572013-01-24 11:01:33 -08003861 * This is solved by allowing the pools to be disassociated from the CPU
Tejun Heo628c78e2012-07-17 12:39:27 -07003862 * running as an unbound one and allowing it to be reattached later if the
3863 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003864 */
3865
Tejun Heo706026c2013-01-24 11:01:34 -08003866static void wq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003867{
Tejun Heo38db41d2013-01-24 11:01:34 -08003868 int cpu = smp_processor_id();
Tejun Heo4ce62e92012-07-13 22:16:44 -07003869 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003870 struct worker *worker;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003871 int i;
3872
Tejun Heof02ae732013-03-12 11:30:03 -07003873 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo6183c002013-03-12 11:29:57 -07003874 WARN_ON_ONCE(cpu != smp_processor_id());
Tejun Heo94cf58b2013-01-24 11:01:33 -08003875
3876 mutex_lock(&pool->assoc_mutex);
3877 spin_lock_irq(&pool->lock);
3878
3879 /*
3880 * We've claimed all manager positions. Make all workers
3881 * unbound and set DISASSOCIATED. Before this, all workers
3882 * except for the ones which are still executing works from
3883 * before the last CPU down must be on the cpu. After
3884 * this, they may become diasporas.
3885 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003886 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003887 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003888
Sasha Levinb67bfe02013-02-27 17:06:00 -08003889 for_each_busy_worker(worker, i, pool)
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003890 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003891
Tejun Heo24647572013-01-24 11:01:33 -08003892 pool->flags |= POOL_DISASSOCIATED;
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003893
Tejun Heo94cf58b2013-01-24 11:01:33 -08003894 spin_unlock_irq(&pool->lock);
3895 mutex_unlock(&pool->assoc_mutex);
3896 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003897
3898 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07003899 * Call schedule() so that we cross rq->lock and thus can guarantee
3900 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3901 * as scheduler callbacks may be invoked from other cpus.
3902 */
3903 schedule();
3904
3905 /*
3906 * Sched callbacks are disabled now. Zap nr_running. After this,
3907 * nr_running stays zero and need_more_worker() and keep_working()
Tejun Heo38db41d2013-01-24 11:01:34 -08003908 * are always true as long as the worklist is not empty. Pools on
3909 * @cpu now behave as unbound (in terms of concurrency management)
3910 * pools which are served by workers tied to the CPU.
Tejun Heo628c78e2012-07-17 12:39:27 -07003911 *
3912 * On return from this function, the current worker would trigger
3913 * unbound chain execution of pending work items if other workers
3914 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02003915 */
Tejun Heof02ae732013-03-12 11:30:03 -07003916 for_each_cpu_worker_pool(pool, cpu)
Tejun Heoe19e3972013-01-24 11:39:44 -08003917 atomic_set(&pool->nr_running, 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003918}
3919
Tejun Heo8db25e72012-07-17 12:39:28 -07003920/*
3921 * Workqueues should be brought up before normal priority CPU notifiers.
3922 * This will be registered high priority CPU notifier.
3923 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003924static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
Tejun Heo8db25e72012-07-17 12:39:28 -07003925 unsigned long action,
3926 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003927{
Tejun Heod84ff052013-03-12 11:29:59 -07003928 int cpu = (unsigned long)hcpu;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003929 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Tejun Heo8db25e72012-07-17 12:39:28 -07003931 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 case CPU_UP_PREPARE:
Tejun Heof02ae732013-03-12 11:30:03 -07003933 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo3ce63372012-07-17 12:39:27 -07003934 struct worker *worker;
3935
3936 if (pool->nr_workers)
3937 continue;
3938
3939 worker = create_worker(pool);
3940 if (!worker)
3941 return NOTIFY_BAD;
3942
Tejun Heod565ed62013-01-24 11:01:33 -08003943 spin_lock_irq(&pool->lock);
Tejun Heo3ce63372012-07-17 12:39:27 -07003944 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003945 spin_unlock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003947 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003948
Tejun Heo65758202012-07-17 12:39:26 -07003949 case CPU_DOWN_FAILED:
3950 case CPU_ONLINE:
Tejun Heof02ae732013-03-12 11:30:03 -07003951 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08003952 mutex_lock(&pool->assoc_mutex);
3953 spin_lock_irq(&pool->lock);
3954
Tejun Heo24647572013-01-24 11:01:33 -08003955 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heo94cf58b2013-01-24 11:01:33 -08003956 rebind_workers(pool);
3957
3958 spin_unlock_irq(&pool->lock);
3959 mutex_unlock(&pool->assoc_mutex);
3960 }
Tejun Heo8db25e72012-07-17 12:39:28 -07003961 break;
Tejun Heo65758202012-07-17 12:39:26 -07003962 }
3963 return NOTIFY_OK;
3964}
3965
3966/*
3967 * Workqueues should be brought down after normal priority CPU notifiers.
3968 * This will be registered as low priority CPU notifier.
3969 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003970static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
Tejun Heo65758202012-07-17 12:39:26 -07003971 unsigned long action,
3972 void *hcpu)
3973{
Tejun Heod84ff052013-03-12 11:29:59 -07003974 int cpu = (unsigned long)hcpu;
Tejun Heo8db25e72012-07-17 12:39:28 -07003975 struct work_struct unbind_work;
3976
Tejun Heo65758202012-07-17 12:39:26 -07003977 switch (action & ~CPU_TASKS_FROZEN) {
3978 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003979 /* unbinding should happen on the local CPU */
Tejun Heo706026c2013-01-24 11:01:34 -08003980 INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
Joonsoo Kim7635d2f2012-08-15 23:25:41 +09003981 queue_work_on(cpu, system_highpri_wq, &unbind_work);
Tejun Heo8db25e72012-07-17 12:39:28 -07003982 flush_work(&unbind_work);
3983 break;
Tejun Heo65758202012-07-17 12:39:26 -07003984 }
3985 return NOTIFY_OK;
3986}
3987
Rusty Russell2d3854a2008-11-05 13:39:10 +11003988#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003989
Rusty Russell2d3854a2008-11-05 13:39:10 +11003990struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07003991 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003992 long (*fn)(void *);
3993 void *arg;
3994 long ret;
3995};
3996
Tejun Heoed48ece2012-09-18 12:48:43 -07003997static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003998{
Tejun Heoed48ece2012-09-18 12:48:43 -07003999 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
4000
Rusty Russell2d3854a2008-11-05 13:39:10 +11004001 wfc->ret = wfc->fn(wfc->arg);
4002}
4003
4004/**
4005 * work_on_cpu - run a function in user context on a particular cpu
4006 * @cpu: the cpu to run on
4007 * @fn: the function to run
4008 * @arg: the function arg
4009 *
Rusty Russell31ad9082009-01-16 15:31:15 -08004010 * This will return the value @fn returns.
4011 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b440032009-04-09 09:50:37 -06004012 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11004013 */
Tejun Heod84ff052013-03-12 11:29:59 -07004014long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
Rusty Russell2d3854a2008-11-05 13:39:10 +11004015{
Tejun Heoed48ece2012-09-18 12:48:43 -07004016 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11004017
Tejun Heoed48ece2012-09-18 12:48:43 -07004018 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
4019 schedule_work_on(cpu, &wfc.work);
4020 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11004021 return wfc.ret;
4022}
4023EXPORT_SYMBOL_GPL(work_on_cpu);
4024#endif /* CONFIG_SMP */
4025
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004026#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10304027
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004028/**
4029 * freeze_workqueues_begin - begin freezing workqueues
4030 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01004031 * Start freezing workqueues. After this function returns, all freezable
4032 * workqueues will queue new works to their frozen_works list instead of
Tejun Heo706026c2013-01-24 11:01:34 -08004033 * pool->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004034 *
4035 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08004036 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004037 */
4038void freeze_workqueues_begin(void)
4039{
Tejun Heo17116962013-03-12 11:29:58 -07004040 struct worker_pool *pool;
Tejun Heo24b8a842013-03-12 11:29:58 -07004041 struct workqueue_struct *wq;
4042 struct pool_workqueue *pwq;
Tejun Heo17116962013-03-12 11:29:58 -07004043 int id;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004044
Tejun Heoe98d5b12013-03-12 11:29:57 -07004045 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004046
Tejun Heo6183c002013-03-12 11:29:57 -07004047 WARN_ON_ONCE(workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004048 workqueue_freezing = true;
4049
Tejun Heo24b8a842013-03-12 11:29:58 -07004050 /* set FREEZING */
Tejun Heo17116962013-03-12 11:29:58 -07004051 for_each_pool(pool, id) {
Tejun Heo17116962013-03-12 11:29:58 -07004052 spin_lock(&pool->lock);
Tejun Heo17116962013-03-12 11:29:58 -07004053 WARN_ON_ONCE(pool->flags & POOL_FREEZING);
4054 pool->flags |= POOL_FREEZING;
Tejun Heo17116962013-03-12 11:29:58 -07004055 spin_unlock(&pool->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004056 }
4057
Tejun Heo24b8a842013-03-12 11:29:58 -07004058 /* suppress further executions by setting max_active to zero */
4059 list_for_each_entry(wq, &workqueues, list) {
4060 if (!(wq->flags & WQ_FREEZABLE))
4061 continue;
4062
4063 for_each_pwq(pwq, wq) {
4064 spin_lock(&pwq->pool->lock);
4065 pwq->max_active = 0;
4066 spin_unlock(&pwq->pool->lock);
4067 }
4068 }
4069
Tejun Heoe98d5b12013-03-12 11:29:57 -07004070 spin_unlock_irq(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004072
4073/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01004074 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004075 *
4076 * Check whether freezing is complete. This function must be called
4077 * between freeze_workqueues_begin() and thaw_workqueues().
4078 *
4079 * CONTEXT:
4080 * Grabs and releases workqueue_lock.
4081 *
4082 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01004083 * %true if some freezable workqueues are still busy. %false if freezing
4084 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004085 */
4086bool freeze_workqueues_busy(void)
4087{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004088 bool busy = false;
Tejun Heo24b8a842013-03-12 11:29:58 -07004089 struct workqueue_struct *wq;
4090 struct pool_workqueue *pwq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004091
Tejun Heoe98d5b12013-03-12 11:29:57 -07004092 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004093
Tejun Heo6183c002013-03-12 11:29:57 -07004094 WARN_ON_ONCE(!workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004095
Tejun Heo24b8a842013-03-12 11:29:58 -07004096 list_for_each_entry(wq, &workqueues, list) {
4097 if (!(wq->flags & WQ_FREEZABLE))
4098 continue;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004099 /*
4100 * nr_active is monotonically decreasing. It's safe
4101 * to peek without lock.
4102 */
Tejun Heo24b8a842013-03-12 11:29:58 -07004103 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07004104 WARN_ON_ONCE(pwq->nr_active < 0);
Tejun Heo112202d2013-02-13 19:29:12 -08004105 if (pwq->nr_active) {
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004106 busy = true;
4107 goto out_unlock;
4108 }
4109 }
4110 }
4111out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07004112 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004113 return busy;
4114}
4115
4116/**
4117 * thaw_workqueues - thaw workqueues
4118 *
4119 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo706026c2013-01-24 11:01:34 -08004120 * frozen works are transferred to their respective pool worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004121 *
4122 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08004123 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004124 */
4125void thaw_workqueues(void)
4126{
Tejun Heo24b8a842013-03-12 11:29:58 -07004127 struct workqueue_struct *wq;
4128 struct pool_workqueue *pwq;
4129 struct worker_pool *pool;
4130 int id;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004131
Tejun Heoe98d5b12013-03-12 11:29:57 -07004132 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004133
4134 if (!workqueue_freezing)
4135 goto out_unlock;
4136
Tejun Heo24b8a842013-03-12 11:29:58 -07004137 /* clear FREEZING */
4138 for_each_pool(pool, id) {
4139 spin_lock(&pool->lock);
4140 WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
4141 pool->flags &= ~POOL_FREEZING;
4142 spin_unlock(&pool->lock);
4143 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02004144
Tejun Heo24b8a842013-03-12 11:29:58 -07004145 /* restore max_active and repopulate worklist */
4146 list_for_each_entry(wq, &workqueues, list) {
4147 if (!(wq->flags & WQ_FREEZABLE))
4148 continue;
Tejun Heod565ed62013-01-24 11:01:33 -08004149
Tejun Heo24b8a842013-03-12 11:29:58 -07004150 for_each_pwq(pwq, wq) {
4151 spin_lock(&pwq->pool->lock);
4152 pwq_set_max_active(pwq, wq->saved_max_active);
4153 spin_unlock(&pwq->pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08004154 }
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004155 }
4156
Tejun Heo24b8a842013-03-12 11:29:58 -07004157 /* kick workers */
4158 for_each_pool(pool, id) {
4159 spin_lock(&pool->lock);
4160 wake_up_worker(pool);
4161 spin_unlock(&pool->lock);
4162 }
4163
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004164 workqueue_freezing = false;
4165out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07004166 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004167}
4168#endif /* CONFIG_FREEZER */
4169
Suresh Siddha6ee05782010-07-30 14:57:37 -07004170static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171{
Tejun Heo7a4e3442013-03-12 11:30:00 -07004172 int std_nice[NR_STD_WORKER_POOLS] = { 0, HIGHPRI_NICE_LEVEL };
4173 int i, cpu;
Tejun Heoc34056a2010-06-29 10:07:11 +02004174
Tejun Heo7c3eed52013-01-24 11:01:33 -08004175 /* make sure we have enough bits for OFFQ pool ID */
4176 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) <
Lai Jiangshan6be19582013-02-06 18:04:53 -08004177 WORK_CPU_END * NR_STD_WORKER_POOLS);
Tejun Heob5490072012-08-03 10:30:46 -07004178
Tejun Heoe904e6c2013-03-12 11:29:57 -07004179 WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long));
4180
4181 pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);
4182
Tejun Heo65758202012-07-17 12:39:26 -07004183 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
Lai Jiangshana5b4e572012-09-18 09:59:23 -07004184 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02004185
Tejun Heo706026c2013-01-24 11:01:34 -08004186 /* initialize CPU pools */
Tejun Heo29c91e92013-03-12 11:30:03 -07004187 for_each_possible_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07004188 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02004189
Tejun Heo7a4e3442013-03-12 11:30:00 -07004190 i = 0;
Tejun Heof02ae732013-03-12 11:30:03 -07004191 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo7a4e3442013-03-12 11:30:00 -07004192 BUG_ON(init_worker_pool(pool));
Tejun Heoec22ca52013-01-24 11:01:33 -08004193 pool->cpu = cpu;
Tejun Heo29c91e92013-03-12 11:30:03 -07004194 cpumask_copy(pool->attrs->cpumask, cpumask_of(cpu));
Tejun Heo7a4e3442013-03-12 11:30:00 -07004195 pool->attrs->nice = std_nice[i++];
4196
Tejun Heo9daf9e62013-01-24 11:01:33 -08004197 /* alloc pool ID */
4198 BUG_ON(worker_pool_assign_id(pool));
Tejun Heo4ce62e92012-07-13 22:16:44 -07004199 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02004200 }
4201
Tejun Heoe22bee72010-06-29 10:07:14 +02004202 /* create the initial worker */
Tejun Heo29c91e92013-03-12 11:30:03 -07004203 for_each_online_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07004204 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02004205
Tejun Heof02ae732013-03-12 11:30:03 -07004206 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07004207 struct worker *worker;
4208
Tejun Heo29c91e92013-03-12 11:30:03 -07004209 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heo24647572013-01-24 11:01:33 -08004210
Tejun Heobc2ae0f2012-07-17 12:39:27 -07004211 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07004212 BUG_ON(!worker);
Tejun Heod565ed62013-01-24 11:01:33 -08004213 spin_lock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07004214 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08004215 spin_unlock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07004216 }
Tejun Heoe22bee72010-06-29 10:07:14 +02004217 }
4218
Tejun Heo29c91e92013-03-12 11:30:03 -07004219 /* create default unbound wq attrs */
4220 for (i = 0; i < NR_STD_WORKER_POOLS; i++) {
4221 struct workqueue_attrs *attrs;
4222
4223 BUG_ON(!(attrs = alloc_workqueue_attrs(GFP_KERNEL)));
4224
4225 attrs->nice = std_nice[i];
4226 cpumask_setall(attrs->cpumask);
4227
4228 unbound_std_wq_attrs[i] = attrs;
4229 }
4230
Tejun Heod320c032010-06-29 10:07:14 +02004231 system_wq = alloc_workqueue("events", 0, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09004232 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
Tejun Heod320c032010-06-29 10:07:14 +02004233 system_long_wq = alloc_workqueue("events_long", 0, 0);
Tejun Heof3421792010-07-02 10:03:51 +02004234 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
4235 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01004236 system_freezable_wq = alloc_workqueue("events_freezable",
4237 WQ_FREEZABLE, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09004238 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
Tejun Heoae930e02012-08-20 14:51:23 -07004239 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07004240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241}
Suresh Siddha6ee05782010-07-30 14:57:37 -07004242early_initcall(init_workqueues);