blob: d519289816152d8db1ed416a683bc6a41a794233 [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 Heo226223a2013-03-12 11:30:05 -0700213struct wq_device;
214
Tejun Heo73f53c42010-06-29 10:07:11 +0200215/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * The externally visible workqueue abstraction is an array of
217 * per-CPU workqueues:
218 */
219struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200220 unsigned int flags; /* W: WQ_* flags */
Tejun Heo420c0dd2013-03-12 11:29:59 -0700221 struct pool_workqueue __percpu *cpu_pwqs; /* I: per-cpu pwq's */
Tejun Heo75ccf592013-03-12 11:30:04 -0700222 struct list_head pwqs; /* FR: all pwqs of this wq */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200223 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200224
225 struct mutex flush_mutex; /* protects wq flushing */
226 int work_color; /* F: current work color */
227 int flush_color; /* F: current flush color */
Tejun Heo112202d2013-02-13 19:29:12 -0800228 atomic_t nr_pwqs_to_flush; /* flush in progress */
Tejun Heo73f53c42010-06-29 10:07:11 +0200229 struct wq_flusher *first_flusher; /* F: first flusher */
230 struct list_head flusher_queue; /* F: flush waiters */
231 struct list_head flusher_overflow; /* F: flush overflow list */
232
Tejun Heo493a1722013-03-12 11:29:59 -0700233 struct list_head maydays; /* W: pwqs requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200234 struct worker *rescuer; /* I: rescue worker */
235
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200236 int nr_drainers; /* W: drain in progress */
Tejun Heo112202d2013-02-13 19:29:12 -0800237 int saved_max_active; /* W: saved pwq max_active */
Tejun Heo226223a2013-03-12 11:30:05 -0700238
239#ifdef CONFIG_SYSFS
240 struct wq_device *wq_dev; /* I: for sysfs interface */
241#endif
Johannes Berg4e6045f2007-10-18 23:39:55 -0700242#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200243 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700244#endif
Tejun Heob196be82012-01-10 15:11:35 -0800245 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246};
247
Tejun Heoe904e6c2013-03-12 11:29:57 -0700248static struct kmem_cache *pwq_cache;
249
Tejun Heo29c91e92013-03-12 11:30:03 -0700250/* hash of all unbound pools keyed by pool->attrs */
251static DEFINE_HASHTABLE(unbound_pool_hash, UNBOUND_POOL_HASH_ORDER);
252
253static struct workqueue_attrs *unbound_std_wq_attrs[NR_STD_WORKER_POOLS];
254
Tejun Heod320c032010-06-29 10:07:14 +0200255struct workqueue_struct *system_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200256EXPORT_SYMBOL_GPL(system_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300257struct workqueue_struct *system_highpri_wq __read_mostly;
Joonsoo Kim1aabe902012-08-15 23:25:39 +0900258EXPORT_SYMBOL_GPL(system_highpri_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300259struct workqueue_struct *system_long_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200260EXPORT_SYMBOL_GPL(system_long_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300261struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200262EXPORT_SYMBOL_GPL(system_unbound_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300263struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100264EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200265
Tejun Heo97bd2342010-10-05 10:41:14 +0200266#define CREATE_TRACE_POINTS
267#include <trace/events/workqueue.h>
268
Tejun Heo76af4d92013-03-12 11:30:00 -0700269#define assert_rcu_or_wq_lock() \
270 rcu_lockdep_assert(rcu_read_lock_sched_held() || \
271 lockdep_is_held(&workqueue_lock), \
272 "sched RCU or workqueue lock should be held")
273
Tejun Heof02ae732013-03-12 11:30:03 -0700274#define for_each_cpu_worker_pool(pool, cpu) \
275 for ((pool) = &per_cpu(cpu_worker_pools, cpu)[0]; \
276 (pool) < &per_cpu(cpu_worker_pools, cpu)[NR_STD_WORKER_POOLS]; \
Tejun Heo7a62c2c2013-03-12 11:30:03 -0700277 (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700278
Sasha Levinb67bfe02013-02-27 17:06:00 -0800279#define for_each_busy_worker(worker, i, pool) \
280 hash_for_each(pool->busy_hash, i, worker, hentry)
Tejun Heodb7bccf2010-06-29 10:07:12 +0200281
Tejun Heo49e3cf42013-03-12 11:29:58 -0700282/**
Tejun Heo17116962013-03-12 11:29:58 -0700283 * for_each_pool - iterate through all worker_pools in the system
284 * @pool: iteration cursor
285 * @id: integer used for iteration
Tejun Heofa1b54e2013-03-12 11:30:00 -0700286 *
287 * This must be called either with workqueue_lock held or sched RCU read
288 * locked. If the pool needs to be used beyond the locking in effect, the
289 * caller is responsible for guaranteeing that the pool stays online.
290 *
291 * The if/else clause exists only for the lockdep assertion and can be
292 * ignored.
Tejun Heo17116962013-03-12 11:29:58 -0700293 */
294#define for_each_pool(pool, id) \
Tejun Heofa1b54e2013-03-12 11:30:00 -0700295 idr_for_each_entry(&worker_pool_idr, pool, id) \
296 if (({ assert_rcu_or_wq_lock(); false; })) { } \
297 else
Tejun Heo17116962013-03-12 11:29:58 -0700298
299/**
Tejun Heo49e3cf42013-03-12 11:29:58 -0700300 * for_each_pwq - iterate through all pool_workqueues of the specified workqueue
301 * @pwq: iteration cursor
302 * @wq: the target workqueue
Tejun Heo76af4d92013-03-12 11:30:00 -0700303 *
304 * This must be called either with workqueue_lock held or sched RCU read
305 * locked. If the pwq needs to be used beyond the locking in effect, the
306 * caller is responsible for guaranteeing that the pwq stays online.
307 *
308 * The if/else clause exists only for the lockdep assertion and can be
309 * ignored.
Tejun Heo49e3cf42013-03-12 11:29:58 -0700310 */
311#define for_each_pwq(pwq, wq) \
Tejun Heo76af4d92013-03-12 11:30:00 -0700312 list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node) \
313 if (({ assert_rcu_or_wq_lock(); false; })) { } \
314 else
Tejun Heof3421792010-07-02 10:03:51 +0200315
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900316#ifdef CONFIG_DEBUG_OBJECTS_WORK
317
318static struct debug_obj_descr work_debug_descr;
319
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100320static void *work_debug_hint(void *addr)
321{
322 return ((struct work_struct *) addr)->func;
323}
324
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900325/*
326 * fixup_init is called when:
327 * - an active object is initialized
328 */
329static int work_fixup_init(void *addr, enum debug_obj_state state)
330{
331 struct work_struct *work = addr;
332
333 switch (state) {
334 case ODEBUG_STATE_ACTIVE:
335 cancel_work_sync(work);
336 debug_object_init(work, &work_debug_descr);
337 return 1;
338 default:
339 return 0;
340 }
341}
342
343/*
344 * fixup_activate is called when:
345 * - an active object is activated
346 * - an unknown object is activated (might be a statically initialized object)
347 */
348static int work_fixup_activate(void *addr, enum debug_obj_state state)
349{
350 struct work_struct *work = addr;
351
352 switch (state) {
353
354 case ODEBUG_STATE_NOTAVAILABLE:
355 /*
356 * This is not really a fixup. The work struct was
357 * statically initialized. We just make sure that it
358 * is tracked in the object tracker.
359 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200360 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900361 debug_object_init(work, &work_debug_descr);
362 debug_object_activate(work, &work_debug_descr);
363 return 0;
364 }
365 WARN_ON_ONCE(1);
366 return 0;
367
368 case ODEBUG_STATE_ACTIVE:
369 WARN_ON(1);
370
371 default:
372 return 0;
373 }
374}
375
376/*
377 * fixup_free is called when:
378 * - an active object is freed
379 */
380static int work_fixup_free(void *addr, enum debug_obj_state state)
381{
382 struct work_struct *work = addr;
383
384 switch (state) {
385 case ODEBUG_STATE_ACTIVE:
386 cancel_work_sync(work);
387 debug_object_free(work, &work_debug_descr);
388 return 1;
389 default:
390 return 0;
391 }
392}
393
394static struct debug_obj_descr work_debug_descr = {
395 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100396 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900397 .fixup_init = work_fixup_init,
398 .fixup_activate = work_fixup_activate,
399 .fixup_free = work_fixup_free,
400};
401
402static inline void debug_work_activate(struct work_struct *work)
403{
404 debug_object_activate(work, &work_debug_descr);
405}
406
407static inline void debug_work_deactivate(struct work_struct *work)
408{
409 debug_object_deactivate(work, &work_debug_descr);
410}
411
412void __init_work(struct work_struct *work, int onstack)
413{
414 if (onstack)
415 debug_object_init_on_stack(work, &work_debug_descr);
416 else
417 debug_object_init(work, &work_debug_descr);
418}
419EXPORT_SYMBOL_GPL(__init_work);
420
421void destroy_work_on_stack(struct work_struct *work)
422{
423 debug_object_free(work, &work_debug_descr);
424}
425EXPORT_SYMBOL_GPL(destroy_work_on_stack);
426
427#else
428static inline void debug_work_activate(struct work_struct *work) { }
429static inline void debug_work_deactivate(struct work_struct *work) { }
430#endif
431
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100432/* Serializes the accesses to the list of workqueues. */
433static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200435static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Oleg Nesterov14441962007-05-23 13:57:57 -0700437/*
Tejun Heoe19e3972013-01-24 11:39:44 -0800438 * The CPU and unbound standard worker pools. The unbound ones have
439 * POOL_DISASSOCIATED set, and their workers have WORKER_UNBOUND set.
Oleg Nesterov14441962007-05-23 13:57:57 -0700440 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800441static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
Tejun Heof02ae732013-03-12 11:30:03 -0700442 cpu_worker_pools);
Tejun Heof3421792010-07-02 10:03:51 +0200443
Tejun Heofa1b54e2013-03-12 11:30:00 -0700444/*
445 * idr of all pools. Modifications are protected by workqueue_lock. Read
446 * accesses are protected by sched-RCU protected.
447 */
Tejun Heo9daf9e62013-01-24 11:01:33 -0800448static DEFINE_IDR(worker_pool_idr);
449
Tejun Heoc34056a2010-06-29 10:07:11 +0200450static int worker_thread(void *__worker);
Tejun Heo226223a2013-03-12 11:30:05 -0700451static void copy_workqueue_attrs(struct workqueue_attrs *to,
452 const struct workqueue_attrs *from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Tejun Heo9daf9e62013-01-24 11:01:33 -0800454/* allocate ID and assign it to @pool */
455static int worker_pool_assign_id(struct worker_pool *pool)
456{
457 int ret;
458
Tejun Heofa1b54e2013-03-12 11:30:00 -0700459 do {
460 if (!idr_pre_get(&worker_pool_idr, GFP_KERNEL))
461 return -ENOMEM;
462
463 spin_lock_irq(&workqueue_lock);
464 ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
465 spin_unlock_irq(&workqueue_lock);
466 } while (ret == -EAGAIN);
Tejun Heo9daf9e62013-01-24 11:01:33 -0800467
468 return ret;
469}
470
Tejun Heo76af4d92013-03-12 11:30:00 -0700471/**
472 * first_pwq - return the first pool_workqueue of the specified workqueue
473 * @wq: the target workqueue
474 *
475 * This must be called either with workqueue_lock held or sched RCU read
476 * locked. If the pwq needs to be used beyond the locking in effect, the
477 * caller is responsible for guaranteeing that the pwq stays online.
478 */
Tejun Heo7fb98ea2013-03-12 11:30:00 -0700479static struct pool_workqueue *first_pwq(struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700480{
Tejun Heo76af4d92013-03-12 11:30:00 -0700481 assert_rcu_or_wq_lock();
482 return list_first_or_null_rcu(&wq->pwqs, struct pool_workqueue,
483 pwqs_node);
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700484}
485
Tejun Heo73f53c42010-06-29 10:07:11 +0200486static unsigned int work_color_to_flags(int color)
487{
488 return color << WORK_STRUCT_COLOR_SHIFT;
489}
490
491static int get_work_color(struct work_struct *work)
492{
493 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
494 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
495}
496
497static int work_next_color(int color)
498{
499 return (color + 1) % WORK_NR_COLORS;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700500}
501
David Howells4594bf12006-12-07 11:33:26 +0000502/*
Tejun Heo112202d2013-02-13 19:29:12 -0800503 * While queued, %WORK_STRUCT_PWQ is set and non flag bits of a work's data
504 * contain the pointer to the queued pwq. Once execution starts, the flag
Tejun Heo7c3eed52013-01-24 11:01:33 -0800505 * is cleared and the high bits contain OFFQ flags and pool ID.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200506 *
Tejun Heo112202d2013-02-13 19:29:12 -0800507 * set_work_pwq(), set_work_pool_and_clear_pending(), mark_work_canceling()
508 * and clear_work_data() can be used to set the pwq, pool or clear
Tejun Heobbb68df2012-08-03 10:30:46 -0700509 * work->data. These functions should only be called while the work is
510 * owned - ie. while the PENDING bit is set.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200511 *
Tejun Heo112202d2013-02-13 19:29:12 -0800512 * get_work_pool() and get_work_pwq() can be used to obtain the pool or pwq
Tejun Heo7c3eed52013-01-24 11:01:33 -0800513 * corresponding to a work. Pool is available once the work has been
Tejun Heo112202d2013-02-13 19:29:12 -0800514 * queued anywhere after initialization until it is sync canceled. pwq is
Tejun Heo7c3eed52013-01-24 11:01:33 -0800515 * available only while the work item is queued.
Tejun Heobbb68df2012-08-03 10:30:46 -0700516 *
517 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
518 * canceled. While being canceled, a work item may have its PENDING set
519 * but stay off timer and worklist for arbitrarily long and nobody should
520 * try to steal the PENDING bit.
David Howells4594bf12006-12-07 11:33:26 +0000521 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200522static inline void set_work_data(struct work_struct *work, unsigned long data,
523 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000524{
Tejun Heo6183c002013-03-12 11:29:57 -0700525 WARN_ON_ONCE(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200526 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000527}
David Howells365970a2006-11-22 14:54:49 +0000528
Tejun Heo112202d2013-02-13 19:29:12 -0800529static void set_work_pwq(struct work_struct *work, struct pool_workqueue *pwq,
Tejun Heo7a22ad72010-06-29 10:07:13 +0200530 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200531{
Tejun Heo112202d2013-02-13 19:29:12 -0800532 set_work_data(work, (unsigned long)pwq,
533 WORK_STRUCT_PENDING | WORK_STRUCT_PWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200534}
535
Lai Jiangshan4468a002013-02-06 18:04:53 -0800536static void set_work_pool_and_keep_pending(struct work_struct *work,
537 int pool_id)
538{
539 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT,
540 WORK_STRUCT_PENDING);
541}
542
Tejun Heo7c3eed52013-01-24 11:01:33 -0800543static void set_work_pool_and_clear_pending(struct work_struct *work,
544 int pool_id)
David Howells365970a2006-11-22 14:54:49 +0000545{
Tejun Heo23657bb2012-08-13 17:08:19 -0700546 /*
547 * The following wmb is paired with the implied mb in
548 * test_and_set_bit(PENDING) and ensures all updates to @work made
549 * here are visible to and precede any updates by the next PENDING
550 * owner.
551 */
552 smp_wmb();
Tejun Heo7c3eed52013-01-24 11:01:33 -0800553 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200554}
555
556static void clear_work_data(struct work_struct *work)
557{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800558 smp_wmb(); /* see set_work_pool_and_clear_pending() */
559 set_work_data(work, WORK_STRUCT_NO_POOL, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200560}
561
Tejun Heo112202d2013-02-13 19:29:12 -0800562static struct pool_workqueue *get_work_pwq(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200563{
Tejun Heoe1201532010-07-22 14:14:25 +0200564 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200565
Tejun Heo112202d2013-02-13 19:29:12 -0800566 if (data & WORK_STRUCT_PWQ)
Tejun Heoe1201532010-07-22 14:14:25 +0200567 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
568 else
569 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200570}
571
Tejun Heo7c3eed52013-01-24 11:01:33 -0800572/**
573 * get_work_pool - return the worker_pool a given work was associated with
574 * @work: the work item of interest
575 *
576 * Return the worker_pool @work was last associated with. %NULL if none.
Tejun Heofa1b54e2013-03-12 11:30:00 -0700577 *
578 * Pools are created and destroyed under workqueue_lock, and allows read
579 * access under sched-RCU read lock. As such, this function should be
580 * called under workqueue_lock or with preemption disabled.
581 *
582 * All fields of the returned pool are accessible as long as the above
583 * mentioned locking is in effect. If the returned pool needs to be used
584 * beyond the critical section, the caller is responsible for ensuring the
585 * returned pool is and stays online.
Tejun Heo7c3eed52013-01-24 11:01:33 -0800586 */
587static struct worker_pool *get_work_pool(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200588{
Tejun Heoe1201532010-07-22 14:14:25 +0200589 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800590 int pool_id;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200591
Tejun Heofa1b54e2013-03-12 11:30:00 -0700592 assert_rcu_or_wq_lock();
593
Tejun Heo112202d2013-02-13 19:29:12 -0800594 if (data & WORK_STRUCT_PWQ)
595 return ((struct pool_workqueue *)
Tejun Heo7c3eed52013-01-24 11:01:33 -0800596 (data & WORK_STRUCT_WQ_DATA_MASK))->pool;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200597
Tejun Heo7c3eed52013-01-24 11:01:33 -0800598 pool_id = data >> WORK_OFFQ_POOL_SHIFT;
599 if (pool_id == WORK_OFFQ_POOL_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200600 return NULL;
601
Tejun Heofa1b54e2013-03-12 11:30:00 -0700602 return idr_find(&worker_pool_idr, pool_id);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800603}
604
605/**
606 * get_work_pool_id - return the worker pool ID a given work is associated with
607 * @work: the work item of interest
608 *
609 * Return the worker_pool ID @work was last associated with.
610 * %WORK_OFFQ_POOL_NONE if none.
611 */
612static int get_work_pool_id(struct work_struct *work)
613{
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800614 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800615
Tejun Heo112202d2013-02-13 19:29:12 -0800616 if (data & WORK_STRUCT_PWQ)
617 return ((struct pool_workqueue *)
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800618 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->id;
619
620 return data >> WORK_OFFQ_POOL_SHIFT;
Tejun Heo7c3eed52013-01-24 11:01:33 -0800621}
622
Tejun Heobbb68df2012-08-03 10:30:46 -0700623static void mark_work_canceling(struct work_struct *work)
624{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800625 unsigned long pool_id = get_work_pool_id(work);
Tejun Heobbb68df2012-08-03 10:30:46 -0700626
Tejun Heo7c3eed52013-01-24 11:01:33 -0800627 pool_id <<= WORK_OFFQ_POOL_SHIFT;
628 set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700629}
630
631static bool work_is_canceling(struct work_struct *work)
632{
633 unsigned long data = atomic_long_read(&work->data);
634
Tejun Heo112202d2013-02-13 19:29:12 -0800635 return !(data & WORK_STRUCT_PWQ) && (data & WORK_OFFQ_CANCELING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700636}
637
David Howells365970a2006-11-22 14:54:49 +0000638/*
Tejun Heo32704762012-07-13 22:16:45 -0700639 * Policy functions. These define the policies on how the global worker
640 * pools are managed. Unless noted otherwise, these functions assume that
Tejun Heod565ed62013-01-24 11:01:33 -0800641 * they're being called with pool->lock held.
David Howells365970a2006-11-22 14:54:49 +0000642 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200643
Tejun Heo63d95a92012-07-12 14:46:37 -0700644static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000645{
Tejun Heoe19e3972013-01-24 11:39:44 -0800646 return !atomic_read(&pool->nr_running);
David Howells365970a2006-11-22 14:54:49 +0000647}
648
Tejun Heoe22bee72010-06-29 10:07:14 +0200649/*
650 * Need to wake up a worker? Called from anything but currently
651 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700652 *
653 * Note that, because unbound workers never contribute to nr_running, this
Tejun Heo706026c2013-01-24 11:01:34 -0800654 * function will always return %true for unbound pools as long as the
Tejun Heo974271c2012-07-12 14:46:37 -0700655 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200656 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700657static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000658{
Tejun Heo63d95a92012-07-12 14:46:37 -0700659 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000660}
661
Tejun Heoe22bee72010-06-29 10:07:14 +0200662/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700663static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200664{
Tejun Heo63d95a92012-07-12 14:46:37 -0700665 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200666}
667
668/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700669static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200670{
Tejun Heoe19e3972013-01-24 11:39:44 -0800671 return !list_empty(&pool->worklist) &&
672 atomic_read(&pool->nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200673}
674
675/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700676static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200677{
Tejun Heo63d95a92012-07-12 14:46:37 -0700678 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200679}
680
681/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700682static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200683{
Tejun Heo63d95a92012-07-12 14:46:37 -0700684 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700685 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200686}
687
688/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700689static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200690{
Tejun Heo34a06bd2013-03-12 11:30:00 -0700691 bool managing = mutex_is_locked(&pool->manager_arb);
Tejun Heo63d95a92012-07-12 14:46:37 -0700692 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
693 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200694
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700695 /*
696 * nr_idle and idle_list may disagree if idle rebinding is in
697 * progress. Never return %true if idle_list is empty.
698 */
699 if (list_empty(&pool->idle_list))
700 return false;
701
Tejun Heoe22bee72010-06-29 10:07:14 +0200702 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
703}
704
705/*
706 * Wake up functions.
707 */
708
Tejun Heo7e116292010-06-29 10:07:13 +0200709/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700710static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200711{
Tejun Heo63d95a92012-07-12 14:46:37 -0700712 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200713 return NULL;
714
Tejun Heo63d95a92012-07-12 14:46:37 -0700715 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200716}
717
718/**
719 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700720 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200721 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700722 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200723 *
724 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800725 * spin_lock_irq(pool->lock).
Tejun Heo7e116292010-06-29 10:07:13 +0200726 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700727static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200728{
Tejun Heo63d95a92012-07-12 14:46:37 -0700729 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200730
731 if (likely(worker))
732 wake_up_process(worker->task);
733}
734
Tejun Heo4690c4a2010-06-29 10:07:10 +0200735/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200736 * wq_worker_waking_up - a worker is waking up
737 * @task: task waking up
738 * @cpu: CPU @task is waking up to
739 *
740 * This function is called during try_to_wake_up() when a worker is
741 * being awoken.
742 *
743 * CONTEXT:
744 * spin_lock_irq(rq->lock)
745 */
Tejun Heod84ff052013-03-12 11:29:59 -0700746void wq_worker_waking_up(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200747{
748 struct worker *worker = kthread_data(task);
749
Joonsoo Kim36576002012-10-26 23:03:49 +0900750 if (!(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoec22ca52013-01-24 11:01:33 -0800751 WARN_ON_ONCE(worker->pool->cpu != cpu);
Tejun Heoe19e3972013-01-24 11:39:44 -0800752 atomic_inc(&worker->pool->nr_running);
Joonsoo Kim36576002012-10-26 23:03:49 +0900753 }
Tejun Heoe22bee72010-06-29 10:07:14 +0200754}
755
756/**
757 * wq_worker_sleeping - a worker is going to sleep
758 * @task: task going to sleep
759 * @cpu: CPU in question, must be the current CPU number
760 *
761 * This function is called during schedule() when a busy worker is
762 * going to sleep. Worker on the same cpu can be woken up by
763 * returning pointer to its task.
764 *
765 * CONTEXT:
766 * spin_lock_irq(rq->lock)
767 *
768 * RETURNS:
769 * Worker task on @cpu to wake up, %NULL if none.
770 */
Tejun Heod84ff052013-03-12 11:29:59 -0700771struct task_struct *wq_worker_sleeping(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200772{
773 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heo111c2252013-01-17 17:16:24 -0800774 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200775
Tejun Heo111c2252013-01-17 17:16:24 -0800776 /*
777 * Rescuers, which may not have all the fields set up like normal
778 * workers, also reach here, let's not access anything before
779 * checking NOT_RUNNING.
780 */
Steven Rostedt2d646722010-12-03 23:12:33 -0500781 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200782 return NULL;
783
Tejun Heo111c2252013-01-17 17:16:24 -0800784 pool = worker->pool;
Tejun Heo111c2252013-01-17 17:16:24 -0800785
Tejun Heoe22bee72010-06-29 10:07:14 +0200786 /* this can only happen on the local cpu */
Tejun Heo6183c002013-03-12 11:29:57 -0700787 if (WARN_ON_ONCE(cpu != raw_smp_processor_id()))
788 return NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +0200789
790 /*
791 * The counterpart of the following dec_and_test, implied mb,
792 * worklist not empty test sequence is in insert_work().
793 * Please read comment there.
794 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700795 * NOT_RUNNING is clear. This means that we're bound to and
796 * running on the local cpu w/ rq lock held and preemption
797 * disabled, which in turn means that none else could be
Tejun Heod565ed62013-01-24 11:01:33 -0800798 * manipulating idle_list, so dereferencing idle_list without pool
Tejun Heo628c78e2012-07-17 12:39:27 -0700799 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200800 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800801 if (atomic_dec_and_test(&pool->nr_running) &&
802 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700803 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200804 return to_wakeup ? to_wakeup->task : NULL;
805}
806
807/**
808 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200809 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200810 * @flags: flags to set
811 * @wakeup: wakeup an idle worker if necessary
812 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200813 * Set @flags in @worker->flags and adjust nr_running accordingly. If
814 * nr_running becomes zero and @wakeup is %true, an idle worker is
815 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200816 *
Tejun Heocb444762010-07-02 10:03:50 +0200817 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800818 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200819 */
820static inline void worker_set_flags(struct worker *worker, unsigned int flags,
821 bool wakeup)
822{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700823 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200824
Tejun Heocb444762010-07-02 10:03:50 +0200825 WARN_ON_ONCE(worker->task != current);
826
Tejun Heoe22bee72010-06-29 10:07:14 +0200827 /*
828 * If transitioning into NOT_RUNNING, adjust nr_running and
829 * wake up an idle worker as necessary if requested by
830 * @wakeup.
831 */
832 if ((flags & WORKER_NOT_RUNNING) &&
833 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoe22bee72010-06-29 10:07:14 +0200834 if (wakeup) {
Tejun Heoe19e3972013-01-24 11:39:44 -0800835 if (atomic_dec_and_test(&pool->nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700836 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700837 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200838 } else
Tejun Heoe19e3972013-01-24 11:39:44 -0800839 atomic_dec(&pool->nr_running);
Tejun Heoe22bee72010-06-29 10:07:14 +0200840 }
841
Tejun Heod302f012010-06-29 10:07:13 +0200842 worker->flags |= flags;
843}
844
845/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200846 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200847 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200848 * @flags: flags to clear
849 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200850 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200851 *
Tejun Heocb444762010-07-02 10:03:50 +0200852 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800853 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200854 */
855static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
856{
Tejun Heo63d95a92012-07-12 14:46:37 -0700857 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200858 unsigned int oflags = worker->flags;
859
Tejun Heocb444762010-07-02 10:03:50 +0200860 WARN_ON_ONCE(worker->task != current);
861
Tejun Heod302f012010-06-29 10:07:13 +0200862 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200863
Tejun Heo42c025f2011-01-11 15:58:49 +0100864 /*
865 * If transitioning out of NOT_RUNNING, increment nr_running. Note
866 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
867 * of multiple flags, not a single flag.
868 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200869 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
870 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heoe19e3972013-01-24 11:39:44 -0800871 atomic_inc(&pool->nr_running);
Tejun Heod302f012010-06-29 10:07:13 +0200872}
873
874/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200875 * find_worker_executing_work - find worker which is executing a work
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800876 * @pool: pool of interest
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200877 * @work: work to find worker for
878 *
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800879 * Find a worker which is executing @work on @pool by searching
880 * @pool->busy_hash which is keyed by the address of @work. For a worker
Tejun Heoa2c1c572012-12-18 10:35:02 -0800881 * to match, its current execution should match the address of @work and
882 * its work function. This is to avoid unwanted dependency between
883 * unrelated work executions through a work item being recycled while still
884 * being executed.
885 *
886 * This is a bit tricky. A work item may be freed once its execution
887 * starts and nothing prevents the freed area from being recycled for
888 * another work item. If the same work item address ends up being reused
889 * before the original execution finishes, workqueue will identify the
890 * recycled work item as currently executing and make it wait until the
891 * current execution finishes, introducing an unwanted dependency.
892 *
893 * This function checks the work item address, work function and workqueue
894 * to avoid false positives. Note that this isn't complete as one may
895 * construct a work function which can introduce dependency onto itself
896 * through a recycled work item. Well, if somebody wants to shoot oneself
897 * in the foot that badly, there's only so much we can do, and if such
898 * deadlock actually occurs, it should be easy to locate the culprit work
899 * function.
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200900 *
901 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800902 * spin_lock_irq(pool->lock).
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200903 *
904 * RETURNS:
905 * Pointer to worker which is executing @work if found, NULL
906 * otherwise.
907 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800908static struct worker *find_worker_executing_work(struct worker_pool *pool,
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200909 struct work_struct *work)
910{
Sasha Levin42f85702012-12-17 10:01:23 -0500911 struct worker *worker;
Sasha Levin42f85702012-12-17 10:01:23 -0500912
Sasha Levinb67bfe02013-02-27 17:06:00 -0800913 hash_for_each_possible(pool->busy_hash, worker, hentry,
Tejun Heoa2c1c572012-12-18 10:35:02 -0800914 (unsigned long)work)
915 if (worker->current_work == work &&
916 worker->current_func == work->func)
Sasha Levin42f85702012-12-17 10:01:23 -0500917 return worker;
918
919 return NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200920}
921
922/**
Tejun Heobf4ede02012-08-03 10:30:46 -0700923 * move_linked_works - move linked works to a list
924 * @work: start of series of works to be scheduled
925 * @head: target list to append @work to
926 * @nextp: out paramter for nested worklist walking
927 *
928 * Schedule linked works starting from @work to @head. Work series to
929 * be scheduled starts at @work and includes any consecutive work with
930 * WORK_STRUCT_LINKED set in its predecessor.
931 *
932 * If @nextp is not NULL, it's updated to point to the next work of
933 * the last scheduled work. This allows move_linked_works() to be
934 * nested inside outer list_for_each_entry_safe().
935 *
936 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800937 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700938 */
939static void move_linked_works(struct work_struct *work, struct list_head *head,
940 struct work_struct **nextp)
941{
942 struct work_struct *n;
943
944 /*
945 * Linked worklist will always end before the end of the list,
946 * use NULL for list head.
947 */
948 list_for_each_entry_safe_from(work, n, NULL, entry) {
949 list_move_tail(&work->entry, head);
950 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
951 break;
952 }
953
954 /*
955 * If we're already inside safe list traversal and have moved
956 * multiple works to the scheduled queue, the next position
957 * needs to be updated.
958 */
959 if (nextp)
960 *nextp = n;
961}
962
Tejun Heo8864b4e2013-03-12 11:30:04 -0700963/**
964 * get_pwq - get an extra reference on the specified pool_workqueue
965 * @pwq: pool_workqueue to get
966 *
967 * Obtain an extra reference on @pwq. The caller should guarantee that
968 * @pwq has positive refcnt and be holding the matching pool->lock.
969 */
970static void get_pwq(struct pool_workqueue *pwq)
971{
972 lockdep_assert_held(&pwq->pool->lock);
973 WARN_ON_ONCE(pwq->refcnt <= 0);
974 pwq->refcnt++;
975}
976
977/**
978 * put_pwq - put a pool_workqueue reference
979 * @pwq: pool_workqueue to put
980 *
981 * Drop a reference of @pwq. If its refcnt reaches zero, schedule its
982 * destruction. The caller should be holding the matching pool->lock.
983 */
984static void put_pwq(struct pool_workqueue *pwq)
985{
986 lockdep_assert_held(&pwq->pool->lock);
987 if (likely(--pwq->refcnt))
988 return;
989 if (WARN_ON_ONCE(!(pwq->wq->flags & WQ_UNBOUND)))
990 return;
991 /*
992 * @pwq can't be released under pool->lock, bounce to
993 * pwq_unbound_release_workfn(). This never recurses on the same
994 * pool->lock as this path is taken only for unbound workqueues and
995 * the release work item is scheduled on a per-cpu workqueue. To
996 * avoid lockdep warning, unbound pool->locks are given lockdep
997 * subclass of 1 in get_unbound_pool().
998 */
999 schedule_work(&pwq->unbound_release_work);
1000}
1001
Tejun Heo112202d2013-02-13 19:29:12 -08001002static void pwq_activate_delayed_work(struct work_struct *work)
Tejun Heobf4ede02012-08-03 10:30:46 -07001003{
Tejun Heo112202d2013-02-13 19:29:12 -08001004 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobf4ede02012-08-03 10:30:46 -07001005
1006 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -08001007 move_linked_works(work, &pwq->pool->worklist, NULL);
Tejun Heobf4ede02012-08-03 10:30:46 -07001008 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo112202d2013-02-13 19:29:12 -08001009 pwq->nr_active++;
Tejun Heobf4ede02012-08-03 10:30:46 -07001010}
1011
Tejun Heo112202d2013-02-13 19:29:12 -08001012static void pwq_activate_first_delayed(struct pool_workqueue *pwq)
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001013{
Tejun Heo112202d2013-02-13 19:29:12 -08001014 struct work_struct *work = list_first_entry(&pwq->delayed_works,
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001015 struct work_struct, entry);
1016
Tejun Heo112202d2013-02-13 19:29:12 -08001017 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001018}
1019
Tejun Heobf4ede02012-08-03 10:30:46 -07001020/**
Tejun Heo112202d2013-02-13 19:29:12 -08001021 * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight
1022 * @pwq: pwq of interest
Tejun Heobf4ede02012-08-03 10:30:46 -07001023 * @color: color of work which left the queue
Tejun Heobf4ede02012-08-03 10:30:46 -07001024 *
1025 * A work either has completed or is removed from pending queue,
Tejun Heo112202d2013-02-13 19:29:12 -08001026 * decrement nr_in_flight of its pwq and handle workqueue flushing.
Tejun Heobf4ede02012-08-03 10:30:46 -07001027 *
1028 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001029 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -07001030 */
Tejun Heo112202d2013-02-13 19:29:12 -08001031static void pwq_dec_nr_in_flight(struct pool_workqueue *pwq, int color)
Tejun Heobf4ede02012-08-03 10:30:46 -07001032{
Tejun Heo8864b4e2013-03-12 11:30:04 -07001033 /* uncolored work items don't participate in flushing or nr_active */
Tejun Heobf4ede02012-08-03 10:30:46 -07001034 if (color == WORK_NO_COLOR)
Tejun Heo8864b4e2013-03-12 11:30:04 -07001035 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001036
Tejun Heo112202d2013-02-13 19:29:12 -08001037 pwq->nr_in_flight[color]--;
Tejun Heobf4ede02012-08-03 10:30:46 -07001038
Tejun Heo112202d2013-02-13 19:29:12 -08001039 pwq->nr_active--;
1040 if (!list_empty(&pwq->delayed_works)) {
Lai Jiangshanb3f9f402012-09-18 10:40:00 -07001041 /* one down, submit a delayed one */
Tejun Heo112202d2013-02-13 19:29:12 -08001042 if (pwq->nr_active < pwq->max_active)
1043 pwq_activate_first_delayed(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001044 }
1045
1046 /* is flush in progress and are we at the flushing tip? */
Tejun Heo112202d2013-02-13 19:29:12 -08001047 if (likely(pwq->flush_color != color))
Tejun Heo8864b4e2013-03-12 11:30:04 -07001048 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001049
1050 /* are there still in-flight works? */
Tejun Heo112202d2013-02-13 19:29:12 -08001051 if (pwq->nr_in_flight[color])
Tejun Heo8864b4e2013-03-12 11:30:04 -07001052 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001053
Tejun Heo112202d2013-02-13 19:29:12 -08001054 /* this pwq is done, clear flush_color */
1055 pwq->flush_color = -1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001056
1057 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001058 * If this was the last pwq, wake up the first flusher. It
Tejun Heobf4ede02012-08-03 10:30:46 -07001059 * will handle the rest.
1060 */
Tejun Heo112202d2013-02-13 19:29:12 -08001061 if (atomic_dec_and_test(&pwq->wq->nr_pwqs_to_flush))
1062 complete(&pwq->wq->first_flusher->done);
Tejun Heo8864b4e2013-03-12 11:30:04 -07001063out_put:
1064 put_pwq(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001065}
1066
Tejun Heo36e227d2012-08-03 10:30:46 -07001067/**
Tejun Heobbb68df2012-08-03 10:30:46 -07001068 * try_to_grab_pending - steal work item from worklist and disable irq
Tejun Heo36e227d2012-08-03 10:30:46 -07001069 * @work: work item to steal
1070 * @is_dwork: @work is a delayed_work
Tejun Heobbb68df2012-08-03 10:30:46 -07001071 * @flags: place to store irq state
Tejun Heo36e227d2012-08-03 10:30:46 -07001072 *
1073 * Try to grab PENDING bit of @work. This function can handle @work in any
1074 * stable state - idle, on timer or on worklist. Return values are
1075 *
1076 * 1 if @work was pending and we successfully stole PENDING
1077 * 0 if @work was idle and we claimed PENDING
1078 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
Tejun Heobbb68df2012-08-03 10:30:46 -07001079 * -ENOENT if someone else is canceling @work, this state may persist
1080 * for arbitrarily long
Tejun Heo36e227d2012-08-03 10:30:46 -07001081 *
Tejun Heobbb68df2012-08-03 10:30:46 -07001082 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001083 * interrupted while holding PENDING and @work off queue, irq must be
1084 * disabled on entry. This, combined with delayed_work->timer being
1085 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
Tejun Heobbb68df2012-08-03 10:30:46 -07001086 *
1087 * On successful return, >= 0, irq is disabled and the caller is
1088 * responsible for releasing it using local_irq_restore(*@flags).
1089 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001090 * This function is safe to call from any context including IRQ handler.
Tejun Heobf4ede02012-08-03 10:30:46 -07001091 */
Tejun Heobbb68df2012-08-03 10:30:46 -07001092static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1093 unsigned long *flags)
Tejun Heobf4ede02012-08-03 10:30:46 -07001094{
Tejun Heod565ed62013-01-24 11:01:33 -08001095 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08001096 struct pool_workqueue *pwq;
Tejun Heobf4ede02012-08-03 10:30:46 -07001097
Tejun Heobbb68df2012-08-03 10:30:46 -07001098 local_irq_save(*flags);
1099
Tejun Heo36e227d2012-08-03 10:30:46 -07001100 /* try to steal the timer if it exists */
1101 if (is_dwork) {
1102 struct delayed_work *dwork = to_delayed_work(work);
1103
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001104 /*
1105 * dwork->timer is irqsafe. If del_timer() fails, it's
1106 * guaranteed that the timer is not queued anywhere and not
1107 * running on the local CPU.
1108 */
Tejun Heo36e227d2012-08-03 10:30:46 -07001109 if (likely(del_timer(&dwork->timer)))
1110 return 1;
1111 }
1112
1113 /* try to claim PENDING the normal way */
Tejun Heobf4ede02012-08-03 10:30:46 -07001114 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1115 return 0;
1116
1117 /*
1118 * The queueing is in progress, or it is already queued. Try to
1119 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1120 */
Tejun Heod565ed62013-01-24 11:01:33 -08001121 pool = get_work_pool(work);
1122 if (!pool)
Tejun Heobbb68df2012-08-03 10:30:46 -07001123 goto fail;
Tejun Heobf4ede02012-08-03 10:30:46 -07001124
Tejun Heod565ed62013-01-24 11:01:33 -08001125 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001126 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001127 * work->data is guaranteed to point to pwq only while the work
1128 * item is queued on pwq->wq, and both updating work->data to point
1129 * to pwq on queueing and to pool on dequeueing are done under
1130 * pwq->pool->lock. This in turn guarantees that, if work->data
1131 * points to pwq which is associated with a locked pool, the work
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001132 * item is currently queued on that pool.
1133 */
Tejun Heo112202d2013-02-13 19:29:12 -08001134 pwq = get_work_pwq(work);
1135 if (pwq && pwq->pool == pool) {
Tejun Heo16062832013-02-06 18:04:53 -08001136 debug_work_deactivate(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001137
Tejun Heo16062832013-02-06 18:04:53 -08001138 /*
1139 * A delayed work item cannot be grabbed directly because
1140 * it might have linked NO_COLOR work items which, if left
Tejun Heo112202d2013-02-13 19:29:12 -08001141 * on the delayed_list, will confuse pwq->nr_active
Tejun Heo16062832013-02-06 18:04:53 -08001142 * management later on and cause stall. Make sure the work
1143 * item is activated before grabbing.
1144 */
1145 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
Tejun Heo112202d2013-02-13 19:29:12 -08001146 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001147
Tejun Heo16062832013-02-06 18:04:53 -08001148 list_del_init(&work->entry);
Tejun Heo112202d2013-02-13 19:29:12 -08001149 pwq_dec_nr_in_flight(get_work_pwq(work), get_work_color(work));
Tejun Heo36e227d2012-08-03 10:30:46 -07001150
Tejun Heo112202d2013-02-13 19:29:12 -08001151 /* work->data points to pwq iff queued, point to pool */
Tejun Heo16062832013-02-06 18:04:53 -08001152 set_work_pool_and_keep_pending(work, pool->id);
Lai Jiangshan4468a002013-02-06 18:04:53 -08001153
Tejun Heo16062832013-02-06 18:04:53 -08001154 spin_unlock(&pool->lock);
1155 return 1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001156 }
Tejun Heod565ed62013-01-24 11:01:33 -08001157 spin_unlock(&pool->lock);
Tejun Heobbb68df2012-08-03 10:30:46 -07001158fail:
1159 local_irq_restore(*flags);
1160 if (work_is_canceling(work))
1161 return -ENOENT;
1162 cpu_relax();
Tejun Heo36e227d2012-08-03 10:30:46 -07001163 return -EAGAIN;
Tejun Heobf4ede02012-08-03 10:30:46 -07001164}
1165
1166/**
Tejun Heo706026c2013-01-24 11:01:34 -08001167 * insert_work - insert a work into a pool
Tejun Heo112202d2013-02-13 19:29:12 -08001168 * @pwq: pwq @work belongs to
Tejun Heo4690c4a2010-06-29 10:07:10 +02001169 * @work: work to insert
1170 * @head: insertion point
1171 * @extra_flags: extra WORK_STRUCT_* flags to set
1172 *
Tejun Heo112202d2013-02-13 19:29:12 -08001173 * Insert @work which belongs to @pwq after @head. @extra_flags is or'd to
Tejun Heo706026c2013-01-24 11:01:34 -08001174 * work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001175 *
1176 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001177 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001178 */
Tejun Heo112202d2013-02-13 19:29:12 -08001179static void insert_work(struct pool_workqueue *pwq, struct work_struct *work,
1180 struct list_head *head, unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001181{
Tejun Heo112202d2013-02-13 19:29:12 -08001182 struct worker_pool *pool = pwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01001183
Tejun Heo4690c4a2010-06-29 10:07:10 +02001184 /* we own @work, set data and link */
Tejun Heo112202d2013-02-13 19:29:12 -08001185 set_work_pwq(work, pwq, extra_flags);
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -07001186 list_add_tail(&work->entry, head);
Tejun Heo8864b4e2013-03-12 11:30:04 -07001187 get_pwq(pwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02001188
1189 /*
1190 * Ensure either worker_sched_deactivated() sees the above
1191 * list_add_tail() or we see zero nr_running to avoid workers
1192 * lying around lazily while there are works to be processed.
1193 */
1194 smp_mb();
1195
Tejun Heo63d95a92012-07-12 14:46:37 -07001196 if (__need_more_worker(pool))
1197 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001198}
1199
Tejun Heoc8efcc22010-12-20 19:32:04 +01001200/*
1201 * Test whether @work is being queued from another work executing on the
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001202 * same workqueue.
Tejun Heoc8efcc22010-12-20 19:32:04 +01001203 */
1204static bool is_chained_work(struct workqueue_struct *wq)
1205{
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001206 struct worker *worker;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001207
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001208 worker = current_wq_worker();
1209 /*
1210 * Return %true iff I'm a worker execuing a work item on @wq. If
1211 * I'm @worker, it's safe to dereference it without locking.
1212 */
Tejun Heo112202d2013-02-13 19:29:12 -08001213 return worker && worker->current_pwq->wq == wq;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001214}
1215
Tejun Heod84ff052013-03-12 11:29:59 -07001216static void __queue_work(int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 struct work_struct *work)
1218{
Tejun Heo112202d2013-02-13 19:29:12 -08001219 struct pool_workqueue *pwq;
Tejun Heoc9178082013-03-12 11:30:04 -07001220 struct worker_pool *last_pool;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001221 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001222 unsigned int work_flags;
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001223 unsigned int req_cpu = cpu;
Tejun Heo8930cab2012-08-03 10:30:45 -07001224
1225 /*
1226 * While a work item is PENDING && off queue, a task trying to
1227 * steal the PENDING will busy-loop waiting for it to either get
1228 * queued or lose PENDING. Grabbing PENDING and queueing should
1229 * happen with IRQ disabled.
1230 */
1231 WARN_ON_ONCE(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001233 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001234
Tejun Heoc8efcc22010-12-20 19:32:04 +01001235 /* if dying, only works from the same workqueue are allowed */
Tejun Heo618b01e2013-03-12 11:30:04 -07001236 if (unlikely(wq->flags & __WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +01001237 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +02001238 return;
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07001239retry:
Tejun Heoc9178082013-03-12 11:30:04 -07001240 /* pwq which will be used unless @work is executing elsewhere */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001241 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo57469822012-08-03 10:30:45 -07001242 if (cpu == WORK_CPU_UNBOUND)
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001243 cpu = raw_smp_processor_id();
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001244 pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
Tejun Heoc9178082013-03-12 11:30:04 -07001245 } else {
1246 pwq = first_pwq(wq);
1247 }
Tejun Heodbf25762012-08-20 14:51:23 -07001248
Tejun Heoc9178082013-03-12 11:30:04 -07001249 /*
1250 * If @work was previously on a different pool, it might still be
1251 * running there, in which case the work needs to be queued on that
1252 * pool to guarantee non-reentrancy.
1253 */
1254 last_pool = get_work_pool(work);
1255 if (last_pool && last_pool != pwq->pool) {
1256 struct worker *worker;
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001257
Tejun Heoc9178082013-03-12 11:30:04 -07001258 spin_lock(&last_pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001259
Tejun Heoc9178082013-03-12 11:30:04 -07001260 worker = find_worker_executing_work(last_pool, work);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001261
Tejun Heoc9178082013-03-12 11:30:04 -07001262 if (worker && worker->current_pwq->wq == wq) {
1263 pwq = worker->current_pwq;
Tejun Heo8930cab2012-08-03 10:30:45 -07001264 } else {
Tejun Heoc9178082013-03-12 11:30:04 -07001265 /* meh... not running there, queue here */
1266 spin_unlock(&last_pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08001267 spin_lock(&pwq->pool->lock);
Tejun Heo8930cab2012-08-03 10:30:45 -07001268 }
Tejun Heof3421792010-07-02 10:03:51 +02001269 } else {
Tejun Heo112202d2013-02-13 19:29:12 -08001270 spin_lock(&pwq->pool->lock);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001271 }
1272
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07001273 /*
1274 * pwq is determined and locked. For unbound pools, we could have
1275 * raced with pwq release and it could already be dead. If its
1276 * refcnt is zero, repeat pwq selection. Note that pwqs never die
1277 * without another pwq replacing it as the first pwq or while a
1278 * work item is executing on it, so the retying is guaranteed to
1279 * make forward-progress.
1280 */
1281 if (unlikely(!pwq->refcnt)) {
1282 if (wq->flags & WQ_UNBOUND) {
1283 spin_unlock(&pwq->pool->lock);
1284 cpu_relax();
1285 goto retry;
1286 }
1287 /* oops */
1288 WARN_ONCE(true, "workqueue: per-cpu pwq for %s on cpu%d has 0 refcnt",
1289 wq->name, cpu);
1290 }
1291
Tejun Heo112202d2013-02-13 19:29:12 -08001292 /* pwq determined, queue */
1293 trace_workqueue_queue_work(req_cpu, pwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001294
Dan Carpenterf5b25522012-04-13 22:06:58 +03001295 if (WARN_ON(!list_empty(&work->entry))) {
Tejun Heo112202d2013-02-13 19:29:12 -08001296 spin_unlock(&pwq->pool->lock);
Dan Carpenterf5b25522012-04-13 22:06:58 +03001297 return;
1298 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001299
Tejun Heo112202d2013-02-13 19:29:12 -08001300 pwq->nr_in_flight[pwq->work_color]++;
1301 work_flags = work_color_to_flags(pwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001302
Tejun Heo112202d2013-02-13 19:29:12 -08001303 if (likely(pwq->nr_active < pwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001304 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -08001305 pwq->nr_active++;
1306 worklist = &pwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001307 } else {
1308 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo112202d2013-02-13 19:29:12 -08001309 worklist = &pwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001310 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001311
Tejun Heo112202d2013-02-13 19:29:12 -08001312 insert_work(pwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001313
Tejun Heo112202d2013-02-13 19:29:12 -08001314 spin_unlock(&pwq->pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001317/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07001318 * queue_work_on - queue work on specific cpu
1319 * @cpu: CPU number to execute work on
1320 * @wq: workqueue to use
1321 * @work: work to queue
1322 *
Tejun Heod4283e92012-08-03 10:30:44 -07001323 * Returns %false if @work was already on a queue, %true otherwise.
Zhang Ruic1a220e2008-07-23 21:28:39 -07001324 *
1325 * We queue the work to a specific CPU, the caller must ensure it
1326 * can't go away.
1327 */
Tejun Heod4283e92012-08-03 10:30:44 -07001328bool queue_work_on(int cpu, struct workqueue_struct *wq,
1329 struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07001330{
Tejun Heod4283e92012-08-03 10:30:44 -07001331 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001332 unsigned long flags;
1333
1334 local_irq_save(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001335
Tejun Heo22df02b2010-06-29 10:07:10 +02001336 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001337 __queue_work(cpu, wq, work);
Tejun Heod4283e92012-08-03 10:30:44 -07001338 ret = true;
Zhang Ruic1a220e2008-07-23 21:28:39 -07001339 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001340
1341 local_irq_restore(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001342 return ret;
1343}
1344EXPORT_SYMBOL_GPL(queue_work_on);
1345
Tejun Heo0a13c002012-08-03 10:30:44 -07001346/**
1347 * queue_work - queue work on a workqueue
1348 * @wq: workqueue to use
1349 * @work: work to queue
1350 *
Tejun Heod4283e92012-08-03 10:30:44 -07001351 * Returns %false if @work was already on a queue, %true otherwise.
Tejun Heo0a13c002012-08-03 10:30:44 -07001352 *
1353 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1354 * it can be processed by another CPU.
1355 */
Tejun Heod4283e92012-08-03 10:30:44 -07001356bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
Tejun Heo0a13c002012-08-03 10:30:44 -07001357{
Tejun Heo57469822012-08-03 10:30:45 -07001358 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
Tejun Heo0a13c002012-08-03 10:30:44 -07001359}
1360EXPORT_SYMBOL_GPL(queue_work);
1361
Tejun Heod8e794d2012-08-03 10:30:45 -07001362void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
David Howells52bad642006-11-22 14:54:01 +00001364 struct delayed_work *dwork = (struct delayed_work *)__data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001366 /* should have been called from irqsafe timer with irq already off */
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001367 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
Konstantin Khlebnikov1438ade52013-01-24 16:36:31 +04001369EXPORT_SYMBOL(delayed_work_timer_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001371static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1372 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001374 struct timer_list *timer = &dwork->timer;
1375 struct work_struct *work = &dwork->work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001377 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1378 timer->data != (unsigned long)dwork);
Tejun Heofc4b5142012-12-04 07:40:39 -08001379 WARN_ON_ONCE(timer_pending(timer));
1380 WARN_ON_ONCE(!list_empty(&work->entry));
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001381
Tejun Heo8852aac2012-12-01 16:23:42 -08001382 /*
1383 * If @delay is 0, queue @dwork->work immediately. This is for
1384 * both optimization and correctness. The earliest @timer can
1385 * expire is on the closest next tick and delayed_work users depend
1386 * on that there's no such delay when @delay is 0.
1387 */
1388 if (!delay) {
1389 __queue_work(cpu, wq, &dwork->work);
1390 return;
1391 }
1392
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001393 timer_stats_timer_set_start_info(&dwork->timer);
1394
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001395 dwork->wq = wq;
Tejun Heo12650572012-08-08 09:38:42 -07001396 dwork->cpu = cpu;
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001397 timer->expires = jiffies + delay;
1398
1399 if (unlikely(cpu != WORK_CPU_UNBOUND))
1400 add_timer_on(timer, cpu);
1401 else
1402 add_timer(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001405/**
1406 * queue_delayed_work_on - queue work on specific CPU after delay
1407 * @cpu: CPU number to execute work on
1408 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001409 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001410 * @delay: number of jiffies to wait before queueing
1411 *
Tejun Heo715f1302012-08-03 10:30:46 -07001412 * Returns %false if @work was already on a queue, %true otherwise. If
1413 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1414 * execution.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001415 */
Tejun Heod4283e92012-08-03 10:30:44 -07001416bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1417 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001418{
David Howells52bad642006-11-22 14:54:01 +00001419 struct work_struct *work = &dwork->work;
Tejun Heod4283e92012-08-03 10:30:44 -07001420 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001421 unsigned long flags;
1422
1423 /* read the comment in __queue_work() */
1424 local_irq_save(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001425
Tejun Heo22df02b2010-06-29 10:07:10 +02001426 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001427 __queue_delayed_work(cpu, wq, dwork, delay);
Tejun Heod4283e92012-08-03 10:30:44 -07001428 ret = true;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001429 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001430
1431 local_irq_restore(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001432 return ret;
1433}
Dave Jonesae90dd52006-06-30 01:40:45 -04001434EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Tejun Heoc8e55f32010-06-29 10:07:12 +02001436/**
Tejun Heo0a13c002012-08-03 10:30:44 -07001437 * queue_delayed_work - queue work on a workqueue after delay
1438 * @wq: workqueue to use
1439 * @dwork: delayable work to queue
1440 * @delay: number of jiffies to wait before queueing
1441 *
Tejun Heo715f1302012-08-03 10:30:46 -07001442 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
Tejun Heo0a13c002012-08-03 10:30:44 -07001443 */
Tejun Heod4283e92012-08-03 10:30:44 -07001444bool queue_delayed_work(struct workqueue_struct *wq,
Tejun Heo0a13c002012-08-03 10:30:44 -07001445 struct delayed_work *dwork, unsigned long delay)
1446{
Tejun Heo57469822012-08-03 10:30:45 -07001447 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
Tejun Heo0a13c002012-08-03 10:30:44 -07001448}
1449EXPORT_SYMBOL_GPL(queue_delayed_work);
1450
1451/**
Tejun Heo8376fe22012-08-03 10:30:47 -07001452 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1453 * @cpu: CPU number to execute work on
1454 * @wq: workqueue to use
1455 * @dwork: work to queue
1456 * @delay: number of jiffies to wait before queueing
1457 *
1458 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1459 * modify @dwork's timer so that it expires after @delay. If @delay is
1460 * zero, @work is guaranteed to be scheduled immediately regardless of its
1461 * current state.
1462 *
1463 * Returns %false if @dwork was idle and queued, %true if @dwork was
1464 * pending and its timer was modified.
1465 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001466 * This function is safe to call from any context including IRQ handler.
Tejun Heo8376fe22012-08-03 10:30:47 -07001467 * See try_to_grab_pending() for details.
1468 */
1469bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1470 struct delayed_work *dwork, unsigned long delay)
1471{
1472 unsigned long flags;
1473 int ret;
1474
1475 do {
1476 ret = try_to_grab_pending(&dwork->work, true, &flags);
1477 } while (unlikely(ret == -EAGAIN));
1478
1479 if (likely(ret >= 0)) {
1480 __queue_delayed_work(cpu, wq, dwork, delay);
1481 local_irq_restore(flags);
1482 }
1483
1484 /* -ENOENT from try_to_grab_pending() becomes %true */
1485 return ret;
1486}
1487EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1488
1489/**
1490 * mod_delayed_work - modify delay of or queue a delayed work
1491 * @wq: workqueue to use
1492 * @dwork: work to queue
1493 * @delay: number of jiffies to wait before queueing
1494 *
1495 * mod_delayed_work_on() on local CPU.
1496 */
1497bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
1498 unsigned long delay)
1499{
1500 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
1501}
1502EXPORT_SYMBOL_GPL(mod_delayed_work);
1503
1504/**
Tejun Heoc8e55f32010-06-29 10:07:12 +02001505 * worker_enter_idle - enter idle state
1506 * @worker: worker which is entering idle state
1507 *
1508 * @worker is entering idle state. Update stats and idle timer if
1509 * necessary.
1510 *
1511 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001512 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001513 */
1514static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001516 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Tejun Heo6183c002013-03-12 11:29:57 -07001518 if (WARN_ON_ONCE(worker->flags & WORKER_IDLE) ||
1519 WARN_ON_ONCE(!list_empty(&worker->entry) &&
1520 (worker->hentry.next || worker->hentry.pprev)))
1521 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Tejun Heocb444762010-07-02 10:03:50 +02001523 /* can't use worker_set_flags(), also called from start_worker() */
1524 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001525 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001526 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001527
Tejun Heoc8e55f32010-06-29 10:07:12 +02001528 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001529 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001530
Tejun Heo628c78e2012-07-17 12:39:27 -07001531 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1532 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001533
Tejun Heo544ecf32012-05-14 15:04:50 -07001534 /*
Tejun Heo706026c2013-01-24 11:01:34 -08001535 * Sanity check nr_running. Because wq_unbind_fn() releases
Tejun Heod565ed62013-01-24 11:01:33 -08001536 * pool->lock between setting %WORKER_UNBOUND and zapping
Tejun Heo628c78e2012-07-17 12:39:27 -07001537 * nr_running, the warning may trigger spuriously. Check iff
1538 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001539 */
Tejun Heo24647572013-01-24 11:01:33 -08001540 WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001541 pool->nr_workers == pool->nr_idle &&
Tejun Heoe19e3972013-01-24 11:39:44 -08001542 atomic_read(&pool->nr_running));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
Tejun Heoc8e55f32010-06-29 10:07:12 +02001545/**
1546 * worker_leave_idle - leave idle state
1547 * @worker: worker which is leaving idle state
1548 *
1549 * @worker is leaving idle state. Update stats.
1550 *
1551 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001552 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001553 */
1554static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001556 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Tejun Heo6183c002013-03-12 11:29:57 -07001558 if (WARN_ON_ONCE(!(worker->flags & WORKER_IDLE)))
1559 return;
Tejun Heod302f012010-06-29 10:07:13 +02001560 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001561 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001562 list_del_init(&worker->entry);
1563}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Tejun Heoe22bee72010-06-29 10:07:14 +02001565/**
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001566 * worker_maybe_bind_and_lock - try to bind %current to worker_pool and lock it
1567 * @pool: target worker_pool
1568 *
1569 * Bind %current to the cpu of @pool if it is associated and lock @pool.
Tejun Heoe22bee72010-06-29 10:07:14 +02001570 *
1571 * Works which are scheduled while the cpu is online must at least be
1572 * scheduled to a worker which is bound to the cpu so that if they are
1573 * flushed from cpu callbacks while cpu is going down, they are
1574 * guaranteed to execute on the cpu.
1575 *
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001576 * This function is to be used by unbound workers and rescuers to bind
Tejun Heoe22bee72010-06-29 10:07:14 +02001577 * themselves to the target cpu and may race with cpu going down or
1578 * coming online. kthread_bind() can't be used because it may put the
1579 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
Tejun Heo706026c2013-01-24 11:01:34 -08001580 * verbatim as it's best effort and blocking and pool may be
Tejun Heoe22bee72010-06-29 10:07:14 +02001581 * [dis]associated in the meantime.
1582 *
Tejun Heo706026c2013-01-24 11:01:34 -08001583 * This function tries set_cpus_allowed() and locks pool and verifies the
Tejun Heo24647572013-01-24 11:01:33 -08001584 * binding against %POOL_DISASSOCIATED which is set during
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001585 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1586 * enters idle state or fetches works without dropping lock, it can
1587 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001588 *
1589 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001590 * Might sleep. Called without any lock but returns with pool->lock
Tejun Heoe22bee72010-06-29 10:07:14 +02001591 * held.
1592 *
1593 * RETURNS:
Tejun Heo706026c2013-01-24 11:01:34 -08001594 * %true if the associated pool is online (@worker is successfully
Tejun Heoe22bee72010-06-29 10:07:14 +02001595 * bound), %false if offline.
1596 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001597static bool worker_maybe_bind_and_lock(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001598__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001599{
Tejun Heoe22bee72010-06-29 10:07:14 +02001600 while (true) {
1601 /*
1602 * The following call may fail, succeed or succeed
1603 * without actually migrating the task to the cpu if
1604 * it races with cpu hotunplug operation. Verify
Tejun Heo24647572013-01-24 11:01:33 -08001605 * against POOL_DISASSOCIATED.
Tejun Heoe22bee72010-06-29 10:07:14 +02001606 */
Tejun Heo24647572013-01-24 11:01:33 -08001607 if (!(pool->flags & POOL_DISASSOCIATED))
Tejun Heo7a4e3442013-03-12 11:30:00 -07001608 set_cpus_allowed_ptr(current, pool->attrs->cpumask);
Oleg Nesterov85f41862007-05-09 02:34:20 -07001609
Tejun Heod565ed62013-01-24 11:01:33 -08001610 spin_lock_irq(&pool->lock);
Tejun Heo24647572013-01-24 11:01:33 -08001611 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heoe22bee72010-06-29 10:07:14 +02001612 return false;
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001613 if (task_cpu(current) == pool->cpu &&
Tejun Heo7a4e3442013-03-12 11:30:00 -07001614 cpumask_equal(&current->cpus_allowed, pool->attrs->cpumask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001615 return true;
Tejun Heod565ed62013-01-24 11:01:33 -08001616 spin_unlock_irq(&pool->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001617
Tejun Heo5035b202011-04-29 18:08:37 +02001618 /*
1619 * We've raced with CPU hot[un]plug. Give it a breather
1620 * and retry migration. cond_resched() is required here;
1621 * otherwise, we might deadlock against cpu_stop trying to
1622 * bring down the CPU on non-preemptive kernel.
1623 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001624 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001625 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001626 }
1627}
1628
1629/*
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001630 * Rebind an idle @worker to its CPU. worker_thread() will test
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001631 * list_empty(@worker->entry) before leaving idle and call this function.
Tejun Heo25511a42012-07-17 12:39:27 -07001632 */
1633static void idle_worker_rebind(struct worker *worker)
1634{
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001635 /* CPU may go down again inbetween, clear UNBOUND only on success */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001636 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001637 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heo25511a42012-07-17 12:39:27 -07001638
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001639 /* rebind complete, become available again */
1640 list_add(&worker->entry, &worker->pool->idle_list);
Tejun Heod565ed62013-01-24 11:01:33 -08001641 spin_unlock_irq(&worker->pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001642}
1643
1644/*
1645 * Function for @worker->rebind.work used to rebind unbound busy workers to
Tejun Heo403c8212012-07-17 12:39:27 -07001646 * the associated cpu which is coming back online. This is scheduled by
1647 * cpu up but can race with other cpu hotplug operations and may be
1648 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001649 */
Tejun Heo25511a42012-07-17 12:39:27 -07001650static void busy_worker_rebind_fn(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001651{
1652 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heoe22bee72010-06-29 10:07:14 +02001653
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001654 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshaneab6d822012-09-18 09:59:22 -07001655 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heoe22bee72010-06-29 10:07:14 +02001656
Tejun Heod565ed62013-01-24 11:01:33 -08001657 spin_unlock_irq(&worker->pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001658}
1659
Tejun Heo25511a42012-07-17 12:39:27 -07001660/**
Tejun Heo94cf58b2013-01-24 11:01:33 -08001661 * rebind_workers - rebind all workers of a pool to the associated CPU
1662 * @pool: pool of interest
Tejun Heo25511a42012-07-17 12:39:27 -07001663 *
Tejun Heo94cf58b2013-01-24 11:01:33 -08001664 * @pool->cpu is coming online. Rebind all workers to the CPU. Rebinding
Tejun Heo25511a42012-07-17 12:39:27 -07001665 * is different for idle and busy ones.
1666 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001667 * Idle ones will be removed from the idle_list and woken up. They will
1668 * add themselves back after completing rebind. This ensures that the
1669 * idle_list doesn't contain any unbound workers when re-bound busy workers
1670 * try to perform local wake-ups for concurrency management.
Tejun Heo25511a42012-07-17 12:39:27 -07001671 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001672 * Busy workers can rebind after they finish their current work items.
1673 * Queueing the rebind work item at the head of the scheduled list is
1674 * enough. Note that nr_running will be properly bumped as busy workers
1675 * rebind.
Tejun Heo25511a42012-07-17 12:39:27 -07001676 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001677 * On return, all non-manager workers are scheduled for rebind - see
1678 * manage_workers() for the manager special case. Any idle worker
1679 * including the manager will not appear on @idle_list until rebind is
1680 * complete, making local wake-ups safe.
Tejun Heo25511a42012-07-17 12:39:27 -07001681 */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001682static void rebind_workers(struct worker_pool *pool)
Tejun Heo25511a42012-07-17 12:39:27 -07001683{
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001684 struct worker *worker, *n;
Tejun Heo25511a42012-07-17 12:39:27 -07001685 int i;
1686
Tejun Heo94cf58b2013-01-24 11:01:33 -08001687 lockdep_assert_held(&pool->assoc_mutex);
1688 lockdep_assert_held(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001689
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001690 /* dequeue and kick idle ones */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001691 list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
1692 /*
1693 * idle workers should be off @pool->idle_list until rebind
1694 * is complete to avoid receiving premature local wake-ups.
1695 */
1696 list_del_init(&worker->entry);
Lai Jiangshan96e65302012-09-02 00:28:19 +08001697
Tejun Heo94cf58b2013-01-24 11:01:33 -08001698 /*
1699 * worker_thread() will see the above dequeuing and call
1700 * idle_worker_rebind().
1701 */
1702 wake_up_process(worker->task);
1703 }
Tejun Heo25511a42012-07-17 12:39:27 -07001704
Tejun Heo94cf58b2013-01-24 11:01:33 -08001705 /* rebind busy workers */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001706 for_each_busy_worker(worker, i, pool) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08001707 struct work_struct *rebind_work = &worker->rebind_work;
1708 struct workqueue_struct *wq;
Tejun Heo25511a42012-07-17 12:39:27 -07001709
Tejun Heo94cf58b2013-01-24 11:01:33 -08001710 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1711 work_data_bits(rebind_work)))
1712 continue;
Tejun Heo25511a42012-07-17 12:39:27 -07001713
Tejun Heo94cf58b2013-01-24 11:01:33 -08001714 debug_work_activate(rebind_work);
Tejun Heo90beca52012-09-04 23:12:33 -07001715
Tejun Heo94cf58b2013-01-24 11:01:33 -08001716 /*
1717 * wq doesn't really matter but let's keep @worker->pool
Tejun Heo112202d2013-02-13 19:29:12 -08001718 * and @pwq->pool consistent for sanity.
Tejun Heo94cf58b2013-01-24 11:01:33 -08001719 */
Tejun Heo7a4e3442013-03-12 11:30:00 -07001720 if (worker->pool->attrs->nice < 0)
Tejun Heo94cf58b2013-01-24 11:01:33 -08001721 wq = system_highpri_wq;
1722 else
1723 wq = system_wq;
Tejun Heoec588152012-09-04 23:16:32 -07001724
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001725 insert_work(per_cpu_ptr(wq->cpu_pwqs, pool->cpu), rebind_work,
Tejun Heo94cf58b2013-01-24 11:01:33 -08001726 worker->scheduled.next,
1727 work_color_to_flags(WORK_NO_COLOR));
Tejun Heoec588152012-09-04 23:16:32 -07001728 }
Tejun Heo25511a42012-07-17 12:39:27 -07001729}
1730
Tejun Heoc34056a2010-06-29 10:07:11 +02001731static struct worker *alloc_worker(void)
1732{
1733 struct worker *worker;
1734
1735 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001736 if (worker) {
1737 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001738 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001739 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001740 /* on creation a worker is in !idle && prep state */
1741 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001742 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001743 return worker;
1744}
1745
1746/**
1747 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001748 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001749 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001750 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001751 * can be started by calling start_worker() or destroyed using
1752 * destroy_worker().
1753 *
1754 * CONTEXT:
1755 * Might sleep. Does GFP_KERNEL allocations.
1756 *
1757 * RETURNS:
1758 * Pointer to the newly created worker.
1759 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001760static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001761{
Tejun Heo7a4e3442013-03-12 11:30:00 -07001762 const char *pri = pool->attrs->nice < 0 ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001763 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001764 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001765
Tejun Heod565ed62013-01-24 11:01:33 -08001766 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001767 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heod565ed62013-01-24 11:01:33 -08001768 spin_unlock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001769 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001770 goto fail;
Tejun Heod565ed62013-01-24 11:01:33 -08001771 spin_lock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001772 }
Tejun Heod565ed62013-01-24 11:01:33 -08001773 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001774
1775 worker = alloc_worker();
1776 if (!worker)
1777 goto fail;
1778
Tejun Heobd7bdd42012-07-12 14:46:37 -07001779 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001780 worker->id = id;
1781
Tejun Heo29c91e92013-03-12 11:30:03 -07001782 if (pool->cpu >= 0)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001783 worker->task = kthread_create_on_node(worker_thread,
Tejun Heoec22ca52013-01-24 11:01:33 -08001784 worker, cpu_to_node(pool->cpu),
Tejun Heod84ff052013-03-12 11:29:59 -07001785 "kworker/%d:%d%s", pool->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001786 else
1787 worker->task = kthread_create(worker_thread, worker,
Tejun Heoac6104c2013-03-12 11:30:03 -07001788 "kworker/u%d:%d%s",
1789 pool->id, id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001790 if (IS_ERR(worker->task))
1791 goto fail;
1792
Tejun Heo7a4e3442013-03-12 11:30:00 -07001793 set_user_nice(worker->task, pool->attrs->nice);
1794 set_cpus_allowed_ptr(worker->task, pool->attrs->cpumask);
Tejun Heo32704762012-07-13 22:16:45 -07001795
Tejun Heodb7bccf2010-06-29 10:07:12 +02001796 /*
Tejun Heo7a4e3442013-03-12 11:30:00 -07001797 * %PF_THREAD_BOUND is used to prevent userland from meddling with
1798 * cpumask of workqueue workers. This is an abuse. We need
1799 * %PF_NO_SETAFFINITY.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001800 */
Tejun Heo7a4e3442013-03-12 11:30:00 -07001801 worker->task->flags |= PF_THREAD_BOUND;
1802
1803 /*
1804 * The caller is responsible for ensuring %POOL_DISASSOCIATED
1805 * remains stable across this function. See the comments above the
1806 * flag definition for details.
1807 */
1808 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001809 worker->flags |= WORKER_UNBOUND;
Oleg Nesterov3af244332007-05-09 02:34:09 -07001810
Tejun Heoc34056a2010-06-29 10:07:11 +02001811 return worker;
1812fail:
1813 if (id >= 0) {
Tejun Heod565ed62013-01-24 11:01:33 -08001814 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001815 ida_remove(&pool->worker_ida, id);
Tejun Heod565ed62013-01-24 11:01:33 -08001816 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001817 }
1818 kfree(worker);
1819 return NULL;
1820}
1821
1822/**
1823 * start_worker - start a newly created worker
1824 * @worker: worker to start
1825 *
Tejun Heo706026c2013-01-24 11:01:34 -08001826 * Make the pool aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001827 *
1828 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001829 * spin_lock_irq(pool->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001830 */
1831static void start_worker(struct worker *worker)
1832{
Tejun Heocb444762010-07-02 10:03:50 +02001833 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001834 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001835 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001836 wake_up_process(worker->task);
1837}
1838
1839/**
1840 * destroy_worker - destroy a workqueue worker
1841 * @worker: worker to be destroyed
1842 *
Tejun Heo706026c2013-01-24 11:01:34 -08001843 * Destroy @worker and adjust @pool stats accordingly.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001844 *
1845 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001846 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001847 */
1848static void destroy_worker(struct worker *worker)
1849{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001850 struct worker_pool *pool = worker->pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001851 int id = worker->id;
1852
1853 /* sanity check frenzy */
Tejun Heo6183c002013-03-12 11:29:57 -07001854 if (WARN_ON(worker->current_work) ||
1855 WARN_ON(!list_empty(&worker->scheduled)))
1856 return;
Tejun Heoc34056a2010-06-29 10:07:11 +02001857
Tejun Heoc8e55f32010-06-29 10:07:12 +02001858 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001859 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001860 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001861 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001862
1863 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001864 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001865
Tejun Heod565ed62013-01-24 11:01:33 -08001866 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001867
Tejun Heoc34056a2010-06-29 10:07:11 +02001868 kthread_stop(worker->task);
1869 kfree(worker);
1870
Tejun Heod565ed62013-01-24 11:01:33 -08001871 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001872 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001873}
1874
Tejun Heo63d95a92012-07-12 14:46:37 -07001875static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001876{
Tejun Heo63d95a92012-07-12 14:46:37 -07001877 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001878
Tejun Heod565ed62013-01-24 11:01:33 -08001879 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001880
Tejun Heo63d95a92012-07-12 14:46:37 -07001881 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001882 struct worker *worker;
1883 unsigned long expires;
1884
1885 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001886 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001887 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1888
1889 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001890 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001891 else {
1892 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001893 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001894 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001895 }
1896 }
1897
Tejun Heod565ed62013-01-24 11:01:33 -08001898 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001899}
1900
Tejun Heo493a1722013-03-12 11:29:59 -07001901static void send_mayday(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001902{
Tejun Heo112202d2013-02-13 19:29:12 -08001903 struct pool_workqueue *pwq = get_work_pwq(work);
1904 struct workqueue_struct *wq = pwq->wq;
Tejun Heo493a1722013-03-12 11:29:59 -07001905
1906 lockdep_assert_held(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001907
Tejun Heo493008a2013-03-12 11:30:03 -07001908 if (!wq->rescuer)
Tejun Heo493a1722013-03-12 11:29:59 -07001909 return;
Tejun Heoe22bee72010-06-29 10:07:14 +02001910
1911 /* mayday mayday mayday */
Tejun Heo493a1722013-03-12 11:29:59 -07001912 if (list_empty(&pwq->mayday_node)) {
1913 list_add_tail(&pwq->mayday_node, &wq->maydays);
Tejun Heoe22bee72010-06-29 10:07:14 +02001914 wake_up_process(wq->rescuer->task);
Tejun Heo493a1722013-03-12 11:29:59 -07001915 }
Tejun Heoe22bee72010-06-29 10:07:14 +02001916}
1917
Tejun Heo706026c2013-01-24 11:01:34 -08001918static void pool_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001919{
Tejun Heo63d95a92012-07-12 14:46:37 -07001920 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001921 struct work_struct *work;
1922
Tejun Heo493a1722013-03-12 11:29:59 -07001923 spin_lock_irq(&workqueue_lock); /* for wq->maydays */
1924 spin_lock(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001925
Tejun Heo63d95a92012-07-12 14:46:37 -07001926 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001927 /*
1928 * We've been trying to create a new worker but
1929 * haven't been successful. We might be hitting an
1930 * allocation deadlock. Send distress signals to
1931 * rescuers.
1932 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001933 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001934 send_mayday(work);
1935 }
1936
Tejun Heo493a1722013-03-12 11:29:59 -07001937 spin_unlock(&pool->lock);
1938 spin_unlock_irq(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001939
Tejun Heo63d95a92012-07-12 14:46:37 -07001940 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001941}
1942
1943/**
1944 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001945 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001946 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001947 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001948 * have at least one idle worker on return from this function. If
1949 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001950 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001951 * possible allocation deadlock.
1952 *
1953 * On return, need_to_create_worker() is guaranteed to be false and
1954 * may_start_working() true.
1955 *
1956 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001957 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001958 * multiple times. Does GFP_KERNEL allocations. Called only from
1959 * manager.
1960 *
1961 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001962 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001963 * otherwise.
1964 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001965static bool maybe_create_worker(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001966__releases(&pool->lock)
1967__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001968{
Tejun Heo63d95a92012-07-12 14:46:37 -07001969 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001970 return false;
1971restart:
Tejun Heod565ed62013-01-24 11:01:33 -08001972 spin_unlock_irq(&pool->lock);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001973
Tejun Heoe22bee72010-06-29 10:07:14 +02001974 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001975 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001976
1977 while (true) {
1978 struct worker *worker;
1979
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001980 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001981 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001982 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001983 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001984 start_worker(worker);
Tejun Heo6183c002013-03-12 11:29:57 -07001985 if (WARN_ON_ONCE(need_to_create_worker(pool)))
1986 goto restart;
Tejun Heoe22bee72010-06-29 10:07:14 +02001987 return true;
1988 }
1989
Tejun Heo63d95a92012-07-12 14:46:37 -07001990 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001991 break;
1992
Tejun Heoe22bee72010-06-29 10:07:14 +02001993 __set_current_state(TASK_INTERRUPTIBLE);
1994 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001995
Tejun Heo63d95a92012-07-12 14:46:37 -07001996 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001997 break;
1998 }
1999
Tejun Heo63d95a92012-07-12 14:46:37 -07002000 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08002001 spin_lock_irq(&pool->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07002002 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002003 goto restart;
2004 return true;
2005}
2006
2007/**
2008 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07002009 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02002010 *
Tejun Heo63d95a92012-07-12 14:46:37 -07002011 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02002012 * IDLE_WORKER_TIMEOUT.
2013 *
2014 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08002015 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02002016 * multiple times. Called only from manager.
2017 *
2018 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08002019 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02002020 * otherwise.
2021 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002022static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02002023{
2024 bool ret = false;
2025
Tejun Heo63d95a92012-07-12 14:46:37 -07002026 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02002027 struct worker *worker;
2028 unsigned long expires;
2029
Tejun Heo63d95a92012-07-12 14:46:37 -07002030 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02002031 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
2032
2033 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07002034 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02002035 break;
2036 }
2037
2038 destroy_worker(worker);
2039 ret = true;
2040 }
2041
2042 return ret;
2043}
2044
2045/**
2046 * manage_workers - manage worker pool
2047 * @worker: self
2048 *
Tejun Heo706026c2013-01-24 11:01:34 -08002049 * Assume the manager role and manage the worker pool @worker belongs
Tejun Heoe22bee72010-06-29 10:07:14 +02002050 * to. At any given time, there can be only zero or one manager per
Tejun Heo706026c2013-01-24 11:01:34 -08002051 * pool. The exclusion is handled automatically by this function.
Tejun Heoe22bee72010-06-29 10:07:14 +02002052 *
2053 * The caller can safely start processing works on false return. On
2054 * true return, it's guaranteed that need_to_create_worker() is false
2055 * and may_start_working() is true.
2056 *
2057 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002058 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02002059 * multiple times. Does GFP_KERNEL allocations.
2060 *
2061 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08002062 * spin_lock_irq(pool->lock) which may be released and regrabbed
2063 * multiple times. Does GFP_KERNEL allocations.
Tejun Heoe22bee72010-06-29 10:07:14 +02002064 */
2065static bool manage_workers(struct worker *worker)
2066{
Tejun Heo63d95a92012-07-12 14:46:37 -07002067 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002068 bool ret = false;
2069
Tejun Heo34a06bd2013-03-12 11:30:00 -07002070 if (!mutex_trylock(&pool->manager_arb))
Tejun Heoe22bee72010-06-29 10:07:14 +02002071 return ret;
2072
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002073 /*
2074 * To simplify both worker management and CPU hotplug, hold off
2075 * management while hotplug is in progress. CPU hotplug path can't
Tejun Heo34a06bd2013-03-12 11:30:00 -07002076 * grab @pool->manager_arb to achieve this because that can lead to
2077 * idle worker depletion (all become busy thinking someone else is
2078 * managing) which in turn can result in deadlock under extreme
2079 * circumstances. Use @pool->assoc_mutex to synchronize manager
2080 * against CPU hotplug.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002081 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002082 * assoc_mutex would always be free unless CPU hotplug is in
Tejun Heod565ed62013-01-24 11:01:33 -08002083 * progress. trylock first without dropping @pool->lock.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002084 */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002085 if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002086 spin_unlock_irq(&pool->lock);
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002087 mutex_lock(&pool->assoc_mutex);
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002088 /*
2089 * CPU hotplug could have happened while we were waiting
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002090 * for assoc_mutex. Hotplug itself can't handle us
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002091 * because manager isn't either on idle or busy list, and
Tejun Heo706026c2013-01-24 11:01:34 -08002092 * @pool's state and ours could have deviated.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002093 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002094 * As hotplug is now excluded via assoc_mutex, we can
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002095 * simply try to bind. It will succeed or fail depending
Tejun Heo706026c2013-01-24 11:01:34 -08002096 * on @pool's current state. Try it and adjust
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002097 * %WORKER_UNBOUND accordingly.
2098 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002099 if (worker_maybe_bind_and_lock(pool))
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002100 worker->flags &= ~WORKER_UNBOUND;
2101 else
2102 worker->flags |= WORKER_UNBOUND;
2103
2104 ret = true;
2105 }
2106
Tejun Heo11ebea52012-07-12 14:46:37 -07002107 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02002108
2109 /*
2110 * Destroy and then create so that may_start_working() is true
2111 * on return.
2112 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002113 ret |= maybe_destroy_workers(pool);
2114 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02002115
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002116 mutex_unlock(&pool->assoc_mutex);
Tejun Heo34a06bd2013-03-12 11:30:00 -07002117 mutex_unlock(&pool->manager_arb);
Tejun Heoe22bee72010-06-29 10:07:14 +02002118 return ret;
2119}
2120
Tejun Heoa62428c2010-06-29 10:07:10 +02002121/**
2122 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02002123 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02002124 * @work: work to process
2125 *
2126 * Process @work. This function contains all the logics necessary to
2127 * process a single work including synchronization against and
2128 * interaction with other workers on the same cpu, queueing and
2129 * flushing. As long as context requirement is met, any worker can
2130 * call this function to process a work.
2131 *
2132 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002133 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002134 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002135static void process_one_work(struct worker *worker, struct work_struct *work)
Tejun Heod565ed62013-01-24 11:01:33 -08002136__releases(&pool->lock)
2137__acquires(&pool->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002138{
Tejun Heo112202d2013-02-13 19:29:12 -08002139 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002140 struct worker_pool *pool = worker->pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002141 bool cpu_intensive = pwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heo73f53c42010-06-29 10:07:11 +02002142 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002143 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002144#ifdef CONFIG_LOCKDEP
2145 /*
2146 * It is permissible to free the struct work_struct from
2147 * inside the function that is called from it, this we need to
2148 * take into account for lockdep too. To avoid bogus "held
2149 * lock freed" warnings as well as problems when looking into
2150 * work->lockdep_map, make a copy and use that here.
2151 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002152 struct lockdep_map lockdep_map;
2153
2154 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002155#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002156 /*
2157 * Ensure we're on the correct CPU. DISASSOCIATED test is
2158 * necessary to avoid spurious warnings from rescuers servicing the
Tejun Heo24647572013-01-24 11:01:33 -08002159 * unbound or a disassociated pool.
Tejun Heo6fec10a2012-07-22 10:16:34 -07002160 */
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002161 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
Tejun Heo24647572013-01-24 11:01:33 -08002162 !(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heoec22ca52013-01-24 11:01:33 -08002163 raw_smp_processor_id() != pool->cpu);
Tejun Heo25511a42012-07-17 12:39:27 -07002164
Tejun Heo7e116292010-06-29 10:07:13 +02002165 /*
2166 * A single work shouldn't be executed concurrently by
2167 * multiple workers on a single cpu. Check whether anyone is
2168 * already processing the work. If so, defer the work to the
2169 * currently executing one.
2170 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002171 collision = find_worker_executing_work(pool, work);
Tejun Heo7e116292010-06-29 10:07:13 +02002172 if (unlikely(collision)) {
2173 move_linked_works(work, &collision->scheduled, NULL);
2174 return;
2175 }
2176
Tejun Heo8930cab2012-08-03 10:30:45 -07002177 /* claim and dequeue */
Tejun Heoa62428c2010-06-29 10:07:10 +02002178 debug_work_deactivate(work);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002179 hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work);
Tejun Heoc34056a2010-06-29 10:07:11 +02002180 worker->current_work = work;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002181 worker->current_func = work->func;
Tejun Heo112202d2013-02-13 19:29:12 -08002182 worker->current_pwq = pwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002183 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002184
Tejun Heoa62428c2010-06-29 10:07:10 +02002185 list_del_init(&work->entry);
2186
Tejun Heo649027d2010-06-29 10:07:14 +02002187 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002188 * CPU intensive works don't participate in concurrency
2189 * management. They're the scheduler's responsibility.
2190 */
2191 if (unlikely(cpu_intensive))
2192 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2193
Tejun Heo974271c2012-07-12 14:46:37 -07002194 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002195 * Unbound pool isn't concurrency managed and work items should be
Tejun Heo974271c2012-07-12 14:46:37 -07002196 * executed ASAP. Wake up another worker if necessary.
2197 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002198 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2199 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002200
Tejun Heo8930cab2012-08-03 10:30:45 -07002201 /*
Tejun Heo7c3eed52013-01-24 11:01:33 -08002202 * Record the last pool and clear PENDING which should be the last
Tejun Heod565ed62013-01-24 11:01:33 -08002203 * update to @work. Also, do this inside @pool->lock so that
Tejun Heo23657bb2012-08-13 17:08:19 -07002204 * PENDING and queued state changes happen together while IRQ is
2205 * disabled.
Tejun Heo8930cab2012-08-03 10:30:45 -07002206 */
Tejun Heo7c3eed52013-01-24 11:01:33 -08002207 set_work_pool_and_clear_pending(work, pool->id);
Tejun Heoa62428c2010-06-29 10:07:10 +02002208
Tejun Heod565ed62013-01-24 11:01:33 -08002209 spin_unlock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002210
Tejun Heo112202d2013-02-13 19:29:12 -08002211 lock_map_acquire_read(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002212 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002213 trace_workqueue_execute_start(work);
Tejun Heoa2c1c572012-12-18 10:35:02 -08002214 worker->current_func(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002215 /*
2216 * While we must be careful to not use "work" after this, the trace
2217 * point will only record its address.
2218 */
2219 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002220 lock_map_release(&lockdep_map);
Tejun Heo112202d2013-02-13 19:29:12 -08002221 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002222
2223 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
Valentin Ilie044c7822012-08-19 00:52:42 +03002224 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2225 " last function: %pf\n",
Tejun Heoa2c1c572012-12-18 10:35:02 -08002226 current->comm, preempt_count(), task_pid_nr(current),
2227 worker->current_func);
Tejun Heoa62428c2010-06-29 10:07:10 +02002228 debug_show_held_locks(current);
2229 dump_stack();
2230 }
2231
Tejun Heod565ed62013-01-24 11:01:33 -08002232 spin_lock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002233
Tejun Heofb0e7be2010-06-29 10:07:15 +02002234 /* clear cpu intensive status */
2235 if (unlikely(cpu_intensive))
2236 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2237
Tejun Heoa62428c2010-06-29 10:07:10 +02002238 /* we're done with it, release */
Sasha Levin42f85702012-12-17 10:01:23 -05002239 hash_del(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002240 worker->current_work = NULL;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002241 worker->current_func = NULL;
Tejun Heo112202d2013-02-13 19:29:12 -08002242 worker->current_pwq = NULL;
2243 pwq_dec_nr_in_flight(pwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02002244}
2245
Tejun Heoaffee4b2010-06-29 10:07:12 +02002246/**
2247 * process_scheduled_works - process scheduled works
2248 * @worker: self
2249 *
2250 * Process all scheduled works. Please note that the scheduled list
2251 * may change while processing a work, so this function repeatedly
2252 * fetches a work from the top and executes it.
2253 *
2254 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002255 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002256 * multiple times.
2257 */
2258static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002260 while (!list_empty(&worker->scheduled)) {
2261 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002263 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
Tejun Heo4690c4a2010-06-29 10:07:10 +02002267/**
2268 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002269 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002270 *
Tejun Heo706026c2013-01-24 11:01:34 -08002271 * The worker thread function. There are NR_CPU_WORKER_POOLS dynamic pools
2272 * of these per each cpu. These workers process all works regardless of
Tejun Heoe22bee72010-06-29 10:07:14 +02002273 * their specific target workqueue. The only exception is works which
2274 * belong to workqueues with a rescuer which will be explained in
2275 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002276 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002277static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
Tejun Heoc34056a2010-06-29 10:07:11 +02002279 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002280 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Tejun Heoe22bee72010-06-29 10:07:14 +02002282 /* tell the scheduler that this is a workqueue worker */
2283 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002284woke_up:
Tejun Heod565ed62013-01-24 11:01:33 -08002285 spin_lock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002287 /* we are off idle list if destruction or rebind is requested */
2288 if (unlikely(list_empty(&worker->entry))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002289 spin_unlock_irq(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002290
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002291 /* if DIE is set, destruction is requested */
Tejun Heo25511a42012-07-17 12:39:27 -07002292 if (worker->flags & WORKER_DIE) {
2293 worker->task->flags &= ~PF_WQ_WORKER;
2294 return 0;
2295 }
2296
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002297 /* otherwise, rebind */
Tejun Heo25511a42012-07-17 12:39:27 -07002298 idle_worker_rebind(worker);
2299 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
2301
Tejun Heoc8e55f32010-06-29 10:07:12 +02002302 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002303recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002304 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002305 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002306 goto sleep;
2307
2308 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002309 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002310 goto recheck;
2311
Tejun Heoc8e55f32010-06-29 10:07:12 +02002312 /*
2313 * ->scheduled list can only be filled while a worker is
2314 * preparing to process a work or actually processing it.
2315 * Make sure nobody diddled with it while I was sleeping.
2316 */
Tejun Heo6183c002013-03-12 11:29:57 -07002317 WARN_ON_ONCE(!list_empty(&worker->scheduled));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002318
Tejun Heoe22bee72010-06-29 10:07:14 +02002319 /*
2320 * When control reaches this point, we're guaranteed to have
2321 * at least one idle worker or that someone else has already
2322 * assumed the manager role.
2323 */
2324 worker_clr_flags(worker, WORKER_PREP);
2325
2326 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002327 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002328 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002329 struct work_struct, entry);
2330
2331 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2332 /* optimization path, not strictly necessary */
2333 process_one_work(worker, work);
2334 if (unlikely(!list_empty(&worker->scheduled)))
2335 process_scheduled_works(worker);
2336 } else {
2337 move_linked_works(work, &worker->scheduled, NULL);
2338 process_scheduled_works(worker);
2339 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002340 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002341
Tejun Heoe22bee72010-06-29 10:07:14 +02002342 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002343sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002344 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002345 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002346
Tejun Heoc8e55f32010-06-29 10:07:12 +02002347 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002348 * pool->lock is held and there's no work to process and no need to
2349 * manage, sleep. Workers are woken up only while holding
2350 * pool->lock or from local cpu, so setting the current state
2351 * before releasing pool->lock is enough to prevent losing any
2352 * event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002353 */
2354 worker_enter_idle(worker);
2355 __set_current_state(TASK_INTERRUPTIBLE);
Tejun Heod565ed62013-01-24 11:01:33 -08002356 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002357 schedule();
2358 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359}
2360
Tejun Heoe22bee72010-06-29 10:07:14 +02002361/**
2362 * rescuer_thread - the rescuer thread function
Tejun Heo111c2252013-01-17 17:16:24 -08002363 * @__rescuer: self
Tejun Heoe22bee72010-06-29 10:07:14 +02002364 *
2365 * Workqueue rescuer thread function. There's one rescuer for each
Tejun Heo493008a2013-03-12 11:30:03 -07002366 * workqueue which has WQ_MEM_RECLAIM set.
Tejun Heoe22bee72010-06-29 10:07:14 +02002367 *
Tejun Heo706026c2013-01-24 11:01:34 -08002368 * Regular work processing on a pool may block trying to create a new
Tejun Heoe22bee72010-06-29 10:07:14 +02002369 * worker which uses GFP_KERNEL allocation which has slight chance of
2370 * developing into deadlock if some works currently on the same queue
2371 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2372 * the problem rescuer solves.
2373 *
Tejun Heo706026c2013-01-24 11:01:34 -08002374 * When such condition is possible, the pool summons rescuers of all
2375 * workqueues which have works queued on the pool and let them process
Tejun Heoe22bee72010-06-29 10:07:14 +02002376 * those works so that forward progress can be guaranteed.
2377 *
2378 * This should happen rarely.
2379 */
Tejun Heo111c2252013-01-17 17:16:24 -08002380static int rescuer_thread(void *__rescuer)
Tejun Heoe22bee72010-06-29 10:07:14 +02002381{
Tejun Heo111c2252013-01-17 17:16:24 -08002382 struct worker *rescuer = __rescuer;
2383 struct workqueue_struct *wq = rescuer->rescue_wq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002384 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heoe22bee72010-06-29 10:07:14 +02002385
2386 set_user_nice(current, RESCUER_NICE_LEVEL);
Tejun Heo111c2252013-01-17 17:16:24 -08002387
2388 /*
2389 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2390 * doesn't participate in concurrency management.
2391 */
2392 rescuer->task->flags |= PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002393repeat:
2394 set_current_state(TASK_INTERRUPTIBLE);
2395
Mike Galbraith412d32e2012-11-28 07:17:18 +01002396 if (kthread_should_stop()) {
2397 __set_current_state(TASK_RUNNING);
Tejun Heo111c2252013-01-17 17:16:24 -08002398 rescuer->task->flags &= ~PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002399 return 0;
Mike Galbraith412d32e2012-11-28 07:17:18 +01002400 }
Tejun Heoe22bee72010-06-29 10:07:14 +02002401
Tejun Heo493a1722013-03-12 11:29:59 -07002402 /* see whether any pwq is asking for help */
2403 spin_lock_irq(&workqueue_lock);
2404
2405 while (!list_empty(&wq->maydays)) {
2406 struct pool_workqueue *pwq = list_first_entry(&wq->maydays,
2407 struct pool_workqueue, mayday_node);
Tejun Heo112202d2013-02-13 19:29:12 -08002408 struct worker_pool *pool = pwq->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002409 struct work_struct *work, *n;
2410
2411 __set_current_state(TASK_RUNNING);
Tejun Heo493a1722013-03-12 11:29:59 -07002412 list_del_init(&pwq->mayday_node);
2413
2414 spin_unlock_irq(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002415
2416 /* migrate to the target cpu if possible */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002417 worker_maybe_bind_and_lock(pool);
Lai Jiangshanb3104102013-02-19 12:17:02 -08002418 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002419
2420 /*
2421 * Slurp in all works issued via this workqueue and
2422 * process'em.
2423 */
Tejun Heo6183c002013-03-12 11:29:57 -07002424 WARN_ON_ONCE(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002425 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heo112202d2013-02-13 19:29:12 -08002426 if (get_work_pwq(work) == pwq)
Tejun Heoe22bee72010-06-29 10:07:14 +02002427 move_linked_works(work, scheduled, &n);
2428
2429 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002430
2431 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002432 * Leave this pool. If keep_working() is %true, notify a
Tejun Heo75769582011-02-14 14:04:46 +01002433 * regular worker; otherwise, we end up with 0 concurrency
2434 * and stalling the execution.
2435 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002436 if (keep_working(pool))
2437 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002438
Lai Jiangshanb3104102013-02-19 12:17:02 -08002439 rescuer->pool = NULL;
Tejun Heo493a1722013-03-12 11:29:59 -07002440 spin_unlock(&pool->lock);
2441 spin_lock(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002442 }
2443
Tejun Heo493a1722013-03-12 11:29:59 -07002444 spin_unlock_irq(&workqueue_lock);
2445
Tejun Heo111c2252013-01-17 17:16:24 -08002446 /* rescuers should never participate in concurrency management */
2447 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
Tejun Heoe22bee72010-06-29 10:07:14 +02002448 schedule();
2449 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450}
2451
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002452struct wq_barrier {
2453 struct work_struct work;
2454 struct completion done;
2455};
2456
2457static void wq_barrier_func(struct work_struct *work)
2458{
2459 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2460 complete(&barr->done);
2461}
2462
Tejun Heo4690c4a2010-06-29 10:07:10 +02002463/**
2464 * insert_wq_barrier - insert a barrier work
Tejun Heo112202d2013-02-13 19:29:12 -08002465 * @pwq: pwq to insert barrier into
Tejun Heo4690c4a2010-06-29 10:07:10 +02002466 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002467 * @target: target work to attach @barr to
2468 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002469 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002470 * @barr is linked to @target such that @barr is completed only after
2471 * @target finishes execution. Please note that the ordering
2472 * guarantee is observed only with respect to @target and on the local
2473 * cpu.
2474 *
2475 * Currently, a queued barrier can't be canceled. This is because
2476 * try_to_grab_pending() can't determine whether the work to be
2477 * grabbed is at the head of the queue and thus can't clear LINKED
2478 * flag of the previous work while there must be a valid next work
2479 * after a work with LINKED flag set.
2480 *
2481 * Note that when @worker is non-NULL, @target may be modified
Tejun Heo112202d2013-02-13 19:29:12 -08002482 * underneath us, so we can't reliably determine pwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002483 *
2484 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002485 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002486 */
Tejun Heo112202d2013-02-13 19:29:12 -08002487static void insert_wq_barrier(struct pool_workqueue *pwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002488 struct wq_barrier *barr,
2489 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002490{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002491 struct list_head *head;
2492 unsigned int linked = 0;
2493
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002494 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002495 * debugobject calls are safe here even with pool->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002496 * as we know for sure that this will not trigger any of the
2497 * checks and call back into the fixup functions where we
2498 * might deadlock.
2499 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002500 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002501 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002502 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002503
Tejun Heoaffee4b2010-06-29 10:07:12 +02002504 /*
2505 * If @target is currently being executed, schedule the
2506 * barrier to the worker; otherwise, put it after @target.
2507 */
2508 if (worker)
2509 head = worker->scheduled.next;
2510 else {
2511 unsigned long *bits = work_data_bits(target);
2512
2513 head = target->entry.next;
2514 /* there can already be other linked works, inherit and set */
2515 linked = *bits & WORK_STRUCT_LINKED;
2516 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2517 }
2518
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002519 debug_work_activate(&barr->work);
Tejun Heo112202d2013-02-13 19:29:12 -08002520 insert_work(pwq, &barr->work, head,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002521 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002522}
2523
Tejun Heo73f53c42010-06-29 10:07:11 +02002524/**
Tejun Heo112202d2013-02-13 19:29:12 -08002525 * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing
Tejun Heo73f53c42010-06-29 10:07:11 +02002526 * @wq: workqueue being flushed
2527 * @flush_color: new flush color, < 0 for no-op
2528 * @work_color: new work color, < 0 for no-op
2529 *
Tejun Heo112202d2013-02-13 19:29:12 -08002530 * Prepare pwqs for workqueue flushing.
Tejun Heo73f53c42010-06-29 10:07:11 +02002531 *
Tejun Heo112202d2013-02-13 19:29:12 -08002532 * If @flush_color is non-negative, flush_color on all pwqs should be
2533 * -1. If no pwq has in-flight commands at the specified color, all
2534 * pwq->flush_color's stay at -1 and %false is returned. If any pwq
2535 * has in flight commands, its pwq->flush_color is set to
2536 * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq
Tejun Heo73f53c42010-06-29 10:07:11 +02002537 * wakeup logic is armed and %true is returned.
2538 *
2539 * The caller should have initialized @wq->first_flusher prior to
2540 * calling this function with non-negative @flush_color. If
2541 * @flush_color is negative, no flush color update is done and %false
2542 * is returned.
2543 *
Tejun Heo112202d2013-02-13 19:29:12 -08002544 * If @work_color is non-negative, all pwqs should have the same
Tejun Heo73f53c42010-06-29 10:07:11 +02002545 * work_color which is previous to @work_color and all will be
2546 * advanced to @work_color.
2547 *
2548 * CONTEXT:
2549 * mutex_lock(wq->flush_mutex).
2550 *
2551 * RETURNS:
2552 * %true if @flush_color >= 0 and there's something to flush. %false
2553 * otherwise.
2554 */
Tejun Heo112202d2013-02-13 19:29:12 -08002555static bool flush_workqueue_prep_pwqs(struct workqueue_struct *wq,
Tejun Heo73f53c42010-06-29 10:07:11 +02002556 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Tejun Heo73f53c42010-06-29 10:07:11 +02002558 bool wait = false;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002559 struct pool_workqueue *pwq;
Oleg Nesterov14441962007-05-23 13:57:57 -07002560
Tejun Heo73f53c42010-06-29 10:07:11 +02002561 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002562 WARN_ON_ONCE(atomic_read(&wq->nr_pwqs_to_flush));
Tejun Heo112202d2013-02-13 19:29:12 -08002563 atomic_set(&wq->nr_pwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002564 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002565
Tejun Heo76af4d92013-03-12 11:30:00 -07002566 local_irq_disable();
2567
Tejun Heo49e3cf42013-03-12 11:29:58 -07002568 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08002569 struct worker_pool *pool = pwq->pool;
Tejun Heo73f53c42010-06-29 10:07:11 +02002570
Tejun Heo76af4d92013-03-12 11:30:00 -07002571 spin_lock(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002572
2573 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002574 WARN_ON_ONCE(pwq->flush_color != -1);
Tejun Heo73f53c42010-06-29 10:07:11 +02002575
Tejun Heo112202d2013-02-13 19:29:12 -08002576 if (pwq->nr_in_flight[flush_color]) {
2577 pwq->flush_color = flush_color;
2578 atomic_inc(&wq->nr_pwqs_to_flush);
Tejun Heo73f53c42010-06-29 10:07:11 +02002579 wait = true;
2580 }
2581 }
2582
2583 if (work_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002584 WARN_ON_ONCE(work_color != work_next_color(pwq->work_color));
Tejun Heo112202d2013-02-13 19:29:12 -08002585 pwq->work_color = work_color;
Tejun Heo73f53c42010-06-29 10:07:11 +02002586 }
2587
Tejun Heo76af4d92013-03-12 11:30:00 -07002588 spin_unlock(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002589 }
2590
Tejun Heo76af4d92013-03-12 11:30:00 -07002591 local_irq_enable();
2592
Tejun Heo112202d2013-02-13 19:29:12 -08002593 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_pwqs_to_flush))
Tejun Heo73f53c42010-06-29 10:07:11 +02002594 complete(&wq->first_flusher->done);
2595
2596 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002599/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002601 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 *
2603 * Forces execution of the workqueue and blocks until its completion.
2604 * This is typically used in driver shutdown handlers.
2605 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002606 * We sleep until all works which were queued on entry have been handled,
2607 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002609void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Tejun Heo73f53c42010-06-29 10:07:11 +02002611 struct wq_flusher this_flusher = {
2612 .list = LIST_HEAD_INIT(this_flusher.list),
2613 .flush_color = -1,
2614 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2615 };
2616 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002617
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002618 lock_map_acquire(&wq->lockdep_map);
2619 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002620
2621 mutex_lock(&wq->flush_mutex);
2622
2623 /*
2624 * Start-to-wait phase
2625 */
2626 next_color = work_next_color(wq->work_color);
2627
2628 if (next_color != wq->flush_color) {
2629 /*
2630 * Color space is not full. The current work_color
2631 * becomes our flush_color and work_color is advanced
2632 * by one.
2633 */
Tejun Heo6183c002013-03-12 11:29:57 -07002634 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow));
Tejun Heo73f53c42010-06-29 10:07:11 +02002635 this_flusher.flush_color = wq->work_color;
2636 wq->work_color = next_color;
2637
2638 if (!wq->first_flusher) {
2639 /* no flush in progress, become the first flusher */
Tejun Heo6183c002013-03-12 11:29:57 -07002640 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002641
2642 wq->first_flusher = &this_flusher;
2643
Tejun Heo112202d2013-02-13 19:29:12 -08002644 if (!flush_workqueue_prep_pwqs(wq, wq->flush_color,
Tejun Heo73f53c42010-06-29 10:07:11 +02002645 wq->work_color)) {
2646 /* nothing to flush, done */
2647 wq->flush_color = next_color;
2648 wq->first_flusher = NULL;
2649 goto out_unlock;
2650 }
2651 } else {
2652 /* wait in queue */
Tejun Heo6183c002013-03-12 11:29:57 -07002653 WARN_ON_ONCE(wq->flush_color == this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002654 list_add_tail(&this_flusher.list, &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002655 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002656 }
2657 } else {
2658 /*
2659 * Oops, color space is full, wait on overflow queue.
2660 * The next flush completion will assign us
2661 * flush_color and transfer to flusher_queue.
2662 */
2663 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2664 }
2665
2666 mutex_unlock(&wq->flush_mutex);
2667
2668 wait_for_completion(&this_flusher.done);
2669
2670 /*
2671 * Wake-up-and-cascade phase
2672 *
2673 * First flushers are responsible for cascading flushes and
2674 * handling overflow. Non-first flushers can simply return.
2675 */
2676 if (wq->first_flusher != &this_flusher)
2677 return;
2678
2679 mutex_lock(&wq->flush_mutex);
2680
Tejun Heo4ce48b32010-07-02 10:03:51 +02002681 /* we might have raced, check again with mutex held */
2682 if (wq->first_flusher != &this_flusher)
2683 goto out_unlock;
2684
Tejun Heo73f53c42010-06-29 10:07:11 +02002685 wq->first_flusher = NULL;
2686
Tejun Heo6183c002013-03-12 11:29:57 -07002687 WARN_ON_ONCE(!list_empty(&this_flusher.list));
2688 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002689
2690 while (true) {
2691 struct wq_flusher *next, *tmp;
2692
2693 /* complete all the flushers sharing the current flush color */
2694 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2695 if (next->flush_color != wq->flush_color)
2696 break;
2697 list_del_init(&next->list);
2698 complete(&next->done);
2699 }
2700
Tejun Heo6183c002013-03-12 11:29:57 -07002701 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow) &&
2702 wq->flush_color != work_next_color(wq->work_color));
Tejun Heo73f53c42010-06-29 10:07:11 +02002703
2704 /* this flush_color is finished, advance by one */
2705 wq->flush_color = work_next_color(wq->flush_color);
2706
2707 /* one color has been freed, handle overflow queue */
2708 if (!list_empty(&wq->flusher_overflow)) {
2709 /*
2710 * Assign the same color to all overflowed
2711 * flushers, advance work_color and append to
2712 * flusher_queue. This is the start-to-wait
2713 * phase for these overflowed flushers.
2714 */
2715 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2716 tmp->flush_color = wq->work_color;
2717
2718 wq->work_color = work_next_color(wq->work_color);
2719
2720 list_splice_tail_init(&wq->flusher_overflow,
2721 &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002722 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002723 }
2724
2725 if (list_empty(&wq->flusher_queue)) {
Tejun Heo6183c002013-03-12 11:29:57 -07002726 WARN_ON_ONCE(wq->flush_color != wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002727 break;
2728 }
2729
2730 /*
2731 * Need to flush more colors. Make the next flusher
Tejun Heo112202d2013-02-13 19:29:12 -08002732 * the new first flusher and arm pwqs.
Tejun Heo73f53c42010-06-29 10:07:11 +02002733 */
Tejun Heo6183c002013-03-12 11:29:57 -07002734 WARN_ON_ONCE(wq->flush_color == wq->work_color);
2735 WARN_ON_ONCE(wq->flush_color != next->flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002736
2737 list_del_init(&next->list);
2738 wq->first_flusher = next;
2739
Tejun Heo112202d2013-02-13 19:29:12 -08002740 if (flush_workqueue_prep_pwqs(wq, wq->flush_color, -1))
Tejun Heo73f53c42010-06-29 10:07:11 +02002741 break;
2742
2743 /*
2744 * Meh... this color is already done, clear first
2745 * flusher and repeat cascading.
2746 */
2747 wq->first_flusher = NULL;
2748 }
2749
2750out_unlock:
2751 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752}
Dave Jonesae90dd52006-06-30 01:40:45 -04002753EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002755/**
2756 * drain_workqueue - drain a workqueue
2757 * @wq: workqueue to drain
2758 *
2759 * Wait until the workqueue becomes empty. While draining is in progress,
2760 * only chain queueing is allowed. IOW, only currently pending or running
2761 * work items on @wq can queue further work items on it. @wq is flushed
2762 * repeatedly until it becomes empty. The number of flushing is detemined
2763 * by the depth of chaining and should be relatively short. Whine if it
2764 * takes too long.
2765 */
2766void drain_workqueue(struct workqueue_struct *wq)
2767{
2768 unsigned int flush_cnt = 0;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002769 struct pool_workqueue *pwq;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002770
2771 /*
2772 * __queue_work() needs to test whether there are drainers, is much
2773 * hotter than drain_workqueue() and already looks at @wq->flags.
Tejun Heo618b01e2013-03-12 11:30:04 -07002774 * Use __WQ_DRAINING so that queue doesn't have to check nr_drainers.
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002775 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07002776 spin_lock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002777 if (!wq->nr_drainers++)
Tejun Heo618b01e2013-03-12 11:30:04 -07002778 wq->flags |= __WQ_DRAINING;
Tejun Heoe98d5b12013-03-12 11:29:57 -07002779 spin_unlock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002780reflush:
2781 flush_workqueue(wq);
2782
Tejun Heo76af4d92013-03-12 11:30:00 -07002783 local_irq_disable();
2784
Tejun Heo49e3cf42013-03-12 11:29:58 -07002785 for_each_pwq(pwq, wq) {
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002786 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002787
Tejun Heo76af4d92013-03-12 11:30:00 -07002788 spin_lock(&pwq->pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08002789 drained = !pwq->nr_active && list_empty(&pwq->delayed_works);
Tejun Heo76af4d92013-03-12 11:30:00 -07002790 spin_unlock(&pwq->pool->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002791
2792 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002793 continue;
2794
2795 if (++flush_cnt == 10 ||
2796 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
Valentin Ilie044c7822012-08-19 00:52:42 +03002797 pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
2798 wq->name, flush_cnt);
Tejun Heo76af4d92013-03-12 11:30:00 -07002799
2800 local_irq_enable();
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002801 goto reflush;
2802 }
2803
Tejun Heo76af4d92013-03-12 11:30:00 -07002804 spin_lock(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002805 if (!--wq->nr_drainers)
Tejun Heo618b01e2013-03-12 11:30:04 -07002806 wq->flags &= ~__WQ_DRAINING;
Tejun Heo76af4d92013-03-12 11:30:00 -07002807 spin_unlock(&workqueue_lock);
2808
2809 local_irq_enable();
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002810}
2811EXPORT_SYMBOL_GPL(drain_workqueue);
2812
Tejun Heo606a5022012-08-20 14:51:23 -07002813static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
Tejun Heobaf59022010-09-16 10:42:16 +02002814{
2815 struct worker *worker = NULL;
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002816 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002817 struct pool_workqueue *pwq;
Tejun Heobaf59022010-09-16 10:42:16 +02002818
2819 might_sleep();
Tejun Heobaf59022010-09-16 10:42:16 +02002820
Tejun Heofa1b54e2013-03-12 11:30:00 -07002821 local_irq_disable();
2822 pool = get_work_pool(work);
2823 if (!pool) {
2824 local_irq_enable();
2825 return false;
2826 }
2827
2828 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08002829 /* see the comment in try_to_grab_pending() with the same code */
Tejun Heo112202d2013-02-13 19:29:12 -08002830 pwq = get_work_pwq(work);
2831 if (pwq) {
2832 if (unlikely(pwq->pool != pool))
Tejun Heobaf59022010-09-16 10:42:16 +02002833 goto already_gone;
Tejun Heo606a5022012-08-20 14:51:23 -07002834 } else {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002835 worker = find_worker_executing_work(pool, work);
Tejun Heobaf59022010-09-16 10:42:16 +02002836 if (!worker)
2837 goto already_gone;
Tejun Heo112202d2013-02-13 19:29:12 -08002838 pwq = worker->current_pwq;
Tejun Heo606a5022012-08-20 14:51:23 -07002839 }
Tejun Heobaf59022010-09-16 10:42:16 +02002840
Tejun Heo112202d2013-02-13 19:29:12 -08002841 insert_wq_barrier(pwq, barr, work, worker);
Tejun Heod565ed62013-01-24 11:01:33 -08002842 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002843
Tejun Heoe1594892011-01-09 23:32:15 +01002844 /*
2845 * If @max_active is 1 or rescuer is in use, flushing another work
2846 * item on the same workqueue may lead to deadlock. Make sure the
2847 * flusher is not running on the same workqueue by verifying write
2848 * access.
2849 */
Tejun Heo493008a2013-03-12 11:30:03 -07002850 if (pwq->wq->saved_max_active == 1 || pwq->wq->rescuer)
Tejun Heo112202d2013-02-13 19:29:12 -08002851 lock_map_acquire(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002852 else
Tejun Heo112202d2013-02-13 19:29:12 -08002853 lock_map_acquire_read(&pwq->wq->lockdep_map);
2854 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002855
Tejun Heobaf59022010-09-16 10:42:16 +02002856 return true;
2857already_gone:
Tejun Heod565ed62013-01-24 11:01:33 -08002858 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002859 return false;
2860}
2861
Oleg Nesterovdb700892008-07-25 01:47:49 -07002862/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002863 * flush_work - wait for a work to finish executing the last queueing instance
2864 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002865 *
Tejun Heo606a5022012-08-20 14:51:23 -07002866 * Wait until @work has finished execution. @work is guaranteed to be idle
2867 * on return if it hasn't been requeued since flush started.
Tejun Heo401a8d02010-09-16 10:36:00 +02002868 *
2869 * RETURNS:
2870 * %true if flush_work() waited for the work to finish execution,
2871 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002872 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002873bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002874{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002875 struct wq_barrier barr;
2876
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002877 lock_map_acquire(&work->lockdep_map);
2878 lock_map_release(&work->lockdep_map);
2879
Tejun Heo606a5022012-08-20 14:51:23 -07002880 if (start_flush_work(work, &barr)) {
Tejun Heobaf59022010-09-16 10:42:16 +02002881 wait_for_completion(&barr.done);
2882 destroy_work_on_stack(&barr.work);
2883 return true;
Tejun Heo606a5022012-08-20 14:51:23 -07002884 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002885 return false;
Tejun Heo606a5022012-08-20 14:51:23 -07002886 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002887}
2888EXPORT_SYMBOL_GPL(flush_work);
2889
Tejun Heo36e227d2012-08-03 10:30:46 -07002890static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
Tejun Heo401a8d02010-09-16 10:36:00 +02002891{
Tejun Heobbb68df2012-08-03 10:30:46 -07002892 unsigned long flags;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002893 int ret;
2894
2895 do {
Tejun Heobbb68df2012-08-03 10:30:46 -07002896 ret = try_to_grab_pending(work, is_dwork, &flags);
2897 /*
2898 * If someone else is canceling, wait for the same event it
2899 * would be waiting for before retrying.
2900 */
2901 if (unlikely(ret == -ENOENT))
Tejun Heo606a5022012-08-20 14:51:23 -07002902 flush_work(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002903 } while (unlikely(ret < 0));
2904
Tejun Heobbb68df2012-08-03 10:30:46 -07002905 /* tell other tasks trying to grab @work to back off */
2906 mark_work_canceling(work);
2907 local_irq_restore(flags);
2908
Tejun Heo606a5022012-08-20 14:51:23 -07002909 flush_work(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002910 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002911 return ret;
2912}
2913
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002914/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002915 * cancel_work_sync - cancel a work and wait for it to finish
2916 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002917 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002918 * Cancel @work and wait for its execution to finish. This function
2919 * can be used even if the work re-queues itself or migrates to
2920 * another workqueue. On return from this function, @work is
2921 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002922 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002923 * cancel_work_sync(&delayed_work->work) must not be used for
2924 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002925 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002926 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002927 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002928 *
2929 * RETURNS:
2930 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002931 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002932bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002933{
Tejun Heo36e227d2012-08-03 10:30:46 -07002934 return __cancel_work_timer(work, false);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002935}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002936EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002937
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002938/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002939 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2940 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002941 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002942 * Delayed timer is cancelled and the pending work is queued for
2943 * immediate execution. Like flush_work(), this function only
2944 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002945 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002946 * RETURNS:
2947 * %true if flush_work() waited for the work to finish execution,
2948 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002949 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002950bool flush_delayed_work(struct delayed_work *dwork)
2951{
Tejun Heo8930cab2012-08-03 10:30:45 -07002952 local_irq_disable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002953 if (del_timer_sync(&dwork->timer))
Lai Jiangshan60c057b2013-02-06 18:04:53 -08002954 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Tejun Heo8930cab2012-08-03 10:30:45 -07002955 local_irq_enable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002956 return flush_work(&dwork->work);
2957}
2958EXPORT_SYMBOL(flush_delayed_work);
2959
2960/**
Tejun Heo57b30ae2012-08-21 13:18:24 -07002961 * cancel_delayed_work - cancel a delayed work
2962 * @dwork: delayed_work to cancel
Tejun Heo09383492010-09-16 10:48:29 +02002963 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002964 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2965 * and canceled; %false if wasn't pending. Note that the work callback
2966 * function may still be running on return, unless it returns %true and the
2967 * work doesn't re-arm itself. Explicitly flush or use
2968 * cancel_delayed_work_sync() to wait on it.
Tejun Heo09383492010-09-16 10:48:29 +02002969 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002970 * This function is safe to call from any context including IRQ handler.
Tejun Heo09383492010-09-16 10:48:29 +02002971 */
Tejun Heo57b30ae2012-08-21 13:18:24 -07002972bool cancel_delayed_work(struct delayed_work *dwork)
Tejun Heo09383492010-09-16 10:48:29 +02002973{
Tejun Heo57b30ae2012-08-21 13:18:24 -07002974 unsigned long flags;
2975 int ret;
2976
2977 do {
2978 ret = try_to_grab_pending(&dwork->work, true, &flags);
2979 } while (unlikely(ret == -EAGAIN));
2980
2981 if (unlikely(ret < 0))
2982 return false;
2983
Tejun Heo7c3eed52013-01-24 11:01:33 -08002984 set_work_pool_and_clear_pending(&dwork->work,
2985 get_work_pool_id(&dwork->work));
Tejun Heo57b30ae2012-08-21 13:18:24 -07002986 local_irq_restore(flags);
Dan Magenheimerc0158ca2012-10-18 16:31:37 -07002987 return ret;
Tejun Heo09383492010-09-16 10:48:29 +02002988}
Tejun Heo57b30ae2012-08-21 13:18:24 -07002989EXPORT_SYMBOL(cancel_delayed_work);
Tejun Heo09383492010-09-16 10:48:29 +02002990
2991/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002992 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2993 * @dwork: the delayed work cancel
2994 *
2995 * This is cancel_work_sync() for delayed works.
2996 *
2997 * RETURNS:
2998 * %true if @dwork was pending, %false otherwise.
2999 */
3000bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07003001{
Tejun Heo36e227d2012-08-03 10:30:46 -07003002 return __cancel_work_timer(&dwork->work, true);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07003003}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07003004EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003006/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07003007 * schedule_work_on - put work task on a specific cpu
3008 * @cpu: cpu to put the work task on
3009 * @work: job to be done
3010 *
3011 * This puts a job on a specific cpu
3012 */
Tejun Heod4283e92012-08-03 10:30:44 -07003013bool schedule_work_on(int cpu, struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07003014{
Tejun Heod320c032010-06-29 10:07:14 +02003015 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07003016}
3017EXPORT_SYMBOL(schedule_work_on);
3018
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003019/**
Dave Jonesae90dd52006-06-30 01:40:45 -04003020 * schedule_work - put work task in global workqueue
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 * @work: job to be done
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 *
Tejun Heod4283e92012-08-03 10:30:44 -07003023 * Returns %false if @work was already on the kernel-global workqueue and
3024 * %true otherwise.
David Howells52bad642006-11-22 14:54:01 +00003025 *
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003026 * This puts a job in the kernel-global workqueue if it was not already
3027 * queued and leaves it in the same position on the kernel-global
3028 * workqueue otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 */
Tejun Heod4283e92012-08-03 10:30:44 -07003030bool schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031{
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003032 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033}
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003034EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003036/**
3037 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
3038 * @cpu: cpu to use
3039 * @dwork: job to be done
3040 * @delay: number of jiffies to wait
3041 *
3042 * After waiting for a given time this puts a job in the kernel-global
3043 * workqueue on the specified CPU.
3044 */
Tejun Heod4283e92012-08-03 10:30:44 -07003045bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3046 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047{
Tejun Heod320c032010-06-29 10:07:14 +02003048 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049}
Dave Jonesae90dd52006-06-30 01:40:45 -04003050EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Andrew Mortonb6136772006-06-25 05:47:49 -07003052/**
Tejun Heo0a13c002012-08-03 10:30:44 -07003053 * schedule_delayed_work - put work task in global workqueue after delay
3054 * @dwork: job to be done
3055 * @delay: number of jiffies to wait or 0 for immediate execution
3056 *
3057 * After waiting for a given time this puts a job in the kernel-global
3058 * workqueue.
3059 */
Tejun Heod4283e92012-08-03 10:30:44 -07003060bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
Tejun Heo0a13c002012-08-03 10:30:44 -07003061{
3062 return queue_delayed_work(system_wq, dwork, delay);
3063}
3064EXPORT_SYMBOL(schedule_delayed_work);
3065
3066/**
Tejun Heo31ddd872010-10-19 11:14:49 +02003067 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07003068 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07003069 *
Tejun Heo31ddd872010-10-19 11:14:49 +02003070 * schedule_on_each_cpu() executes @func on each online CPU using the
3071 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07003072 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02003073 *
3074 * RETURNS:
3075 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07003076 */
David Howells65f27f32006-11-22 14:55:48 +00003077int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003078{
3079 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02003080 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08003081
Andrew Mortonb6136772006-06-25 05:47:49 -07003082 works = alloc_percpu(struct work_struct);
3083 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003084 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07003085
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003086 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08003087
Christoph Lameter15316ba2006-01-08 01:00:43 -08003088 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01003089 struct work_struct *work = per_cpu_ptr(works, cpu);
3090
3091 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003092 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003093 }
Tejun Heo93981802009-11-17 14:06:20 -08003094
3095 for_each_online_cpu(cpu)
3096 flush_work(per_cpu_ptr(works, cpu));
3097
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003098 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003099 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003100 return 0;
3101}
3102
Alan Sterneef6a7d2010-02-12 17:39:21 +09003103/**
3104 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3105 *
3106 * Forces execution of the kernel-global workqueue and blocks until its
3107 * completion.
3108 *
3109 * Think twice before calling this function! It's very easy to get into
3110 * trouble if you don't take great care. Either of the following situations
3111 * will lead to deadlock:
3112 *
3113 * One of the work items currently on the workqueue needs to acquire
3114 * a lock held by your code or its caller.
3115 *
3116 * Your code is running in the context of a work routine.
3117 *
3118 * They will be detected by lockdep when they occur, but the first might not
3119 * occur very often. It depends on what work items are on the workqueue and
3120 * what locks they need, which you have no control over.
3121 *
3122 * In most situations flushing the entire workqueue is overkill; you merely
3123 * need to know that a particular work item isn't queued and isn't running.
3124 * In such cases you should use cancel_delayed_work_sync() or
3125 * cancel_work_sync() instead.
3126 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127void flush_scheduled_work(void)
3128{
Tejun Heod320c032010-06-29 10:07:14 +02003129 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130}
Dave Jonesae90dd52006-06-30 01:40:45 -04003131EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
3133/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003134 * execute_in_process_context - reliably execute the routine with user context
3135 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003136 * @ew: guaranteed storage for the execute work structure (must
3137 * be available when the work executes)
3138 *
3139 * Executes the function immediately if process context is available,
3140 * otherwise schedules the function for delayed execution.
3141 *
3142 * Returns: 0 - function was executed
3143 * 1 - function was scheduled for execution
3144 */
David Howells65f27f32006-11-22 14:55:48 +00003145int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003146{
3147 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003148 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003149 return 0;
3150 }
3151
David Howells65f27f32006-11-22 14:55:48 +00003152 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003153 schedule_work(&ew->work);
3154
3155 return 1;
3156}
3157EXPORT_SYMBOL_GPL(execute_in_process_context);
3158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159int keventd_up(void)
3160{
Tejun Heod320c032010-06-29 10:07:14 +02003161 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162}
3163
Tejun Heo226223a2013-03-12 11:30:05 -07003164#ifdef CONFIG_SYSFS
3165/*
3166 * Workqueues with WQ_SYSFS flag set is visible to userland via
3167 * /sys/bus/workqueue/devices/WQ_NAME. All visible workqueues have the
3168 * following attributes.
3169 *
3170 * per_cpu RO bool : whether the workqueue is per-cpu or unbound
3171 * max_active RW int : maximum number of in-flight work items
3172 *
3173 * Unbound workqueues have the following extra attributes.
3174 *
3175 * id RO int : the associated pool ID
3176 * nice RW int : nice value of the workers
3177 * cpumask RW mask : bitmask of allowed CPUs for the workers
3178 */
3179struct wq_device {
3180 struct workqueue_struct *wq;
3181 struct device dev;
3182};
3183
3184static struct workqueue_struct *dev_to_wq(struct device *dev)
3185{
3186 struct wq_device *wq_dev = container_of(dev, struct wq_device, dev);
3187
3188 return wq_dev->wq;
3189}
3190
3191static ssize_t wq_per_cpu_show(struct device *dev,
3192 struct device_attribute *attr, char *buf)
3193{
3194 struct workqueue_struct *wq = dev_to_wq(dev);
3195
3196 return scnprintf(buf, PAGE_SIZE, "%d\n", (bool)!(wq->flags & WQ_UNBOUND));
3197}
3198
3199static ssize_t wq_max_active_show(struct device *dev,
3200 struct device_attribute *attr, char *buf)
3201{
3202 struct workqueue_struct *wq = dev_to_wq(dev);
3203
3204 return scnprintf(buf, PAGE_SIZE, "%d\n", wq->saved_max_active);
3205}
3206
3207static ssize_t wq_max_active_store(struct device *dev,
3208 struct device_attribute *attr,
3209 const char *buf, size_t count)
3210{
3211 struct workqueue_struct *wq = dev_to_wq(dev);
3212 int val;
3213
3214 if (sscanf(buf, "%d", &val) != 1 || val <= 0)
3215 return -EINVAL;
3216
3217 workqueue_set_max_active(wq, val);
3218 return count;
3219}
3220
3221static struct device_attribute wq_sysfs_attrs[] = {
3222 __ATTR(per_cpu, 0444, wq_per_cpu_show, NULL),
3223 __ATTR(max_active, 0644, wq_max_active_show, wq_max_active_store),
3224 __ATTR_NULL,
3225};
3226
3227static ssize_t wq_pool_id_show(struct device *dev,
3228 struct device_attribute *attr, char *buf)
3229{
3230 struct workqueue_struct *wq = dev_to_wq(dev);
3231 struct worker_pool *pool;
3232 int written;
3233
3234 rcu_read_lock_sched();
3235 pool = first_pwq(wq)->pool;
3236 written = scnprintf(buf, PAGE_SIZE, "%d\n", pool->id);
3237 rcu_read_unlock_sched();
3238
3239 return written;
3240}
3241
3242static ssize_t wq_nice_show(struct device *dev, struct device_attribute *attr,
3243 char *buf)
3244{
3245 struct workqueue_struct *wq = dev_to_wq(dev);
3246 int written;
3247
3248 rcu_read_lock_sched();
3249 written = scnprintf(buf, PAGE_SIZE, "%d\n",
3250 first_pwq(wq)->pool->attrs->nice);
3251 rcu_read_unlock_sched();
3252
3253 return written;
3254}
3255
3256/* prepare workqueue_attrs for sysfs store operations */
3257static struct workqueue_attrs *wq_sysfs_prep_attrs(struct workqueue_struct *wq)
3258{
3259 struct workqueue_attrs *attrs;
3260
3261 attrs = alloc_workqueue_attrs(GFP_KERNEL);
3262 if (!attrs)
3263 return NULL;
3264
3265 rcu_read_lock_sched();
3266 copy_workqueue_attrs(attrs, first_pwq(wq)->pool->attrs);
3267 rcu_read_unlock_sched();
3268 return attrs;
3269}
3270
3271static ssize_t wq_nice_store(struct device *dev, struct device_attribute *attr,
3272 const char *buf, size_t count)
3273{
3274 struct workqueue_struct *wq = dev_to_wq(dev);
3275 struct workqueue_attrs *attrs;
3276 int ret;
3277
3278 attrs = wq_sysfs_prep_attrs(wq);
3279 if (!attrs)
3280 return -ENOMEM;
3281
3282 if (sscanf(buf, "%d", &attrs->nice) == 1 &&
3283 attrs->nice >= -20 && attrs->nice <= 19)
3284 ret = apply_workqueue_attrs(wq, attrs);
3285 else
3286 ret = -EINVAL;
3287
3288 free_workqueue_attrs(attrs);
3289 return ret ?: count;
3290}
3291
3292static ssize_t wq_cpumask_show(struct device *dev,
3293 struct device_attribute *attr, char *buf)
3294{
3295 struct workqueue_struct *wq = dev_to_wq(dev);
3296 int written;
3297
3298 rcu_read_lock_sched();
3299 written = cpumask_scnprintf(buf, PAGE_SIZE,
3300 first_pwq(wq)->pool->attrs->cpumask);
3301 rcu_read_unlock_sched();
3302
3303 written += scnprintf(buf + written, PAGE_SIZE - written, "\n");
3304 return written;
3305}
3306
3307static ssize_t wq_cpumask_store(struct device *dev,
3308 struct device_attribute *attr,
3309 const char *buf, size_t count)
3310{
3311 struct workqueue_struct *wq = dev_to_wq(dev);
3312 struct workqueue_attrs *attrs;
3313 int ret;
3314
3315 attrs = wq_sysfs_prep_attrs(wq);
3316 if (!attrs)
3317 return -ENOMEM;
3318
3319 ret = cpumask_parse(buf, attrs->cpumask);
3320 if (!ret)
3321 ret = apply_workqueue_attrs(wq, attrs);
3322
3323 free_workqueue_attrs(attrs);
3324 return ret ?: count;
3325}
3326
3327static struct device_attribute wq_sysfs_unbound_attrs[] = {
3328 __ATTR(pool_id, 0444, wq_pool_id_show, NULL),
3329 __ATTR(nice, 0644, wq_nice_show, wq_nice_store),
3330 __ATTR(cpumask, 0644, wq_cpumask_show, wq_cpumask_store),
3331 __ATTR_NULL,
3332};
3333
3334static struct bus_type wq_subsys = {
3335 .name = "workqueue",
3336 .dev_attrs = wq_sysfs_attrs,
3337};
3338
3339static int __init wq_sysfs_init(void)
3340{
3341 return subsys_virtual_register(&wq_subsys, NULL);
3342}
3343core_initcall(wq_sysfs_init);
3344
3345static void wq_device_release(struct device *dev)
3346{
3347 struct wq_device *wq_dev = container_of(dev, struct wq_device, dev);
3348
3349 kfree(wq_dev);
3350}
3351
3352/**
3353 * workqueue_sysfs_register - make a workqueue visible in sysfs
3354 * @wq: the workqueue to register
3355 *
3356 * Expose @wq in sysfs under /sys/bus/workqueue/devices.
3357 * alloc_workqueue*() automatically calls this function if WQ_SYSFS is set
3358 * which is the preferred method.
3359 *
3360 * Workqueue user should use this function directly iff it wants to apply
3361 * workqueue_attrs before making the workqueue visible in sysfs; otherwise,
3362 * apply_workqueue_attrs() may race against userland updating the
3363 * attributes.
3364 *
3365 * Returns 0 on success, -errno on failure.
3366 */
3367int workqueue_sysfs_register(struct workqueue_struct *wq)
3368{
3369 struct wq_device *wq_dev;
3370 int ret;
3371
3372 /*
3373 * Adjusting max_active or creating new pwqs by applyting
3374 * attributes breaks ordering guarantee. Disallow exposing ordered
3375 * workqueues.
3376 */
3377 if (WARN_ON(wq->flags & __WQ_ORDERED))
3378 return -EINVAL;
3379
3380 wq->wq_dev = wq_dev = kzalloc(sizeof(*wq_dev), GFP_KERNEL);
3381 if (!wq_dev)
3382 return -ENOMEM;
3383
3384 wq_dev->wq = wq;
3385 wq_dev->dev.bus = &wq_subsys;
3386 wq_dev->dev.init_name = wq->name;
3387 wq_dev->dev.release = wq_device_release;
3388
3389 /*
3390 * unbound_attrs are created separately. Suppress uevent until
3391 * everything is ready.
3392 */
3393 dev_set_uevent_suppress(&wq_dev->dev, true);
3394
3395 ret = device_register(&wq_dev->dev);
3396 if (ret) {
3397 kfree(wq_dev);
3398 wq->wq_dev = NULL;
3399 return ret;
3400 }
3401
3402 if (wq->flags & WQ_UNBOUND) {
3403 struct device_attribute *attr;
3404
3405 for (attr = wq_sysfs_unbound_attrs; attr->attr.name; attr++) {
3406 ret = device_create_file(&wq_dev->dev, attr);
3407 if (ret) {
3408 device_unregister(&wq_dev->dev);
3409 wq->wq_dev = NULL;
3410 return ret;
3411 }
3412 }
3413 }
3414
3415 kobject_uevent(&wq_dev->dev.kobj, KOBJ_ADD);
3416 return 0;
3417}
3418
3419/**
3420 * workqueue_sysfs_unregister - undo workqueue_sysfs_register()
3421 * @wq: the workqueue to unregister
3422 *
3423 * If @wq is registered to sysfs by workqueue_sysfs_register(), unregister.
3424 */
3425static void workqueue_sysfs_unregister(struct workqueue_struct *wq)
3426{
3427 struct wq_device *wq_dev = wq->wq_dev;
3428
3429 if (!wq->wq_dev)
3430 return;
3431
3432 wq->wq_dev = NULL;
3433 device_unregister(&wq_dev->dev);
3434}
3435#else /* CONFIG_SYSFS */
3436static void workqueue_sysfs_unregister(struct workqueue_struct *wq) { }
3437#endif /* CONFIG_SYSFS */
3438
Tejun Heo7a4e3442013-03-12 11:30:00 -07003439/**
3440 * free_workqueue_attrs - free a workqueue_attrs
3441 * @attrs: workqueue_attrs to free
3442 *
3443 * Undo alloc_workqueue_attrs().
3444 */
3445void free_workqueue_attrs(struct workqueue_attrs *attrs)
3446{
3447 if (attrs) {
3448 free_cpumask_var(attrs->cpumask);
3449 kfree(attrs);
3450 }
3451}
3452
3453/**
3454 * alloc_workqueue_attrs - allocate a workqueue_attrs
3455 * @gfp_mask: allocation mask to use
3456 *
3457 * Allocate a new workqueue_attrs, initialize with default settings and
3458 * return it. Returns NULL on failure.
3459 */
3460struct workqueue_attrs *alloc_workqueue_attrs(gfp_t gfp_mask)
3461{
3462 struct workqueue_attrs *attrs;
3463
3464 attrs = kzalloc(sizeof(*attrs), gfp_mask);
3465 if (!attrs)
3466 goto fail;
3467 if (!alloc_cpumask_var(&attrs->cpumask, gfp_mask))
3468 goto fail;
3469
3470 cpumask_setall(attrs->cpumask);
3471 return attrs;
3472fail:
3473 free_workqueue_attrs(attrs);
3474 return NULL;
3475}
3476
Tejun Heo29c91e92013-03-12 11:30:03 -07003477static void copy_workqueue_attrs(struct workqueue_attrs *to,
3478 const struct workqueue_attrs *from)
3479{
3480 to->nice = from->nice;
3481 cpumask_copy(to->cpumask, from->cpumask);
3482}
3483
3484/*
3485 * Hacky implementation of jhash of bitmaps which only considers the
3486 * specified number of bits. We probably want a proper implementation in
3487 * include/linux/jhash.h.
3488 */
3489static u32 jhash_bitmap(const unsigned long *bitmap, int bits, u32 hash)
3490{
3491 int nr_longs = bits / BITS_PER_LONG;
3492 int nr_leftover = bits % BITS_PER_LONG;
3493 unsigned long leftover = 0;
3494
3495 if (nr_longs)
3496 hash = jhash(bitmap, nr_longs * sizeof(long), hash);
3497 if (nr_leftover) {
3498 bitmap_copy(&leftover, bitmap + nr_longs, nr_leftover);
3499 hash = jhash(&leftover, sizeof(long), hash);
3500 }
3501 return hash;
3502}
3503
3504/* hash value of the content of @attr */
3505static u32 wqattrs_hash(const struct workqueue_attrs *attrs)
3506{
3507 u32 hash = 0;
3508
3509 hash = jhash_1word(attrs->nice, hash);
3510 hash = jhash_bitmap(cpumask_bits(attrs->cpumask), nr_cpu_ids, hash);
3511 return hash;
3512}
3513
3514/* content equality test */
3515static bool wqattrs_equal(const struct workqueue_attrs *a,
3516 const struct workqueue_attrs *b)
3517{
3518 if (a->nice != b->nice)
3519 return false;
3520 if (!cpumask_equal(a->cpumask, b->cpumask))
3521 return false;
3522 return true;
3523}
3524
Tejun Heo7a4e3442013-03-12 11:30:00 -07003525/**
3526 * init_worker_pool - initialize a newly zalloc'd worker_pool
3527 * @pool: worker_pool to initialize
3528 *
3529 * Initiailize a newly zalloc'd @pool. It also allocates @pool->attrs.
Tejun Heo29c91e92013-03-12 11:30:03 -07003530 * Returns 0 on success, -errno on failure. Even on failure, all fields
3531 * inside @pool proper are initialized and put_unbound_pool() can be called
3532 * on @pool safely to release it.
Tejun Heo7a4e3442013-03-12 11:30:00 -07003533 */
3534static int init_worker_pool(struct worker_pool *pool)
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003535{
3536 spin_lock_init(&pool->lock);
Tejun Heo29c91e92013-03-12 11:30:03 -07003537 pool->id = -1;
3538 pool->cpu = -1;
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003539 pool->flags |= POOL_DISASSOCIATED;
3540 INIT_LIST_HEAD(&pool->worklist);
3541 INIT_LIST_HEAD(&pool->idle_list);
3542 hash_init(pool->busy_hash);
3543
3544 init_timer_deferrable(&pool->idle_timer);
3545 pool->idle_timer.function = idle_worker_timeout;
3546 pool->idle_timer.data = (unsigned long)pool;
3547
3548 setup_timer(&pool->mayday_timer, pool_mayday_timeout,
3549 (unsigned long)pool);
3550
3551 mutex_init(&pool->manager_arb);
3552 mutex_init(&pool->assoc_mutex);
3553 ida_init(&pool->worker_ida);
Tejun Heo7a4e3442013-03-12 11:30:00 -07003554
Tejun Heo29c91e92013-03-12 11:30:03 -07003555 INIT_HLIST_NODE(&pool->hash_node);
3556 pool->refcnt = 1;
3557
3558 /* shouldn't fail above this point */
Tejun Heo7a4e3442013-03-12 11:30:00 -07003559 pool->attrs = alloc_workqueue_attrs(GFP_KERNEL);
3560 if (!pool->attrs)
3561 return -ENOMEM;
3562 return 0;
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003563}
3564
Tejun Heo29c91e92013-03-12 11:30:03 -07003565static void rcu_free_pool(struct rcu_head *rcu)
3566{
3567 struct worker_pool *pool = container_of(rcu, struct worker_pool, rcu);
3568
3569 ida_destroy(&pool->worker_ida);
3570 free_workqueue_attrs(pool->attrs);
3571 kfree(pool);
3572}
3573
3574/**
3575 * put_unbound_pool - put a worker_pool
3576 * @pool: worker_pool to put
3577 *
3578 * Put @pool. If its refcnt reaches zero, it gets destroyed in sched-RCU
3579 * safe manner.
3580 */
3581static void put_unbound_pool(struct worker_pool *pool)
3582{
3583 struct worker *worker;
3584
3585 spin_lock_irq(&workqueue_lock);
3586 if (--pool->refcnt) {
3587 spin_unlock_irq(&workqueue_lock);
3588 return;
3589 }
3590
3591 /* sanity checks */
3592 if (WARN_ON(!(pool->flags & POOL_DISASSOCIATED)) ||
3593 WARN_ON(!list_empty(&pool->worklist))) {
3594 spin_unlock_irq(&workqueue_lock);
3595 return;
3596 }
3597
3598 /* release id and unhash */
3599 if (pool->id >= 0)
3600 idr_remove(&worker_pool_idr, pool->id);
3601 hash_del(&pool->hash_node);
3602
3603 spin_unlock_irq(&workqueue_lock);
3604
3605 /* lock out manager and destroy all workers */
3606 mutex_lock(&pool->manager_arb);
3607 spin_lock_irq(&pool->lock);
3608
3609 while ((worker = first_worker(pool)))
3610 destroy_worker(worker);
3611 WARN_ON(pool->nr_workers || pool->nr_idle);
3612
3613 spin_unlock_irq(&pool->lock);
3614 mutex_unlock(&pool->manager_arb);
3615
3616 /* shut down the timers */
3617 del_timer_sync(&pool->idle_timer);
3618 del_timer_sync(&pool->mayday_timer);
3619
3620 /* sched-RCU protected to allow dereferences from get_work_pool() */
3621 call_rcu_sched(&pool->rcu, rcu_free_pool);
3622}
3623
3624/**
3625 * get_unbound_pool - get a worker_pool with the specified attributes
3626 * @attrs: the attributes of the worker_pool to get
3627 *
3628 * Obtain a worker_pool which has the same attributes as @attrs, bump the
3629 * reference count and return it. If there already is a matching
3630 * worker_pool, it will be used; otherwise, this function attempts to
3631 * create a new one. On failure, returns NULL.
3632 */
3633static struct worker_pool *get_unbound_pool(const struct workqueue_attrs *attrs)
3634{
3635 static DEFINE_MUTEX(create_mutex);
3636 u32 hash = wqattrs_hash(attrs);
3637 struct worker_pool *pool;
3638 struct worker *worker;
3639
3640 mutex_lock(&create_mutex);
3641
3642 /* do we already have a matching pool? */
3643 spin_lock_irq(&workqueue_lock);
3644 hash_for_each_possible(unbound_pool_hash, pool, hash_node, hash) {
3645 if (wqattrs_equal(pool->attrs, attrs)) {
3646 pool->refcnt++;
3647 goto out_unlock;
3648 }
3649 }
3650 spin_unlock_irq(&workqueue_lock);
3651
3652 /* nope, create a new one */
3653 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
3654 if (!pool || init_worker_pool(pool) < 0)
3655 goto fail;
3656
Tejun Heo8864b4e2013-03-12 11:30:04 -07003657 lockdep_set_subclass(&pool->lock, 1); /* see put_pwq() */
Tejun Heo29c91e92013-03-12 11:30:03 -07003658 copy_workqueue_attrs(pool->attrs, attrs);
3659
3660 if (worker_pool_assign_id(pool) < 0)
3661 goto fail;
3662
3663 /* create and start the initial worker */
3664 worker = create_worker(pool);
3665 if (!worker)
3666 goto fail;
3667
3668 spin_lock_irq(&pool->lock);
3669 start_worker(worker);
3670 spin_unlock_irq(&pool->lock);
3671
3672 /* install */
3673 spin_lock_irq(&workqueue_lock);
3674 hash_add(unbound_pool_hash, &pool->hash_node, hash);
3675out_unlock:
3676 spin_unlock_irq(&workqueue_lock);
3677 mutex_unlock(&create_mutex);
3678 return pool;
3679fail:
3680 mutex_unlock(&create_mutex);
3681 if (pool)
3682 put_unbound_pool(pool);
3683 return NULL;
3684}
3685
Tejun Heo8864b4e2013-03-12 11:30:04 -07003686static void rcu_free_pwq(struct rcu_head *rcu)
3687{
3688 kmem_cache_free(pwq_cache,
3689 container_of(rcu, struct pool_workqueue, rcu));
3690}
3691
3692/*
3693 * Scheduled on system_wq by put_pwq() when an unbound pwq hits zero refcnt
3694 * and needs to be destroyed.
3695 */
3696static void pwq_unbound_release_workfn(struct work_struct *work)
3697{
3698 struct pool_workqueue *pwq = container_of(work, struct pool_workqueue,
3699 unbound_release_work);
3700 struct workqueue_struct *wq = pwq->wq;
3701 struct worker_pool *pool = pwq->pool;
3702
3703 if (WARN_ON_ONCE(!(wq->flags & WQ_UNBOUND)))
3704 return;
3705
Tejun Heo75ccf592013-03-12 11:30:04 -07003706 /*
3707 * Unlink @pwq. Synchronization against flush_mutex isn't strictly
3708 * necessary on release but do it anyway. It's easier to verify
3709 * and consistent with the linking path.
3710 */
3711 mutex_lock(&wq->flush_mutex);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003712 spin_lock_irq(&workqueue_lock);
3713 list_del_rcu(&pwq->pwqs_node);
3714 spin_unlock_irq(&workqueue_lock);
Tejun Heo75ccf592013-03-12 11:30:04 -07003715 mutex_unlock(&wq->flush_mutex);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003716
3717 put_unbound_pool(pool);
3718 call_rcu_sched(&pwq->rcu, rcu_free_pwq);
3719
3720 /*
3721 * If we're the last pwq going away, @wq is already dead and no one
3722 * is gonna access it anymore. Free it.
3723 */
3724 if (list_empty(&wq->pwqs))
3725 kfree(wq);
3726}
3727
Tejun Heo0fbd95a2013-03-13 16:51:35 -07003728/**
3729 * pwq_set_max_active - adjust max_active of a pwq
3730 * @pwq: target pool_workqueue
3731 * @max_active: new max_active value.
3732 *
3733 * Set @pwq->max_active to @max_active and activate delayed works if
3734 * increased.
3735 *
3736 * CONTEXT:
3737 * spin_lock_irq(pool->lock).
3738 */
3739static void pwq_set_max_active(struct pool_workqueue *pwq, int max_active)
3740{
3741 pwq->max_active = max_active;
3742
3743 while (!list_empty(&pwq->delayed_works) &&
3744 pwq->nr_active < pwq->max_active)
3745 pwq_activate_first_delayed(pwq);
3746}
3747
Tejun Heod2c1d402013-03-12 11:30:04 -07003748static void init_and_link_pwq(struct pool_workqueue *pwq,
3749 struct workqueue_struct *wq,
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003750 struct worker_pool *pool,
3751 struct pool_workqueue **p_last_pwq)
Tejun Heod2c1d402013-03-12 11:30:04 -07003752{
3753 BUG_ON((unsigned long)pwq & WORK_STRUCT_FLAG_MASK);
3754
3755 pwq->pool = pool;
3756 pwq->wq = wq;
3757 pwq->flush_color = -1;
Tejun Heo8864b4e2013-03-12 11:30:04 -07003758 pwq->refcnt = 1;
Tejun Heod2c1d402013-03-12 11:30:04 -07003759 pwq->max_active = wq->saved_max_active;
3760 INIT_LIST_HEAD(&pwq->delayed_works);
3761 INIT_LIST_HEAD(&pwq->mayday_node);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003762 INIT_WORK(&pwq->unbound_release_work, pwq_unbound_release_workfn);
Tejun Heod2c1d402013-03-12 11:30:04 -07003763
Tejun Heo75ccf592013-03-12 11:30:04 -07003764 /*
3765 * Link @pwq and set the matching work_color. This is synchronized
3766 * with flush_mutex to avoid confusing flush_workqueue().
3767 */
3768 mutex_lock(&wq->flush_mutex);
3769 spin_lock_irq(&workqueue_lock);
3770
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003771 if (p_last_pwq)
3772 *p_last_pwq = first_pwq(wq);
Tejun Heo75ccf592013-03-12 11:30:04 -07003773 pwq->work_color = wq->work_color;
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003774 list_add_rcu(&pwq->pwqs_node, &wq->pwqs);
Tejun Heo75ccf592013-03-12 11:30:04 -07003775
3776 spin_unlock_irq(&workqueue_lock);
3777 mutex_unlock(&wq->flush_mutex);
Tejun Heod2c1d402013-03-12 11:30:04 -07003778}
3779
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003780/**
3781 * apply_workqueue_attrs - apply new workqueue_attrs to an unbound workqueue
3782 * @wq: the target workqueue
3783 * @attrs: the workqueue_attrs to apply, allocated with alloc_workqueue_attrs()
3784 *
3785 * Apply @attrs to an unbound workqueue @wq. If @attrs doesn't match the
3786 * current attributes, a new pwq is created and made the first pwq which
3787 * will serve all new work items. Older pwqs are released as in-flight
3788 * work items finish. Note that a work item which repeatedly requeues
3789 * itself back-to-back will stay on its current pwq.
3790 *
3791 * Performs GFP_KERNEL allocations. Returns 0 on success and -errno on
3792 * failure.
3793 */
3794int apply_workqueue_attrs(struct workqueue_struct *wq,
3795 const struct workqueue_attrs *attrs)
3796{
3797 struct pool_workqueue *pwq, *last_pwq;
3798 struct worker_pool *pool;
3799
Tejun Heo8719dce2013-03-12 11:30:04 -07003800 /* only unbound workqueues can change attributes */
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003801 if (WARN_ON(!(wq->flags & WQ_UNBOUND)))
3802 return -EINVAL;
3803
Tejun Heo8719dce2013-03-12 11:30:04 -07003804 /* creating multiple pwqs breaks ordering guarantee */
3805 if (WARN_ON((wq->flags & __WQ_ORDERED) && !list_empty(&wq->pwqs)))
3806 return -EINVAL;
3807
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003808 pwq = kmem_cache_zalloc(pwq_cache, GFP_KERNEL);
3809 if (!pwq)
3810 return -ENOMEM;
3811
3812 pool = get_unbound_pool(attrs);
3813 if (!pool) {
3814 kmem_cache_free(pwq_cache, pwq);
3815 return -ENOMEM;
3816 }
3817
3818 init_and_link_pwq(pwq, wq, pool, &last_pwq);
3819 if (last_pwq) {
3820 spin_lock_irq(&last_pwq->pool->lock);
3821 put_pwq(last_pwq);
3822 spin_unlock_irq(&last_pwq->pool->lock);
3823 }
3824
3825 return 0;
3826}
3827
Tejun Heo30cdf242013-03-12 11:29:57 -07003828static int alloc_and_link_pwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003830 bool highpri = wq->flags & WQ_HIGHPRI;
Tejun Heo30cdf242013-03-12 11:29:57 -07003831 int cpu;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003832
Tejun Heo30cdf242013-03-12 11:29:57 -07003833 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo420c0dd2013-03-12 11:29:59 -07003834 wq->cpu_pwqs = alloc_percpu(struct pool_workqueue);
3835 if (!wq->cpu_pwqs)
Tejun Heo30cdf242013-03-12 11:29:57 -07003836 return -ENOMEM;
3837
3838 for_each_possible_cpu(cpu) {
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003839 struct pool_workqueue *pwq =
3840 per_cpu_ptr(wq->cpu_pwqs, cpu);
Tejun Heo7a62c2c2013-03-12 11:30:03 -07003841 struct worker_pool *cpu_pools =
Tejun Heof02ae732013-03-12 11:30:03 -07003842 per_cpu(cpu_worker_pools, cpu);
Tejun Heo30cdf242013-03-12 11:29:57 -07003843
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003844 init_and_link_pwq(pwq, wq, &cpu_pools[highpri], NULL);
Tejun Heo30cdf242013-03-12 11:29:57 -07003845 }
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003846 return 0;
Tejun Heo30cdf242013-03-12 11:29:57 -07003847 } else {
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003848 return apply_workqueue_attrs(wq, unbound_std_wq_attrs[highpri]);
Tejun Heo30cdf242013-03-12 11:29:57 -07003849 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003850}
3851
Tejun Heof3421792010-07-02 10:03:51 +02003852static int wq_clamp_max_active(int max_active, unsigned int flags,
3853 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003854{
Tejun Heof3421792010-07-02 10:03:51 +02003855 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3856
3857 if (max_active < 1 || max_active > lim)
Valentin Ilie044c7822012-08-19 00:52:42 +03003858 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3859 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003860
Tejun Heof3421792010-07-02 10:03:51 +02003861 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003862}
3863
Tejun Heob196be82012-01-10 15:11:35 -08003864struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003865 unsigned int flags,
3866 int max_active,
3867 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003868 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003869{
Tejun Heob196be82012-01-10 15:11:35 -08003870 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003871 struct workqueue_struct *wq;
Tejun Heo49e3cf42013-03-12 11:29:58 -07003872 struct pool_workqueue *pwq;
Tejun Heob196be82012-01-10 15:11:35 -08003873 size_t namelen;
3874
3875 /* determine namelen, allocate wq and format name */
3876 va_start(args, lock_name);
3877 va_copy(args1, args);
3878 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3879
3880 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3881 if (!wq)
Tejun Heod2c1d402013-03-12 11:30:04 -07003882 return NULL;
Tejun Heob196be82012-01-10 15:11:35 -08003883
3884 vsnprintf(wq->name, namelen, fmt, args1);
3885 va_end(args);
3886 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003887
Tejun Heod320c032010-06-29 10:07:14 +02003888 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003889 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003890
Tejun Heob196be82012-01-10 15:11:35 -08003891 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003892 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003893 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003894 mutex_init(&wq->flush_mutex);
Tejun Heo112202d2013-02-13 19:29:12 -08003895 atomic_set(&wq->nr_pwqs_to_flush, 0);
Tejun Heo30cdf242013-03-12 11:29:57 -07003896 INIT_LIST_HEAD(&wq->pwqs);
Tejun Heo73f53c42010-06-29 10:07:11 +02003897 INIT_LIST_HEAD(&wq->flusher_queue);
3898 INIT_LIST_HEAD(&wq->flusher_overflow);
Tejun Heo493a1722013-03-12 11:29:59 -07003899 INIT_LIST_HEAD(&wq->maydays);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003900
Johannes Bergeb13ba82008-01-16 09:51:58 +01003901 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003902 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003903
Tejun Heo30cdf242013-03-12 11:29:57 -07003904 if (alloc_and_link_pwqs(wq) < 0)
Tejun Heod2c1d402013-03-12 11:30:04 -07003905 goto err_free_wq;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003906
Tejun Heo493008a2013-03-12 11:30:03 -07003907 /*
3908 * Workqueues which may be used during memory reclaim should
3909 * have a rescuer to guarantee forward progress.
3910 */
3911 if (flags & WQ_MEM_RECLAIM) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003912 struct worker *rescuer;
3913
Tejun Heod2c1d402013-03-12 11:30:04 -07003914 rescuer = alloc_worker();
Tejun Heoe22bee72010-06-29 10:07:14 +02003915 if (!rescuer)
Tejun Heod2c1d402013-03-12 11:30:04 -07003916 goto err_destroy;
Tejun Heoe22bee72010-06-29 10:07:14 +02003917
Tejun Heo111c2252013-01-17 17:16:24 -08003918 rescuer->rescue_wq = wq;
3919 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
Tejun Heob196be82012-01-10 15:11:35 -08003920 wq->name);
Tejun Heod2c1d402013-03-12 11:30:04 -07003921 if (IS_ERR(rescuer->task)) {
3922 kfree(rescuer);
3923 goto err_destroy;
3924 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003925
Tejun Heod2c1d402013-03-12 11:30:04 -07003926 wq->rescuer = rescuer;
Tejun Heoe22bee72010-06-29 10:07:14 +02003927 rescuer->task->flags |= PF_THREAD_BOUND;
3928 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003929 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003930
Tejun Heo226223a2013-03-12 11:30:05 -07003931 if ((wq->flags & WQ_SYSFS) && workqueue_sysfs_register(wq))
3932 goto err_destroy;
3933
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003934 /*
3935 * workqueue_lock protects global freeze state and workqueues
3936 * list. Grab it, set max_active accordingly and add the new
3937 * workqueue to workqueues list.
3938 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07003939 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003940
Tejun Heo58a69cb2011-02-16 09:25:31 +01003941 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heo49e3cf42013-03-12 11:29:58 -07003942 for_each_pwq(pwq, wq)
3943 pwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003944
Tejun Heo15376632010-06-29 10:07:11 +02003945 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003946
Tejun Heoe98d5b12013-03-12 11:29:57 -07003947 spin_unlock_irq(&workqueue_lock);
Tejun Heo15376632010-06-29 10:07:11 +02003948
Oleg Nesterov3af244332007-05-09 02:34:09 -07003949 return wq;
Tejun Heod2c1d402013-03-12 11:30:04 -07003950
3951err_free_wq:
3952 kfree(wq);
3953 return NULL;
3954err_destroy:
3955 destroy_workqueue(wq);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003956 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003957}
Tejun Heod320c032010-06-29 10:07:14 +02003958EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003959
3960/**
3961 * destroy_workqueue - safely terminate a workqueue
3962 * @wq: target workqueue
3963 *
3964 * Safely destroy a workqueue. All work currently pending will be done first.
3965 */
3966void destroy_workqueue(struct workqueue_struct *wq)
3967{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003968 struct pool_workqueue *pwq;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003969
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003970 /* drain it before proceeding with destruction */
3971 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003972
Tejun Heo76af4d92013-03-12 11:30:00 -07003973 spin_lock_irq(&workqueue_lock);
3974
Tejun Heo6183c002013-03-12 11:29:57 -07003975 /* sanity checks */
Tejun Heo49e3cf42013-03-12 11:29:58 -07003976 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07003977 int i;
3978
Tejun Heo76af4d92013-03-12 11:30:00 -07003979 for (i = 0; i < WORK_NR_COLORS; i++) {
3980 if (WARN_ON(pwq->nr_in_flight[i])) {
3981 spin_unlock_irq(&workqueue_lock);
Tejun Heo6183c002013-03-12 11:29:57 -07003982 return;
Tejun Heo76af4d92013-03-12 11:30:00 -07003983 }
3984 }
3985
Tejun Heo8864b4e2013-03-12 11:30:04 -07003986 if (WARN_ON(pwq->refcnt > 1) ||
3987 WARN_ON(pwq->nr_active) ||
Tejun Heo76af4d92013-03-12 11:30:00 -07003988 WARN_ON(!list_empty(&pwq->delayed_works))) {
3989 spin_unlock_irq(&workqueue_lock);
Tejun Heo6183c002013-03-12 11:29:57 -07003990 return;
Tejun Heo76af4d92013-03-12 11:30:00 -07003991 }
Tejun Heo6183c002013-03-12 11:29:57 -07003992 }
3993
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003994 /*
3995 * wq list is used to freeze wq, remove from list after
3996 * flushing is complete in case freeze races us.
3997 */
Tejun Heod2c1d402013-03-12 11:30:04 -07003998 list_del_init(&wq->list);
Tejun Heo76af4d92013-03-12 11:30:00 -07003999
Tejun Heoe98d5b12013-03-12 11:29:57 -07004000 spin_unlock_irq(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07004001
Tejun Heo226223a2013-03-12 11:30:05 -07004002 workqueue_sysfs_unregister(wq);
4003
Tejun Heo493008a2013-03-12 11:30:03 -07004004 if (wq->rescuer) {
Tejun Heoe22bee72010-06-29 10:07:14 +02004005 kthread_stop(wq->rescuer->task);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02004006 kfree(wq->rescuer);
Tejun Heo493008a2013-03-12 11:30:03 -07004007 wq->rescuer = NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +02004008 }
4009
Tejun Heo8864b4e2013-03-12 11:30:04 -07004010 if (!(wq->flags & WQ_UNBOUND)) {
4011 /*
4012 * The base ref is never dropped on per-cpu pwqs. Directly
4013 * free the pwqs and wq.
4014 */
4015 free_percpu(wq->cpu_pwqs);
4016 kfree(wq);
4017 } else {
4018 /*
4019 * We're the sole accessor of @wq at this point. Directly
4020 * access the first pwq and put the base ref. As both pwqs
4021 * and pools are sched-RCU protected, the lock operations
4022 * are safe. @wq will be freed when the last pwq is
4023 * released.
4024 */
Tejun Heo29c91e92013-03-12 11:30:03 -07004025 pwq = list_first_entry(&wq->pwqs, struct pool_workqueue,
4026 pwqs_node);
Tejun Heo8864b4e2013-03-12 11:30:04 -07004027 spin_lock_irq(&pwq->pool->lock);
4028 put_pwq(pwq);
4029 spin_unlock_irq(&pwq->pool->lock);
Tejun Heo29c91e92013-03-12 11:30:03 -07004030 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07004031}
4032EXPORT_SYMBOL_GPL(destroy_workqueue);
4033
Tejun Heodcd989c2010-06-29 10:07:14 +02004034/**
4035 * workqueue_set_max_active - adjust max_active of a workqueue
4036 * @wq: target workqueue
4037 * @max_active: new max_active value.
4038 *
4039 * Set max_active of @wq to @max_active.
4040 *
4041 * CONTEXT:
4042 * Don't call from IRQ context.
4043 */
4044void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
4045{
Tejun Heo49e3cf42013-03-12 11:29:58 -07004046 struct pool_workqueue *pwq;
Tejun Heodcd989c2010-06-29 10:07:14 +02004047
Tejun Heo8719dce2013-03-12 11:30:04 -07004048 /* disallow meddling with max_active for ordered workqueues */
4049 if (WARN_ON(wq->flags & __WQ_ORDERED))
4050 return;
4051
Tejun Heof3421792010-07-02 10:03:51 +02004052 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02004053
Tejun Heoe98d5b12013-03-12 11:29:57 -07004054 spin_lock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02004055
4056 wq->saved_max_active = max_active;
4057
Tejun Heo49e3cf42013-03-12 11:29:58 -07004058 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08004059 struct worker_pool *pool = pwq->pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02004060
Tejun Heoe98d5b12013-03-12 11:29:57 -07004061 spin_lock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02004062
Tejun Heo58a69cb2011-02-16 09:25:31 +01004063 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heo35b6bb62013-01-24 11:01:33 -08004064 !(pool->flags & POOL_FREEZING))
Tejun Heo112202d2013-02-13 19:29:12 -08004065 pwq_set_max_active(pwq, max_active);
Tejun Heodcd989c2010-06-29 10:07:14 +02004066
Tejun Heoe98d5b12013-03-12 11:29:57 -07004067 spin_unlock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02004068 }
4069
Tejun Heoe98d5b12013-03-12 11:29:57 -07004070 spin_unlock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02004071}
4072EXPORT_SYMBOL_GPL(workqueue_set_max_active);
4073
4074/**
Tejun Heoe62676162013-03-12 17:41:37 -07004075 * current_is_workqueue_rescuer - is %current workqueue rescuer?
4076 *
4077 * Determine whether %current is a workqueue rescuer. Can be used from
4078 * work functions to determine whether it's being run off the rescuer task.
4079 */
4080bool current_is_workqueue_rescuer(void)
4081{
4082 struct worker *worker = current_wq_worker();
4083
4084 return worker && worker == worker->current_pwq->wq->rescuer;
4085}
4086
4087/**
Tejun Heodcd989c2010-06-29 10:07:14 +02004088 * workqueue_congested - test whether a workqueue is congested
4089 * @cpu: CPU in question
4090 * @wq: target workqueue
4091 *
4092 * Test whether @wq's cpu workqueue for @cpu is congested. There is
4093 * no synchronization around this function and the test result is
4094 * unreliable and only useful as advisory hints or for debugging.
4095 *
4096 * RETURNS:
4097 * %true if congested, %false otherwise.
4098 */
Tejun Heod84ff052013-03-12 11:29:59 -07004099bool workqueue_congested(int cpu, struct workqueue_struct *wq)
Tejun Heodcd989c2010-06-29 10:07:14 +02004100{
Tejun Heo7fb98ea2013-03-12 11:30:00 -07004101 struct pool_workqueue *pwq;
Tejun Heo76af4d92013-03-12 11:30:00 -07004102 bool ret;
4103
4104 preempt_disable();
Tejun Heo7fb98ea2013-03-12 11:30:00 -07004105
4106 if (!(wq->flags & WQ_UNBOUND))
4107 pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
4108 else
4109 pwq = first_pwq(wq);
Tejun Heodcd989c2010-06-29 10:07:14 +02004110
Tejun Heo76af4d92013-03-12 11:30:00 -07004111 ret = !list_empty(&pwq->delayed_works);
4112 preempt_enable();
4113
4114 return ret;
Tejun Heodcd989c2010-06-29 10:07:14 +02004115}
4116EXPORT_SYMBOL_GPL(workqueue_congested);
4117
4118/**
Tejun Heodcd989c2010-06-29 10:07:14 +02004119 * work_busy - test whether a work is currently pending or running
4120 * @work: the work to be tested
4121 *
4122 * Test whether @work is currently pending or running. There is no
4123 * synchronization around this function and the test result is
4124 * unreliable and only useful as advisory hints or for debugging.
Tejun Heodcd989c2010-06-29 10:07:14 +02004125 *
4126 * RETURNS:
4127 * OR'd bitmask of WORK_BUSY_* bits.
4128 */
4129unsigned int work_busy(struct work_struct *work)
4130{
Tejun Heofa1b54e2013-03-12 11:30:00 -07004131 struct worker_pool *pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02004132 unsigned long flags;
4133 unsigned int ret = 0;
4134
Tejun Heodcd989c2010-06-29 10:07:14 +02004135 if (work_pending(work))
4136 ret |= WORK_BUSY_PENDING;
Tejun Heodcd989c2010-06-29 10:07:14 +02004137
Tejun Heofa1b54e2013-03-12 11:30:00 -07004138 local_irq_save(flags);
4139 pool = get_work_pool(work);
Lai Jiangshan038366c2013-02-06 18:04:53 -08004140 if (pool) {
Tejun Heofa1b54e2013-03-12 11:30:00 -07004141 spin_lock(&pool->lock);
Lai Jiangshan038366c2013-02-06 18:04:53 -08004142 if (find_worker_executing_work(pool, work))
4143 ret |= WORK_BUSY_RUNNING;
Tejun Heofa1b54e2013-03-12 11:30:00 -07004144 spin_unlock(&pool->lock);
Lai Jiangshan038366c2013-02-06 18:04:53 -08004145 }
Tejun Heofa1b54e2013-03-12 11:30:00 -07004146 local_irq_restore(flags);
Tejun Heodcd989c2010-06-29 10:07:14 +02004147
4148 return ret;
4149}
4150EXPORT_SYMBOL_GPL(work_busy);
4151
Tejun Heodb7bccf2010-06-29 10:07:12 +02004152/*
4153 * CPU hotplug.
4154 *
Tejun Heoe22bee72010-06-29 10:07:14 +02004155 * There are two challenges in supporting CPU hotplug. Firstly, there
Tejun Heo112202d2013-02-13 19:29:12 -08004156 * are a lot of assumptions on strong associations among work, pwq and
Tejun Heo706026c2013-01-24 11:01:34 -08004157 * pool which make migrating pending and scheduled works very
Tejun Heoe22bee72010-06-29 10:07:14 +02004158 * difficult to implement without impacting hot paths. Secondly,
Tejun Heo94cf58b2013-01-24 11:01:33 -08004159 * worker pools serve mix of short, long and very long running works making
Tejun Heoe22bee72010-06-29 10:07:14 +02004160 * blocked draining impractical.
4161 *
Tejun Heo24647572013-01-24 11:01:33 -08004162 * This is solved by allowing the pools to be disassociated from the CPU
Tejun Heo628c78e2012-07-17 12:39:27 -07004163 * running as an unbound one and allowing it to be reattached later if the
4164 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02004165 */
4166
Tejun Heo706026c2013-01-24 11:01:34 -08004167static void wq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02004168{
Tejun Heo38db41d2013-01-24 11:01:34 -08004169 int cpu = smp_processor_id();
Tejun Heo4ce62e92012-07-13 22:16:44 -07004170 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02004171 struct worker *worker;
Tejun Heodb7bccf2010-06-29 10:07:12 +02004172 int i;
4173
Tejun Heof02ae732013-03-12 11:30:03 -07004174 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo6183c002013-03-12 11:29:57 -07004175 WARN_ON_ONCE(cpu != smp_processor_id());
Tejun Heo94cf58b2013-01-24 11:01:33 -08004176
4177 mutex_lock(&pool->assoc_mutex);
4178 spin_lock_irq(&pool->lock);
4179
4180 /*
4181 * We've claimed all manager positions. Make all workers
4182 * unbound and set DISASSOCIATED. Before this, all workers
4183 * except for the ones which are still executing works from
4184 * before the last CPU down must be on the cpu. After
4185 * this, they may become diasporas.
4186 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07004187 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07004188 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02004189
Sasha Levinb67bfe02013-02-27 17:06:00 -08004190 for_each_busy_worker(worker, i, pool)
Tejun Heoc9e7cf22013-01-24 11:01:33 -08004191 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02004192
Tejun Heo24647572013-01-24 11:01:33 -08004193 pool->flags |= POOL_DISASSOCIATED;
Tejun Heof2d5a0e2012-07-17 12:39:26 -07004194
Tejun Heo94cf58b2013-01-24 11:01:33 -08004195 spin_unlock_irq(&pool->lock);
4196 mutex_unlock(&pool->assoc_mutex);
4197 }
Tejun Heoe22bee72010-06-29 10:07:14 +02004198
4199 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07004200 * Call schedule() so that we cross rq->lock and thus can guarantee
4201 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
4202 * as scheduler callbacks may be invoked from other cpus.
4203 */
4204 schedule();
4205
4206 /*
4207 * Sched callbacks are disabled now. Zap nr_running. After this,
4208 * nr_running stays zero and need_more_worker() and keep_working()
Tejun Heo38db41d2013-01-24 11:01:34 -08004209 * are always true as long as the worklist is not empty. Pools on
4210 * @cpu now behave as unbound (in terms of concurrency management)
4211 * pools which are served by workers tied to the CPU.
Tejun Heo628c78e2012-07-17 12:39:27 -07004212 *
4213 * On return from this function, the current worker would trigger
4214 * unbound chain execution of pending work items if other workers
4215 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02004216 */
Tejun Heof02ae732013-03-12 11:30:03 -07004217 for_each_cpu_worker_pool(pool, cpu)
Tejun Heoe19e3972013-01-24 11:39:44 -08004218 atomic_set(&pool->nr_running, 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02004219}
4220
Tejun Heo8db25e72012-07-17 12:39:28 -07004221/*
4222 * Workqueues should be brought up before normal priority CPU notifiers.
4223 * This will be registered high priority CPU notifier.
4224 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07004225static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
Tejun Heo8db25e72012-07-17 12:39:28 -07004226 unsigned long action,
4227 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07004228{
Tejun Heod84ff052013-03-12 11:29:59 -07004229 int cpu = (unsigned long)hcpu;
Tejun Heo4ce62e92012-07-13 22:16:44 -07004230 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231
Tejun Heo8db25e72012-07-17 12:39:28 -07004232 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 case CPU_UP_PREPARE:
Tejun Heof02ae732013-03-12 11:30:03 -07004234 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo3ce63372012-07-17 12:39:27 -07004235 struct worker *worker;
4236
4237 if (pool->nr_workers)
4238 continue;
4239
4240 worker = create_worker(pool);
4241 if (!worker)
4242 return NOTIFY_BAD;
4243
Tejun Heod565ed62013-01-24 11:01:33 -08004244 spin_lock_irq(&pool->lock);
Tejun Heo3ce63372012-07-17 12:39:27 -07004245 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08004246 spin_unlock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02004248 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07004249
Tejun Heo65758202012-07-17 12:39:26 -07004250 case CPU_DOWN_FAILED:
4251 case CPU_ONLINE:
Tejun Heof02ae732013-03-12 11:30:03 -07004252 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08004253 mutex_lock(&pool->assoc_mutex);
4254 spin_lock_irq(&pool->lock);
4255
Tejun Heo24647572013-01-24 11:01:33 -08004256 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heo94cf58b2013-01-24 11:01:33 -08004257 rebind_workers(pool);
4258
4259 spin_unlock_irq(&pool->lock);
4260 mutex_unlock(&pool->assoc_mutex);
4261 }
Tejun Heo8db25e72012-07-17 12:39:28 -07004262 break;
Tejun Heo65758202012-07-17 12:39:26 -07004263 }
4264 return NOTIFY_OK;
4265}
4266
4267/*
4268 * Workqueues should be brought down after normal priority CPU notifiers.
4269 * This will be registered as low priority CPU notifier.
4270 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07004271static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
Tejun Heo65758202012-07-17 12:39:26 -07004272 unsigned long action,
4273 void *hcpu)
4274{
Tejun Heod84ff052013-03-12 11:29:59 -07004275 int cpu = (unsigned long)hcpu;
Tejun Heo8db25e72012-07-17 12:39:28 -07004276 struct work_struct unbind_work;
4277
Tejun Heo65758202012-07-17 12:39:26 -07004278 switch (action & ~CPU_TASKS_FROZEN) {
4279 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07004280 /* unbinding should happen on the local CPU */
Tejun Heo706026c2013-01-24 11:01:34 -08004281 INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
Joonsoo Kim7635d2f2012-08-15 23:25:41 +09004282 queue_work_on(cpu, system_highpri_wq, &unbind_work);
Tejun Heo8db25e72012-07-17 12:39:28 -07004283 flush_work(&unbind_work);
4284 break;
Tejun Heo65758202012-07-17 12:39:26 -07004285 }
4286 return NOTIFY_OK;
4287}
4288
Rusty Russell2d3854a2008-11-05 13:39:10 +11004289#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08004290
Rusty Russell2d3854a2008-11-05 13:39:10 +11004291struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07004292 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11004293 long (*fn)(void *);
4294 void *arg;
4295 long ret;
4296};
4297
Tejun Heoed48ece2012-09-18 12:48:43 -07004298static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11004299{
Tejun Heoed48ece2012-09-18 12:48:43 -07004300 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
4301
Rusty Russell2d3854a2008-11-05 13:39:10 +11004302 wfc->ret = wfc->fn(wfc->arg);
4303}
4304
4305/**
4306 * work_on_cpu - run a function in user context on a particular cpu
4307 * @cpu: the cpu to run on
4308 * @fn: the function to run
4309 * @arg: the function arg
4310 *
Rusty Russell31ad9082009-01-16 15:31:15 -08004311 * This will return the value @fn returns.
4312 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b44003e2009-04-09 09:50:37 -06004313 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11004314 */
Tejun Heod84ff052013-03-12 11:29:59 -07004315long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
Rusty Russell2d3854a2008-11-05 13:39:10 +11004316{
Tejun Heoed48ece2012-09-18 12:48:43 -07004317 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11004318
Tejun Heoed48ece2012-09-18 12:48:43 -07004319 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
4320 schedule_work_on(cpu, &wfc.work);
4321 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11004322 return wfc.ret;
4323}
4324EXPORT_SYMBOL_GPL(work_on_cpu);
4325#endif /* CONFIG_SMP */
4326
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004327#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10304328
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004329/**
4330 * freeze_workqueues_begin - begin freezing workqueues
4331 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01004332 * Start freezing workqueues. After this function returns, all freezable
4333 * workqueues will queue new works to their frozen_works list instead of
Tejun Heo706026c2013-01-24 11:01:34 -08004334 * pool->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004335 *
4336 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08004337 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004338 */
4339void freeze_workqueues_begin(void)
4340{
Tejun Heo17116962013-03-12 11:29:58 -07004341 struct worker_pool *pool;
Tejun Heo24b8a842013-03-12 11:29:58 -07004342 struct workqueue_struct *wq;
4343 struct pool_workqueue *pwq;
Tejun Heo17116962013-03-12 11:29:58 -07004344 int id;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004345
Tejun Heoe98d5b12013-03-12 11:29:57 -07004346 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004347
Tejun Heo6183c002013-03-12 11:29:57 -07004348 WARN_ON_ONCE(workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004349 workqueue_freezing = true;
4350
Tejun Heo24b8a842013-03-12 11:29:58 -07004351 /* set FREEZING */
Tejun Heo17116962013-03-12 11:29:58 -07004352 for_each_pool(pool, id) {
Tejun Heo17116962013-03-12 11:29:58 -07004353 spin_lock(&pool->lock);
Tejun Heo17116962013-03-12 11:29:58 -07004354 WARN_ON_ONCE(pool->flags & POOL_FREEZING);
4355 pool->flags |= POOL_FREEZING;
Tejun Heo17116962013-03-12 11:29:58 -07004356 spin_unlock(&pool->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004357 }
4358
Tejun Heo24b8a842013-03-12 11:29:58 -07004359 /* suppress further executions by setting max_active to zero */
4360 list_for_each_entry(wq, &workqueues, list) {
4361 if (!(wq->flags & WQ_FREEZABLE))
4362 continue;
4363
4364 for_each_pwq(pwq, wq) {
4365 spin_lock(&pwq->pool->lock);
4366 pwq->max_active = 0;
4367 spin_unlock(&pwq->pool->lock);
4368 }
4369 }
4370
Tejun Heoe98d5b12013-03-12 11:29:57 -07004371 spin_unlock_irq(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004373
4374/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01004375 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004376 *
4377 * Check whether freezing is complete. This function must be called
4378 * between freeze_workqueues_begin() and thaw_workqueues().
4379 *
4380 * CONTEXT:
4381 * Grabs and releases workqueue_lock.
4382 *
4383 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01004384 * %true if some freezable workqueues are still busy. %false if freezing
4385 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004386 */
4387bool freeze_workqueues_busy(void)
4388{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004389 bool busy = false;
Tejun Heo24b8a842013-03-12 11:29:58 -07004390 struct workqueue_struct *wq;
4391 struct pool_workqueue *pwq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004392
Tejun Heoe98d5b12013-03-12 11:29:57 -07004393 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004394
Tejun Heo6183c002013-03-12 11:29:57 -07004395 WARN_ON_ONCE(!workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004396
Tejun Heo24b8a842013-03-12 11:29:58 -07004397 list_for_each_entry(wq, &workqueues, list) {
4398 if (!(wq->flags & WQ_FREEZABLE))
4399 continue;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004400 /*
4401 * nr_active is monotonically decreasing. It's safe
4402 * to peek without lock.
4403 */
Tejun Heo24b8a842013-03-12 11:29:58 -07004404 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07004405 WARN_ON_ONCE(pwq->nr_active < 0);
Tejun Heo112202d2013-02-13 19:29:12 -08004406 if (pwq->nr_active) {
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004407 busy = true;
4408 goto out_unlock;
4409 }
4410 }
4411 }
4412out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07004413 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004414 return busy;
4415}
4416
4417/**
4418 * thaw_workqueues - thaw workqueues
4419 *
4420 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo706026c2013-01-24 11:01:34 -08004421 * frozen works are transferred to their respective pool worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004422 *
4423 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08004424 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004425 */
4426void thaw_workqueues(void)
4427{
Tejun Heo24b8a842013-03-12 11:29:58 -07004428 struct workqueue_struct *wq;
4429 struct pool_workqueue *pwq;
4430 struct worker_pool *pool;
4431 int id;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004432
Tejun Heoe98d5b12013-03-12 11:29:57 -07004433 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004434
4435 if (!workqueue_freezing)
4436 goto out_unlock;
4437
Tejun Heo24b8a842013-03-12 11:29:58 -07004438 /* clear FREEZING */
4439 for_each_pool(pool, id) {
4440 spin_lock(&pool->lock);
4441 WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
4442 pool->flags &= ~POOL_FREEZING;
4443 spin_unlock(&pool->lock);
4444 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02004445
Tejun Heo24b8a842013-03-12 11:29:58 -07004446 /* restore max_active and repopulate worklist */
4447 list_for_each_entry(wq, &workqueues, list) {
4448 if (!(wq->flags & WQ_FREEZABLE))
4449 continue;
Tejun Heod565ed62013-01-24 11:01:33 -08004450
Tejun Heo24b8a842013-03-12 11:29:58 -07004451 for_each_pwq(pwq, wq) {
4452 spin_lock(&pwq->pool->lock);
4453 pwq_set_max_active(pwq, wq->saved_max_active);
4454 spin_unlock(&pwq->pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08004455 }
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004456 }
4457
Tejun Heo24b8a842013-03-12 11:29:58 -07004458 /* kick workers */
4459 for_each_pool(pool, id) {
4460 spin_lock(&pool->lock);
4461 wake_up_worker(pool);
4462 spin_unlock(&pool->lock);
4463 }
4464
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004465 workqueue_freezing = false;
4466out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07004467 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004468}
4469#endif /* CONFIG_FREEZER */
4470
Suresh Siddha6ee05782010-07-30 14:57:37 -07004471static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472{
Tejun Heo7a4e3442013-03-12 11:30:00 -07004473 int std_nice[NR_STD_WORKER_POOLS] = { 0, HIGHPRI_NICE_LEVEL };
4474 int i, cpu;
Tejun Heoc34056a2010-06-29 10:07:11 +02004475
Tejun Heo7c3eed52013-01-24 11:01:33 -08004476 /* make sure we have enough bits for OFFQ pool ID */
4477 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) <
Lai Jiangshan6be19582013-02-06 18:04:53 -08004478 WORK_CPU_END * NR_STD_WORKER_POOLS);
Tejun Heob5490072012-08-03 10:30:46 -07004479
Tejun Heoe904e6c2013-03-12 11:29:57 -07004480 WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long));
4481
4482 pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);
4483
Tejun Heo65758202012-07-17 12:39:26 -07004484 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
Lai Jiangshana5b4e572012-09-18 09:59:23 -07004485 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02004486
Tejun Heo706026c2013-01-24 11:01:34 -08004487 /* initialize CPU pools */
Tejun Heo29c91e92013-03-12 11:30:03 -07004488 for_each_possible_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07004489 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02004490
Tejun Heo7a4e3442013-03-12 11:30:00 -07004491 i = 0;
Tejun Heof02ae732013-03-12 11:30:03 -07004492 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo7a4e3442013-03-12 11:30:00 -07004493 BUG_ON(init_worker_pool(pool));
Tejun Heoec22ca52013-01-24 11:01:33 -08004494 pool->cpu = cpu;
Tejun Heo29c91e92013-03-12 11:30:03 -07004495 cpumask_copy(pool->attrs->cpumask, cpumask_of(cpu));
Tejun Heo7a4e3442013-03-12 11:30:00 -07004496 pool->attrs->nice = std_nice[i++];
4497
Tejun Heo9daf9e62013-01-24 11:01:33 -08004498 /* alloc pool ID */
4499 BUG_ON(worker_pool_assign_id(pool));
Tejun Heo4ce62e92012-07-13 22:16:44 -07004500 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02004501 }
4502
Tejun Heoe22bee72010-06-29 10:07:14 +02004503 /* create the initial worker */
Tejun Heo29c91e92013-03-12 11:30:03 -07004504 for_each_online_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07004505 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02004506
Tejun Heof02ae732013-03-12 11:30:03 -07004507 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07004508 struct worker *worker;
4509
Tejun Heo29c91e92013-03-12 11:30:03 -07004510 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heo24647572013-01-24 11:01:33 -08004511
Tejun Heobc2ae0f2012-07-17 12:39:27 -07004512 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07004513 BUG_ON(!worker);
Tejun Heod565ed62013-01-24 11:01:33 -08004514 spin_lock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07004515 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08004516 spin_unlock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07004517 }
Tejun Heoe22bee72010-06-29 10:07:14 +02004518 }
4519
Tejun Heo29c91e92013-03-12 11:30:03 -07004520 /* create default unbound wq attrs */
4521 for (i = 0; i < NR_STD_WORKER_POOLS; i++) {
4522 struct workqueue_attrs *attrs;
4523
4524 BUG_ON(!(attrs = alloc_workqueue_attrs(GFP_KERNEL)));
4525
4526 attrs->nice = std_nice[i];
4527 cpumask_setall(attrs->cpumask);
4528
4529 unbound_std_wq_attrs[i] = attrs;
4530 }
4531
Tejun Heod320c032010-06-29 10:07:14 +02004532 system_wq = alloc_workqueue("events", 0, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09004533 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
Tejun Heod320c032010-06-29 10:07:14 +02004534 system_long_wq = alloc_workqueue("events_long", 0, 0);
Tejun Heof3421792010-07-02 10:03:51 +02004535 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
4536 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01004537 system_freezable_wq = alloc_workqueue("events_freezable",
4538 WQ_FREEZABLE, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09004539 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
Tejun Heoae930e02012-08-20 14:51:23 -07004540 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07004541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542}
Suresh Siddha6ee05782010-07-30 14:57:37 -07004543early_initcall(init_workqueues);