blob: 91ce7a984c226cca1796d0074eec12d6b4a4bb56 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heoc54fce62010-09-10 16:51:36 +02002 * kernel/workqueue.c - generic async execution with shared worker pool
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Tejun Heoc54fce62010-09-10 16:51:36 +02004 * Copyright (C) 2002 Ingo Molnar
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Tejun Heoc54fce62010-09-10 16:51:36 +02006 * Derived from the taskqueue/keventd code by:
7 * David Woodhouse <dwmw2@infradead.org>
8 * Andrew Morton
9 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
10 * Theodore Ts'o <tytso@mit.edu>
Christoph Lameter89ada672005-10-30 15:01:59 -080011 *
Christoph Lametercde53532008-07-04 09:59:22 -070012 * Made to use alloc_percpu by Christoph Lameter.
Tejun Heoc54fce62010-09-10 16:51:36 +020013 *
14 * Copyright (C) 2010 SUSE Linux Products GmbH
15 * Copyright (C) 2010 Tejun Heo <tj@kernel.org>
16 *
17 * This is the generic async execution mechanism. Work items as are
18 * executed in process context. The worker pool is shared and
19 * automatically managed. There is one worker pool for each CPU and
20 * one extra for works which are better served by workers which are
21 * not bound to any specific CPU.
22 *
23 * Please read Documentation/workqueue.txt for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Paul Gortmaker9984de12011-05-23 14:51:41 -040026#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/init.h>
30#include <linux/signal.h>
31#include <linux/completion.h>
32#include <linux/workqueue.h>
33#include <linux/slab.h>
34#include <linux/cpu.h>
35#include <linux/notifier.h>
36#include <linux/kthread.h>
James Bottomley1fa44ec2006-02-23 12:43:43 -060037#include <linux/hardirq.h>
Christoph Lameter46934022006-10-11 01:21:26 -070038#include <linux/mempolicy.h>
Rafael J. Wysocki341a5952006-12-06 20:34:49 -080039#include <linux/freezer.h>
Peter Zijlstrad5abe662006-12-06 20:37:26 -080040#include <linux/kallsyms.h>
41#include <linux/debug_locks.h>
Johannes Berg4e6045f2007-10-18 23:39:55 -070042#include <linux/lockdep.h>
Tejun Heoc34056a2010-06-29 10:07:11 +020043#include <linux/idr.h>
Sasha Levin42f85702012-12-17 10:01:23 -050044#include <linux/hashtable.h>
Tejun Heoe22bee72010-06-29 10:07:14 +020045
Tejun Heoea138442013-01-18 14:05:55 -080046#include "workqueue_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Tejun Heoc8e55f32010-06-29 10:07:12 +020048enum {
Tejun Heobc2ae0f2012-07-17 12:39:27 -070049 /*
Tejun Heo24647572013-01-24 11:01:33 -080050 * worker_pool flags
Tejun Heobc2ae0f2012-07-17 12:39:27 -070051 *
Tejun Heo24647572013-01-24 11:01:33 -080052 * A bound pool is either associated or disassociated with its CPU.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070053 * While associated (!DISASSOCIATED), all workers are bound to the
54 * CPU and none has %WORKER_UNBOUND set and concurrency management
55 * is in effect.
56 *
57 * While DISASSOCIATED, the cpu may be offline and all workers have
58 * %WORKER_UNBOUND set and concurrency management disabled, and may
Tejun Heo24647572013-01-24 11:01:33 -080059 * be executing on any CPU. The pool behaves as an unbound one.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070060 *
61 * Note that DISASSOCIATED can be flipped only while holding
Tejun Heo24647572013-01-24 11:01:33 -080062 * assoc_mutex to avoid changing binding state while
63 * create_worker() is in progress.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070064 */
Tejun Heo11ebea52012-07-12 14:46:37 -070065 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
Lai Jiangshan552a37e2012-09-10 10:03:33 -070066 POOL_MANAGING_WORKERS = 1 << 1, /* managing workers */
Tejun Heo24647572013-01-24 11:01:33 -080067 POOL_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */
Tejun Heo35b6bb62013-01-24 11:01:33 -080068 POOL_FREEZING = 1 << 3, /* freeze in progress */
Tejun Heodb7bccf2010-06-29 10:07:12 +020069
Tejun Heoc8e55f32010-06-29 10:07:12 +020070 /* worker flags */
71 WORKER_STARTED = 1 << 0, /* started */
72 WORKER_DIE = 1 << 1, /* die die die */
73 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020074 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heofb0e7be2010-06-29 10:07:15 +020075 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020076 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020077
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -070078 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_UNBOUND |
Tejun Heo403c8212012-07-17 12:39:27 -070079 WORKER_CPU_INTENSIVE,
Tejun Heodb7bccf2010-06-29 10:07:12 +020080
Tejun Heoe34cdddb2013-01-24 11:01:33 -080081 NR_STD_WORKER_POOLS = 2, /* # standard pools per cpu */
Tejun Heo4ce62e92012-07-13 22:16:44 -070082
Tejun Heoc8e55f32010-06-29 10:07:12 +020083 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020084
Tejun Heoe22bee72010-06-29 10:07:14 +020085 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
86 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
87
Tejun Heo3233cdb2011-02-16 18:10:19 +010088 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
89 /* call for help after 10ms
90 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020091 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
92 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heoe22bee72010-06-29 10:07:14 +020093
94 /*
95 * Rescue workers are used only on emergencies and shared by
96 * all cpus. Give -20.
97 */
98 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -070099 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +0200100};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/*
Tejun Heo4690c4a2010-06-29 10:07:10 +0200103 * Structure fields follow one of the following exclusion rules.
104 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200105 * I: Modifiable by initialization/destruction paths and read-only for
106 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200107 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200108 * P: Preemption protected. Disabling preemption is enough and should
109 * only be modified and accessed from the local cpu.
110 *
Tejun Heod565ed62013-01-24 11:01:33 -0800111 * L: pool->lock protected. Access with pool->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200112 *
Tejun Heod565ed62013-01-24 11:01:33 -0800113 * X: During normal operation, modification requires pool->lock and should
114 * be done only from local cpu. Either disabling preemption on local
115 * cpu or grabbing pool->lock is enough for read access. If
116 * POOL_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200117 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200118 * F: wq->flush_mutex protected.
119 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200120 * W: workqueue_lock protected.
121 */
122
Tejun Heo2eaebdb2013-01-18 14:05:55 -0800123/* struct worker is defined in workqueue_internal.h */
Tejun Heoc34056a2010-06-29 10:07:11 +0200124
Tejun Heobd7bdd42012-07-12 14:46:37 -0700125struct worker_pool {
Tejun Heod565ed62013-01-24 11:01:33 -0800126 spinlock_t lock; /* the pool lock */
Tejun Heoec22ca52013-01-24 11:01:33 -0800127 unsigned int cpu; /* I: the associated cpu */
Tejun Heo9daf9e62013-01-24 11:01:33 -0800128 int id; /* I: pool ID */
Tejun Heo11ebea52012-07-12 14:46:37 -0700129 unsigned int flags; /* X: flags */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700130
131 struct list_head worklist; /* L: list of pending works */
132 int nr_workers; /* L: total number of workers */
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700133
134 /* nr_idle includes the ones off idle_list for rebinding */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700135 int nr_idle; /* L: currently idle ones */
136
137 struct list_head idle_list; /* X: list of idle workers */
138 struct timer_list idle_timer; /* L: worker idle timeout */
139 struct timer_list mayday_timer; /* L: SOS timer for workers */
140
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800141 /* workers are chained either in busy_hash or idle_list */
142 DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER);
143 /* L: hash of busy workers */
144
Tejun Heo24647572013-01-24 11:01:33 -0800145 struct mutex assoc_mutex; /* protect POOL_DISASSOCIATED */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700146 struct ida worker_ida; /* L: for worker IDs */
Tejun Heoe19e3972013-01-24 11:39:44 -0800147
148 /*
149 * The current concurrency level. As it's likely to be accessed
150 * from other CPUs during try_to_wake_up(), put it in a separate
151 * cacheline.
152 */
153 atomic_t nr_running ____cacheline_aligned_in_smp;
Tejun Heo8b03ae32010-06-29 10:07:12 +0200154} ____cacheline_aligned_in_smp;
155
156/*
Tejun Heo502ca9d2010-06-29 10:07:13 +0200157 * The per-CPU workqueue. The lower WORK_STRUCT_FLAG_BITS of
Tejun Heo0f900042010-06-29 10:07:11 +0200158 * work_struct->data are used for flags and thus cwqs need to be
159 * aligned at two's power of the number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 */
161struct cpu_workqueue_struct {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700162 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200163 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200164 int work_color; /* L: current color */
165 int flush_color; /* L: flushing color */
166 int nr_in_flight[WORK_NR_COLORS];
167 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200168 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200169 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200170 struct list_head delayed_works; /* L: delayed works */
Tejun Heo0f900042010-06-29 10:07:11 +0200171};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200174 * Structure used to wait for workqueue flush.
175 */
176struct wq_flusher {
177 struct list_head list; /* F: list of flushers */
178 int flush_color; /* F: flush color waiting for */
179 struct completion done; /* flush completion */
180};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Tejun Heo73f53c42010-06-29 10:07:11 +0200182/*
Tejun Heof2e005a2010-07-20 15:59:09 +0200183 * All cpumasks are assumed to be always set on UP and thus can't be
184 * used to determine whether there's something to be done.
185 */
186#ifdef CONFIG_SMP
187typedef cpumask_var_t mayday_mask_t;
188#define mayday_test_and_set_cpu(cpu, mask) \
189 cpumask_test_and_set_cpu((cpu), (mask))
190#define mayday_clear_cpu(cpu, mask) cpumask_clear_cpu((cpu), (mask))
191#define for_each_mayday_cpu(cpu, mask) for_each_cpu((cpu), (mask))
Tejun Heo9c375472010-08-31 11:18:34 +0200192#define alloc_mayday_mask(maskp, gfp) zalloc_cpumask_var((maskp), (gfp))
Tejun Heof2e005a2010-07-20 15:59:09 +0200193#define free_mayday_mask(mask) free_cpumask_var((mask))
194#else
195typedef unsigned long mayday_mask_t;
196#define mayday_test_and_set_cpu(cpu, mask) test_and_set_bit(0, &(mask))
197#define mayday_clear_cpu(cpu, mask) clear_bit(0, &(mask))
198#define for_each_mayday_cpu(cpu, mask) if ((cpu) = 0, (mask))
199#define alloc_mayday_mask(maskp, gfp) true
200#define free_mayday_mask(mask) do { } while (0)
201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203/*
204 * The externally visible workqueue abstraction is an array of
205 * per-CPU workqueues:
206 */
207struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200208 unsigned int flags; /* W: WQ_* flags */
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200209 union {
210 struct cpu_workqueue_struct __percpu *pcpu;
211 struct cpu_workqueue_struct *single;
212 unsigned long v;
213 } cpu_wq; /* I: cwq's */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200214 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200215
216 struct mutex flush_mutex; /* protects wq flushing */
217 int work_color; /* F: current work color */
218 int flush_color; /* F: current flush color */
219 atomic_t nr_cwqs_to_flush; /* flush in progress */
220 struct wq_flusher *first_flusher; /* F: first flusher */
221 struct list_head flusher_queue; /* F: flush waiters */
222 struct list_head flusher_overflow; /* F: flush overflow list */
223
Tejun Heof2e005a2010-07-20 15:59:09 +0200224 mayday_mask_t mayday_mask; /* cpus requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200225 struct worker *rescuer; /* I: rescue worker */
226
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200227 int nr_drainers; /* W: drain in progress */
Tejun Heodcd989c2010-06-29 10:07:14 +0200228 int saved_max_active; /* W: saved cwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700229#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200230 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700231#endif
Tejun Heob196be82012-01-10 15:11:35 -0800232 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Tejun Heod320c032010-06-29 10:07:14 +0200235struct workqueue_struct *system_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200236EXPORT_SYMBOL_GPL(system_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300237struct workqueue_struct *system_highpri_wq __read_mostly;
Joonsoo Kim1aabe902012-08-15 23:25:39 +0900238EXPORT_SYMBOL_GPL(system_highpri_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300239struct workqueue_struct *system_long_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200240EXPORT_SYMBOL_GPL(system_long_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300241struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200242EXPORT_SYMBOL_GPL(system_unbound_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300243struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100244EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200245
Tejun Heo97bd2342010-10-05 10:41:14 +0200246#define CREATE_TRACE_POINTS
247#include <trace/events/workqueue.h>
248
Tejun Heo38db41d2013-01-24 11:01:34 -0800249#define for_each_std_worker_pool(pool, cpu) \
Tejun Heoa60dc392013-01-24 11:01:34 -0800250 for ((pool) = &std_worker_pools(cpu)[0]; \
251 (pool) < &std_worker_pools(cpu)[NR_STD_WORKER_POOLS]; (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700252
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800253#define for_each_busy_worker(worker, i, pos, pool) \
254 hash_for_each(pool->busy_hash, i, pos, worker, hentry)
Tejun Heodb7bccf2010-06-29 10:07:12 +0200255
Tejun Heo706026c2013-01-24 11:01:34 -0800256static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
257 unsigned int sw)
Tejun Heof3421792010-07-02 10:03:51 +0200258{
259 if (cpu < nr_cpu_ids) {
260 if (sw & 1) {
261 cpu = cpumask_next(cpu, mask);
262 if (cpu < nr_cpu_ids)
263 return cpu;
264 }
265 if (sw & 2)
266 return WORK_CPU_UNBOUND;
267 }
Lai Jiangshan6be19582013-02-06 18:04:53 -0800268 return WORK_CPU_END;
Tejun Heof3421792010-07-02 10:03:51 +0200269}
270
Tejun Heo706026c2013-01-24 11:01:34 -0800271static inline int __next_cwq_cpu(int cpu, const struct cpumask *mask,
272 struct workqueue_struct *wq)
Tejun Heof3421792010-07-02 10:03:51 +0200273{
Tejun Heo706026c2013-01-24 11:01:34 -0800274 return __next_wq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
Tejun Heof3421792010-07-02 10:03:51 +0200275}
276
Tejun Heo09884952010-08-01 11:50:12 +0200277/*
278 * CPU iterators
279 *
Tejun Heo706026c2013-01-24 11:01:34 -0800280 * An extra cpu number is defined using an invalid cpu number
Tejun Heo09884952010-08-01 11:50:12 +0200281 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
Tejun Heo706026c2013-01-24 11:01:34 -0800282 * specific CPU. The following iterators are similar to for_each_*_cpu()
283 * iterators but also considers the unbound CPU.
Tejun Heo09884952010-08-01 11:50:12 +0200284 *
Tejun Heo706026c2013-01-24 11:01:34 -0800285 * for_each_wq_cpu() : possible CPUs + WORK_CPU_UNBOUND
286 * for_each_online_wq_cpu() : online CPUs + WORK_CPU_UNBOUND
Tejun Heo09884952010-08-01 11:50:12 +0200287 * for_each_cwq_cpu() : possible CPUs for bound workqueues,
288 * WORK_CPU_UNBOUND for unbound workqueues
289 */
Tejun Heo706026c2013-01-24 11:01:34 -0800290#define for_each_wq_cpu(cpu) \
291 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, 3); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800292 (cpu) < WORK_CPU_END; \
Tejun Heo706026c2013-01-24 11:01:34 -0800293 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, 3))
Tejun Heof3421792010-07-02 10:03:51 +0200294
Tejun Heo706026c2013-01-24 11:01:34 -0800295#define for_each_online_wq_cpu(cpu) \
296 for ((cpu) = __next_wq_cpu(-1, cpu_online_mask, 3); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800297 (cpu) < WORK_CPU_END; \
Tejun Heo706026c2013-01-24 11:01:34 -0800298 (cpu) = __next_wq_cpu((cpu), cpu_online_mask, 3))
Tejun Heof3421792010-07-02 10:03:51 +0200299
300#define for_each_cwq_cpu(cpu, wq) \
Tejun Heo706026c2013-01-24 11:01:34 -0800301 for ((cpu) = __next_cwq_cpu(-1, cpu_possible_mask, (wq)); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800302 (cpu) < WORK_CPU_END; \
Tejun Heo706026c2013-01-24 11:01:34 -0800303 (cpu) = __next_cwq_cpu((cpu), cpu_possible_mask, (wq)))
Tejun Heof3421792010-07-02 10:03:51 +0200304
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900305#ifdef CONFIG_DEBUG_OBJECTS_WORK
306
307static struct debug_obj_descr work_debug_descr;
308
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100309static void *work_debug_hint(void *addr)
310{
311 return ((struct work_struct *) addr)->func;
312}
313
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900314/*
315 * fixup_init is called when:
316 * - an active object is initialized
317 */
318static int work_fixup_init(void *addr, enum debug_obj_state state)
319{
320 struct work_struct *work = addr;
321
322 switch (state) {
323 case ODEBUG_STATE_ACTIVE:
324 cancel_work_sync(work);
325 debug_object_init(work, &work_debug_descr);
326 return 1;
327 default:
328 return 0;
329 }
330}
331
332/*
333 * fixup_activate is called when:
334 * - an active object is activated
335 * - an unknown object is activated (might be a statically initialized object)
336 */
337static int work_fixup_activate(void *addr, enum debug_obj_state state)
338{
339 struct work_struct *work = addr;
340
341 switch (state) {
342
343 case ODEBUG_STATE_NOTAVAILABLE:
344 /*
345 * This is not really a fixup. The work struct was
346 * statically initialized. We just make sure that it
347 * is tracked in the object tracker.
348 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200349 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900350 debug_object_init(work, &work_debug_descr);
351 debug_object_activate(work, &work_debug_descr);
352 return 0;
353 }
354 WARN_ON_ONCE(1);
355 return 0;
356
357 case ODEBUG_STATE_ACTIVE:
358 WARN_ON(1);
359
360 default:
361 return 0;
362 }
363}
364
365/*
366 * fixup_free is called when:
367 * - an active object is freed
368 */
369static int work_fixup_free(void *addr, enum debug_obj_state state)
370{
371 struct work_struct *work = addr;
372
373 switch (state) {
374 case ODEBUG_STATE_ACTIVE:
375 cancel_work_sync(work);
376 debug_object_free(work, &work_debug_descr);
377 return 1;
378 default:
379 return 0;
380 }
381}
382
383static struct debug_obj_descr work_debug_descr = {
384 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100385 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900386 .fixup_init = work_fixup_init,
387 .fixup_activate = work_fixup_activate,
388 .fixup_free = work_fixup_free,
389};
390
391static inline void debug_work_activate(struct work_struct *work)
392{
393 debug_object_activate(work, &work_debug_descr);
394}
395
396static inline void debug_work_deactivate(struct work_struct *work)
397{
398 debug_object_deactivate(work, &work_debug_descr);
399}
400
401void __init_work(struct work_struct *work, int onstack)
402{
403 if (onstack)
404 debug_object_init_on_stack(work, &work_debug_descr);
405 else
406 debug_object_init(work, &work_debug_descr);
407}
408EXPORT_SYMBOL_GPL(__init_work);
409
410void destroy_work_on_stack(struct work_struct *work)
411{
412 debug_object_free(work, &work_debug_descr);
413}
414EXPORT_SYMBOL_GPL(destroy_work_on_stack);
415
416#else
417static inline void debug_work_activate(struct work_struct *work) { }
418static inline void debug_work_deactivate(struct work_struct *work) { }
419#endif
420
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100421/* Serializes the accesses to the list of workqueues. */
422static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200424static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Oleg Nesterov14441962007-05-23 13:57:57 -0700426/*
Tejun Heoe19e3972013-01-24 11:39:44 -0800427 * The CPU and unbound standard worker pools. The unbound ones have
428 * POOL_DISASSOCIATED set, and their workers have WORKER_UNBOUND set.
Oleg Nesterov14441962007-05-23 13:57:57 -0700429 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800430static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
431 cpu_std_worker_pools);
Tejun Heoa60dc392013-01-24 11:01:34 -0800432static struct worker_pool unbound_std_worker_pools[NR_STD_WORKER_POOLS];
Tejun Heof3421792010-07-02 10:03:51 +0200433
Tejun Heo9daf9e62013-01-24 11:01:33 -0800434/* idr of all pools */
435static DEFINE_MUTEX(worker_pool_idr_mutex);
436static DEFINE_IDR(worker_pool_idr);
437
Tejun Heoc34056a2010-06-29 10:07:11 +0200438static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Tejun Heoa60dc392013-01-24 11:01:34 -0800440static struct worker_pool *std_worker_pools(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Tejun Heof3421792010-07-02 10:03:51 +0200442 if (cpu != WORK_CPU_UNBOUND)
Tejun Heoa60dc392013-01-24 11:01:34 -0800443 return per_cpu(cpu_std_worker_pools, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200444 else
Tejun Heoa60dc392013-01-24 11:01:34 -0800445 return unbound_std_worker_pools;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Tejun Heo4e8f0a62013-01-24 11:01:34 -0800448static int std_worker_pool_pri(struct worker_pool *pool)
449{
Tejun Heoa60dc392013-01-24 11:01:34 -0800450 return pool - std_worker_pools(pool->cpu);
Tejun Heo4e8f0a62013-01-24 11:01:34 -0800451}
452
Tejun Heo9daf9e62013-01-24 11:01:33 -0800453/* allocate ID and assign it to @pool */
454static int worker_pool_assign_id(struct worker_pool *pool)
455{
456 int ret;
457
458 mutex_lock(&worker_pool_idr_mutex);
459 idr_pre_get(&worker_pool_idr, GFP_KERNEL);
460 ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
461 mutex_unlock(&worker_pool_idr_mutex);
462
463 return ret;
464}
465
Tejun Heo7c3eed52013-01-24 11:01:33 -0800466/*
467 * Lookup worker_pool by id. The idr currently is built during boot and
468 * never modified. Don't worry about locking for now.
469 */
470static struct worker_pool *worker_pool_by_id(int pool_id)
471{
472 return idr_find(&worker_pool_idr, pool_id);
473}
474
Tejun Heod565ed62013-01-24 11:01:33 -0800475static struct worker_pool *get_std_worker_pool(int cpu, bool highpri)
476{
Tejun Heoa60dc392013-01-24 11:01:34 -0800477 struct worker_pool *pools = std_worker_pools(cpu);
Tejun Heod565ed62013-01-24 11:01:33 -0800478
Tejun Heoa60dc392013-01-24 11:01:34 -0800479 return &pools[highpri];
Tejun Heod565ed62013-01-24 11:01:33 -0800480}
481
Tejun Heo4690c4a2010-06-29 10:07:10 +0200482static struct cpu_workqueue_struct *get_cwq(unsigned int cpu,
483 struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700484{
Tejun Heof3421792010-07-02 10:03:51 +0200485 if (!(wq->flags & WQ_UNBOUND)) {
Lai Jiangshane06ffa12012-03-09 18:03:20 +0800486 if (likely(cpu < nr_cpu_ids))
Tejun Heof3421792010-07-02 10:03:51 +0200487 return per_cpu_ptr(wq->cpu_wq.pcpu, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200488 } else if (likely(cpu == WORK_CPU_UNBOUND))
489 return wq->cpu_wq.single;
490 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700491}
492
Tejun Heo73f53c42010-06-29 10:07:11 +0200493static unsigned int work_color_to_flags(int color)
494{
495 return color << WORK_STRUCT_COLOR_SHIFT;
496}
497
498static int get_work_color(struct work_struct *work)
499{
500 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
501 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
502}
503
504static int work_next_color(int color)
505{
506 return (color + 1) % WORK_NR_COLORS;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700507}
508
David Howells4594bf12006-12-07 11:33:26 +0000509/*
Tejun Heob5490072012-08-03 10:30:46 -0700510 * While queued, %WORK_STRUCT_CWQ is set and non flag bits of a work's data
511 * contain the pointer to the queued cwq. Once execution starts, the flag
Tejun Heo7c3eed52013-01-24 11:01:33 -0800512 * is cleared and the high bits contain OFFQ flags and pool ID.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200513 *
Tejun Heo7c3eed52013-01-24 11:01:33 -0800514 * set_work_cwq(), set_work_pool_and_clear_pending(), mark_work_canceling()
515 * and clear_work_data() can be used to set the cwq, pool or clear
Tejun Heobbb68df2012-08-03 10:30:46 -0700516 * work->data. These functions should only be called while the work is
517 * owned - ie. while the PENDING bit is set.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200518 *
Tejun Heo7c3eed52013-01-24 11:01:33 -0800519 * get_work_pool() and get_work_cwq() can be used to obtain the pool or cwq
520 * corresponding to a work. Pool is available once the work has been
521 * queued anywhere after initialization until it is sync canceled. cwq is
522 * available only while the work item is queued.
Tejun Heobbb68df2012-08-03 10:30:46 -0700523 *
524 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
525 * canceled. While being canceled, a work item may have its PENDING set
526 * but stay off timer and worklist for arbitrarily long and nobody should
527 * try to steal the PENDING bit.
David Howells4594bf12006-12-07 11:33:26 +0000528 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200529static inline void set_work_data(struct work_struct *work, unsigned long data,
530 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000531{
David Howells4594bf12006-12-07 11:33:26 +0000532 BUG_ON(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200533 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000534}
David Howells365970a2006-11-22 14:54:49 +0000535
Tejun Heo7a22ad72010-06-29 10:07:13 +0200536static void set_work_cwq(struct work_struct *work,
537 struct cpu_workqueue_struct *cwq,
538 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200539{
Tejun Heo7a22ad72010-06-29 10:07:13 +0200540 set_work_data(work, (unsigned long)cwq,
Tejun Heoe1201532010-07-22 14:14:25 +0200541 WORK_STRUCT_PENDING | WORK_STRUCT_CWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200542}
543
Lai Jiangshan4468a002013-02-06 18:04:53 -0800544static void set_work_pool_and_keep_pending(struct work_struct *work,
545 int pool_id)
546{
547 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT,
548 WORK_STRUCT_PENDING);
549}
550
Tejun Heo7c3eed52013-01-24 11:01:33 -0800551static void set_work_pool_and_clear_pending(struct work_struct *work,
552 int pool_id)
David Howells365970a2006-11-22 14:54:49 +0000553{
Tejun Heo23657bb2012-08-13 17:08:19 -0700554 /*
555 * The following wmb is paired with the implied mb in
556 * test_and_set_bit(PENDING) and ensures all updates to @work made
557 * here are visible to and precede any updates by the next PENDING
558 * owner.
559 */
560 smp_wmb();
Tejun Heo7c3eed52013-01-24 11:01:33 -0800561 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200562}
563
564static void clear_work_data(struct work_struct *work)
565{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800566 smp_wmb(); /* see set_work_pool_and_clear_pending() */
567 set_work_data(work, WORK_STRUCT_NO_POOL, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200568}
569
Tejun Heo7a22ad72010-06-29 10:07:13 +0200570static struct cpu_workqueue_struct *get_work_cwq(struct work_struct *work)
571{
Tejun Heoe1201532010-07-22 14:14:25 +0200572 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200573
Tejun Heoe1201532010-07-22 14:14:25 +0200574 if (data & WORK_STRUCT_CWQ)
575 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
576 else
577 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200578}
579
Tejun Heo7c3eed52013-01-24 11:01:33 -0800580/**
581 * get_work_pool - return the worker_pool a given work was associated with
582 * @work: the work item of interest
583 *
584 * Return the worker_pool @work was last associated with. %NULL if none.
585 */
586static struct worker_pool *get_work_pool(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200587{
Tejun Heoe1201532010-07-22 14:14:25 +0200588 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800589 struct worker_pool *pool;
590 int pool_id;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200591
Tejun Heoe1201532010-07-22 14:14:25 +0200592 if (data & WORK_STRUCT_CWQ)
593 return ((struct cpu_workqueue_struct *)
Tejun Heo7c3eed52013-01-24 11:01:33 -0800594 (data & WORK_STRUCT_WQ_DATA_MASK))->pool;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200595
Tejun Heo7c3eed52013-01-24 11:01:33 -0800596 pool_id = data >> WORK_OFFQ_POOL_SHIFT;
597 if (pool_id == WORK_OFFQ_POOL_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200598 return NULL;
599
Tejun Heo7c3eed52013-01-24 11:01:33 -0800600 pool = worker_pool_by_id(pool_id);
601 WARN_ON_ONCE(!pool);
602 return pool;
603}
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{
614 struct worker_pool *pool = get_work_pool(work);
615
616 return pool ? pool->id : WORK_OFFQ_POOL_NONE;
617}
618
Tejun Heobbb68df2012-08-03 10:30:46 -0700619static void mark_work_canceling(struct work_struct *work)
620{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800621 unsigned long pool_id = get_work_pool_id(work);
Tejun Heobbb68df2012-08-03 10:30:46 -0700622
Tejun Heo7c3eed52013-01-24 11:01:33 -0800623 pool_id <<= WORK_OFFQ_POOL_SHIFT;
624 set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700625}
626
627static bool work_is_canceling(struct work_struct *work)
628{
629 unsigned long data = atomic_long_read(&work->data);
630
631 return !(data & WORK_STRUCT_CWQ) && (data & WORK_OFFQ_CANCELING);
632}
633
David Howells365970a2006-11-22 14:54:49 +0000634/*
Tejun Heo32704762012-07-13 22:16:45 -0700635 * Policy functions. These define the policies on how the global worker
636 * pools are managed. Unless noted otherwise, these functions assume that
Tejun Heod565ed62013-01-24 11:01:33 -0800637 * they're being called with pool->lock held.
David Howells365970a2006-11-22 14:54:49 +0000638 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200639
Tejun Heo63d95a92012-07-12 14:46:37 -0700640static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000641{
Tejun Heoe19e3972013-01-24 11:39:44 -0800642 return !atomic_read(&pool->nr_running);
David Howells365970a2006-11-22 14:54:49 +0000643}
644
Tejun Heoe22bee72010-06-29 10:07:14 +0200645/*
646 * Need to wake up a worker? Called from anything but currently
647 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700648 *
649 * Note that, because unbound workers never contribute to nr_running, this
Tejun Heo706026c2013-01-24 11:01:34 -0800650 * function will always return %true for unbound pools as long as the
Tejun Heo974271c2012-07-12 14:46:37 -0700651 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200652 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700653static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000654{
Tejun Heo63d95a92012-07-12 14:46:37 -0700655 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000656}
657
Tejun Heoe22bee72010-06-29 10:07:14 +0200658/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700659static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200660{
Tejun Heo63d95a92012-07-12 14:46:37 -0700661 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200662}
663
664/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700665static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200666{
Tejun Heoe19e3972013-01-24 11:39:44 -0800667 return !list_empty(&pool->worklist) &&
668 atomic_read(&pool->nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200669}
670
671/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700672static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200673{
Tejun Heo63d95a92012-07-12 14:46:37 -0700674 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200675}
676
677/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700678static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200679{
Tejun Heo63d95a92012-07-12 14:46:37 -0700680 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700681 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200682}
683
684/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700685static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200686{
Lai Jiangshan552a37e2012-09-10 10:03:33 -0700687 bool managing = pool->flags & POOL_MANAGING_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -0700688 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
689 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200690
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700691 /*
692 * nr_idle and idle_list may disagree if idle rebinding is in
693 * progress. Never return %true if idle_list is empty.
694 */
695 if (list_empty(&pool->idle_list))
696 return false;
697
Tejun Heoe22bee72010-06-29 10:07:14 +0200698 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
699}
700
701/*
702 * Wake up functions.
703 */
704
Tejun Heo7e116292010-06-29 10:07:13 +0200705/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700706static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200707{
Tejun Heo63d95a92012-07-12 14:46:37 -0700708 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200709 return NULL;
710
Tejun Heo63d95a92012-07-12 14:46:37 -0700711 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200712}
713
714/**
715 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700716 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200717 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700718 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200719 *
720 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800721 * spin_lock_irq(pool->lock).
Tejun Heo7e116292010-06-29 10:07:13 +0200722 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700723static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200724{
Tejun Heo63d95a92012-07-12 14:46:37 -0700725 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200726
727 if (likely(worker))
728 wake_up_process(worker->task);
729}
730
Tejun Heo4690c4a2010-06-29 10:07:10 +0200731/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200732 * wq_worker_waking_up - a worker is waking up
733 * @task: task waking up
734 * @cpu: CPU @task is waking up to
735 *
736 * This function is called during try_to_wake_up() when a worker is
737 * being awoken.
738 *
739 * CONTEXT:
740 * spin_lock_irq(rq->lock)
741 */
742void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
743{
744 struct worker *worker = kthread_data(task);
745
Joonsoo Kim36576002012-10-26 23:03:49 +0900746 if (!(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoec22ca52013-01-24 11:01:33 -0800747 WARN_ON_ONCE(worker->pool->cpu != cpu);
Tejun Heoe19e3972013-01-24 11:39:44 -0800748 atomic_inc(&worker->pool->nr_running);
Joonsoo Kim36576002012-10-26 23:03:49 +0900749 }
Tejun Heoe22bee72010-06-29 10:07:14 +0200750}
751
752/**
753 * wq_worker_sleeping - a worker is going to sleep
754 * @task: task going to sleep
755 * @cpu: CPU in question, must be the current CPU number
756 *
757 * This function is called during schedule() when a busy worker is
758 * going to sleep. Worker on the same cpu can be woken up by
759 * returning pointer to its task.
760 *
761 * CONTEXT:
762 * spin_lock_irq(rq->lock)
763 *
764 * RETURNS:
765 * Worker task on @cpu to wake up, %NULL if none.
766 */
767struct task_struct *wq_worker_sleeping(struct task_struct *task,
768 unsigned int cpu)
769{
770 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heo111c2252013-01-17 17:16:24 -0800771 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200772
Tejun Heo111c2252013-01-17 17:16:24 -0800773 /*
774 * Rescuers, which may not have all the fields set up like normal
775 * workers, also reach here, let's not access anything before
776 * checking NOT_RUNNING.
777 */
Steven Rostedt2d646722010-12-03 23:12:33 -0500778 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200779 return NULL;
780
Tejun Heo111c2252013-01-17 17:16:24 -0800781 pool = worker->pool;
Tejun Heo111c2252013-01-17 17:16:24 -0800782
Tejun Heoe22bee72010-06-29 10:07:14 +0200783 /* this can only happen on the local cpu */
784 BUG_ON(cpu != raw_smp_processor_id());
785
786 /*
787 * The counterpart of the following dec_and_test, implied mb,
788 * worklist not empty test sequence is in insert_work().
789 * Please read comment there.
790 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700791 * NOT_RUNNING is clear. This means that we're bound to and
792 * running on the local cpu w/ rq lock held and preemption
793 * disabled, which in turn means that none else could be
Tejun Heod565ed62013-01-24 11:01:33 -0800794 * manipulating idle_list, so dereferencing idle_list without pool
Tejun Heo628c78e2012-07-17 12:39:27 -0700795 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200796 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800797 if (atomic_dec_and_test(&pool->nr_running) &&
798 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700799 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200800 return to_wakeup ? to_wakeup->task : NULL;
801}
802
803/**
804 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200805 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200806 * @flags: flags to set
807 * @wakeup: wakeup an idle worker if necessary
808 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200809 * Set @flags in @worker->flags and adjust nr_running accordingly. If
810 * nr_running becomes zero and @wakeup is %true, an idle worker is
811 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200812 *
Tejun Heocb444762010-07-02 10:03:50 +0200813 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800814 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200815 */
816static inline void worker_set_flags(struct worker *worker, unsigned int flags,
817 bool wakeup)
818{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700819 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200820
Tejun Heocb444762010-07-02 10:03:50 +0200821 WARN_ON_ONCE(worker->task != current);
822
Tejun Heoe22bee72010-06-29 10:07:14 +0200823 /*
824 * If transitioning into NOT_RUNNING, adjust nr_running and
825 * wake up an idle worker as necessary if requested by
826 * @wakeup.
827 */
828 if ((flags & WORKER_NOT_RUNNING) &&
829 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoe22bee72010-06-29 10:07:14 +0200830 if (wakeup) {
Tejun Heoe19e3972013-01-24 11:39:44 -0800831 if (atomic_dec_and_test(&pool->nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700832 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700833 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200834 } else
Tejun Heoe19e3972013-01-24 11:39:44 -0800835 atomic_dec(&pool->nr_running);
Tejun Heoe22bee72010-06-29 10:07:14 +0200836 }
837
Tejun Heod302f012010-06-29 10:07:13 +0200838 worker->flags |= flags;
839}
840
841/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200842 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200843 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200844 * @flags: flags to clear
845 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200846 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200847 *
Tejun Heocb444762010-07-02 10:03:50 +0200848 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800849 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200850 */
851static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
852{
Tejun Heo63d95a92012-07-12 14:46:37 -0700853 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200854 unsigned int oflags = worker->flags;
855
Tejun Heocb444762010-07-02 10:03:50 +0200856 WARN_ON_ONCE(worker->task != current);
857
Tejun Heod302f012010-06-29 10:07:13 +0200858 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200859
Tejun Heo42c025f2011-01-11 15:58:49 +0100860 /*
861 * If transitioning out of NOT_RUNNING, increment nr_running. Note
862 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
863 * of multiple flags, not a single flag.
864 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200865 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
866 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heoe19e3972013-01-24 11:39:44 -0800867 atomic_inc(&pool->nr_running);
Tejun Heod302f012010-06-29 10:07:13 +0200868}
869
870/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200871 * find_worker_executing_work - find worker which is executing a work
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800872 * @pool: pool of interest
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200873 * @work: work to find worker for
874 *
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800875 * Find a worker which is executing @work on @pool by searching
876 * @pool->busy_hash which is keyed by the address of @work. For a worker
Tejun Heoa2c1c572012-12-18 10:35:02 -0800877 * to match, its current execution should match the address of @work and
878 * its work function. This is to avoid unwanted dependency between
879 * unrelated work executions through a work item being recycled while still
880 * being executed.
881 *
882 * This is a bit tricky. A work item may be freed once its execution
883 * starts and nothing prevents the freed area from being recycled for
884 * another work item. If the same work item address ends up being reused
885 * before the original execution finishes, workqueue will identify the
886 * recycled work item as currently executing and make it wait until the
887 * current execution finishes, introducing an unwanted dependency.
888 *
889 * This function checks the work item address, work function and workqueue
890 * to avoid false positives. Note that this isn't complete as one may
891 * construct a work function which can introduce dependency onto itself
892 * through a recycled work item. Well, if somebody wants to shoot oneself
893 * in the foot that badly, there's only so much we can do, and if such
894 * deadlock actually occurs, it should be easy to locate the culprit work
895 * function.
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200896 *
897 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800898 * spin_lock_irq(pool->lock).
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200899 *
900 * RETURNS:
901 * Pointer to worker which is executing @work if found, NULL
902 * otherwise.
903 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800904static struct worker *find_worker_executing_work(struct worker_pool *pool,
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200905 struct work_struct *work)
906{
Sasha Levin42f85702012-12-17 10:01:23 -0500907 struct worker *worker;
908 struct hlist_node *tmp;
909
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800910 hash_for_each_possible(pool->busy_hash, worker, tmp, hentry,
Tejun Heoa2c1c572012-12-18 10:35:02 -0800911 (unsigned long)work)
912 if (worker->current_work == work &&
913 worker->current_func == work->func)
Sasha Levin42f85702012-12-17 10:01:23 -0500914 return worker;
915
916 return NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200917}
918
919/**
Tejun Heobf4ede02012-08-03 10:30:46 -0700920 * move_linked_works - move linked works to a list
921 * @work: start of series of works to be scheduled
922 * @head: target list to append @work to
923 * @nextp: out paramter for nested worklist walking
924 *
925 * Schedule linked works starting from @work to @head. Work series to
926 * be scheduled starts at @work and includes any consecutive work with
927 * WORK_STRUCT_LINKED set in its predecessor.
928 *
929 * If @nextp is not NULL, it's updated to point to the next work of
930 * the last scheduled work. This allows move_linked_works() to be
931 * nested inside outer list_for_each_entry_safe().
932 *
933 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800934 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700935 */
936static void move_linked_works(struct work_struct *work, struct list_head *head,
937 struct work_struct **nextp)
938{
939 struct work_struct *n;
940
941 /*
942 * Linked worklist will always end before the end of the list,
943 * use NULL for list head.
944 */
945 list_for_each_entry_safe_from(work, n, NULL, entry) {
946 list_move_tail(&work->entry, head);
947 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
948 break;
949 }
950
951 /*
952 * If we're already inside safe list traversal and have moved
953 * multiple works to the scheduled queue, the next position
954 * needs to be updated.
955 */
956 if (nextp)
957 *nextp = n;
958}
959
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700960static void cwq_activate_delayed_work(struct work_struct *work)
Tejun Heobf4ede02012-08-03 10:30:46 -0700961{
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700962 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heobf4ede02012-08-03 10:30:46 -0700963
964 trace_workqueue_activate_work(work);
965 move_linked_works(work, &cwq->pool->worklist, NULL);
966 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
967 cwq->nr_active++;
968}
969
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700970static void cwq_activate_first_delayed(struct cpu_workqueue_struct *cwq)
971{
972 struct work_struct *work = list_first_entry(&cwq->delayed_works,
973 struct work_struct, entry);
974
975 cwq_activate_delayed_work(work);
976}
977
Tejun Heobf4ede02012-08-03 10:30:46 -0700978/**
979 * cwq_dec_nr_in_flight - decrement cwq's nr_in_flight
980 * @cwq: cwq of interest
981 * @color: color of work which left the queue
Tejun Heobf4ede02012-08-03 10:30:46 -0700982 *
983 * A work either has completed or is removed from pending queue,
984 * decrement nr_in_flight of its cwq and handle workqueue flushing.
985 *
986 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800987 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700988 */
Lai Jiangshanb3f9f402012-09-18 10:40:00 -0700989static void cwq_dec_nr_in_flight(struct cpu_workqueue_struct *cwq, int color)
Tejun Heobf4ede02012-08-03 10:30:46 -0700990{
991 /* ignore uncolored works */
992 if (color == WORK_NO_COLOR)
993 return;
994
995 cwq->nr_in_flight[color]--;
996
Lai Jiangshanb3f9f402012-09-18 10:40:00 -0700997 cwq->nr_active--;
998 if (!list_empty(&cwq->delayed_works)) {
999 /* one down, submit a delayed one */
1000 if (cwq->nr_active < cwq->max_active)
1001 cwq_activate_first_delayed(cwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001002 }
1003
1004 /* is flush in progress and are we at the flushing tip? */
1005 if (likely(cwq->flush_color != color))
1006 return;
1007
1008 /* are there still in-flight works? */
1009 if (cwq->nr_in_flight[color])
1010 return;
1011
1012 /* this cwq is done, clear flush_color */
1013 cwq->flush_color = -1;
1014
1015 /*
1016 * If this was the last cwq, wake up the first flusher. It
1017 * will handle the rest.
1018 */
1019 if (atomic_dec_and_test(&cwq->wq->nr_cwqs_to_flush))
1020 complete(&cwq->wq->first_flusher->done);
1021}
1022
Tejun Heo36e227d2012-08-03 10:30:46 -07001023/**
Tejun Heobbb68df2012-08-03 10:30:46 -07001024 * try_to_grab_pending - steal work item from worklist and disable irq
Tejun Heo36e227d2012-08-03 10:30:46 -07001025 * @work: work item to steal
1026 * @is_dwork: @work is a delayed_work
Tejun Heobbb68df2012-08-03 10:30:46 -07001027 * @flags: place to store irq state
Tejun Heo36e227d2012-08-03 10:30:46 -07001028 *
1029 * Try to grab PENDING bit of @work. This function can handle @work in any
1030 * stable state - idle, on timer or on worklist. Return values are
1031 *
1032 * 1 if @work was pending and we successfully stole PENDING
1033 * 0 if @work was idle and we claimed PENDING
1034 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
Tejun Heobbb68df2012-08-03 10:30:46 -07001035 * -ENOENT if someone else is canceling @work, this state may persist
1036 * for arbitrarily long
Tejun Heo36e227d2012-08-03 10:30:46 -07001037 *
Tejun Heobbb68df2012-08-03 10:30:46 -07001038 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001039 * interrupted while holding PENDING and @work off queue, irq must be
1040 * disabled on entry. This, combined with delayed_work->timer being
1041 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
Tejun Heobbb68df2012-08-03 10:30:46 -07001042 *
1043 * On successful return, >= 0, irq is disabled and the caller is
1044 * responsible for releasing it using local_irq_restore(*@flags).
1045 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001046 * This function is safe to call from any context including IRQ handler.
Tejun Heobf4ede02012-08-03 10:30:46 -07001047 */
Tejun Heobbb68df2012-08-03 10:30:46 -07001048static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1049 unsigned long *flags)
Tejun Heobf4ede02012-08-03 10:30:46 -07001050{
Tejun Heod565ed62013-01-24 11:01:33 -08001051 struct worker_pool *pool;
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001052 struct cpu_workqueue_struct *cwq;
Tejun Heobf4ede02012-08-03 10:30:46 -07001053
Tejun Heobbb68df2012-08-03 10:30:46 -07001054 local_irq_save(*flags);
1055
Tejun Heo36e227d2012-08-03 10:30:46 -07001056 /* try to steal the timer if it exists */
1057 if (is_dwork) {
1058 struct delayed_work *dwork = to_delayed_work(work);
1059
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001060 /*
1061 * dwork->timer is irqsafe. If del_timer() fails, it's
1062 * guaranteed that the timer is not queued anywhere and not
1063 * running on the local CPU.
1064 */
Tejun Heo36e227d2012-08-03 10:30:46 -07001065 if (likely(del_timer(&dwork->timer)))
1066 return 1;
1067 }
1068
1069 /* try to claim PENDING the normal way */
Tejun Heobf4ede02012-08-03 10:30:46 -07001070 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1071 return 0;
1072
1073 /*
1074 * The queueing is in progress, or it is already queued. Try to
1075 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1076 */
Tejun Heod565ed62013-01-24 11:01:33 -08001077 pool = get_work_pool(work);
1078 if (!pool)
Tejun Heobbb68df2012-08-03 10:30:46 -07001079 goto fail;
Tejun Heobf4ede02012-08-03 10:30:46 -07001080
Tejun Heod565ed62013-01-24 11:01:33 -08001081 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001082 /*
1083 * work->data is guaranteed to point to cwq only while the work
1084 * item is queued on cwq->wq, and both updating work->data to point
1085 * to cwq on queueing and to pool on dequeueing are done under
1086 * cwq->pool->lock. This in turn guarantees that, if work->data
1087 * points to cwq which is associated with a locked pool, the work
1088 * item is currently queued on that pool.
1089 */
1090 cwq = get_work_cwq(work);
Tejun Heo16062832013-02-06 18:04:53 -08001091 if (cwq && cwq->pool == pool) {
1092 debug_work_deactivate(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001093
Tejun Heo16062832013-02-06 18:04:53 -08001094 /*
1095 * A delayed work item cannot be grabbed directly because
1096 * it might have linked NO_COLOR work items which, if left
1097 * on the delayed_list, will confuse cwq->nr_active
1098 * management later on and cause stall. Make sure the work
1099 * item is activated before grabbing.
1100 */
1101 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
1102 cwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001103
Tejun Heo16062832013-02-06 18:04:53 -08001104 list_del_init(&work->entry);
1105 cwq_dec_nr_in_flight(get_work_cwq(work), get_work_color(work));
Tejun Heo36e227d2012-08-03 10:30:46 -07001106
Tejun Heo16062832013-02-06 18:04:53 -08001107 /* work->data points to cwq iff queued, point to pool */
1108 set_work_pool_and_keep_pending(work, pool->id);
Lai Jiangshan4468a002013-02-06 18:04:53 -08001109
Tejun Heo16062832013-02-06 18:04:53 -08001110 spin_unlock(&pool->lock);
1111 return 1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001112 }
Tejun Heod565ed62013-01-24 11:01:33 -08001113 spin_unlock(&pool->lock);
Tejun Heobbb68df2012-08-03 10:30:46 -07001114fail:
1115 local_irq_restore(*flags);
1116 if (work_is_canceling(work))
1117 return -ENOENT;
1118 cpu_relax();
Tejun Heo36e227d2012-08-03 10:30:46 -07001119 return -EAGAIN;
Tejun Heobf4ede02012-08-03 10:30:46 -07001120}
1121
1122/**
Tejun Heo706026c2013-01-24 11:01:34 -08001123 * insert_work - insert a work into a pool
Tejun Heo4690c4a2010-06-29 10:07:10 +02001124 * @cwq: cwq @work belongs to
1125 * @work: work to insert
1126 * @head: insertion point
1127 * @extra_flags: extra WORK_STRUCT_* flags to set
1128 *
Tejun Heo706026c2013-01-24 11:01:34 -08001129 * Insert @work which belongs to @cwq after @head. @extra_flags is or'd to
1130 * work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001131 *
1132 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001133 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001134 */
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001135static void insert_work(struct cpu_workqueue_struct *cwq,
Tejun Heo4690c4a2010-06-29 10:07:10 +02001136 struct work_struct *work, struct list_head *head,
1137 unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001138{
Tejun Heo63d95a92012-07-12 14:46:37 -07001139 struct worker_pool *pool = cwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01001140
Tejun Heo4690c4a2010-06-29 10:07:10 +02001141 /* we own @work, set data and link */
Tejun Heo7a22ad72010-06-29 10:07:13 +02001142 set_work_cwq(work, cwq, extra_flags);
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -07001143 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +02001144
1145 /*
1146 * Ensure either worker_sched_deactivated() sees the above
1147 * list_add_tail() or we see zero nr_running to avoid workers
1148 * lying around lazily while there are works to be processed.
1149 */
1150 smp_mb();
1151
Tejun Heo63d95a92012-07-12 14:46:37 -07001152 if (__need_more_worker(pool))
1153 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001154}
1155
Tejun Heoc8efcc22010-12-20 19:32:04 +01001156/*
1157 * Test whether @work is being queued from another work executing on the
1158 * same workqueue. This is rather expensive and should only be used from
1159 * cold paths.
1160 */
1161static bool is_chained_work(struct workqueue_struct *wq)
1162{
1163 unsigned long flags;
1164 unsigned int cpu;
1165
Tejun Heo706026c2013-01-24 11:01:34 -08001166 for_each_wq_cpu(cpu) {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001167 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
1168 struct worker_pool *pool = cwq->pool;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001169 struct worker *worker;
1170 struct hlist_node *pos;
1171 int i;
1172
Tejun Heod565ed62013-01-24 11:01:33 -08001173 spin_lock_irqsave(&pool->lock, flags);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001174 for_each_busy_worker(worker, i, pos, pool) {
Tejun Heoc8efcc22010-12-20 19:32:04 +01001175 if (worker->task != current)
1176 continue;
Tejun Heod565ed62013-01-24 11:01:33 -08001177 spin_unlock_irqrestore(&pool->lock, flags);
Tejun Heoc8efcc22010-12-20 19:32:04 +01001178 /*
1179 * I'm @worker, no locking necessary. See if @work
1180 * is headed to the same workqueue.
1181 */
1182 return worker->current_cwq->wq == wq;
1183 }
Tejun Heod565ed62013-01-24 11:01:33 -08001184 spin_unlock_irqrestore(&pool->lock, flags);
Tejun Heoc8efcc22010-12-20 19:32:04 +01001185 }
1186 return false;
1187}
1188
Tejun Heo4690c4a2010-06-29 10:07:10 +02001189static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 struct work_struct *work)
1191{
Tejun Heod565ed62013-01-24 11:01:33 -08001192 bool highpri = wq->flags & WQ_HIGHPRI;
1193 struct worker_pool *pool;
Tejun Heo502ca9d2010-06-29 10:07:13 +02001194 struct cpu_workqueue_struct *cwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001195 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001196 unsigned int work_flags;
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001197 unsigned int req_cpu = cpu;
Tejun Heo8930cab2012-08-03 10:30:45 -07001198
1199 /*
1200 * While a work item is PENDING && off queue, a task trying to
1201 * steal the PENDING will busy-loop waiting for it to either get
1202 * queued or lose PENDING. Grabbing PENDING and queueing should
1203 * happen with IRQ disabled.
1204 */
1205 WARN_ON_ONCE(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001207 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001208
Tejun Heoc8efcc22010-12-20 19:32:04 +01001209 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02001210 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +01001211 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +02001212 return;
1213
Tejun Heod565ed62013-01-24 11:01:33 -08001214 /* determine pool to use */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001215 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001216 struct worker_pool *last_pool;
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001217
Tejun Heo57469822012-08-03 10:30:45 -07001218 if (cpu == WORK_CPU_UNBOUND)
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001219 cpu = raw_smp_processor_id();
1220
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001221 /*
Tejun Heodbf25762012-08-20 14:51:23 -07001222 * It's multi cpu. If @work was previously on a different
1223 * cpu, it might still be running there, in which case the
1224 * work needs to be queued on that cpu to guarantee
1225 * non-reentrancy.
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001226 */
Tejun Heod565ed62013-01-24 11:01:33 -08001227 pool = get_std_worker_pool(cpu, highpri);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001228 last_pool = get_work_pool(work);
Tejun Heodbf25762012-08-20 14:51:23 -07001229
Tejun Heod565ed62013-01-24 11:01:33 -08001230 if (last_pool && last_pool != pool) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001231 struct worker *worker;
1232
Tejun Heod565ed62013-01-24 11:01:33 -08001233 spin_lock(&last_pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001234
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001235 worker = find_worker_executing_work(last_pool, work);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001236
1237 if (worker && worker->current_cwq->wq == wq)
Tejun Heod565ed62013-01-24 11:01:33 -08001238 pool = last_pool;
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001239 else {
1240 /* meh... not running there, queue here */
Tejun Heod565ed62013-01-24 11:01:33 -08001241 spin_unlock(&last_pool->lock);
1242 spin_lock(&pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001243 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001244 } else {
Tejun Heod565ed62013-01-24 11:01:33 -08001245 spin_lock(&pool->lock);
Tejun Heo8930cab2012-08-03 10:30:45 -07001246 }
Tejun Heof3421792010-07-02 10:03:51 +02001247 } else {
Tejun Heod565ed62013-01-24 11:01:33 -08001248 pool = get_std_worker_pool(WORK_CPU_UNBOUND, highpri);
1249 spin_lock(&pool->lock);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001250 }
1251
Tejun Heod565ed62013-01-24 11:01:33 -08001252 /* pool determined, get cwq and queue */
1253 cwq = get_cwq(pool->cpu, wq);
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001254 trace_workqueue_queue_work(req_cpu, cwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001255
Dan Carpenterf5b25522012-04-13 22:06:58 +03001256 if (WARN_ON(!list_empty(&work->entry))) {
Tejun Heod565ed62013-01-24 11:01:33 -08001257 spin_unlock(&pool->lock);
Dan Carpenterf5b25522012-04-13 22:06:58 +03001258 return;
1259 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001260
Tejun Heo73f53c42010-06-29 10:07:11 +02001261 cwq->nr_in_flight[cwq->work_color]++;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001262 work_flags = work_color_to_flags(cwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001263
1264 if (likely(cwq->nr_active < cwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001265 trace_workqueue_activate_work(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001266 cwq->nr_active++;
Tejun Heo32704762012-07-13 22:16:45 -07001267 worklist = &cwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001268 } else {
1269 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001270 worklist = &cwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001271 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001272
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001273 insert_work(cwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001274
Tejun Heod565ed62013-01-24 11:01:33 -08001275 spin_unlock(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001278/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07001279 * queue_work_on - queue work on specific cpu
1280 * @cpu: CPU number to execute work on
1281 * @wq: workqueue to use
1282 * @work: work to queue
1283 *
Tejun Heod4283e92012-08-03 10:30:44 -07001284 * Returns %false if @work was already on a queue, %true otherwise.
Zhang Ruic1a220e2008-07-23 21:28:39 -07001285 *
1286 * We queue the work to a specific CPU, the caller must ensure it
1287 * can't go away.
1288 */
Tejun Heod4283e92012-08-03 10:30:44 -07001289bool queue_work_on(int cpu, struct workqueue_struct *wq,
1290 struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07001291{
Tejun Heod4283e92012-08-03 10:30:44 -07001292 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001293 unsigned long flags;
1294
1295 local_irq_save(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001296
Tejun Heo22df02b2010-06-29 10:07:10 +02001297 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001298 __queue_work(cpu, wq, work);
Tejun Heod4283e92012-08-03 10:30:44 -07001299 ret = true;
Zhang Ruic1a220e2008-07-23 21:28:39 -07001300 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001301
1302 local_irq_restore(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001303 return ret;
1304}
1305EXPORT_SYMBOL_GPL(queue_work_on);
1306
Tejun Heo0a13c002012-08-03 10:30:44 -07001307/**
1308 * queue_work - queue work on a workqueue
1309 * @wq: workqueue to use
1310 * @work: work to queue
1311 *
Tejun Heod4283e92012-08-03 10:30:44 -07001312 * Returns %false if @work was already on a queue, %true otherwise.
Tejun Heo0a13c002012-08-03 10:30:44 -07001313 *
1314 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1315 * it can be processed by another CPU.
1316 */
Tejun Heod4283e92012-08-03 10:30:44 -07001317bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
Tejun Heo0a13c002012-08-03 10:30:44 -07001318{
Tejun Heo57469822012-08-03 10:30:45 -07001319 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
Tejun Heo0a13c002012-08-03 10:30:44 -07001320}
1321EXPORT_SYMBOL_GPL(queue_work);
1322
Tejun Heod8e794d2012-08-03 10:30:45 -07001323void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
David Howells52bad642006-11-22 14:54:01 +00001325 struct delayed_work *dwork = (struct delayed_work *)__data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001327 /* should have been called from irqsafe timer with irq already off */
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001328 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
Tejun Heod8e794d2012-08-03 10:30:45 -07001330EXPORT_SYMBOL_GPL(delayed_work_timer_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001332static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1333 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001335 struct timer_list *timer = &dwork->timer;
1336 struct work_struct *work = &dwork->work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001338 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1339 timer->data != (unsigned long)dwork);
Tejun Heofc4b5142012-12-04 07:40:39 -08001340 WARN_ON_ONCE(timer_pending(timer));
1341 WARN_ON_ONCE(!list_empty(&work->entry));
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001342
Tejun Heo8852aac2012-12-01 16:23:42 -08001343 /*
1344 * If @delay is 0, queue @dwork->work immediately. This is for
1345 * both optimization and correctness. The earliest @timer can
1346 * expire is on the closest next tick and delayed_work users depend
1347 * on that there's no such delay when @delay is 0.
1348 */
1349 if (!delay) {
1350 __queue_work(cpu, wq, &dwork->work);
1351 return;
1352 }
1353
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001354 timer_stats_timer_set_start_info(&dwork->timer);
1355
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001356 dwork->wq = wq;
Tejun Heo12650572012-08-08 09:38:42 -07001357 dwork->cpu = cpu;
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001358 timer->expires = jiffies + delay;
1359
1360 if (unlikely(cpu != WORK_CPU_UNBOUND))
1361 add_timer_on(timer, cpu);
1362 else
1363 add_timer(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001366/**
1367 * queue_delayed_work_on - queue work on specific CPU after delay
1368 * @cpu: CPU number to execute work on
1369 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001370 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001371 * @delay: number of jiffies to wait before queueing
1372 *
Tejun Heo715f1302012-08-03 10:30:46 -07001373 * Returns %false if @work was already on a queue, %true otherwise. If
1374 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1375 * execution.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001376 */
Tejun Heod4283e92012-08-03 10:30:44 -07001377bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1378 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001379{
David Howells52bad642006-11-22 14:54:01 +00001380 struct work_struct *work = &dwork->work;
Tejun Heod4283e92012-08-03 10:30:44 -07001381 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001382 unsigned long flags;
1383
1384 /* read the comment in __queue_work() */
1385 local_irq_save(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001386
Tejun Heo22df02b2010-06-29 10:07:10 +02001387 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001388 __queue_delayed_work(cpu, wq, dwork, delay);
Tejun Heod4283e92012-08-03 10:30:44 -07001389 ret = true;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001390 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001391
1392 local_irq_restore(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001393 return ret;
1394}
Dave Jonesae90dd52006-06-30 01:40:45 -04001395EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Tejun Heoc8e55f32010-06-29 10:07:12 +02001397/**
Tejun Heo0a13c002012-08-03 10:30:44 -07001398 * queue_delayed_work - queue work on a workqueue after delay
1399 * @wq: workqueue to use
1400 * @dwork: delayable work to queue
1401 * @delay: number of jiffies to wait before queueing
1402 *
Tejun Heo715f1302012-08-03 10:30:46 -07001403 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
Tejun Heo0a13c002012-08-03 10:30:44 -07001404 */
Tejun Heod4283e92012-08-03 10:30:44 -07001405bool queue_delayed_work(struct workqueue_struct *wq,
Tejun Heo0a13c002012-08-03 10:30:44 -07001406 struct delayed_work *dwork, unsigned long delay)
1407{
Tejun Heo57469822012-08-03 10:30:45 -07001408 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
Tejun Heo0a13c002012-08-03 10:30:44 -07001409}
1410EXPORT_SYMBOL_GPL(queue_delayed_work);
1411
1412/**
Tejun Heo8376fe22012-08-03 10:30:47 -07001413 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1414 * @cpu: CPU number to execute work on
1415 * @wq: workqueue to use
1416 * @dwork: work to queue
1417 * @delay: number of jiffies to wait before queueing
1418 *
1419 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1420 * modify @dwork's timer so that it expires after @delay. If @delay is
1421 * zero, @work is guaranteed to be scheduled immediately regardless of its
1422 * current state.
1423 *
1424 * Returns %false if @dwork was idle and queued, %true if @dwork was
1425 * pending and its timer was modified.
1426 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001427 * This function is safe to call from any context including IRQ handler.
Tejun Heo8376fe22012-08-03 10:30:47 -07001428 * See try_to_grab_pending() for details.
1429 */
1430bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1431 struct delayed_work *dwork, unsigned long delay)
1432{
1433 unsigned long flags;
1434 int ret;
1435
1436 do {
1437 ret = try_to_grab_pending(&dwork->work, true, &flags);
1438 } while (unlikely(ret == -EAGAIN));
1439
1440 if (likely(ret >= 0)) {
1441 __queue_delayed_work(cpu, wq, dwork, delay);
1442 local_irq_restore(flags);
1443 }
1444
1445 /* -ENOENT from try_to_grab_pending() becomes %true */
1446 return ret;
1447}
1448EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1449
1450/**
1451 * mod_delayed_work - modify delay of or queue a delayed work
1452 * @wq: workqueue to use
1453 * @dwork: work to queue
1454 * @delay: number of jiffies to wait before queueing
1455 *
1456 * mod_delayed_work_on() on local CPU.
1457 */
1458bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
1459 unsigned long delay)
1460{
1461 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
1462}
1463EXPORT_SYMBOL_GPL(mod_delayed_work);
1464
1465/**
Tejun Heoc8e55f32010-06-29 10:07:12 +02001466 * worker_enter_idle - enter idle state
1467 * @worker: worker which is entering idle state
1468 *
1469 * @worker is entering idle state. Update stats and idle timer if
1470 * necessary.
1471 *
1472 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001473 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001474 */
1475static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001477 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Tejun Heoc8e55f32010-06-29 10:07:12 +02001479 BUG_ON(worker->flags & WORKER_IDLE);
1480 BUG_ON(!list_empty(&worker->entry) &&
1481 (worker->hentry.next || worker->hentry.pprev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Tejun Heocb444762010-07-02 10:03:50 +02001483 /* can't use worker_set_flags(), also called from start_worker() */
1484 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001485 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001486 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001487
Tejun Heoc8e55f32010-06-29 10:07:12 +02001488 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001489 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001490
Tejun Heo628c78e2012-07-17 12:39:27 -07001491 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1492 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001493
Tejun Heo544ecf32012-05-14 15:04:50 -07001494 /*
Tejun Heo706026c2013-01-24 11:01:34 -08001495 * Sanity check nr_running. Because wq_unbind_fn() releases
Tejun Heod565ed62013-01-24 11:01:33 -08001496 * pool->lock between setting %WORKER_UNBOUND and zapping
Tejun Heo628c78e2012-07-17 12:39:27 -07001497 * nr_running, the warning may trigger spuriously. Check iff
1498 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001499 */
Tejun Heo24647572013-01-24 11:01:33 -08001500 WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001501 pool->nr_workers == pool->nr_idle &&
Tejun Heoe19e3972013-01-24 11:39:44 -08001502 atomic_read(&pool->nr_running));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
Tejun Heoc8e55f32010-06-29 10:07:12 +02001505/**
1506 * worker_leave_idle - leave idle state
1507 * @worker: worker which is leaving idle state
1508 *
1509 * @worker is leaving idle state. Update stats.
1510 *
1511 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001512 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001513 */
1514static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001516 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Tejun Heoc8e55f32010-06-29 10:07:12 +02001518 BUG_ON(!(worker->flags & WORKER_IDLE));
Tejun Heod302f012010-06-29 10:07:13 +02001519 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001520 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001521 list_del_init(&worker->entry);
1522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Tejun Heoe22bee72010-06-29 10:07:14 +02001524/**
Tejun Heo706026c2013-01-24 11:01:34 -08001525 * worker_maybe_bind_and_lock - bind worker to its cpu if possible and lock pool
Tejun Heoe22bee72010-06-29 10:07:14 +02001526 * @worker: self
1527 *
1528 * Works which are scheduled while the cpu is online must at least be
1529 * scheduled to a worker which is bound to the cpu so that if they are
1530 * flushed from cpu callbacks while cpu is going down, they are
1531 * guaranteed to execute on the cpu.
1532 *
1533 * This function is to be used by rogue workers and rescuers to bind
1534 * themselves to the target cpu and may race with cpu going down or
1535 * coming online. kthread_bind() can't be used because it may put the
1536 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
Tejun Heo706026c2013-01-24 11:01:34 -08001537 * verbatim as it's best effort and blocking and pool may be
Tejun Heoe22bee72010-06-29 10:07:14 +02001538 * [dis]associated in the meantime.
1539 *
Tejun Heo706026c2013-01-24 11:01:34 -08001540 * This function tries set_cpus_allowed() and locks pool and verifies the
Tejun Heo24647572013-01-24 11:01:33 -08001541 * binding against %POOL_DISASSOCIATED which is set during
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001542 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1543 * enters idle state or fetches works without dropping lock, it can
1544 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001545 *
1546 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001547 * Might sleep. Called without any lock but returns with pool->lock
Tejun Heoe22bee72010-06-29 10:07:14 +02001548 * held.
1549 *
1550 * RETURNS:
Tejun Heo706026c2013-01-24 11:01:34 -08001551 * %true if the associated pool is online (@worker is successfully
Tejun Heoe22bee72010-06-29 10:07:14 +02001552 * bound), %false if offline.
1553 */
1554static bool worker_maybe_bind_and_lock(struct worker *worker)
Tejun Heod565ed62013-01-24 11:01:33 -08001555__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001556{
Tejun Heo24647572013-01-24 11:01:33 -08001557 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001558 struct task_struct *task = worker->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Tejun Heoe22bee72010-06-29 10:07:14 +02001560 while (true) {
1561 /*
1562 * The following call may fail, succeed or succeed
1563 * without actually migrating the task to the cpu if
1564 * it races with cpu hotunplug operation. Verify
Tejun Heo24647572013-01-24 11:01:33 -08001565 * against POOL_DISASSOCIATED.
Tejun Heoe22bee72010-06-29 10:07:14 +02001566 */
Tejun Heo24647572013-01-24 11:01:33 -08001567 if (!(pool->flags & POOL_DISASSOCIATED))
Tejun Heoec22ca52013-01-24 11:01:33 -08001568 set_cpus_allowed_ptr(task, get_cpu_mask(pool->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001569
Tejun Heod565ed62013-01-24 11:01:33 -08001570 spin_lock_irq(&pool->lock);
Tejun Heo24647572013-01-24 11:01:33 -08001571 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heoe22bee72010-06-29 10:07:14 +02001572 return false;
Tejun Heoec22ca52013-01-24 11:01:33 -08001573 if (task_cpu(task) == pool->cpu &&
Tejun Heoe22bee72010-06-29 10:07:14 +02001574 cpumask_equal(&current->cpus_allowed,
Tejun Heoec22ca52013-01-24 11:01:33 -08001575 get_cpu_mask(pool->cpu)))
Tejun Heoe22bee72010-06-29 10:07:14 +02001576 return true;
Tejun Heod565ed62013-01-24 11:01:33 -08001577 spin_unlock_irq(&pool->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001578
Tejun Heo5035b202011-04-29 18:08:37 +02001579 /*
1580 * We've raced with CPU hot[un]plug. Give it a breather
1581 * and retry migration. cond_resched() is required here;
1582 * otherwise, we might deadlock against cpu_stop trying to
1583 * bring down the CPU on non-preemptive kernel.
1584 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001585 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001586 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001587 }
1588}
1589
1590/*
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001591 * Rebind an idle @worker to its CPU. worker_thread() will test
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001592 * list_empty(@worker->entry) before leaving idle and call this function.
Tejun Heo25511a42012-07-17 12:39:27 -07001593 */
1594static void idle_worker_rebind(struct worker *worker)
1595{
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001596 /* CPU may go down again inbetween, clear UNBOUND only on success */
1597 if (worker_maybe_bind_and_lock(worker))
1598 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heo25511a42012-07-17 12:39:27 -07001599
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001600 /* rebind complete, become available again */
1601 list_add(&worker->entry, &worker->pool->idle_list);
Tejun Heod565ed62013-01-24 11:01:33 -08001602 spin_unlock_irq(&worker->pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001603}
1604
1605/*
1606 * Function for @worker->rebind.work used to rebind unbound busy workers to
Tejun Heo403c8212012-07-17 12:39:27 -07001607 * the associated cpu which is coming back online. This is scheduled by
1608 * cpu up but can race with other cpu hotplug operations and may be
1609 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001610 */
Tejun Heo25511a42012-07-17 12:39:27 -07001611static void busy_worker_rebind_fn(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001612{
1613 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heoe22bee72010-06-29 10:07:14 +02001614
Lai Jiangshaneab6d822012-09-18 09:59:22 -07001615 if (worker_maybe_bind_and_lock(worker))
1616 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heoe22bee72010-06-29 10:07:14 +02001617
Tejun Heod565ed62013-01-24 11:01:33 -08001618 spin_unlock_irq(&worker->pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001619}
1620
Tejun Heo25511a42012-07-17 12:39:27 -07001621/**
Tejun Heo94cf58b2013-01-24 11:01:33 -08001622 * rebind_workers - rebind all workers of a pool to the associated CPU
1623 * @pool: pool of interest
Tejun Heo25511a42012-07-17 12:39:27 -07001624 *
Tejun Heo94cf58b2013-01-24 11:01:33 -08001625 * @pool->cpu is coming online. Rebind all workers to the CPU. Rebinding
Tejun Heo25511a42012-07-17 12:39:27 -07001626 * is different for idle and busy ones.
1627 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001628 * Idle ones will be removed from the idle_list and woken up. They will
1629 * add themselves back after completing rebind. This ensures that the
1630 * idle_list doesn't contain any unbound workers when re-bound busy workers
1631 * try to perform local wake-ups for concurrency management.
Tejun Heo25511a42012-07-17 12:39:27 -07001632 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001633 * Busy workers can rebind after they finish their current work items.
1634 * Queueing the rebind work item at the head of the scheduled list is
1635 * enough. Note that nr_running will be properly bumped as busy workers
1636 * rebind.
Tejun Heo25511a42012-07-17 12:39:27 -07001637 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001638 * On return, all non-manager workers are scheduled for rebind - see
1639 * manage_workers() for the manager special case. Any idle worker
1640 * including the manager will not appear on @idle_list until rebind is
1641 * complete, making local wake-ups safe.
Tejun Heo25511a42012-07-17 12:39:27 -07001642 */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001643static void rebind_workers(struct worker_pool *pool)
Tejun Heo25511a42012-07-17 12:39:27 -07001644{
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001645 struct worker *worker, *n;
Tejun Heo25511a42012-07-17 12:39:27 -07001646 struct hlist_node *pos;
1647 int i;
1648
Tejun Heo94cf58b2013-01-24 11:01:33 -08001649 lockdep_assert_held(&pool->assoc_mutex);
1650 lockdep_assert_held(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001651
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001652 /* dequeue and kick idle ones */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001653 list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
1654 /*
1655 * idle workers should be off @pool->idle_list until rebind
1656 * is complete to avoid receiving premature local wake-ups.
1657 */
1658 list_del_init(&worker->entry);
Lai Jiangshan96e65302012-09-02 00:28:19 +08001659
Tejun Heo94cf58b2013-01-24 11:01:33 -08001660 /*
1661 * worker_thread() will see the above dequeuing and call
1662 * idle_worker_rebind().
1663 */
1664 wake_up_process(worker->task);
1665 }
Tejun Heo25511a42012-07-17 12:39:27 -07001666
Tejun Heo94cf58b2013-01-24 11:01:33 -08001667 /* rebind busy workers */
1668 for_each_busy_worker(worker, i, pos, pool) {
1669 struct work_struct *rebind_work = &worker->rebind_work;
1670 struct workqueue_struct *wq;
Tejun Heo25511a42012-07-17 12:39:27 -07001671
Tejun Heo94cf58b2013-01-24 11:01:33 -08001672 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1673 work_data_bits(rebind_work)))
1674 continue;
Tejun Heo25511a42012-07-17 12:39:27 -07001675
Tejun Heo94cf58b2013-01-24 11:01:33 -08001676 debug_work_activate(rebind_work);
Tejun Heo90beca52012-09-04 23:12:33 -07001677
Tejun Heo94cf58b2013-01-24 11:01:33 -08001678 /*
1679 * wq doesn't really matter but let's keep @worker->pool
1680 * and @cwq->pool consistent for sanity.
1681 */
1682 if (std_worker_pool_pri(worker->pool))
1683 wq = system_highpri_wq;
1684 else
1685 wq = system_wq;
Tejun Heoec588152012-09-04 23:16:32 -07001686
Tejun Heo94cf58b2013-01-24 11:01:33 -08001687 insert_work(get_cwq(pool->cpu, wq), rebind_work,
1688 worker->scheduled.next,
1689 work_color_to_flags(WORK_NO_COLOR));
Tejun Heoec588152012-09-04 23:16:32 -07001690 }
Tejun Heo25511a42012-07-17 12:39:27 -07001691}
1692
Tejun Heoc34056a2010-06-29 10:07:11 +02001693static struct worker *alloc_worker(void)
1694{
1695 struct worker *worker;
1696
1697 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001698 if (worker) {
1699 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001700 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001701 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001702 /* on creation a worker is in !idle && prep state */
1703 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001704 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001705 return worker;
1706}
1707
1708/**
1709 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001710 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001711 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001712 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001713 * can be started by calling start_worker() or destroyed using
1714 * destroy_worker().
1715 *
1716 * CONTEXT:
1717 * Might sleep. Does GFP_KERNEL allocations.
1718 *
1719 * RETURNS:
1720 * Pointer to the newly created worker.
1721 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001722static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001723{
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001724 const char *pri = std_worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001725 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001726 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001727
Tejun Heod565ed62013-01-24 11:01:33 -08001728 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001729 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heod565ed62013-01-24 11:01:33 -08001730 spin_unlock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001731 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001732 goto fail;
Tejun Heod565ed62013-01-24 11:01:33 -08001733 spin_lock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001734 }
Tejun Heod565ed62013-01-24 11:01:33 -08001735 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001736
1737 worker = alloc_worker();
1738 if (!worker)
1739 goto fail;
1740
Tejun Heobd7bdd42012-07-12 14:46:37 -07001741 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001742 worker->id = id;
1743
Tejun Heoec22ca52013-01-24 11:01:33 -08001744 if (pool->cpu != WORK_CPU_UNBOUND)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001745 worker->task = kthread_create_on_node(worker_thread,
Tejun Heoec22ca52013-01-24 11:01:33 -08001746 worker, cpu_to_node(pool->cpu),
1747 "kworker/%u:%d%s", pool->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001748 else
1749 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001750 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001751 if (IS_ERR(worker->task))
1752 goto fail;
1753
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001754 if (std_worker_pool_pri(pool))
Tejun Heo32704762012-07-13 22:16:45 -07001755 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1756
Tejun Heodb7bccf2010-06-29 10:07:12 +02001757 /*
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001758 * Determine CPU binding of the new worker depending on
Tejun Heo24647572013-01-24 11:01:33 -08001759 * %POOL_DISASSOCIATED. The caller is responsible for ensuring the
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001760 * flag remains stable across this function. See the comments
1761 * above the flag definition for details.
1762 *
1763 * As an unbound worker may later become a regular one if CPU comes
1764 * online, make sure every worker has %PF_THREAD_BOUND set.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001765 */
Tejun Heo24647572013-01-24 11:01:33 -08001766 if (!(pool->flags & POOL_DISASSOCIATED)) {
Tejun Heoec22ca52013-01-24 11:01:33 -08001767 kthread_bind(worker->task, pool->cpu);
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001768 } else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001769 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001770 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001772
Tejun Heoc34056a2010-06-29 10:07:11 +02001773 return worker;
1774fail:
1775 if (id >= 0) {
Tejun Heod565ed62013-01-24 11:01:33 -08001776 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001777 ida_remove(&pool->worker_ida, id);
Tejun Heod565ed62013-01-24 11:01:33 -08001778 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001779 }
1780 kfree(worker);
1781 return NULL;
1782}
1783
1784/**
1785 * start_worker - start a newly created worker
1786 * @worker: worker to start
1787 *
Tejun Heo706026c2013-01-24 11:01:34 -08001788 * Make the pool aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001789 *
1790 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001791 * spin_lock_irq(pool->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001792 */
1793static void start_worker(struct worker *worker)
1794{
Tejun Heocb444762010-07-02 10:03:50 +02001795 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001796 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001797 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001798 wake_up_process(worker->task);
1799}
1800
1801/**
1802 * destroy_worker - destroy a workqueue worker
1803 * @worker: worker to be destroyed
1804 *
Tejun Heo706026c2013-01-24 11:01:34 -08001805 * Destroy @worker and adjust @pool stats accordingly.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001806 *
1807 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001808 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001809 */
1810static void destroy_worker(struct worker *worker)
1811{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001812 struct worker_pool *pool = worker->pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001813 int id = worker->id;
1814
1815 /* sanity check frenzy */
1816 BUG_ON(worker->current_work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001817 BUG_ON(!list_empty(&worker->scheduled));
Tejun Heoc34056a2010-06-29 10:07:11 +02001818
Tejun Heoc8e55f32010-06-29 10:07:12 +02001819 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001820 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001821 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001822 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001823
1824 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001825 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001826
Tejun Heod565ed62013-01-24 11:01:33 -08001827 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001828
Tejun Heoc34056a2010-06-29 10:07:11 +02001829 kthread_stop(worker->task);
1830 kfree(worker);
1831
Tejun Heod565ed62013-01-24 11:01:33 -08001832 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001833 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001834}
1835
Tejun Heo63d95a92012-07-12 14:46:37 -07001836static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001837{
Tejun Heo63d95a92012-07-12 14:46:37 -07001838 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001839
Tejun Heod565ed62013-01-24 11:01:33 -08001840 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001841
Tejun Heo63d95a92012-07-12 14:46:37 -07001842 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001843 struct worker *worker;
1844 unsigned long expires;
1845
1846 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001847 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001848 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1849
1850 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001851 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001852 else {
1853 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001854 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001855 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001856 }
1857 }
1858
Tejun Heod565ed62013-01-24 11:01:33 -08001859 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001860}
1861
1862static bool send_mayday(struct work_struct *work)
1863{
1864 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
1865 struct workqueue_struct *wq = cwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001866 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001867
1868 if (!(wq->flags & WQ_RESCUER))
1869 return false;
1870
1871 /* mayday mayday mayday */
Tejun Heoec22ca52013-01-24 11:01:33 -08001872 cpu = cwq->pool->cpu;
Tejun Heof3421792010-07-02 10:03:51 +02001873 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1874 if (cpu == WORK_CPU_UNBOUND)
1875 cpu = 0;
Tejun Heof2e005a2010-07-20 15:59:09 +02001876 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001877 wake_up_process(wq->rescuer->task);
1878 return true;
1879}
1880
Tejun Heo706026c2013-01-24 11:01:34 -08001881static void pool_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001882{
Tejun Heo63d95a92012-07-12 14:46:37 -07001883 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001884 struct work_struct *work;
1885
Tejun Heod565ed62013-01-24 11:01:33 -08001886 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001887
Tejun Heo63d95a92012-07-12 14:46:37 -07001888 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001889 /*
1890 * We've been trying to create a new worker but
1891 * haven't been successful. We might be hitting an
1892 * allocation deadlock. Send distress signals to
1893 * rescuers.
1894 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001895 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001896 send_mayday(work);
1897 }
1898
Tejun Heod565ed62013-01-24 11:01:33 -08001899 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001900
Tejun Heo63d95a92012-07-12 14:46:37 -07001901 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001902}
1903
1904/**
1905 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001906 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001907 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001908 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001909 * have at least one idle worker on return from this function. If
1910 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001911 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001912 * possible allocation deadlock.
1913 *
1914 * On return, need_to_create_worker() is guaranteed to be false and
1915 * may_start_working() true.
1916 *
1917 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001918 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001919 * multiple times. Does GFP_KERNEL allocations. Called only from
1920 * manager.
1921 *
1922 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001923 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001924 * otherwise.
1925 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001926static bool maybe_create_worker(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001927__releases(&pool->lock)
1928__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001929{
Tejun Heo63d95a92012-07-12 14:46:37 -07001930 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001931 return false;
1932restart:
Tejun Heod565ed62013-01-24 11:01:33 -08001933 spin_unlock_irq(&pool->lock);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001934
Tejun Heoe22bee72010-06-29 10:07:14 +02001935 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001936 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001937
1938 while (true) {
1939 struct worker *worker;
1940
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001941 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001942 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001943 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001944 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001945 start_worker(worker);
Tejun Heo63d95a92012-07-12 14:46:37 -07001946 BUG_ON(need_to_create_worker(pool));
Tejun Heoe22bee72010-06-29 10:07:14 +02001947 return true;
1948 }
1949
Tejun Heo63d95a92012-07-12 14:46:37 -07001950 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001951 break;
1952
Tejun Heoe22bee72010-06-29 10:07:14 +02001953 __set_current_state(TASK_INTERRUPTIBLE);
1954 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001955
Tejun Heo63d95a92012-07-12 14:46:37 -07001956 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001957 break;
1958 }
1959
Tejun Heo63d95a92012-07-12 14:46:37 -07001960 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001961 spin_lock_irq(&pool->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001962 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001963 goto restart;
1964 return true;
1965}
1966
1967/**
1968 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001969 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001970 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001971 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001972 * IDLE_WORKER_TIMEOUT.
1973 *
1974 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001975 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001976 * multiple times. Called only from manager.
1977 *
1978 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001979 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001980 * otherwise.
1981 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001982static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001983{
1984 bool ret = false;
1985
Tejun Heo63d95a92012-07-12 14:46:37 -07001986 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001987 struct worker *worker;
1988 unsigned long expires;
1989
Tejun Heo63d95a92012-07-12 14:46:37 -07001990 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001991 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1992
1993 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001994 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001995 break;
1996 }
1997
1998 destroy_worker(worker);
1999 ret = true;
2000 }
2001
2002 return ret;
2003}
2004
2005/**
2006 * manage_workers - manage worker pool
2007 * @worker: self
2008 *
Tejun Heo706026c2013-01-24 11:01:34 -08002009 * Assume the manager role and manage the worker pool @worker belongs
Tejun Heoe22bee72010-06-29 10:07:14 +02002010 * to. At any given time, there can be only zero or one manager per
Tejun Heo706026c2013-01-24 11:01:34 -08002011 * pool. The exclusion is handled automatically by this function.
Tejun Heoe22bee72010-06-29 10:07:14 +02002012 *
2013 * The caller can safely start processing works on false return. On
2014 * true return, it's guaranteed that need_to_create_worker() is false
2015 * and may_start_working() is true.
2016 *
2017 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002018 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02002019 * multiple times. Does GFP_KERNEL allocations.
2020 *
2021 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08002022 * spin_lock_irq(pool->lock) which may be released and regrabbed
2023 * multiple times. Does GFP_KERNEL allocations.
Tejun Heoe22bee72010-06-29 10:07:14 +02002024 */
2025static bool manage_workers(struct worker *worker)
2026{
Tejun Heo63d95a92012-07-12 14:46:37 -07002027 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002028 bool ret = false;
2029
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002030 if (pool->flags & POOL_MANAGING_WORKERS)
Tejun Heoe22bee72010-06-29 10:07:14 +02002031 return ret;
2032
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002033 pool->flags |= POOL_MANAGING_WORKERS;
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002034
2035 /*
2036 * To simplify both worker management and CPU hotplug, hold off
2037 * management while hotplug is in progress. CPU hotplug path can't
2038 * grab %POOL_MANAGING_WORKERS to achieve this because that can
2039 * lead to idle worker depletion (all become busy thinking someone
2040 * else is managing) which in turn can result in deadlock under
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002041 * extreme circumstances. Use @pool->assoc_mutex to synchronize
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002042 * manager against CPU hotplug.
2043 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002044 * assoc_mutex would always be free unless CPU hotplug is in
Tejun Heod565ed62013-01-24 11:01:33 -08002045 * progress. trylock first without dropping @pool->lock.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002046 */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002047 if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002048 spin_unlock_irq(&pool->lock);
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002049 mutex_lock(&pool->assoc_mutex);
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002050 /*
2051 * CPU hotplug could have happened while we were waiting
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002052 * for assoc_mutex. Hotplug itself can't handle us
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002053 * because manager isn't either on idle or busy list, and
Tejun Heo706026c2013-01-24 11:01:34 -08002054 * @pool's state and ours could have deviated.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002055 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002056 * As hotplug is now excluded via assoc_mutex, we can
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002057 * simply try to bind. It will succeed or fail depending
Tejun Heo706026c2013-01-24 11:01:34 -08002058 * on @pool's current state. Try it and adjust
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002059 * %WORKER_UNBOUND accordingly.
2060 */
2061 if (worker_maybe_bind_and_lock(worker))
2062 worker->flags &= ~WORKER_UNBOUND;
2063 else
2064 worker->flags |= WORKER_UNBOUND;
2065
2066 ret = true;
2067 }
2068
Tejun Heo11ebea52012-07-12 14:46:37 -07002069 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02002070
2071 /*
2072 * Destroy and then create so that may_start_working() is true
2073 * on return.
2074 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002075 ret |= maybe_destroy_workers(pool);
2076 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02002077
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002078 pool->flags &= ~POOL_MANAGING_WORKERS;
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002079 mutex_unlock(&pool->assoc_mutex);
Tejun Heoe22bee72010-06-29 10:07:14 +02002080 return ret;
2081}
2082
Tejun Heoa62428c2010-06-29 10:07:10 +02002083/**
2084 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02002085 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02002086 * @work: work to process
2087 *
2088 * Process @work. This function contains all the logics necessary to
2089 * process a single work including synchronization against and
2090 * interaction with other workers on the same cpu, queueing and
2091 * flushing. As long as context requirement is met, any worker can
2092 * call this function to process a work.
2093 *
2094 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002095 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002096 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002097static void process_one_work(struct worker *worker, struct work_struct *work)
Tejun Heod565ed62013-01-24 11:01:33 -08002098__releases(&pool->lock)
2099__acquires(&pool->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002100{
Tejun Heo7e116292010-06-29 10:07:13 +02002101 struct cpu_workqueue_struct *cwq = get_work_cwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002102 struct worker_pool *pool = worker->pool;
Tejun Heofb0e7be2010-06-29 10:07:15 +02002103 bool cpu_intensive = cwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heo73f53c42010-06-29 10:07:11 +02002104 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002105 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002106#ifdef CONFIG_LOCKDEP
2107 /*
2108 * It is permissible to free the struct work_struct from
2109 * inside the function that is called from it, this we need to
2110 * take into account for lockdep too. To avoid bogus "held
2111 * lock freed" warnings as well as problems when looking into
2112 * work->lockdep_map, make a copy and use that here.
2113 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002114 struct lockdep_map lockdep_map;
2115
2116 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002117#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002118 /*
2119 * Ensure we're on the correct CPU. DISASSOCIATED test is
2120 * necessary to avoid spurious warnings from rescuers servicing the
Tejun Heo24647572013-01-24 11:01:33 -08002121 * unbound or a disassociated pool.
Tejun Heo6fec10a2012-07-22 10:16:34 -07002122 */
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002123 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
Tejun Heo24647572013-01-24 11:01:33 -08002124 !(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heoec22ca52013-01-24 11:01:33 -08002125 raw_smp_processor_id() != pool->cpu);
Tejun Heo25511a42012-07-17 12:39:27 -07002126
Tejun Heo7e116292010-06-29 10:07:13 +02002127 /*
2128 * A single work shouldn't be executed concurrently by
2129 * multiple workers on a single cpu. Check whether anyone is
2130 * already processing the work. If so, defer the work to the
2131 * currently executing one.
2132 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002133 collision = find_worker_executing_work(pool, work);
Tejun Heo7e116292010-06-29 10:07:13 +02002134 if (unlikely(collision)) {
2135 move_linked_works(work, &collision->scheduled, NULL);
2136 return;
2137 }
2138
Tejun Heo8930cab2012-08-03 10:30:45 -07002139 /* claim and dequeue */
Tejun Heoa62428c2010-06-29 10:07:10 +02002140 debug_work_deactivate(work);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002141 hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work);
Tejun Heoc34056a2010-06-29 10:07:11 +02002142 worker->current_work = work;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002143 worker->current_func = work->func;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02002144 worker->current_cwq = cwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002145 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002146
Tejun Heoa62428c2010-06-29 10:07:10 +02002147 list_del_init(&work->entry);
2148
Tejun Heo649027d2010-06-29 10:07:14 +02002149 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002150 * CPU intensive works don't participate in concurrency
2151 * management. They're the scheduler's responsibility.
2152 */
2153 if (unlikely(cpu_intensive))
2154 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2155
Tejun Heo974271c2012-07-12 14:46:37 -07002156 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002157 * Unbound pool isn't concurrency managed and work items should be
Tejun Heo974271c2012-07-12 14:46:37 -07002158 * executed ASAP. Wake up another worker if necessary.
2159 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002160 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2161 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002162
Tejun Heo8930cab2012-08-03 10:30:45 -07002163 /*
Tejun Heo7c3eed52013-01-24 11:01:33 -08002164 * Record the last pool and clear PENDING which should be the last
Tejun Heod565ed62013-01-24 11:01:33 -08002165 * update to @work. Also, do this inside @pool->lock so that
Tejun Heo23657bb2012-08-13 17:08:19 -07002166 * PENDING and queued state changes happen together while IRQ is
2167 * disabled.
Tejun Heo8930cab2012-08-03 10:30:45 -07002168 */
Tejun Heo7c3eed52013-01-24 11:01:33 -08002169 set_work_pool_and_clear_pending(work, pool->id);
Tejun Heoa62428c2010-06-29 10:07:10 +02002170
Tejun Heod565ed62013-01-24 11:01:33 -08002171 spin_unlock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002172
Tejun Heoe1594892011-01-09 23:32:15 +01002173 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002174 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002175 trace_workqueue_execute_start(work);
Tejun Heoa2c1c572012-12-18 10:35:02 -08002176 worker->current_func(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002177 /*
2178 * While we must be careful to not use "work" after this, the trace
2179 * point will only record its address.
2180 */
2181 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002182 lock_map_release(&lockdep_map);
2183 lock_map_release(&cwq->wq->lockdep_map);
2184
2185 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
Valentin Ilie044c7822012-08-19 00:52:42 +03002186 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2187 " last function: %pf\n",
Tejun Heoa2c1c572012-12-18 10:35:02 -08002188 current->comm, preempt_count(), task_pid_nr(current),
2189 worker->current_func);
Tejun Heoa62428c2010-06-29 10:07:10 +02002190 debug_show_held_locks(current);
2191 dump_stack();
2192 }
2193
Tejun Heod565ed62013-01-24 11:01:33 -08002194 spin_lock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002195
Tejun Heofb0e7be2010-06-29 10:07:15 +02002196 /* clear cpu intensive status */
2197 if (unlikely(cpu_intensive))
2198 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2199
Tejun Heoa62428c2010-06-29 10:07:10 +02002200 /* we're done with it, release */
Sasha Levin42f85702012-12-17 10:01:23 -05002201 hash_del(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002202 worker->current_work = NULL;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002203 worker->current_func = NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +02002204 worker->current_cwq = NULL;
Lai Jiangshanb3f9f402012-09-18 10:40:00 -07002205 cwq_dec_nr_in_flight(cwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02002206}
2207
Tejun Heoaffee4b2010-06-29 10:07:12 +02002208/**
2209 * process_scheduled_works - process scheduled works
2210 * @worker: self
2211 *
2212 * Process all scheduled works. Please note that the scheduled list
2213 * may change while processing a work, so this function repeatedly
2214 * fetches a work from the top and executes it.
2215 *
2216 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002217 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002218 * multiple times.
2219 */
2220static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002222 while (!list_empty(&worker->scheduled)) {
2223 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002225 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
Tejun Heo4690c4a2010-06-29 10:07:10 +02002229/**
2230 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002231 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002232 *
Tejun Heo706026c2013-01-24 11:01:34 -08002233 * The worker thread function. There are NR_CPU_WORKER_POOLS dynamic pools
2234 * of these per each cpu. These workers process all works regardless of
Tejun Heoe22bee72010-06-29 10:07:14 +02002235 * their specific target workqueue. The only exception is works which
2236 * belong to workqueues with a rescuer which will be explained in
2237 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002238 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002239static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Tejun Heoc34056a2010-06-29 10:07:11 +02002241 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002242 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Tejun Heoe22bee72010-06-29 10:07:14 +02002244 /* tell the scheduler that this is a workqueue worker */
2245 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002246woke_up:
Tejun Heod565ed62013-01-24 11:01:33 -08002247 spin_lock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002249 /* we are off idle list if destruction or rebind is requested */
2250 if (unlikely(list_empty(&worker->entry))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002251 spin_unlock_irq(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002252
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002253 /* if DIE is set, destruction is requested */
Tejun Heo25511a42012-07-17 12:39:27 -07002254 if (worker->flags & WORKER_DIE) {
2255 worker->task->flags &= ~PF_WQ_WORKER;
2256 return 0;
2257 }
2258
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002259 /* otherwise, rebind */
Tejun Heo25511a42012-07-17 12:39:27 -07002260 idle_worker_rebind(worker);
2261 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263
Tejun Heoc8e55f32010-06-29 10:07:12 +02002264 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002265recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002266 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002267 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002268 goto sleep;
2269
2270 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002271 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002272 goto recheck;
2273
Tejun Heoc8e55f32010-06-29 10:07:12 +02002274 /*
2275 * ->scheduled list can only be filled while a worker is
2276 * preparing to process a work or actually processing it.
2277 * Make sure nobody diddled with it while I was sleeping.
2278 */
2279 BUG_ON(!list_empty(&worker->scheduled));
2280
Tejun Heoe22bee72010-06-29 10:07:14 +02002281 /*
2282 * When control reaches this point, we're guaranteed to have
2283 * at least one idle worker or that someone else has already
2284 * assumed the manager role.
2285 */
2286 worker_clr_flags(worker, WORKER_PREP);
2287
2288 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002289 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002290 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002291 struct work_struct, entry);
2292
2293 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2294 /* optimization path, not strictly necessary */
2295 process_one_work(worker, work);
2296 if (unlikely(!list_empty(&worker->scheduled)))
2297 process_scheduled_works(worker);
2298 } else {
2299 move_linked_works(work, &worker->scheduled, NULL);
2300 process_scheduled_works(worker);
2301 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002302 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002303
Tejun Heoe22bee72010-06-29 10:07:14 +02002304 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002305sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002306 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002307 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002308
Tejun Heoc8e55f32010-06-29 10:07:12 +02002309 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002310 * pool->lock is held and there's no work to process and no need to
2311 * manage, sleep. Workers are woken up only while holding
2312 * pool->lock or from local cpu, so setting the current state
2313 * before releasing pool->lock is enough to prevent losing any
2314 * event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002315 */
2316 worker_enter_idle(worker);
2317 __set_current_state(TASK_INTERRUPTIBLE);
Tejun Heod565ed62013-01-24 11:01:33 -08002318 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002319 schedule();
2320 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
2322
Tejun Heoe22bee72010-06-29 10:07:14 +02002323/**
2324 * rescuer_thread - the rescuer thread function
Tejun Heo111c2252013-01-17 17:16:24 -08002325 * @__rescuer: self
Tejun Heoe22bee72010-06-29 10:07:14 +02002326 *
2327 * Workqueue rescuer thread function. There's one rescuer for each
2328 * workqueue which has WQ_RESCUER set.
2329 *
Tejun Heo706026c2013-01-24 11:01:34 -08002330 * Regular work processing on a pool may block trying to create a new
Tejun Heoe22bee72010-06-29 10:07:14 +02002331 * worker which uses GFP_KERNEL allocation which has slight chance of
2332 * developing into deadlock if some works currently on the same queue
2333 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2334 * the problem rescuer solves.
2335 *
Tejun Heo706026c2013-01-24 11:01:34 -08002336 * When such condition is possible, the pool summons rescuers of all
2337 * workqueues which have works queued on the pool and let them process
Tejun Heoe22bee72010-06-29 10:07:14 +02002338 * those works so that forward progress can be guaranteed.
2339 *
2340 * This should happen rarely.
2341 */
Tejun Heo111c2252013-01-17 17:16:24 -08002342static int rescuer_thread(void *__rescuer)
Tejun Heoe22bee72010-06-29 10:07:14 +02002343{
Tejun Heo111c2252013-01-17 17:16:24 -08002344 struct worker *rescuer = __rescuer;
2345 struct workqueue_struct *wq = rescuer->rescue_wq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002346 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02002347 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02002348 unsigned int cpu;
2349
2350 set_user_nice(current, RESCUER_NICE_LEVEL);
Tejun Heo111c2252013-01-17 17:16:24 -08002351
2352 /*
2353 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2354 * doesn't participate in concurrency management.
2355 */
2356 rescuer->task->flags |= PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002357repeat:
2358 set_current_state(TASK_INTERRUPTIBLE);
2359
Mike Galbraith412d32e2012-11-28 07:17:18 +01002360 if (kthread_should_stop()) {
2361 __set_current_state(TASK_RUNNING);
Tejun Heo111c2252013-01-17 17:16:24 -08002362 rescuer->task->flags &= ~PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002363 return 0;
Mike Galbraith412d32e2012-11-28 07:17:18 +01002364 }
Tejun Heoe22bee72010-06-29 10:07:14 +02002365
Tejun Heof3421792010-07-02 10:03:51 +02002366 /*
2367 * See whether any cpu is asking for help. Unbounded
2368 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2369 */
Tejun Heof2e005a2010-07-20 15:59:09 +02002370 for_each_mayday_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02002371 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
2372 struct cpu_workqueue_struct *cwq = get_cwq(tcpu, wq);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002373 struct worker_pool *pool = cwq->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002374 struct work_struct *work, *n;
2375
2376 __set_current_state(TASK_RUNNING);
Tejun Heof2e005a2010-07-20 15:59:09 +02002377 mayday_clear_cpu(cpu, wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02002378
2379 /* migrate to the target cpu if possible */
Tejun Heobd7bdd42012-07-12 14:46:37 -07002380 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002381 worker_maybe_bind_and_lock(rescuer);
2382
2383 /*
2384 * Slurp in all works issued via this workqueue and
2385 * process'em.
2386 */
2387 BUG_ON(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002388 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02002389 if (get_work_cwq(work) == cwq)
2390 move_linked_works(work, scheduled, &n);
2391
2392 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002393
2394 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002395 * Leave this pool. If keep_working() is %true, notify a
Tejun Heo75769582011-02-14 14:04:46 +01002396 * regular worker; otherwise, we end up with 0 concurrency
2397 * and stalling the execution.
2398 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002399 if (keep_working(pool))
2400 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002401
Tejun Heod565ed62013-01-24 11:01:33 -08002402 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002403 }
2404
Tejun Heo111c2252013-01-17 17:16:24 -08002405 /* rescuers should never participate in concurrency management */
2406 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
Tejun Heoe22bee72010-06-29 10:07:14 +02002407 schedule();
2408 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409}
2410
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002411struct wq_barrier {
2412 struct work_struct work;
2413 struct completion done;
2414};
2415
2416static void wq_barrier_func(struct work_struct *work)
2417{
2418 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2419 complete(&barr->done);
2420}
2421
Tejun Heo4690c4a2010-06-29 10:07:10 +02002422/**
2423 * insert_wq_barrier - insert a barrier work
2424 * @cwq: cwq to insert barrier into
2425 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002426 * @target: target work to attach @barr to
2427 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002428 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002429 * @barr is linked to @target such that @barr is completed only after
2430 * @target finishes execution. Please note that the ordering
2431 * guarantee is observed only with respect to @target and on the local
2432 * cpu.
2433 *
2434 * Currently, a queued barrier can't be canceled. This is because
2435 * try_to_grab_pending() can't determine whether the work to be
2436 * grabbed is at the head of the queue and thus can't clear LINKED
2437 * flag of the previous work while there must be a valid next work
2438 * after a work with LINKED flag set.
2439 *
2440 * Note that when @worker is non-NULL, @target may be modified
2441 * underneath us, so we can't reliably determine cwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002442 *
2443 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002444 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002445 */
Oleg Nesterov83c22522007-05-09 02:33:54 -07002446static void insert_wq_barrier(struct cpu_workqueue_struct *cwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002447 struct wq_barrier *barr,
2448 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002449{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002450 struct list_head *head;
2451 unsigned int linked = 0;
2452
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002453 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002454 * debugobject calls are safe here even with pool->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002455 * as we know for sure that this will not trigger any of the
2456 * checks and call back into the fixup functions where we
2457 * might deadlock.
2458 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002459 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002460 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002461 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002462
Tejun Heoaffee4b2010-06-29 10:07:12 +02002463 /*
2464 * If @target is currently being executed, schedule the
2465 * barrier to the worker; otherwise, put it after @target.
2466 */
2467 if (worker)
2468 head = worker->scheduled.next;
2469 else {
2470 unsigned long *bits = work_data_bits(target);
2471
2472 head = target->entry.next;
2473 /* there can already be other linked works, inherit and set */
2474 linked = *bits & WORK_STRUCT_LINKED;
2475 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2476 }
2477
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002478 debug_work_activate(&barr->work);
Tejun Heoaffee4b2010-06-29 10:07:12 +02002479 insert_work(cwq, &barr->work, head,
2480 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002481}
2482
Tejun Heo73f53c42010-06-29 10:07:11 +02002483/**
2484 * flush_workqueue_prep_cwqs - prepare cwqs for workqueue flushing
2485 * @wq: workqueue being flushed
2486 * @flush_color: new flush color, < 0 for no-op
2487 * @work_color: new work color, < 0 for no-op
2488 *
2489 * Prepare cwqs for workqueue flushing.
2490 *
2491 * If @flush_color is non-negative, flush_color on all cwqs should be
2492 * -1. If no cwq has in-flight commands at the specified color, all
2493 * cwq->flush_color's stay at -1 and %false is returned. If any cwq
2494 * has in flight commands, its cwq->flush_color is set to
2495 * @flush_color, @wq->nr_cwqs_to_flush is updated accordingly, cwq
2496 * wakeup logic is armed and %true is returned.
2497 *
2498 * The caller should have initialized @wq->first_flusher prior to
2499 * calling this function with non-negative @flush_color. If
2500 * @flush_color is negative, no flush color update is done and %false
2501 * is returned.
2502 *
2503 * If @work_color is non-negative, all cwqs should have the same
2504 * work_color which is previous to @work_color and all will be
2505 * advanced to @work_color.
2506 *
2507 * CONTEXT:
2508 * mutex_lock(wq->flush_mutex).
2509 *
2510 * RETURNS:
2511 * %true if @flush_color >= 0 and there's something to flush. %false
2512 * otherwise.
2513 */
2514static bool flush_workqueue_prep_cwqs(struct workqueue_struct *wq,
2515 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516{
Tejun Heo73f53c42010-06-29 10:07:11 +02002517 bool wait = false;
2518 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002519
Tejun Heo73f53c42010-06-29 10:07:11 +02002520 if (flush_color >= 0) {
2521 BUG_ON(atomic_read(&wq->nr_cwqs_to_flush));
2522 atomic_set(&wq->nr_cwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002523 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002524
Tejun Heof3421792010-07-02 10:03:51 +02002525 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02002526 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heod565ed62013-01-24 11:01:33 -08002527 struct worker_pool *pool = cwq->pool;
Tejun Heo73f53c42010-06-29 10:07:11 +02002528
Tejun Heod565ed62013-01-24 11:01:33 -08002529 spin_lock_irq(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002530
2531 if (flush_color >= 0) {
2532 BUG_ON(cwq->flush_color != -1);
2533
2534 if (cwq->nr_in_flight[flush_color]) {
2535 cwq->flush_color = flush_color;
2536 atomic_inc(&wq->nr_cwqs_to_flush);
2537 wait = true;
2538 }
2539 }
2540
2541 if (work_color >= 0) {
2542 BUG_ON(work_color != work_next_color(cwq->work_color));
2543 cwq->work_color = work_color;
2544 }
2545
Tejun Heod565ed62013-01-24 11:01:33 -08002546 spin_unlock_irq(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002547 }
2548
2549 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_cwqs_to_flush))
2550 complete(&wq->first_flusher->done);
2551
2552 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553}
2554
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002555/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002557 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 *
2559 * Forces execution of the workqueue and blocks until its completion.
2560 * This is typically used in driver shutdown handlers.
2561 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002562 * We sleep until all works which were queued on entry have been handled,
2563 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002565void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
Tejun Heo73f53c42010-06-29 10:07:11 +02002567 struct wq_flusher this_flusher = {
2568 .list = LIST_HEAD_INIT(this_flusher.list),
2569 .flush_color = -1,
2570 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2571 };
2572 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002573
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002574 lock_map_acquire(&wq->lockdep_map);
2575 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002576
2577 mutex_lock(&wq->flush_mutex);
2578
2579 /*
2580 * Start-to-wait phase
2581 */
2582 next_color = work_next_color(wq->work_color);
2583
2584 if (next_color != wq->flush_color) {
2585 /*
2586 * Color space is not full. The current work_color
2587 * becomes our flush_color and work_color is advanced
2588 * by one.
2589 */
2590 BUG_ON(!list_empty(&wq->flusher_overflow));
2591 this_flusher.flush_color = wq->work_color;
2592 wq->work_color = next_color;
2593
2594 if (!wq->first_flusher) {
2595 /* no flush in progress, become the first flusher */
2596 BUG_ON(wq->flush_color != this_flusher.flush_color);
2597
2598 wq->first_flusher = &this_flusher;
2599
2600 if (!flush_workqueue_prep_cwqs(wq, wq->flush_color,
2601 wq->work_color)) {
2602 /* nothing to flush, done */
2603 wq->flush_color = next_color;
2604 wq->first_flusher = NULL;
2605 goto out_unlock;
2606 }
2607 } else {
2608 /* wait in queue */
2609 BUG_ON(wq->flush_color == this_flusher.flush_color);
2610 list_add_tail(&this_flusher.list, &wq->flusher_queue);
2611 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2612 }
2613 } else {
2614 /*
2615 * Oops, color space is full, wait on overflow queue.
2616 * The next flush completion will assign us
2617 * flush_color and transfer to flusher_queue.
2618 */
2619 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2620 }
2621
2622 mutex_unlock(&wq->flush_mutex);
2623
2624 wait_for_completion(&this_flusher.done);
2625
2626 /*
2627 * Wake-up-and-cascade phase
2628 *
2629 * First flushers are responsible for cascading flushes and
2630 * handling overflow. Non-first flushers can simply return.
2631 */
2632 if (wq->first_flusher != &this_flusher)
2633 return;
2634
2635 mutex_lock(&wq->flush_mutex);
2636
Tejun Heo4ce48b32010-07-02 10:03:51 +02002637 /* we might have raced, check again with mutex held */
2638 if (wq->first_flusher != &this_flusher)
2639 goto out_unlock;
2640
Tejun Heo73f53c42010-06-29 10:07:11 +02002641 wq->first_flusher = NULL;
2642
2643 BUG_ON(!list_empty(&this_flusher.list));
2644 BUG_ON(wq->flush_color != this_flusher.flush_color);
2645
2646 while (true) {
2647 struct wq_flusher *next, *tmp;
2648
2649 /* complete all the flushers sharing the current flush color */
2650 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2651 if (next->flush_color != wq->flush_color)
2652 break;
2653 list_del_init(&next->list);
2654 complete(&next->done);
2655 }
2656
2657 BUG_ON(!list_empty(&wq->flusher_overflow) &&
2658 wq->flush_color != work_next_color(wq->work_color));
2659
2660 /* this flush_color is finished, advance by one */
2661 wq->flush_color = work_next_color(wq->flush_color);
2662
2663 /* one color has been freed, handle overflow queue */
2664 if (!list_empty(&wq->flusher_overflow)) {
2665 /*
2666 * Assign the same color to all overflowed
2667 * flushers, advance work_color and append to
2668 * flusher_queue. This is the start-to-wait
2669 * phase for these overflowed flushers.
2670 */
2671 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2672 tmp->flush_color = wq->work_color;
2673
2674 wq->work_color = work_next_color(wq->work_color);
2675
2676 list_splice_tail_init(&wq->flusher_overflow,
2677 &wq->flusher_queue);
2678 flush_workqueue_prep_cwqs(wq, -1, wq->work_color);
2679 }
2680
2681 if (list_empty(&wq->flusher_queue)) {
2682 BUG_ON(wq->flush_color != wq->work_color);
2683 break;
2684 }
2685
2686 /*
2687 * Need to flush more colors. Make the next flusher
2688 * the new first flusher and arm cwqs.
2689 */
2690 BUG_ON(wq->flush_color == wq->work_color);
2691 BUG_ON(wq->flush_color != next->flush_color);
2692
2693 list_del_init(&next->list);
2694 wq->first_flusher = next;
2695
2696 if (flush_workqueue_prep_cwqs(wq, wq->flush_color, -1))
2697 break;
2698
2699 /*
2700 * Meh... this color is already done, clear first
2701 * flusher and repeat cascading.
2702 */
2703 wq->first_flusher = NULL;
2704 }
2705
2706out_unlock:
2707 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708}
Dave Jonesae90dd52006-06-30 01:40:45 -04002709EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002711/**
2712 * drain_workqueue - drain a workqueue
2713 * @wq: workqueue to drain
2714 *
2715 * Wait until the workqueue becomes empty. While draining is in progress,
2716 * only chain queueing is allowed. IOW, only currently pending or running
2717 * work items on @wq can queue further work items on it. @wq is flushed
2718 * repeatedly until it becomes empty. The number of flushing is detemined
2719 * by the depth of chaining and should be relatively short. Whine if it
2720 * takes too long.
2721 */
2722void drain_workqueue(struct workqueue_struct *wq)
2723{
2724 unsigned int flush_cnt = 0;
2725 unsigned int cpu;
2726
2727 /*
2728 * __queue_work() needs to test whether there are drainers, is much
2729 * hotter than drain_workqueue() and already looks at @wq->flags.
2730 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2731 */
2732 spin_lock(&workqueue_lock);
2733 if (!wq->nr_drainers++)
2734 wq->flags |= WQ_DRAINING;
2735 spin_unlock(&workqueue_lock);
2736reflush:
2737 flush_workqueue(wq);
2738
2739 for_each_cwq_cpu(cpu, wq) {
2740 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002741 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002742
Tejun Heod565ed62013-01-24 11:01:33 -08002743 spin_lock_irq(&cwq->pool->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002744 drained = !cwq->nr_active && list_empty(&cwq->delayed_works);
Tejun Heod565ed62013-01-24 11:01:33 -08002745 spin_unlock_irq(&cwq->pool->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002746
2747 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002748 continue;
2749
2750 if (++flush_cnt == 10 ||
2751 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
Valentin Ilie044c7822012-08-19 00:52:42 +03002752 pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
2753 wq->name, flush_cnt);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002754 goto reflush;
2755 }
2756
2757 spin_lock(&workqueue_lock);
2758 if (!--wq->nr_drainers)
2759 wq->flags &= ~WQ_DRAINING;
2760 spin_unlock(&workqueue_lock);
2761}
2762EXPORT_SYMBOL_GPL(drain_workqueue);
2763
Tejun Heo606a5022012-08-20 14:51:23 -07002764static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
Tejun Heobaf59022010-09-16 10:42:16 +02002765{
2766 struct worker *worker = NULL;
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002767 struct worker_pool *pool;
Tejun Heobaf59022010-09-16 10:42:16 +02002768 struct cpu_workqueue_struct *cwq;
2769
2770 might_sleep();
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002771 pool = get_work_pool(work);
2772 if (!pool)
Tejun Heobaf59022010-09-16 10:42:16 +02002773 return false;
2774
Tejun Heod565ed62013-01-24 11:01:33 -08002775 spin_lock_irq(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08002776 /* see the comment in try_to_grab_pending() with the same code */
2777 cwq = get_work_cwq(work);
2778 if (cwq) {
2779 if (unlikely(cwq->pool != pool))
Tejun Heobaf59022010-09-16 10:42:16 +02002780 goto already_gone;
Tejun Heo606a5022012-08-20 14:51:23 -07002781 } else {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002782 worker = find_worker_executing_work(pool, work);
Tejun Heobaf59022010-09-16 10:42:16 +02002783 if (!worker)
2784 goto already_gone;
2785 cwq = worker->current_cwq;
Tejun Heo606a5022012-08-20 14:51:23 -07002786 }
Tejun Heobaf59022010-09-16 10:42:16 +02002787
2788 insert_wq_barrier(cwq, barr, work, worker);
Tejun Heod565ed62013-01-24 11:01:33 -08002789 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002790
Tejun Heoe1594892011-01-09 23:32:15 +01002791 /*
2792 * If @max_active is 1 or rescuer is in use, flushing another work
2793 * item on the same workqueue may lead to deadlock. Make sure the
2794 * flusher is not running on the same workqueue by verifying write
2795 * access.
2796 */
2797 if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER)
2798 lock_map_acquire(&cwq->wq->lockdep_map);
2799 else
2800 lock_map_acquire_read(&cwq->wq->lockdep_map);
Tejun Heobaf59022010-09-16 10:42:16 +02002801 lock_map_release(&cwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002802
Tejun Heobaf59022010-09-16 10:42:16 +02002803 return true;
2804already_gone:
Tejun Heod565ed62013-01-24 11:01:33 -08002805 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002806 return false;
2807}
2808
Oleg Nesterovdb700892008-07-25 01:47:49 -07002809/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002810 * flush_work - wait for a work to finish executing the last queueing instance
2811 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002812 *
Tejun Heo606a5022012-08-20 14:51:23 -07002813 * Wait until @work has finished execution. @work is guaranteed to be idle
2814 * on return if it hasn't been requeued since flush started.
Tejun Heo401a8d02010-09-16 10:36:00 +02002815 *
2816 * RETURNS:
2817 * %true if flush_work() waited for the work to finish execution,
2818 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002819 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002820bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002821{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002822 struct wq_barrier barr;
2823
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002824 lock_map_acquire(&work->lockdep_map);
2825 lock_map_release(&work->lockdep_map);
2826
Tejun Heo606a5022012-08-20 14:51:23 -07002827 if (start_flush_work(work, &barr)) {
Tejun Heobaf59022010-09-16 10:42:16 +02002828 wait_for_completion(&barr.done);
2829 destroy_work_on_stack(&barr.work);
2830 return true;
Tejun Heo606a5022012-08-20 14:51:23 -07002831 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002832 return false;
Tejun Heo606a5022012-08-20 14:51:23 -07002833 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002834}
2835EXPORT_SYMBOL_GPL(flush_work);
2836
Tejun Heo36e227d2012-08-03 10:30:46 -07002837static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
Tejun Heo401a8d02010-09-16 10:36:00 +02002838{
Tejun Heobbb68df2012-08-03 10:30:46 -07002839 unsigned long flags;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002840 int ret;
2841
2842 do {
Tejun Heobbb68df2012-08-03 10:30:46 -07002843 ret = try_to_grab_pending(work, is_dwork, &flags);
2844 /*
2845 * If someone else is canceling, wait for the same event it
2846 * would be waiting for before retrying.
2847 */
2848 if (unlikely(ret == -ENOENT))
Tejun Heo606a5022012-08-20 14:51:23 -07002849 flush_work(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002850 } while (unlikely(ret < 0));
2851
Tejun Heobbb68df2012-08-03 10:30:46 -07002852 /* tell other tasks trying to grab @work to back off */
2853 mark_work_canceling(work);
2854 local_irq_restore(flags);
2855
Tejun Heo606a5022012-08-20 14:51:23 -07002856 flush_work(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002857 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002858 return ret;
2859}
2860
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002861/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002862 * cancel_work_sync - cancel a work and wait for it to finish
2863 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002864 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002865 * Cancel @work and wait for its execution to finish. This function
2866 * can be used even if the work re-queues itself or migrates to
2867 * another workqueue. On return from this function, @work is
2868 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002869 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002870 * cancel_work_sync(&delayed_work->work) must not be used for
2871 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002872 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002873 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002874 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002875 *
2876 * RETURNS:
2877 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002878 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002879bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002880{
Tejun Heo36e227d2012-08-03 10:30:46 -07002881 return __cancel_work_timer(work, false);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002882}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002883EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002884
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002885/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002886 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2887 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002888 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002889 * Delayed timer is cancelled and the pending work is queued for
2890 * immediate execution. Like flush_work(), this function only
2891 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002892 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002893 * RETURNS:
2894 * %true if flush_work() waited for the work to finish execution,
2895 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002896 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002897bool flush_delayed_work(struct delayed_work *dwork)
2898{
Tejun Heo8930cab2012-08-03 10:30:45 -07002899 local_irq_disable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002900 if (del_timer_sync(&dwork->timer))
Lai Jiangshan60c057b2013-02-06 18:04:53 -08002901 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Tejun Heo8930cab2012-08-03 10:30:45 -07002902 local_irq_enable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002903 return flush_work(&dwork->work);
2904}
2905EXPORT_SYMBOL(flush_delayed_work);
2906
2907/**
Tejun Heo57b30ae2012-08-21 13:18:24 -07002908 * cancel_delayed_work - cancel a delayed work
2909 * @dwork: delayed_work to cancel
Tejun Heo09383492010-09-16 10:48:29 +02002910 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002911 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2912 * and canceled; %false if wasn't pending. Note that the work callback
2913 * function may still be running on return, unless it returns %true and the
2914 * work doesn't re-arm itself. Explicitly flush or use
2915 * cancel_delayed_work_sync() to wait on it.
Tejun Heo09383492010-09-16 10:48:29 +02002916 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002917 * This function is safe to call from any context including IRQ handler.
Tejun Heo09383492010-09-16 10:48:29 +02002918 */
Tejun Heo57b30ae2012-08-21 13:18:24 -07002919bool cancel_delayed_work(struct delayed_work *dwork)
Tejun Heo09383492010-09-16 10:48:29 +02002920{
Tejun Heo57b30ae2012-08-21 13:18:24 -07002921 unsigned long flags;
2922 int ret;
2923
2924 do {
2925 ret = try_to_grab_pending(&dwork->work, true, &flags);
2926 } while (unlikely(ret == -EAGAIN));
2927
2928 if (unlikely(ret < 0))
2929 return false;
2930
Tejun Heo7c3eed52013-01-24 11:01:33 -08002931 set_work_pool_and_clear_pending(&dwork->work,
2932 get_work_pool_id(&dwork->work));
Tejun Heo57b30ae2012-08-21 13:18:24 -07002933 local_irq_restore(flags);
Dan Magenheimerc0158ca2012-10-18 16:31:37 -07002934 return ret;
Tejun Heo09383492010-09-16 10:48:29 +02002935}
Tejun Heo57b30ae2012-08-21 13:18:24 -07002936EXPORT_SYMBOL(cancel_delayed_work);
Tejun Heo09383492010-09-16 10:48:29 +02002937
2938/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002939 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2940 * @dwork: the delayed work cancel
2941 *
2942 * This is cancel_work_sync() for delayed works.
2943 *
2944 * RETURNS:
2945 * %true if @dwork was pending, %false otherwise.
2946 */
2947bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002948{
Tejun Heo36e227d2012-08-03 10:30:46 -07002949 return __cancel_work_timer(&dwork->work, true);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002950}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002951EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002953/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07002954 * schedule_work_on - put work task on a specific cpu
2955 * @cpu: cpu to put the work task on
2956 * @work: job to be done
2957 *
2958 * This puts a job on a specific cpu
2959 */
Tejun Heod4283e92012-08-03 10:30:44 -07002960bool schedule_work_on(int cpu, struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07002961{
Tejun Heod320c032010-06-29 10:07:14 +02002962 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002963}
2964EXPORT_SYMBOL(schedule_work_on);
2965
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002966/**
Dave Jonesae90dd52006-06-30 01:40:45 -04002967 * schedule_work - put work task in global workqueue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 * @work: job to be done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 *
Tejun Heod4283e92012-08-03 10:30:44 -07002970 * Returns %false if @work was already on the kernel-global workqueue and
2971 * %true otherwise.
David Howells52bad642006-11-22 14:54:01 +00002972 *
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002973 * This puts a job in the kernel-global workqueue if it was not already
2974 * queued and leaves it in the same position on the kernel-global
2975 * workqueue otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 */
Tejun Heod4283e92012-08-03 10:30:44 -07002977bool schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978{
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002979 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980}
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002981EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002983/**
2984 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
2985 * @cpu: cpu to use
2986 * @dwork: job to be done
2987 * @delay: number of jiffies to wait
2988 *
2989 * After waiting for a given time this puts a job in the kernel-global
2990 * workqueue on the specified CPU.
2991 */
Tejun Heod4283e92012-08-03 10:30:44 -07002992bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
2993 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
Tejun Heod320c032010-06-29 10:07:14 +02002995 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
Dave Jonesae90dd52006-06-30 01:40:45 -04002997EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Andrew Mortonb6136772006-06-25 05:47:49 -07002999/**
Tejun Heo0a13c002012-08-03 10:30:44 -07003000 * schedule_delayed_work - put work task in global workqueue after delay
3001 * @dwork: job to be done
3002 * @delay: number of jiffies to wait or 0 for immediate execution
3003 *
3004 * After waiting for a given time this puts a job in the kernel-global
3005 * workqueue.
3006 */
Tejun Heod4283e92012-08-03 10:30:44 -07003007bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
Tejun Heo0a13c002012-08-03 10:30:44 -07003008{
3009 return queue_delayed_work(system_wq, dwork, delay);
3010}
3011EXPORT_SYMBOL(schedule_delayed_work);
3012
3013/**
Tejun Heo31ddd872010-10-19 11:14:49 +02003014 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07003015 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07003016 *
Tejun Heo31ddd872010-10-19 11:14:49 +02003017 * schedule_on_each_cpu() executes @func on each online CPU using the
3018 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07003019 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02003020 *
3021 * RETURNS:
3022 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07003023 */
David Howells65f27f32006-11-22 14:55:48 +00003024int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003025{
3026 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02003027 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08003028
Andrew Mortonb6136772006-06-25 05:47:49 -07003029 works = alloc_percpu(struct work_struct);
3030 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003031 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07003032
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003033 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08003034
Christoph Lameter15316ba2006-01-08 01:00:43 -08003035 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01003036 struct work_struct *work = per_cpu_ptr(works, cpu);
3037
3038 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003039 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003040 }
Tejun Heo93981802009-11-17 14:06:20 -08003041
3042 for_each_online_cpu(cpu)
3043 flush_work(per_cpu_ptr(works, cpu));
3044
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003045 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003046 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003047 return 0;
3048}
3049
Alan Sterneef6a7d2010-02-12 17:39:21 +09003050/**
3051 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3052 *
3053 * Forces execution of the kernel-global workqueue and blocks until its
3054 * completion.
3055 *
3056 * Think twice before calling this function! It's very easy to get into
3057 * trouble if you don't take great care. Either of the following situations
3058 * will lead to deadlock:
3059 *
3060 * One of the work items currently on the workqueue needs to acquire
3061 * a lock held by your code or its caller.
3062 *
3063 * Your code is running in the context of a work routine.
3064 *
3065 * They will be detected by lockdep when they occur, but the first might not
3066 * occur very often. It depends on what work items are on the workqueue and
3067 * what locks they need, which you have no control over.
3068 *
3069 * In most situations flushing the entire workqueue is overkill; you merely
3070 * need to know that a particular work item isn't queued and isn't running.
3071 * In such cases you should use cancel_delayed_work_sync() or
3072 * cancel_work_sync() instead.
3073 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074void flush_scheduled_work(void)
3075{
Tejun Heod320c032010-06-29 10:07:14 +02003076 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077}
Dave Jonesae90dd52006-06-30 01:40:45 -04003078EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
3080/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003081 * execute_in_process_context - reliably execute the routine with user context
3082 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003083 * @ew: guaranteed storage for the execute work structure (must
3084 * be available when the work executes)
3085 *
3086 * Executes the function immediately if process context is available,
3087 * otherwise schedules the function for delayed execution.
3088 *
3089 * Returns: 0 - function was executed
3090 * 1 - function was scheduled for execution
3091 */
David Howells65f27f32006-11-22 14:55:48 +00003092int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003093{
3094 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003095 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003096 return 0;
3097 }
3098
David Howells65f27f32006-11-22 14:55:48 +00003099 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003100 schedule_work(&ew->work);
3101
3102 return 1;
3103}
3104EXPORT_SYMBOL_GPL(execute_in_process_context);
3105
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106int keventd_up(void)
3107{
Tejun Heod320c032010-06-29 10:07:14 +02003108 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109}
3110
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003111static int alloc_cwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112{
Oleg Nesterov3af244332007-05-09 02:34:09 -07003113 /*
Tejun Heo0f900042010-06-29 10:07:11 +02003114 * cwqs are forced aligned according to WORK_STRUCT_FLAG_BITS.
3115 * Make sure that the alignment isn't lower than that of
3116 * unsigned long long.
Oleg Nesterov3af244332007-05-09 02:34:09 -07003117 */
Tejun Heo0f900042010-06-29 10:07:11 +02003118 const size_t size = sizeof(struct cpu_workqueue_struct);
3119 const size_t align = max_t(size_t, 1 << WORK_STRUCT_FLAG_BITS,
3120 __alignof__(unsigned long long));
Oleg Nesterov3af244332007-05-09 02:34:09 -07003121
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003122 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02003123 wq->cpu_wq.pcpu = __alloc_percpu(size, align);
Tejun Heo931ac772010-07-20 11:07:48 +02003124 else {
Tejun Heof3421792010-07-02 10:03:51 +02003125 void *ptr;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003126
Tejun Heof3421792010-07-02 10:03:51 +02003127 /*
3128 * Allocate enough room to align cwq and put an extra
3129 * pointer at the end pointing back to the originally
3130 * allocated pointer which will be used for free.
3131 */
3132 ptr = kzalloc(size + align + sizeof(void *), GFP_KERNEL);
3133 if (ptr) {
3134 wq->cpu_wq.single = PTR_ALIGN(ptr, align);
3135 *(void **)(wq->cpu_wq.single + 1) = ptr;
3136 }
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003137 }
Tejun Heof3421792010-07-02 10:03:51 +02003138
Tejun Heo0415b00d12011-03-24 18:50:09 +01003139 /* just in case, make sure it's actually aligned */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003140 BUG_ON(!IS_ALIGNED(wq->cpu_wq.v, align));
3141 return wq->cpu_wq.v ? 0 : -ENOMEM;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003142}
3143
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003144static void free_cwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003145{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003146 if (!(wq->flags & WQ_UNBOUND))
Tejun Heof3421792010-07-02 10:03:51 +02003147 free_percpu(wq->cpu_wq.pcpu);
3148 else if (wq->cpu_wq.single) {
3149 /* the pointer to free is stored right after the cwq */
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003150 kfree(*(void **)(wq->cpu_wq.single + 1));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003151 }
3152}
3153
Tejun Heof3421792010-07-02 10:03:51 +02003154static int wq_clamp_max_active(int max_active, unsigned int flags,
3155 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003156{
Tejun Heof3421792010-07-02 10:03:51 +02003157 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3158
3159 if (max_active < 1 || max_active > lim)
Valentin Ilie044c7822012-08-19 00:52:42 +03003160 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3161 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003162
Tejun Heof3421792010-07-02 10:03:51 +02003163 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003164}
3165
Tejun Heob196be82012-01-10 15:11:35 -08003166struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003167 unsigned int flags,
3168 int max_active,
3169 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003170 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003171{
Tejun Heob196be82012-01-10 15:11:35 -08003172 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003173 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02003174 unsigned int cpu;
Tejun Heob196be82012-01-10 15:11:35 -08003175 size_t namelen;
3176
3177 /* determine namelen, allocate wq and format name */
3178 va_start(args, lock_name);
3179 va_copy(args1, args);
3180 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3181
3182 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3183 if (!wq)
3184 goto err;
3185
3186 vsnprintf(wq->name, namelen, fmt, args1);
3187 va_end(args);
3188 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003189
Tejun Heof3421792010-07-02 10:03:51 +02003190 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02003191 * Workqueues which may be used during memory reclaim should
3192 * have a rescuer to guarantee forward progress.
3193 */
3194 if (flags & WQ_MEM_RECLAIM)
3195 flags |= WQ_RESCUER;
3196
Tejun Heod320c032010-06-29 10:07:14 +02003197 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003198 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003199
Tejun Heob196be82012-01-10 15:11:35 -08003200 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003201 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003202 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003203 mutex_init(&wq->flush_mutex);
3204 atomic_set(&wq->nr_cwqs_to_flush, 0);
3205 INIT_LIST_HEAD(&wq->flusher_queue);
3206 INIT_LIST_HEAD(&wq->flusher_overflow);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003207
Johannes Bergeb13ba82008-01-16 09:51:58 +01003208 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003209 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003210
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003211 if (alloc_cwqs(wq) < 0)
3212 goto err;
3213
Tejun Heof3421792010-07-02 10:03:51 +02003214 for_each_cwq_cpu(cpu, wq) {
Tejun Heo15376632010-06-29 10:07:11 +02003215 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3216
Tejun Heo0f900042010-06-29 10:07:11 +02003217 BUG_ON((unsigned long)cwq & WORK_STRUCT_FLAG_MASK);
Tejun Heoa60dc392013-01-24 11:01:34 -08003218 cwq->pool = get_std_worker_pool(cpu, flags & WQ_HIGHPRI);
Tejun Heoc34056a2010-06-29 10:07:11 +02003219 cwq->wq = wq;
Tejun Heo73f53c42010-06-29 10:07:11 +02003220 cwq->flush_color = -1;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003221 cwq->max_active = max_active;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003222 INIT_LIST_HEAD(&cwq->delayed_works);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003223 }
3224
Tejun Heoe22bee72010-06-29 10:07:14 +02003225 if (flags & WQ_RESCUER) {
3226 struct worker *rescuer;
3227
Tejun Heof2e005a2010-07-20 15:59:09 +02003228 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
Tejun Heoe22bee72010-06-29 10:07:14 +02003229 goto err;
3230
3231 wq->rescuer = rescuer = alloc_worker();
3232 if (!rescuer)
3233 goto err;
3234
Tejun Heo111c2252013-01-17 17:16:24 -08003235 rescuer->rescue_wq = wq;
3236 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
Tejun Heob196be82012-01-10 15:11:35 -08003237 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003238 if (IS_ERR(rescuer->task))
3239 goto err;
3240
Tejun Heoe22bee72010-06-29 10:07:14 +02003241 rescuer->task->flags |= PF_THREAD_BOUND;
3242 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003243 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003244
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003245 /*
3246 * workqueue_lock protects global freeze state and workqueues
3247 * list. Grab it, set max_active accordingly and add the new
3248 * workqueue to workqueues list.
3249 */
Tejun Heo15376632010-06-29 10:07:11 +02003250 spin_lock(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003251
Tejun Heo58a69cb2011-02-16 09:25:31 +01003252 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heof3421792010-07-02 10:03:51 +02003253 for_each_cwq_cpu(cpu, wq)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003254 get_cwq(cpu, wq)->max_active = 0;
3255
Tejun Heo15376632010-06-29 10:07:11 +02003256 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003257
Tejun Heo15376632010-06-29 10:07:11 +02003258 spin_unlock(&workqueue_lock);
3259
Oleg Nesterov3af244332007-05-09 02:34:09 -07003260 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003261err:
3262 if (wq) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003263 free_cwqs(wq);
Tejun Heof2e005a2010-07-20 15:59:09 +02003264 free_mayday_mask(wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02003265 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003266 kfree(wq);
3267 }
3268 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003269}
Tejun Heod320c032010-06-29 10:07:14 +02003270EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003271
3272/**
3273 * destroy_workqueue - safely terminate a workqueue
3274 * @wq: target workqueue
3275 *
3276 * Safely destroy a workqueue. All work currently pending will be done first.
3277 */
3278void destroy_workqueue(struct workqueue_struct *wq)
3279{
Tejun Heoc8e55f32010-06-29 10:07:12 +02003280 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003281
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003282 /* drain it before proceeding with destruction */
3283 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003284
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003285 /*
3286 * wq list is used to freeze wq, remove from list after
3287 * flushing is complete in case freeze races us.
3288 */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003289 spin_lock(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003290 list_del(&wq->list);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003291 spin_unlock(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003292
Tejun Heoe22bee72010-06-29 10:07:14 +02003293 /* sanity check */
Tejun Heof3421792010-07-02 10:03:51 +02003294 for_each_cwq_cpu(cpu, wq) {
Tejun Heo73f53c42010-06-29 10:07:11 +02003295 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3296 int i;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003297
Tejun Heo73f53c42010-06-29 10:07:11 +02003298 for (i = 0; i < WORK_NR_COLORS; i++)
3299 BUG_ON(cwq->nr_in_flight[i]);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02003300 BUG_ON(cwq->nr_active);
3301 BUG_ON(!list_empty(&cwq->delayed_works));
Tejun Heo73f53c42010-06-29 10:07:11 +02003302 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003303
Tejun Heoe22bee72010-06-29 10:07:14 +02003304 if (wq->flags & WQ_RESCUER) {
3305 kthread_stop(wq->rescuer->task);
Tejun Heof2e005a2010-07-20 15:59:09 +02003306 free_mayday_mask(wq->mayday_mask);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003307 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003308 }
3309
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003310 free_cwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003311 kfree(wq);
3312}
3313EXPORT_SYMBOL_GPL(destroy_workqueue);
3314
Tejun Heodcd989c2010-06-29 10:07:14 +02003315/**
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003316 * cwq_set_max_active - adjust max_active of a cwq
3317 * @cwq: target cpu_workqueue_struct
3318 * @max_active: new max_active value.
3319 *
3320 * Set @cwq->max_active to @max_active and activate delayed works if
3321 * increased.
3322 *
3323 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003324 * spin_lock_irq(pool->lock).
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003325 */
3326static void cwq_set_max_active(struct cpu_workqueue_struct *cwq, int max_active)
3327{
3328 cwq->max_active = max_active;
3329
3330 while (!list_empty(&cwq->delayed_works) &&
3331 cwq->nr_active < cwq->max_active)
3332 cwq_activate_first_delayed(cwq);
3333}
3334
3335/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003336 * workqueue_set_max_active - adjust max_active of a workqueue
3337 * @wq: target workqueue
3338 * @max_active: new max_active value.
3339 *
3340 * Set max_active of @wq to @max_active.
3341 *
3342 * CONTEXT:
3343 * Don't call from IRQ context.
3344 */
3345void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3346{
3347 unsigned int cpu;
3348
Tejun Heof3421792010-07-02 10:03:51 +02003349 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003350
3351 spin_lock(&workqueue_lock);
3352
3353 wq->saved_max_active = max_active;
3354
Tejun Heof3421792010-07-02 10:03:51 +02003355 for_each_cwq_cpu(cpu, wq) {
Tejun Heo35b6bb62013-01-24 11:01:33 -08003356 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3357 struct worker_pool *pool = cwq->pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02003358
Tejun Heod565ed62013-01-24 11:01:33 -08003359 spin_lock_irq(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003360
Tejun Heo58a69cb2011-02-16 09:25:31 +01003361 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heo35b6bb62013-01-24 11:01:33 -08003362 !(pool->flags & POOL_FREEZING))
3363 cwq_set_max_active(cwq, max_active);
Tejun Heodcd989c2010-06-29 10:07:14 +02003364
Tejun Heod565ed62013-01-24 11:01:33 -08003365 spin_unlock_irq(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003366 }
3367
3368 spin_unlock(&workqueue_lock);
3369}
3370EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3371
3372/**
3373 * workqueue_congested - test whether a workqueue is congested
3374 * @cpu: CPU in question
3375 * @wq: target workqueue
3376 *
3377 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3378 * no synchronization around this function and the test result is
3379 * unreliable and only useful as advisory hints or for debugging.
3380 *
3381 * RETURNS:
3382 * %true if congested, %false otherwise.
3383 */
3384bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
3385{
3386 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3387
3388 return !list_empty(&cwq->delayed_works);
3389}
3390EXPORT_SYMBOL_GPL(workqueue_congested);
3391
3392/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003393 * work_busy - test whether a work is currently pending or running
3394 * @work: the work to be tested
3395 *
3396 * Test whether @work is currently pending or running. There is no
3397 * synchronization around this function and the test result is
3398 * unreliable and only useful as advisory hints or for debugging.
Tejun Heodcd989c2010-06-29 10:07:14 +02003399 *
3400 * RETURNS:
3401 * OR'd bitmask of WORK_BUSY_* bits.
3402 */
3403unsigned int work_busy(struct work_struct *work)
3404{
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003405 struct worker_pool *pool = get_work_pool(work);
Tejun Heodcd989c2010-06-29 10:07:14 +02003406 unsigned long flags;
3407 unsigned int ret = 0;
3408
Tejun Heodcd989c2010-06-29 10:07:14 +02003409 if (work_pending(work))
3410 ret |= WORK_BUSY_PENDING;
Tejun Heodcd989c2010-06-29 10:07:14 +02003411
Lai Jiangshan038366c2013-02-06 18:04:53 -08003412 if (pool) {
3413 spin_lock_irqsave(&pool->lock, flags);
3414 if (find_worker_executing_work(pool, work))
3415 ret |= WORK_BUSY_RUNNING;
3416 spin_unlock_irqrestore(&pool->lock, flags);
3417 }
Tejun Heodcd989c2010-06-29 10:07:14 +02003418
3419 return ret;
3420}
3421EXPORT_SYMBOL_GPL(work_busy);
3422
Tejun Heodb7bccf2010-06-29 10:07:12 +02003423/*
3424 * CPU hotplug.
3425 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003426 * There are two challenges in supporting CPU hotplug. Firstly, there
3427 * are a lot of assumptions on strong associations among work, cwq and
Tejun Heo706026c2013-01-24 11:01:34 -08003428 * pool which make migrating pending and scheduled works very
Tejun Heoe22bee72010-06-29 10:07:14 +02003429 * difficult to implement without impacting hot paths. Secondly,
Tejun Heo94cf58b2013-01-24 11:01:33 -08003430 * worker pools serve mix of short, long and very long running works making
Tejun Heoe22bee72010-06-29 10:07:14 +02003431 * blocked draining impractical.
3432 *
Tejun Heo24647572013-01-24 11:01:33 -08003433 * This is solved by allowing the pools to be disassociated from the CPU
Tejun Heo628c78e2012-07-17 12:39:27 -07003434 * running as an unbound one and allowing it to be reattached later if the
3435 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003436 */
3437
Tejun Heo706026c2013-01-24 11:01:34 -08003438static void wq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003439{
Tejun Heo38db41d2013-01-24 11:01:34 -08003440 int cpu = smp_processor_id();
Tejun Heo4ce62e92012-07-13 22:16:44 -07003441 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003442 struct worker *worker;
3443 struct hlist_node *pos;
3444 int i;
3445
Tejun Heo38db41d2013-01-24 11:01:34 -08003446 for_each_std_worker_pool(pool, cpu) {
3447 BUG_ON(cpu != smp_processor_id());
Tejun Heo94cf58b2013-01-24 11:01:33 -08003448
3449 mutex_lock(&pool->assoc_mutex);
3450 spin_lock_irq(&pool->lock);
3451
3452 /*
3453 * We've claimed all manager positions. Make all workers
3454 * unbound and set DISASSOCIATED. Before this, all workers
3455 * except for the ones which are still executing works from
3456 * before the last CPU down must be on the cpu. After
3457 * this, they may become diasporas.
3458 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003459 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003460 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003461
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003462 for_each_busy_worker(worker, i, pos, pool)
3463 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003464
Tejun Heo24647572013-01-24 11:01:33 -08003465 pool->flags |= POOL_DISASSOCIATED;
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003466
Tejun Heo94cf58b2013-01-24 11:01:33 -08003467 spin_unlock_irq(&pool->lock);
3468 mutex_unlock(&pool->assoc_mutex);
3469 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003470
3471 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07003472 * Call schedule() so that we cross rq->lock and thus can guarantee
3473 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3474 * as scheduler callbacks may be invoked from other cpus.
3475 */
3476 schedule();
3477
3478 /*
3479 * Sched callbacks are disabled now. Zap nr_running. After this,
3480 * nr_running stays zero and need_more_worker() and keep_working()
Tejun Heo38db41d2013-01-24 11:01:34 -08003481 * are always true as long as the worklist is not empty. Pools on
3482 * @cpu now behave as unbound (in terms of concurrency management)
3483 * pools which are served by workers tied to the CPU.
Tejun Heo628c78e2012-07-17 12:39:27 -07003484 *
3485 * On return from this function, the current worker would trigger
3486 * unbound chain execution of pending work items if other workers
3487 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02003488 */
Tejun Heo38db41d2013-01-24 11:01:34 -08003489 for_each_std_worker_pool(pool, cpu)
Tejun Heoe19e3972013-01-24 11:39:44 -08003490 atomic_set(&pool->nr_running, 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003491}
3492
Tejun Heo8db25e72012-07-17 12:39:28 -07003493/*
3494 * Workqueues should be brought up before normal priority CPU notifiers.
3495 * This will be registered high priority CPU notifier.
3496 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003497static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
Tejun Heo8db25e72012-07-17 12:39:28 -07003498 unsigned long action,
3499 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003500{
3501 unsigned int cpu = (unsigned long)hcpu;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003502 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503
Tejun Heo8db25e72012-07-17 12:39:28 -07003504 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 case CPU_UP_PREPARE:
Tejun Heo38db41d2013-01-24 11:01:34 -08003506 for_each_std_worker_pool(pool, cpu) {
Tejun Heo3ce63372012-07-17 12:39:27 -07003507 struct worker *worker;
3508
3509 if (pool->nr_workers)
3510 continue;
3511
3512 worker = create_worker(pool);
3513 if (!worker)
3514 return NOTIFY_BAD;
3515
Tejun Heod565ed62013-01-24 11:01:33 -08003516 spin_lock_irq(&pool->lock);
Tejun Heo3ce63372012-07-17 12:39:27 -07003517 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003518 spin_unlock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003520 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003521
Tejun Heo65758202012-07-17 12:39:26 -07003522 case CPU_DOWN_FAILED:
3523 case CPU_ONLINE:
Tejun Heo38db41d2013-01-24 11:01:34 -08003524 for_each_std_worker_pool(pool, cpu) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08003525 mutex_lock(&pool->assoc_mutex);
3526 spin_lock_irq(&pool->lock);
3527
Tejun Heo24647572013-01-24 11:01:33 -08003528 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heo94cf58b2013-01-24 11:01:33 -08003529 rebind_workers(pool);
3530
3531 spin_unlock_irq(&pool->lock);
3532 mutex_unlock(&pool->assoc_mutex);
3533 }
Tejun Heo8db25e72012-07-17 12:39:28 -07003534 break;
Tejun Heo65758202012-07-17 12:39:26 -07003535 }
3536 return NOTIFY_OK;
3537}
3538
3539/*
3540 * Workqueues should be brought down after normal priority CPU notifiers.
3541 * This will be registered as low priority CPU notifier.
3542 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003543static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
Tejun Heo65758202012-07-17 12:39:26 -07003544 unsigned long action,
3545 void *hcpu)
3546{
Tejun Heo8db25e72012-07-17 12:39:28 -07003547 unsigned int cpu = (unsigned long)hcpu;
3548 struct work_struct unbind_work;
3549
Tejun Heo65758202012-07-17 12:39:26 -07003550 switch (action & ~CPU_TASKS_FROZEN) {
3551 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003552 /* unbinding should happen on the local CPU */
Tejun Heo706026c2013-01-24 11:01:34 -08003553 INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
Joonsoo Kim7635d2f2012-08-15 23:25:41 +09003554 queue_work_on(cpu, system_highpri_wq, &unbind_work);
Tejun Heo8db25e72012-07-17 12:39:28 -07003555 flush_work(&unbind_work);
3556 break;
Tejun Heo65758202012-07-17 12:39:26 -07003557 }
3558 return NOTIFY_OK;
3559}
3560
Rusty Russell2d3854a2008-11-05 13:39:10 +11003561#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003562
Rusty Russell2d3854a2008-11-05 13:39:10 +11003563struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07003564 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003565 long (*fn)(void *);
3566 void *arg;
3567 long ret;
3568};
3569
Tejun Heoed48ece2012-09-18 12:48:43 -07003570static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003571{
Tejun Heoed48ece2012-09-18 12:48:43 -07003572 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
3573
Rusty Russell2d3854a2008-11-05 13:39:10 +11003574 wfc->ret = wfc->fn(wfc->arg);
3575}
3576
3577/**
3578 * work_on_cpu - run a function in user context on a particular cpu
3579 * @cpu: the cpu to run on
3580 * @fn: the function to run
3581 * @arg: the function arg
3582 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003583 * This will return the value @fn returns.
3584 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b44003e2009-04-09 09:50:37 -06003585 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003586 */
3587long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3588{
Tejun Heoed48ece2012-09-18 12:48:43 -07003589 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003590
Tejun Heoed48ece2012-09-18 12:48:43 -07003591 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
3592 schedule_work_on(cpu, &wfc.work);
3593 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003594 return wfc.ret;
3595}
3596EXPORT_SYMBOL_GPL(work_on_cpu);
3597#endif /* CONFIG_SMP */
3598
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003599#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303600
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003601/**
3602 * freeze_workqueues_begin - begin freezing workqueues
3603 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003604 * Start freezing workqueues. After this function returns, all freezable
3605 * workqueues will queue new works to their frozen_works list instead of
Tejun Heo706026c2013-01-24 11:01:34 -08003606 * pool->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003607 *
3608 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003609 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003610 */
3611void freeze_workqueues_begin(void)
3612{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003613 unsigned int cpu;
3614
3615 spin_lock(&workqueue_lock);
3616
3617 BUG_ON(workqueue_freezing);
3618 workqueue_freezing = true;
3619
Tejun Heo706026c2013-01-24 11:01:34 -08003620 for_each_wq_cpu(cpu) {
Tejun Heo35b6bb62013-01-24 11:01:33 -08003621 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003622 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003623
Tejun Heo38db41d2013-01-24 11:01:34 -08003624 for_each_std_worker_pool(pool, cpu) {
Tejun Heoa1056302013-01-24 11:01:33 -08003625 spin_lock_irq(&pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08003626
Tejun Heo35b6bb62013-01-24 11:01:33 -08003627 WARN_ON_ONCE(pool->flags & POOL_FREEZING);
3628 pool->flags |= POOL_FREEZING;
Tejun Heoa1056302013-01-24 11:01:33 -08003629
3630 list_for_each_entry(wq, &workqueues, list) {
3631 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3632
3633 if (cwq && cwq->pool == pool &&
3634 (wq->flags & WQ_FREEZABLE))
3635 cwq->max_active = 0;
3636 }
3637
3638 spin_unlock_irq(&pool->lock);
Tejun Heo35b6bb62013-01-24 11:01:33 -08003639 }
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003640 }
3641
3642 spin_unlock(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003644
3645/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003646 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003647 *
3648 * Check whether freezing is complete. This function must be called
3649 * between freeze_workqueues_begin() and thaw_workqueues().
3650 *
3651 * CONTEXT:
3652 * Grabs and releases workqueue_lock.
3653 *
3654 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003655 * %true if some freezable workqueues are still busy. %false if freezing
3656 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003657 */
3658bool freeze_workqueues_busy(void)
3659{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003660 unsigned int cpu;
3661 bool busy = false;
3662
3663 spin_lock(&workqueue_lock);
3664
3665 BUG_ON(!workqueue_freezing);
3666
Tejun Heo706026c2013-01-24 11:01:34 -08003667 for_each_wq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003668 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003669 /*
3670 * nr_active is monotonically decreasing. It's safe
3671 * to peek without lock.
3672 */
3673 list_for_each_entry(wq, &workqueues, list) {
3674 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
3675
Tejun Heo58a69cb2011-02-16 09:25:31 +01003676 if (!cwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003677 continue;
3678
3679 BUG_ON(cwq->nr_active < 0);
3680 if (cwq->nr_active) {
3681 busy = true;
3682 goto out_unlock;
3683 }
3684 }
3685 }
3686out_unlock:
3687 spin_unlock(&workqueue_lock);
3688 return busy;
3689}
3690
3691/**
3692 * thaw_workqueues - thaw workqueues
3693 *
3694 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo706026c2013-01-24 11:01:34 -08003695 * frozen works are transferred to their respective pool worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003696 *
3697 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003698 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003699 */
3700void thaw_workqueues(void)
3701{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003702 unsigned int cpu;
3703
3704 spin_lock(&workqueue_lock);
3705
3706 if (!workqueue_freezing)
3707 goto out_unlock;
3708
Tejun Heo706026c2013-01-24 11:01:34 -08003709 for_each_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003710 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003711 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003712
Tejun Heo38db41d2013-01-24 11:01:34 -08003713 for_each_std_worker_pool(pool, cpu) {
Tejun Heoa1056302013-01-24 11:01:33 -08003714 spin_lock_irq(&pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08003715
Tejun Heo35b6bb62013-01-24 11:01:33 -08003716 WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
3717 pool->flags &= ~POOL_FREEZING;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003718
Tejun Heoa1056302013-01-24 11:01:33 -08003719 list_for_each_entry(wq, &workqueues, list) {
3720 struct cpu_workqueue_struct *cwq = get_cwq(cpu, wq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003721
Tejun Heoa1056302013-01-24 11:01:33 -08003722 if (!cwq || cwq->pool != pool ||
3723 !(wq->flags & WQ_FREEZABLE))
3724 continue;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003725
Tejun Heoa1056302013-01-24 11:01:33 -08003726 /* restore max_active and repopulate worklist */
3727 cwq_set_max_active(cwq, wq->saved_max_active);
3728 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003729
Tejun Heo4ce62e92012-07-13 22:16:44 -07003730 wake_up_worker(pool);
Tejun Heoa1056302013-01-24 11:01:33 -08003731
3732 spin_unlock_irq(&pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08003733 }
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003734 }
3735
3736 workqueue_freezing = false;
3737out_unlock:
3738 spin_unlock(&workqueue_lock);
3739}
3740#endif /* CONFIG_FREEZER */
3741
Suresh Siddha6ee05782010-07-30 14:57:37 -07003742static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743{
Tejun Heoc34056a2010-06-29 10:07:11 +02003744 unsigned int cpu;
3745
Tejun Heo7c3eed52013-01-24 11:01:33 -08003746 /* make sure we have enough bits for OFFQ pool ID */
3747 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) <
Lai Jiangshan6be19582013-02-06 18:04:53 -08003748 WORK_CPU_END * NR_STD_WORKER_POOLS);
Tejun Heob5490072012-08-03 10:30:46 -07003749
Tejun Heo65758202012-07-17 12:39:26 -07003750 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
Lai Jiangshana5b4e572012-09-18 09:59:23 -07003751 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003752
Tejun Heo706026c2013-01-24 11:01:34 -08003753 /* initialize CPU pools */
3754 for_each_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003755 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003756
Tejun Heo38db41d2013-01-24 11:01:34 -08003757 for_each_std_worker_pool(pool, cpu) {
Tejun Heod565ed62013-01-24 11:01:33 -08003758 spin_lock_init(&pool->lock);
Tejun Heoec22ca52013-01-24 11:01:33 -08003759 pool->cpu = cpu;
Tejun Heo24647572013-01-24 11:01:33 -08003760 pool->flags |= POOL_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003761 INIT_LIST_HEAD(&pool->worklist);
3762 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003763 hash_init(pool->busy_hash);
Tejun Heoe22bee72010-06-29 10:07:14 +02003764
Tejun Heo4ce62e92012-07-13 22:16:44 -07003765 init_timer_deferrable(&pool->idle_timer);
3766 pool->idle_timer.function = idle_worker_timeout;
3767 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003768
Tejun Heo706026c2013-01-24 11:01:34 -08003769 setup_timer(&pool->mayday_timer, pool_mayday_timeout,
Tejun Heo4ce62e92012-07-13 22:16:44 -07003770 (unsigned long)pool);
3771
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003772 mutex_init(&pool->assoc_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003773 ida_init(&pool->worker_ida);
Tejun Heo9daf9e62013-01-24 11:01:33 -08003774
3775 /* alloc pool ID */
3776 BUG_ON(worker_pool_assign_id(pool));
Tejun Heo4ce62e92012-07-13 22:16:44 -07003777 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003778 }
3779
Tejun Heoe22bee72010-06-29 10:07:14 +02003780 /* create the initial worker */
Tejun Heo706026c2013-01-24 11:01:34 -08003781 for_each_online_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003782 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003783
Tejun Heo38db41d2013-01-24 11:01:34 -08003784 for_each_std_worker_pool(pool, cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003785 struct worker *worker;
3786
Tejun Heo24647572013-01-24 11:01:33 -08003787 if (cpu != WORK_CPU_UNBOUND)
3788 pool->flags &= ~POOL_DISASSOCIATED;
3789
Tejun Heobc2ae0f2012-07-17 12:39:27 -07003790 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003791 BUG_ON(!worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003792 spin_lock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003793 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003794 spin_unlock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003795 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003796 }
3797
Tejun Heod320c032010-06-29 10:07:14 +02003798 system_wq = alloc_workqueue("events", 0, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003799 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
Tejun Heod320c032010-06-29 10:07:14 +02003800 system_long_wq = alloc_workqueue("events_long", 0, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003801 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3802 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003803 system_freezable_wq = alloc_workqueue("events_freezable",
3804 WQ_FREEZABLE, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003805 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
Tejun Heoae930e02012-08-20 14:51:23 -07003806 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003809early_initcall(init_workqueues);