blob: 8634fc9d52d265a86385c4a0829fbcdaa0502065 [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 Heo112202d2013-02-13 19:29:12 -0800157 * The per-pool workqueue. While queued, the lower WORK_STRUCT_FLAG_BITS
158 * of work_struct->data are used for flags and the remaining high bits
159 * point to the pwq; thus, pwqs need to be aligned at two's power of the
160 * number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
Tejun Heo112202d2013-02-13 19:29:12 -0800162struct pool_workqueue {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700163 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200164 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200165 int work_color; /* L: current color */
166 int flush_color; /* L: flushing color */
167 int nr_in_flight[WORK_NR_COLORS];
168 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200169 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200170 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200171 struct list_head delayed_works; /* L: delayed works */
Tejun Heo30cdf242013-03-12 11:29:57 -0700172 struct list_head pwqs_node; /* I: node on wq->pwqs */
Tejun Heoe904e6c2013-03-12 11:29:57 -0700173} __aligned(1 << WORK_STRUCT_FLAG_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200176 * Structure used to wait for workqueue flush.
177 */
178struct wq_flusher {
179 struct list_head list; /* F: list of flushers */
180 int flush_color; /* F: flush color waiting for */
181 struct completion done; /* flush completion */
182};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Tejun Heo73f53c42010-06-29 10:07:11 +0200184/*
Tejun Heof2e005a2010-07-20 15:59:09 +0200185 * All cpumasks are assumed to be always set on UP and thus can't be
186 * used to determine whether there's something to be done.
187 */
188#ifdef CONFIG_SMP
189typedef cpumask_var_t mayday_mask_t;
190#define mayday_test_and_set_cpu(cpu, mask) \
191 cpumask_test_and_set_cpu((cpu), (mask))
192#define mayday_clear_cpu(cpu, mask) cpumask_clear_cpu((cpu), (mask))
193#define for_each_mayday_cpu(cpu, mask) for_each_cpu((cpu), (mask))
Tejun Heo9c375472010-08-31 11:18:34 +0200194#define alloc_mayday_mask(maskp, gfp) zalloc_cpumask_var((maskp), (gfp))
Tejun Heof2e005a2010-07-20 15:59:09 +0200195#define free_mayday_mask(mask) free_cpumask_var((mask))
196#else
197typedef unsigned long mayday_mask_t;
198#define mayday_test_and_set_cpu(cpu, mask) test_and_set_bit(0, &(mask))
199#define mayday_clear_cpu(cpu, mask) clear_bit(0, &(mask))
200#define for_each_mayday_cpu(cpu, mask) if ((cpu) = 0, (mask))
201#define alloc_mayday_mask(maskp, gfp) true
202#define free_mayday_mask(mask) do { } while (0)
203#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/*
206 * The externally visible workqueue abstraction is an array of
207 * per-CPU workqueues:
208 */
209struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200210 unsigned int flags; /* W: WQ_* flags */
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200211 union {
Tejun Heo112202d2013-02-13 19:29:12 -0800212 struct pool_workqueue __percpu *pcpu;
213 struct pool_workqueue *single;
Tejun Heobdbc5dd2010-07-02 10:03:51 +0200214 unsigned long v;
Tejun Heo112202d2013-02-13 19:29:12 -0800215 } pool_wq; /* I: pwq's */
Tejun Heo30cdf242013-03-12 11:29:57 -0700216 struct list_head pwqs; /* I: all pwqs of this wq */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200217 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200218
219 struct mutex flush_mutex; /* protects wq flushing */
220 int work_color; /* F: current work color */
221 int flush_color; /* F: current flush color */
Tejun Heo112202d2013-02-13 19:29:12 -0800222 atomic_t nr_pwqs_to_flush; /* flush in progress */
Tejun Heo73f53c42010-06-29 10:07:11 +0200223 struct wq_flusher *first_flusher; /* F: first flusher */
224 struct list_head flusher_queue; /* F: flush waiters */
225 struct list_head flusher_overflow; /* F: flush overflow list */
226
Tejun Heof2e005a2010-07-20 15:59:09 +0200227 mayday_mask_t mayday_mask; /* cpus requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200228 struct worker *rescuer; /* I: rescue worker */
229
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200230 int nr_drainers; /* W: drain in progress */
Tejun Heo112202d2013-02-13 19:29:12 -0800231 int saved_max_active; /* W: saved pwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700232#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200233 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700234#endif
Tejun Heob196be82012-01-10 15:11:35 -0800235 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
Tejun Heoe904e6c2013-03-12 11:29:57 -0700238static struct kmem_cache *pwq_cache;
239
Tejun Heod320c032010-06-29 10:07:14 +0200240struct workqueue_struct *system_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200241EXPORT_SYMBOL_GPL(system_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300242struct workqueue_struct *system_highpri_wq __read_mostly;
Joonsoo Kim1aabe902012-08-15 23:25:39 +0900243EXPORT_SYMBOL_GPL(system_highpri_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300244struct workqueue_struct *system_long_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200245EXPORT_SYMBOL_GPL(system_long_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300246struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200247EXPORT_SYMBOL_GPL(system_unbound_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300248struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100249EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200250
Tejun Heo97bd2342010-10-05 10:41:14 +0200251#define CREATE_TRACE_POINTS
252#include <trace/events/workqueue.h>
253
Tejun Heo38db41d2013-01-24 11:01:34 -0800254#define for_each_std_worker_pool(pool, cpu) \
Tejun Heoa60dc392013-01-24 11:01:34 -0800255 for ((pool) = &std_worker_pools(cpu)[0]; \
256 (pool) < &std_worker_pools(cpu)[NR_STD_WORKER_POOLS]; (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700257
Sasha Levinb67bfe02013-02-27 17:06:00 -0800258#define for_each_busy_worker(worker, i, pool) \
259 hash_for_each(pool->busy_hash, i, worker, hentry)
Tejun Heodb7bccf2010-06-29 10:07:12 +0200260
Tejun Heo706026c2013-01-24 11:01:34 -0800261static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
262 unsigned int sw)
Tejun Heof3421792010-07-02 10:03:51 +0200263{
264 if (cpu < nr_cpu_ids) {
265 if (sw & 1) {
266 cpu = cpumask_next(cpu, mask);
267 if (cpu < nr_cpu_ids)
268 return cpu;
269 }
270 if (sw & 2)
271 return WORK_CPU_UNBOUND;
272 }
Lai Jiangshan6be19582013-02-06 18:04:53 -0800273 return WORK_CPU_END;
Tejun Heof3421792010-07-02 10:03:51 +0200274}
275
Tejun Heo112202d2013-02-13 19:29:12 -0800276static inline int __next_pwq_cpu(int cpu, const struct cpumask *mask,
Tejun Heo706026c2013-01-24 11:01:34 -0800277 struct workqueue_struct *wq)
Tejun Heof3421792010-07-02 10:03:51 +0200278{
Tejun Heo706026c2013-01-24 11:01:34 -0800279 return __next_wq_cpu(cpu, mask, !(wq->flags & WQ_UNBOUND) ? 1 : 2);
Tejun Heof3421792010-07-02 10:03:51 +0200280}
281
Tejun Heo09884952010-08-01 11:50:12 +0200282/*
283 * CPU iterators
284 *
Tejun Heo706026c2013-01-24 11:01:34 -0800285 * An extra cpu number is defined using an invalid cpu number
Tejun Heo09884952010-08-01 11:50:12 +0200286 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
Tejun Heo706026c2013-01-24 11:01:34 -0800287 * specific CPU. The following iterators are similar to for_each_*_cpu()
288 * iterators but also considers the unbound CPU.
Tejun Heo09884952010-08-01 11:50:12 +0200289 *
Tejun Heo706026c2013-01-24 11:01:34 -0800290 * for_each_wq_cpu() : possible CPUs + WORK_CPU_UNBOUND
291 * for_each_online_wq_cpu() : online CPUs + WORK_CPU_UNBOUND
Tejun Heo112202d2013-02-13 19:29:12 -0800292 * for_each_pwq_cpu() : possible CPUs for bound workqueues,
Tejun Heo09884952010-08-01 11:50:12 +0200293 * WORK_CPU_UNBOUND for unbound workqueues
294 */
Tejun Heo706026c2013-01-24 11:01:34 -0800295#define for_each_wq_cpu(cpu) \
296 for ((cpu) = __next_wq_cpu(-1, cpu_possible_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_possible_mask, 3))
Tejun Heof3421792010-07-02 10:03:51 +0200299
Tejun Heo706026c2013-01-24 11:01:34 -0800300#define for_each_online_wq_cpu(cpu) \
301 for ((cpu) = __next_wq_cpu(-1, cpu_online_mask, 3); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800302 (cpu) < WORK_CPU_END; \
Tejun Heo706026c2013-01-24 11:01:34 -0800303 (cpu) = __next_wq_cpu((cpu), cpu_online_mask, 3))
Tejun Heof3421792010-07-02 10:03:51 +0200304
Tejun Heo112202d2013-02-13 19:29:12 -0800305#define for_each_pwq_cpu(cpu, wq) \
306 for ((cpu) = __next_pwq_cpu(-1, cpu_possible_mask, (wq)); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800307 (cpu) < WORK_CPU_END; \
Tejun Heo112202d2013-02-13 19:29:12 -0800308 (cpu) = __next_pwq_cpu((cpu), cpu_possible_mask, (wq)))
Tejun Heof3421792010-07-02 10:03:51 +0200309
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900310#ifdef CONFIG_DEBUG_OBJECTS_WORK
311
312static struct debug_obj_descr work_debug_descr;
313
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100314static void *work_debug_hint(void *addr)
315{
316 return ((struct work_struct *) addr)->func;
317}
318
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900319/*
320 * fixup_init is called when:
321 * - an active object is initialized
322 */
323static int work_fixup_init(void *addr, enum debug_obj_state state)
324{
325 struct work_struct *work = addr;
326
327 switch (state) {
328 case ODEBUG_STATE_ACTIVE:
329 cancel_work_sync(work);
330 debug_object_init(work, &work_debug_descr);
331 return 1;
332 default:
333 return 0;
334 }
335}
336
337/*
338 * fixup_activate is called when:
339 * - an active object is activated
340 * - an unknown object is activated (might be a statically initialized object)
341 */
342static int work_fixup_activate(void *addr, enum debug_obj_state state)
343{
344 struct work_struct *work = addr;
345
346 switch (state) {
347
348 case ODEBUG_STATE_NOTAVAILABLE:
349 /*
350 * This is not really a fixup. The work struct was
351 * statically initialized. We just make sure that it
352 * is tracked in the object tracker.
353 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200354 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900355 debug_object_init(work, &work_debug_descr);
356 debug_object_activate(work, &work_debug_descr);
357 return 0;
358 }
359 WARN_ON_ONCE(1);
360 return 0;
361
362 case ODEBUG_STATE_ACTIVE:
363 WARN_ON(1);
364
365 default:
366 return 0;
367 }
368}
369
370/*
371 * fixup_free is called when:
372 * - an active object is freed
373 */
374static int work_fixup_free(void *addr, enum debug_obj_state state)
375{
376 struct work_struct *work = addr;
377
378 switch (state) {
379 case ODEBUG_STATE_ACTIVE:
380 cancel_work_sync(work);
381 debug_object_free(work, &work_debug_descr);
382 return 1;
383 default:
384 return 0;
385 }
386}
387
388static struct debug_obj_descr work_debug_descr = {
389 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100390 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900391 .fixup_init = work_fixup_init,
392 .fixup_activate = work_fixup_activate,
393 .fixup_free = work_fixup_free,
394};
395
396static inline void debug_work_activate(struct work_struct *work)
397{
398 debug_object_activate(work, &work_debug_descr);
399}
400
401static inline void debug_work_deactivate(struct work_struct *work)
402{
403 debug_object_deactivate(work, &work_debug_descr);
404}
405
406void __init_work(struct work_struct *work, int onstack)
407{
408 if (onstack)
409 debug_object_init_on_stack(work, &work_debug_descr);
410 else
411 debug_object_init(work, &work_debug_descr);
412}
413EXPORT_SYMBOL_GPL(__init_work);
414
415void destroy_work_on_stack(struct work_struct *work)
416{
417 debug_object_free(work, &work_debug_descr);
418}
419EXPORT_SYMBOL_GPL(destroy_work_on_stack);
420
421#else
422static inline void debug_work_activate(struct work_struct *work) { }
423static inline void debug_work_deactivate(struct work_struct *work) { }
424#endif
425
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100426/* Serializes the accesses to the list of workqueues. */
427static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200429static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Oleg Nesterov14441962007-05-23 13:57:57 -0700431/*
Tejun Heoe19e3972013-01-24 11:39:44 -0800432 * The CPU and unbound standard worker pools. The unbound ones have
433 * POOL_DISASSOCIATED set, and their workers have WORKER_UNBOUND set.
Oleg Nesterov14441962007-05-23 13:57:57 -0700434 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800435static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
436 cpu_std_worker_pools);
Tejun Heoa60dc392013-01-24 11:01:34 -0800437static struct worker_pool unbound_std_worker_pools[NR_STD_WORKER_POOLS];
Tejun Heof3421792010-07-02 10:03:51 +0200438
Tejun Heo9daf9e62013-01-24 11:01:33 -0800439/* idr of all pools */
440static DEFINE_MUTEX(worker_pool_idr_mutex);
441static DEFINE_IDR(worker_pool_idr);
442
Tejun Heoc34056a2010-06-29 10:07:11 +0200443static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Tejun Heoa60dc392013-01-24 11:01:34 -0800445static struct worker_pool *std_worker_pools(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Tejun Heof3421792010-07-02 10:03:51 +0200447 if (cpu != WORK_CPU_UNBOUND)
Tejun Heoa60dc392013-01-24 11:01:34 -0800448 return per_cpu(cpu_std_worker_pools, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200449 else
Tejun Heoa60dc392013-01-24 11:01:34 -0800450 return unbound_std_worker_pools;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Tejun Heo4e8f0a62013-01-24 11:01:34 -0800453static int std_worker_pool_pri(struct worker_pool *pool)
454{
Tejun Heoa60dc392013-01-24 11:01:34 -0800455 return pool - std_worker_pools(pool->cpu);
Tejun Heo4e8f0a62013-01-24 11:01:34 -0800456}
457
Tejun Heo9daf9e62013-01-24 11:01:33 -0800458/* allocate ID and assign it to @pool */
459static int worker_pool_assign_id(struct worker_pool *pool)
460{
461 int ret;
462
463 mutex_lock(&worker_pool_idr_mutex);
464 idr_pre_get(&worker_pool_idr, GFP_KERNEL);
465 ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
466 mutex_unlock(&worker_pool_idr_mutex);
467
468 return ret;
469}
470
Tejun Heo7c3eed52013-01-24 11:01:33 -0800471/*
472 * Lookup worker_pool by id. The idr currently is built during boot and
473 * never modified. Don't worry about locking for now.
474 */
475static struct worker_pool *worker_pool_by_id(int pool_id)
476{
477 return idr_find(&worker_pool_idr, pool_id);
478}
479
Tejun Heod565ed62013-01-24 11:01:33 -0800480static struct worker_pool *get_std_worker_pool(int cpu, bool highpri)
481{
Tejun Heoa60dc392013-01-24 11:01:34 -0800482 struct worker_pool *pools = std_worker_pools(cpu);
Tejun Heod565ed62013-01-24 11:01:33 -0800483
Tejun Heoa60dc392013-01-24 11:01:34 -0800484 return &pools[highpri];
Tejun Heod565ed62013-01-24 11:01:33 -0800485}
486
Tejun Heo112202d2013-02-13 19:29:12 -0800487static struct pool_workqueue *get_pwq(unsigned int cpu,
488 struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700489{
Tejun Heof3421792010-07-02 10:03:51 +0200490 if (!(wq->flags & WQ_UNBOUND)) {
Lai Jiangshane06ffa12012-03-09 18:03:20 +0800491 if (likely(cpu < nr_cpu_ids))
Tejun Heo112202d2013-02-13 19:29:12 -0800492 return per_cpu_ptr(wq->pool_wq.pcpu, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200493 } else if (likely(cpu == WORK_CPU_UNBOUND))
Tejun Heo112202d2013-02-13 19:29:12 -0800494 return wq->pool_wq.single;
Tejun Heof3421792010-07-02 10:03:51 +0200495 return NULL;
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700496}
497
Tejun Heo73f53c42010-06-29 10:07:11 +0200498static unsigned int work_color_to_flags(int color)
499{
500 return color << WORK_STRUCT_COLOR_SHIFT;
501}
502
503static int get_work_color(struct work_struct *work)
504{
505 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
506 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
507}
508
509static int work_next_color(int color)
510{
511 return (color + 1) % WORK_NR_COLORS;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700512}
513
David Howells4594bf12006-12-07 11:33:26 +0000514/*
Tejun Heo112202d2013-02-13 19:29:12 -0800515 * While queued, %WORK_STRUCT_PWQ is set and non flag bits of a work's data
516 * contain the pointer to the queued pwq. Once execution starts, the flag
Tejun Heo7c3eed52013-01-24 11:01:33 -0800517 * is cleared and the high bits contain OFFQ flags and pool ID.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200518 *
Tejun Heo112202d2013-02-13 19:29:12 -0800519 * set_work_pwq(), set_work_pool_and_clear_pending(), mark_work_canceling()
520 * and clear_work_data() can be used to set the pwq, pool or clear
Tejun Heobbb68df2012-08-03 10:30:46 -0700521 * work->data. These functions should only be called while the work is
522 * owned - ie. while the PENDING bit is set.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200523 *
Tejun Heo112202d2013-02-13 19:29:12 -0800524 * get_work_pool() and get_work_pwq() can be used to obtain the pool or pwq
Tejun Heo7c3eed52013-01-24 11:01:33 -0800525 * corresponding to a work. Pool is available once the work has been
Tejun Heo112202d2013-02-13 19:29:12 -0800526 * queued anywhere after initialization until it is sync canceled. pwq is
Tejun Heo7c3eed52013-01-24 11:01:33 -0800527 * available only while the work item is queued.
Tejun Heobbb68df2012-08-03 10:30:46 -0700528 *
529 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
530 * canceled. While being canceled, a work item may have its PENDING set
531 * but stay off timer and worklist for arbitrarily long and nobody should
532 * try to steal the PENDING bit.
David Howells4594bf12006-12-07 11:33:26 +0000533 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200534static inline void set_work_data(struct work_struct *work, unsigned long data,
535 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000536{
Tejun Heo6183c002013-03-12 11:29:57 -0700537 WARN_ON_ONCE(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200538 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000539}
David Howells365970a2006-11-22 14:54:49 +0000540
Tejun Heo112202d2013-02-13 19:29:12 -0800541static void set_work_pwq(struct work_struct *work, struct pool_workqueue *pwq,
Tejun Heo7a22ad72010-06-29 10:07:13 +0200542 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200543{
Tejun Heo112202d2013-02-13 19:29:12 -0800544 set_work_data(work, (unsigned long)pwq,
545 WORK_STRUCT_PENDING | WORK_STRUCT_PWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200546}
547
Lai Jiangshan4468a002013-02-06 18:04:53 -0800548static void set_work_pool_and_keep_pending(struct work_struct *work,
549 int pool_id)
550{
551 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT,
552 WORK_STRUCT_PENDING);
553}
554
Tejun Heo7c3eed52013-01-24 11:01:33 -0800555static void set_work_pool_and_clear_pending(struct work_struct *work,
556 int pool_id)
David Howells365970a2006-11-22 14:54:49 +0000557{
Tejun Heo23657bb2012-08-13 17:08:19 -0700558 /*
559 * The following wmb is paired with the implied mb in
560 * test_and_set_bit(PENDING) and ensures all updates to @work made
561 * here are visible to and precede any updates by the next PENDING
562 * owner.
563 */
564 smp_wmb();
Tejun Heo7c3eed52013-01-24 11:01:33 -0800565 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200566}
567
568static void clear_work_data(struct work_struct *work)
569{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800570 smp_wmb(); /* see set_work_pool_and_clear_pending() */
571 set_work_data(work, WORK_STRUCT_NO_POOL, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200572}
573
Tejun Heo112202d2013-02-13 19:29:12 -0800574static struct pool_workqueue *get_work_pwq(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200575{
Tejun Heoe1201532010-07-22 14:14:25 +0200576 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200577
Tejun Heo112202d2013-02-13 19:29:12 -0800578 if (data & WORK_STRUCT_PWQ)
Tejun Heoe1201532010-07-22 14:14:25 +0200579 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
580 else
581 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200582}
583
Tejun Heo7c3eed52013-01-24 11:01:33 -0800584/**
585 * get_work_pool - return the worker_pool a given work was associated with
586 * @work: the work item of interest
587 *
588 * Return the worker_pool @work was last associated with. %NULL if none.
589 */
590static struct worker_pool *get_work_pool(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200591{
Tejun Heoe1201532010-07-22 14:14:25 +0200592 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800593 struct worker_pool *pool;
594 int pool_id;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200595
Tejun Heo112202d2013-02-13 19:29:12 -0800596 if (data & WORK_STRUCT_PWQ)
597 return ((struct pool_workqueue *)
Tejun Heo7c3eed52013-01-24 11:01:33 -0800598 (data & WORK_STRUCT_WQ_DATA_MASK))->pool;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200599
Tejun Heo7c3eed52013-01-24 11:01:33 -0800600 pool_id = data >> WORK_OFFQ_POOL_SHIFT;
601 if (pool_id == WORK_OFFQ_POOL_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200602 return NULL;
603
Tejun Heo7c3eed52013-01-24 11:01:33 -0800604 pool = worker_pool_by_id(pool_id);
605 WARN_ON_ONCE(!pool);
606 return pool;
607}
608
609/**
610 * get_work_pool_id - return the worker pool ID a given work is associated with
611 * @work: the work item of interest
612 *
613 * Return the worker_pool ID @work was last associated with.
614 * %WORK_OFFQ_POOL_NONE if none.
615 */
616static int get_work_pool_id(struct work_struct *work)
617{
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800618 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800619
Tejun Heo112202d2013-02-13 19:29:12 -0800620 if (data & WORK_STRUCT_PWQ)
621 return ((struct pool_workqueue *)
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800622 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->id;
623
624 return data >> WORK_OFFQ_POOL_SHIFT;
Tejun Heo7c3eed52013-01-24 11:01:33 -0800625}
626
Tejun Heobbb68df2012-08-03 10:30:46 -0700627static void mark_work_canceling(struct work_struct *work)
628{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800629 unsigned long pool_id = get_work_pool_id(work);
Tejun Heobbb68df2012-08-03 10:30:46 -0700630
Tejun Heo7c3eed52013-01-24 11:01:33 -0800631 pool_id <<= WORK_OFFQ_POOL_SHIFT;
632 set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700633}
634
635static bool work_is_canceling(struct work_struct *work)
636{
637 unsigned long data = atomic_long_read(&work->data);
638
Tejun Heo112202d2013-02-13 19:29:12 -0800639 return !(data & WORK_STRUCT_PWQ) && (data & WORK_OFFQ_CANCELING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700640}
641
David Howells365970a2006-11-22 14:54:49 +0000642/*
Tejun Heo32704762012-07-13 22:16:45 -0700643 * Policy functions. These define the policies on how the global worker
644 * pools are managed. Unless noted otherwise, these functions assume that
Tejun Heod565ed62013-01-24 11:01:33 -0800645 * they're being called with pool->lock held.
David Howells365970a2006-11-22 14:54:49 +0000646 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200647
Tejun Heo63d95a92012-07-12 14:46:37 -0700648static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000649{
Tejun Heoe19e3972013-01-24 11:39:44 -0800650 return !atomic_read(&pool->nr_running);
David Howells365970a2006-11-22 14:54:49 +0000651}
652
Tejun Heoe22bee72010-06-29 10:07:14 +0200653/*
654 * Need to wake up a worker? Called from anything but currently
655 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700656 *
657 * Note that, because unbound workers never contribute to nr_running, this
Tejun Heo706026c2013-01-24 11:01:34 -0800658 * function will always return %true for unbound pools as long as the
Tejun Heo974271c2012-07-12 14:46:37 -0700659 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200660 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700661static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000662{
Tejun Heo63d95a92012-07-12 14:46:37 -0700663 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000664}
665
Tejun Heoe22bee72010-06-29 10:07:14 +0200666/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700667static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200668{
Tejun Heo63d95a92012-07-12 14:46:37 -0700669 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200670}
671
672/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700673static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200674{
Tejun Heoe19e3972013-01-24 11:39:44 -0800675 return !list_empty(&pool->worklist) &&
676 atomic_read(&pool->nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200677}
678
679/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700680static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200681{
Tejun Heo63d95a92012-07-12 14:46:37 -0700682 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200683}
684
685/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700686static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200687{
Tejun Heo63d95a92012-07-12 14:46:37 -0700688 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700689 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200690}
691
692/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700693static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200694{
Lai Jiangshan552a37e2012-09-10 10:03:33 -0700695 bool managing = pool->flags & POOL_MANAGING_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -0700696 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
697 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200698
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700699 /*
700 * nr_idle and idle_list may disagree if idle rebinding is in
701 * progress. Never return %true if idle_list is empty.
702 */
703 if (list_empty(&pool->idle_list))
704 return false;
705
Tejun Heoe22bee72010-06-29 10:07:14 +0200706 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
707}
708
709/*
710 * Wake up functions.
711 */
712
Tejun Heo7e116292010-06-29 10:07:13 +0200713/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700714static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200715{
Tejun Heo63d95a92012-07-12 14:46:37 -0700716 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200717 return NULL;
718
Tejun Heo63d95a92012-07-12 14:46:37 -0700719 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200720}
721
722/**
723 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700724 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200725 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700726 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200727 *
728 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800729 * spin_lock_irq(pool->lock).
Tejun Heo7e116292010-06-29 10:07:13 +0200730 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700731static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200732{
Tejun Heo63d95a92012-07-12 14:46:37 -0700733 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200734
735 if (likely(worker))
736 wake_up_process(worker->task);
737}
738
Tejun Heo4690c4a2010-06-29 10:07:10 +0200739/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200740 * wq_worker_waking_up - a worker is waking up
741 * @task: task waking up
742 * @cpu: CPU @task is waking up to
743 *
744 * This function is called during try_to_wake_up() when a worker is
745 * being awoken.
746 *
747 * CONTEXT:
748 * spin_lock_irq(rq->lock)
749 */
750void wq_worker_waking_up(struct task_struct *task, unsigned int cpu)
751{
752 struct worker *worker = kthread_data(task);
753
Joonsoo Kim36576002012-10-26 23:03:49 +0900754 if (!(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoec22ca52013-01-24 11:01:33 -0800755 WARN_ON_ONCE(worker->pool->cpu != cpu);
Tejun Heoe19e3972013-01-24 11:39:44 -0800756 atomic_inc(&worker->pool->nr_running);
Joonsoo Kim36576002012-10-26 23:03:49 +0900757 }
Tejun Heoe22bee72010-06-29 10:07:14 +0200758}
759
760/**
761 * wq_worker_sleeping - a worker is going to sleep
762 * @task: task going to sleep
763 * @cpu: CPU in question, must be the current CPU number
764 *
765 * This function is called during schedule() when a busy worker is
766 * going to sleep. Worker on the same cpu can be woken up by
767 * returning pointer to its task.
768 *
769 * CONTEXT:
770 * spin_lock_irq(rq->lock)
771 *
772 * RETURNS:
773 * Worker task on @cpu to wake up, %NULL if none.
774 */
775struct task_struct *wq_worker_sleeping(struct task_struct *task,
776 unsigned int cpu)
777{
778 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heo111c2252013-01-17 17:16:24 -0800779 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200780
Tejun Heo111c2252013-01-17 17:16:24 -0800781 /*
782 * Rescuers, which may not have all the fields set up like normal
783 * workers, also reach here, let's not access anything before
784 * checking NOT_RUNNING.
785 */
Steven Rostedt2d646722010-12-03 23:12:33 -0500786 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200787 return NULL;
788
Tejun Heo111c2252013-01-17 17:16:24 -0800789 pool = worker->pool;
Tejun Heo111c2252013-01-17 17:16:24 -0800790
Tejun Heoe22bee72010-06-29 10:07:14 +0200791 /* this can only happen on the local cpu */
Tejun Heo6183c002013-03-12 11:29:57 -0700792 if (WARN_ON_ONCE(cpu != raw_smp_processor_id()))
793 return NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +0200794
795 /*
796 * The counterpart of the following dec_and_test, implied mb,
797 * worklist not empty test sequence is in insert_work().
798 * Please read comment there.
799 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700800 * NOT_RUNNING is clear. This means that we're bound to and
801 * running on the local cpu w/ rq lock held and preemption
802 * disabled, which in turn means that none else could be
Tejun Heod565ed62013-01-24 11:01:33 -0800803 * manipulating idle_list, so dereferencing idle_list without pool
Tejun Heo628c78e2012-07-17 12:39:27 -0700804 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200805 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800806 if (atomic_dec_and_test(&pool->nr_running) &&
807 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700808 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200809 return to_wakeup ? to_wakeup->task : NULL;
810}
811
812/**
813 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200814 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200815 * @flags: flags to set
816 * @wakeup: wakeup an idle worker if necessary
817 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200818 * Set @flags in @worker->flags and adjust nr_running accordingly. If
819 * nr_running becomes zero and @wakeup is %true, an idle worker is
820 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200821 *
Tejun Heocb444762010-07-02 10:03:50 +0200822 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800823 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200824 */
825static inline void worker_set_flags(struct worker *worker, unsigned int flags,
826 bool wakeup)
827{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700828 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200829
Tejun Heocb444762010-07-02 10:03:50 +0200830 WARN_ON_ONCE(worker->task != current);
831
Tejun Heoe22bee72010-06-29 10:07:14 +0200832 /*
833 * If transitioning into NOT_RUNNING, adjust nr_running and
834 * wake up an idle worker as necessary if requested by
835 * @wakeup.
836 */
837 if ((flags & WORKER_NOT_RUNNING) &&
838 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoe22bee72010-06-29 10:07:14 +0200839 if (wakeup) {
Tejun Heoe19e3972013-01-24 11:39:44 -0800840 if (atomic_dec_and_test(&pool->nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700841 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700842 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200843 } else
Tejun Heoe19e3972013-01-24 11:39:44 -0800844 atomic_dec(&pool->nr_running);
Tejun Heoe22bee72010-06-29 10:07:14 +0200845 }
846
Tejun Heod302f012010-06-29 10:07:13 +0200847 worker->flags |= flags;
848}
849
850/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200851 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200852 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200853 * @flags: flags to clear
854 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200855 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200856 *
Tejun Heocb444762010-07-02 10:03:50 +0200857 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800858 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200859 */
860static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
861{
Tejun Heo63d95a92012-07-12 14:46:37 -0700862 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200863 unsigned int oflags = worker->flags;
864
Tejun Heocb444762010-07-02 10:03:50 +0200865 WARN_ON_ONCE(worker->task != current);
866
Tejun Heod302f012010-06-29 10:07:13 +0200867 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200868
Tejun Heo42c025f2011-01-11 15:58:49 +0100869 /*
870 * If transitioning out of NOT_RUNNING, increment nr_running. Note
871 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
872 * of multiple flags, not a single flag.
873 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200874 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
875 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heoe19e3972013-01-24 11:39:44 -0800876 atomic_inc(&pool->nr_running);
Tejun Heod302f012010-06-29 10:07:13 +0200877}
878
879/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200880 * find_worker_executing_work - find worker which is executing a work
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800881 * @pool: pool of interest
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200882 * @work: work to find worker for
883 *
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800884 * Find a worker which is executing @work on @pool by searching
885 * @pool->busy_hash which is keyed by the address of @work. For a worker
Tejun Heoa2c1c572012-12-18 10:35:02 -0800886 * to match, its current execution should match the address of @work and
887 * its work function. This is to avoid unwanted dependency between
888 * unrelated work executions through a work item being recycled while still
889 * being executed.
890 *
891 * This is a bit tricky. A work item may be freed once its execution
892 * starts and nothing prevents the freed area from being recycled for
893 * another work item. If the same work item address ends up being reused
894 * before the original execution finishes, workqueue will identify the
895 * recycled work item as currently executing and make it wait until the
896 * current execution finishes, introducing an unwanted dependency.
897 *
898 * This function checks the work item address, work function and workqueue
899 * to avoid false positives. Note that this isn't complete as one may
900 * construct a work function which can introduce dependency onto itself
901 * through a recycled work item. Well, if somebody wants to shoot oneself
902 * in the foot that badly, there's only so much we can do, and if such
903 * deadlock actually occurs, it should be easy to locate the culprit work
904 * function.
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200905 *
906 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800907 * spin_lock_irq(pool->lock).
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200908 *
909 * RETURNS:
910 * Pointer to worker which is executing @work if found, NULL
911 * otherwise.
912 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800913static struct worker *find_worker_executing_work(struct worker_pool *pool,
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200914 struct work_struct *work)
915{
Sasha Levin42f85702012-12-17 10:01:23 -0500916 struct worker *worker;
Sasha Levin42f85702012-12-17 10:01:23 -0500917
Sasha Levinb67bfe02013-02-27 17:06:00 -0800918 hash_for_each_possible(pool->busy_hash, worker, hentry,
Tejun Heoa2c1c572012-12-18 10:35:02 -0800919 (unsigned long)work)
920 if (worker->current_work == work &&
921 worker->current_func == work->func)
Sasha Levin42f85702012-12-17 10:01:23 -0500922 return worker;
923
924 return NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200925}
926
927/**
Tejun Heobf4ede02012-08-03 10:30:46 -0700928 * move_linked_works - move linked works to a list
929 * @work: start of series of works to be scheduled
930 * @head: target list to append @work to
931 * @nextp: out paramter for nested worklist walking
932 *
933 * Schedule linked works starting from @work to @head. Work series to
934 * be scheduled starts at @work and includes any consecutive work with
935 * WORK_STRUCT_LINKED set in its predecessor.
936 *
937 * If @nextp is not NULL, it's updated to point to the next work of
938 * the last scheduled work. This allows move_linked_works() to be
939 * nested inside outer list_for_each_entry_safe().
940 *
941 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800942 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700943 */
944static void move_linked_works(struct work_struct *work, struct list_head *head,
945 struct work_struct **nextp)
946{
947 struct work_struct *n;
948
949 /*
950 * Linked worklist will always end before the end of the list,
951 * use NULL for list head.
952 */
953 list_for_each_entry_safe_from(work, n, NULL, entry) {
954 list_move_tail(&work->entry, head);
955 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
956 break;
957 }
958
959 /*
960 * If we're already inside safe list traversal and have moved
961 * multiple works to the scheduled queue, the next position
962 * needs to be updated.
963 */
964 if (nextp)
965 *nextp = n;
966}
967
Tejun Heo112202d2013-02-13 19:29:12 -0800968static void pwq_activate_delayed_work(struct work_struct *work)
Tejun Heobf4ede02012-08-03 10:30:46 -0700969{
Tejun Heo112202d2013-02-13 19:29:12 -0800970 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobf4ede02012-08-03 10:30:46 -0700971
972 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -0800973 move_linked_works(work, &pwq->pool->worklist, NULL);
Tejun Heobf4ede02012-08-03 10:30:46 -0700974 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo112202d2013-02-13 19:29:12 -0800975 pwq->nr_active++;
Tejun Heobf4ede02012-08-03 10:30:46 -0700976}
977
Tejun Heo112202d2013-02-13 19:29:12 -0800978static void pwq_activate_first_delayed(struct pool_workqueue *pwq)
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700979{
Tejun Heo112202d2013-02-13 19:29:12 -0800980 struct work_struct *work = list_first_entry(&pwq->delayed_works,
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700981 struct work_struct, entry);
982
Tejun Heo112202d2013-02-13 19:29:12 -0800983 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700984}
985
Tejun Heobf4ede02012-08-03 10:30:46 -0700986/**
Tejun Heo112202d2013-02-13 19:29:12 -0800987 * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight
988 * @pwq: pwq of interest
Tejun Heobf4ede02012-08-03 10:30:46 -0700989 * @color: color of work which left the queue
Tejun Heobf4ede02012-08-03 10:30:46 -0700990 *
991 * A work either has completed or is removed from pending queue,
Tejun Heo112202d2013-02-13 19:29:12 -0800992 * decrement nr_in_flight of its pwq and handle workqueue flushing.
Tejun Heobf4ede02012-08-03 10:30:46 -0700993 *
994 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800995 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700996 */
Tejun Heo112202d2013-02-13 19:29:12 -0800997static void pwq_dec_nr_in_flight(struct pool_workqueue *pwq, int color)
Tejun Heobf4ede02012-08-03 10:30:46 -0700998{
999 /* ignore uncolored works */
1000 if (color == WORK_NO_COLOR)
1001 return;
1002
Tejun Heo112202d2013-02-13 19:29:12 -08001003 pwq->nr_in_flight[color]--;
Tejun Heobf4ede02012-08-03 10:30:46 -07001004
Tejun Heo112202d2013-02-13 19:29:12 -08001005 pwq->nr_active--;
1006 if (!list_empty(&pwq->delayed_works)) {
Lai Jiangshanb3f9f402012-09-18 10:40:00 -07001007 /* one down, submit a delayed one */
Tejun Heo112202d2013-02-13 19:29:12 -08001008 if (pwq->nr_active < pwq->max_active)
1009 pwq_activate_first_delayed(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001010 }
1011
1012 /* is flush in progress and are we at the flushing tip? */
Tejun Heo112202d2013-02-13 19:29:12 -08001013 if (likely(pwq->flush_color != color))
Tejun Heobf4ede02012-08-03 10:30:46 -07001014 return;
1015
1016 /* are there still in-flight works? */
Tejun Heo112202d2013-02-13 19:29:12 -08001017 if (pwq->nr_in_flight[color])
Tejun Heobf4ede02012-08-03 10:30:46 -07001018 return;
1019
Tejun Heo112202d2013-02-13 19:29:12 -08001020 /* this pwq is done, clear flush_color */
1021 pwq->flush_color = -1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001022
1023 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001024 * If this was the last pwq, wake up the first flusher. It
Tejun Heobf4ede02012-08-03 10:30:46 -07001025 * will handle the rest.
1026 */
Tejun Heo112202d2013-02-13 19:29:12 -08001027 if (atomic_dec_and_test(&pwq->wq->nr_pwqs_to_flush))
1028 complete(&pwq->wq->first_flusher->done);
Tejun Heobf4ede02012-08-03 10:30:46 -07001029}
1030
Tejun Heo36e227d2012-08-03 10:30:46 -07001031/**
Tejun Heobbb68df2012-08-03 10:30:46 -07001032 * try_to_grab_pending - steal work item from worklist and disable irq
Tejun Heo36e227d2012-08-03 10:30:46 -07001033 * @work: work item to steal
1034 * @is_dwork: @work is a delayed_work
Tejun Heobbb68df2012-08-03 10:30:46 -07001035 * @flags: place to store irq state
Tejun Heo36e227d2012-08-03 10:30:46 -07001036 *
1037 * Try to grab PENDING bit of @work. This function can handle @work in any
1038 * stable state - idle, on timer or on worklist. Return values are
1039 *
1040 * 1 if @work was pending and we successfully stole PENDING
1041 * 0 if @work was idle and we claimed PENDING
1042 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
Tejun Heobbb68df2012-08-03 10:30:46 -07001043 * -ENOENT if someone else is canceling @work, this state may persist
1044 * for arbitrarily long
Tejun Heo36e227d2012-08-03 10:30:46 -07001045 *
Tejun Heobbb68df2012-08-03 10:30:46 -07001046 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001047 * interrupted while holding PENDING and @work off queue, irq must be
1048 * disabled on entry. This, combined with delayed_work->timer being
1049 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
Tejun Heobbb68df2012-08-03 10:30:46 -07001050 *
1051 * On successful return, >= 0, irq is disabled and the caller is
1052 * responsible for releasing it using local_irq_restore(*@flags).
1053 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001054 * This function is safe to call from any context including IRQ handler.
Tejun Heobf4ede02012-08-03 10:30:46 -07001055 */
Tejun Heobbb68df2012-08-03 10:30:46 -07001056static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1057 unsigned long *flags)
Tejun Heobf4ede02012-08-03 10:30:46 -07001058{
Tejun Heod565ed62013-01-24 11:01:33 -08001059 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08001060 struct pool_workqueue *pwq;
Tejun Heobf4ede02012-08-03 10:30:46 -07001061
Tejun Heobbb68df2012-08-03 10:30:46 -07001062 local_irq_save(*flags);
1063
Tejun Heo36e227d2012-08-03 10:30:46 -07001064 /* try to steal the timer if it exists */
1065 if (is_dwork) {
1066 struct delayed_work *dwork = to_delayed_work(work);
1067
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001068 /*
1069 * dwork->timer is irqsafe. If del_timer() fails, it's
1070 * guaranteed that the timer is not queued anywhere and not
1071 * running on the local CPU.
1072 */
Tejun Heo36e227d2012-08-03 10:30:46 -07001073 if (likely(del_timer(&dwork->timer)))
1074 return 1;
1075 }
1076
1077 /* try to claim PENDING the normal way */
Tejun Heobf4ede02012-08-03 10:30:46 -07001078 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1079 return 0;
1080
1081 /*
1082 * The queueing is in progress, or it is already queued. Try to
1083 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1084 */
Tejun Heod565ed62013-01-24 11:01:33 -08001085 pool = get_work_pool(work);
1086 if (!pool)
Tejun Heobbb68df2012-08-03 10:30:46 -07001087 goto fail;
Tejun Heobf4ede02012-08-03 10:30:46 -07001088
Tejun Heod565ed62013-01-24 11:01:33 -08001089 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001090 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001091 * work->data is guaranteed to point to pwq only while the work
1092 * item is queued on pwq->wq, and both updating work->data to point
1093 * to pwq on queueing and to pool on dequeueing are done under
1094 * pwq->pool->lock. This in turn guarantees that, if work->data
1095 * points to pwq which is associated with a locked pool, the work
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001096 * item is currently queued on that pool.
1097 */
Tejun Heo112202d2013-02-13 19:29:12 -08001098 pwq = get_work_pwq(work);
1099 if (pwq && pwq->pool == pool) {
Tejun Heo16062832013-02-06 18:04:53 -08001100 debug_work_deactivate(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001101
Tejun Heo16062832013-02-06 18:04:53 -08001102 /*
1103 * A delayed work item cannot be grabbed directly because
1104 * it might have linked NO_COLOR work items which, if left
Tejun Heo112202d2013-02-13 19:29:12 -08001105 * on the delayed_list, will confuse pwq->nr_active
Tejun Heo16062832013-02-06 18:04:53 -08001106 * management later on and cause stall. Make sure the work
1107 * item is activated before grabbing.
1108 */
1109 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
Tejun Heo112202d2013-02-13 19:29:12 -08001110 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001111
Tejun Heo16062832013-02-06 18:04:53 -08001112 list_del_init(&work->entry);
Tejun Heo112202d2013-02-13 19:29:12 -08001113 pwq_dec_nr_in_flight(get_work_pwq(work), get_work_color(work));
Tejun Heo36e227d2012-08-03 10:30:46 -07001114
Tejun Heo112202d2013-02-13 19:29:12 -08001115 /* work->data points to pwq iff queued, point to pool */
Tejun Heo16062832013-02-06 18:04:53 -08001116 set_work_pool_and_keep_pending(work, pool->id);
Lai Jiangshan4468a002013-02-06 18:04:53 -08001117
Tejun Heo16062832013-02-06 18:04:53 -08001118 spin_unlock(&pool->lock);
1119 return 1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001120 }
Tejun Heod565ed62013-01-24 11:01:33 -08001121 spin_unlock(&pool->lock);
Tejun Heobbb68df2012-08-03 10:30:46 -07001122fail:
1123 local_irq_restore(*flags);
1124 if (work_is_canceling(work))
1125 return -ENOENT;
1126 cpu_relax();
Tejun Heo36e227d2012-08-03 10:30:46 -07001127 return -EAGAIN;
Tejun Heobf4ede02012-08-03 10:30:46 -07001128}
1129
1130/**
Tejun Heo706026c2013-01-24 11:01:34 -08001131 * insert_work - insert a work into a pool
Tejun Heo112202d2013-02-13 19:29:12 -08001132 * @pwq: pwq @work belongs to
Tejun Heo4690c4a2010-06-29 10:07:10 +02001133 * @work: work to insert
1134 * @head: insertion point
1135 * @extra_flags: extra WORK_STRUCT_* flags to set
1136 *
Tejun Heo112202d2013-02-13 19:29:12 -08001137 * Insert @work which belongs to @pwq after @head. @extra_flags is or'd to
Tejun Heo706026c2013-01-24 11:01:34 -08001138 * work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001139 *
1140 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001141 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001142 */
Tejun Heo112202d2013-02-13 19:29:12 -08001143static void insert_work(struct pool_workqueue *pwq, struct work_struct *work,
1144 struct list_head *head, unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001145{
Tejun Heo112202d2013-02-13 19:29:12 -08001146 struct worker_pool *pool = pwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01001147
Tejun Heo4690c4a2010-06-29 10:07:10 +02001148 /* we own @work, set data and link */
Tejun Heo112202d2013-02-13 19:29:12 -08001149 set_work_pwq(work, pwq, extra_flags);
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -07001150 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +02001151
1152 /*
1153 * Ensure either worker_sched_deactivated() sees the above
1154 * list_add_tail() or we see zero nr_running to avoid workers
1155 * lying around lazily while there are works to be processed.
1156 */
1157 smp_mb();
1158
Tejun Heo63d95a92012-07-12 14:46:37 -07001159 if (__need_more_worker(pool))
1160 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001161}
1162
Tejun Heoc8efcc22010-12-20 19:32:04 +01001163/*
1164 * Test whether @work is being queued from another work executing on the
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001165 * same workqueue.
Tejun Heoc8efcc22010-12-20 19:32:04 +01001166 */
1167static bool is_chained_work(struct workqueue_struct *wq)
1168{
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001169 struct worker *worker;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001170
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001171 worker = current_wq_worker();
1172 /*
1173 * Return %true iff I'm a worker execuing a work item on @wq. If
1174 * I'm @worker, it's safe to dereference it without locking.
1175 */
Tejun Heo112202d2013-02-13 19:29:12 -08001176 return worker && worker->current_pwq->wq == wq;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001177}
1178
Tejun Heo4690c4a2010-06-29 10:07:10 +02001179static void __queue_work(unsigned int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 struct work_struct *work)
1181{
Tejun Heo112202d2013-02-13 19:29:12 -08001182 struct pool_workqueue *pwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001183 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001184 unsigned int work_flags;
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001185 unsigned int req_cpu = cpu;
Tejun Heo8930cab2012-08-03 10:30:45 -07001186
1187 /*
1188 * While a work item is PENDING && off queue, a task trying to
1189 * steal the PENDING will busy-loop waiting for it to either get
1190 * queued or lose PENDING. Grabbing PENDING and queueing should
1191 * happen with IRQ disabled.
1192 */
1193 WARN_ON_ONCE(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001195 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001196
Tejun Heoc8efcc22010-12-20 19:32:04 +01001197 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02001198 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +01001199 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +02001200 return;
1201
Tejun Heo112202d2013-02-13 19:29:12 -08001202 /* determine the pwq to use */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001203 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001204 struct worker_pool *last_pool;
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001205
Tejun Heo57469822012-08-03 10:30:45 -07001206 if (cpu == WORK_CPU_UNBOUND)
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001207 cpu = raw_smp_processor_id();
1208
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001209 /*
Tejun Heodbf25762012-08-20 14:51:23 -07001210 * It's multi cpu. If @work was previously on a different
1211 * cpu, it might still be running there, in which case the
1212 * work needs to be queued on that cpu to guarantee
1213 * non-reentrancy.
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001214 */
Tejun Heo112202d2013-02-13 19:29:12 -08001215 pwq = get_pwq(cpu, wq);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001216 last_pool = get_work_pool(work);
Tejun Heodbf25762012-08-20 14:51:23 -07001217
Tejun Heo112202d2013-02-13 19:29:12 -08001218 if (last_pool && last_pool != pwq->pool) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001219 struct worker *worker;
1220
Tejun Heod565ed62013-01-24 11:01:33 -08001221 spin_lock(&last_pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001222
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001223 worker = find_worker_executing_work(last_pool, work);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001224
Tejun Heo112202d2013-02-13 19:29:12 -08001225 if (worker && worker->current_pwq->wq == wq) {
1226 pwq = get_pwq(last_pool->cpu, wq);
Lai Jiangshan8594fad2013-02-07 13:14:20 -08001227 } else {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001228 /* meh... not running there, queue here */
Tejun Heod565ed62013-01-24 11:01:33 -08001229 spin_unlock(&last_pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08001230 spin_lock(&pwq->pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001231 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001232 } else {
Tejun Heo112202d2013-02-13 19:29:12 -08001233 spin_lock(&pwq->pool->lock);
Tejun Heo8930cab2012-08-03 10:30:45 -07001234 }
Tejun Heof3421792010-07-02 10:03:51 +02001235 } else {
Tejun Heo112202d2013-02-13 19:29:12 -08001236 pwq = get_pwq(WORK_CPU_UNBOUND, wq);
1237 spin_lock(&pwq->pool->lock);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001238 }
1239
Tejun Heo112202d2013-02-13 19:29:12 -08001240 /* pwq determined, queue */
1241 trace_workqueue_queue_work(req_cpu, pwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001242
Dan Carpenterf5b25522012-04-13 22:06:58 +03001243 if (WARN_ON(!list_empty(&work->entry))) {
Tejun Heo112202d2013-02-13 19:29:12 -08001244 spin_unlock(&pwq->pool->lock);
Dan Carpenterf5b25522012-04-13 22:06:58 +03001245 return;
1246 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001247
Tejun Heo112202d2013-02-13 19:29:12 -08001248 pwq->nr_in_flight[pwq->work_color]++;
1249 work_flags = work_color_to_flags(pwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001250
Tejun Heo112202d2013-02-13 19:29:12 -08001251 if (likely(pwq->nr_active < pwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001252 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -08001253 pwq->nr_active++;
1254 worklist = &pwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001255 } else {
1256 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo112202d2013-02-13 19:29:12 -08001257 worklist = &pwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001258 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001259
Tejun Heo112202d2013-02-13 19:29:12 -08001260 insert_work(pwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001261
Tejun Heo112202d2013-02-13 19:29:12 -08001262 spin_unlock(&pwq->pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001265/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07001266 * queue_work_on - queue work on specific cpu
1267 * @cpu: CPU number to execute work on
1268 * @wq: workqueue to use
1269 * @work: work to queue
1270 *
Tejun Heod4283e92012-08-03 10:30:44 -07001271 * Returns %false if @work was already on a queue, %true otherwise.
Zhang Ruic1a220e2008-07-23 21:28:39 -07001272 *
1273 * We queue the work to a specific CPU, the caller must ensure it
1274 * can't go away.
1275 */
Tejun Heod4283e92012-08-03 10:30:44 -07001276bool queue_work_on(int cpu, struct workqueue_struct *wq,
1277 struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07001278{
Tejun Heod4283e92012-08-03 10:30:44 -07001279 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001280 unsigned long flags;
1281
1282 local_irq_save(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001283
Tejun Heo22df02b2010-06-29 10:07:10 +02001284 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001285 __queue_work(cpu, wq, work);
Tejun Heod4283e92012-08-03 10:30:44 -07001286 ret = true;
Zhang Ruic1a220e2008-07-23 21:28:39 -07001287 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001288
1289 local_irq_restore(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001290 return ret;
1291}
1292EXPORT_SYMBOL_GPL(queue_work_on);
1293
Tejun Heo0a13c002012-08-03 10:30:44 -07001294/**
1295 * queue_work - queue work on a workqueue
1296 * @wq: workqueue to use
1297 * @work: work to queue
1298 *
Tejun Heod4283e92012-08-03 10:30:44 -07001299 * Returns %false if @work was already on a queue, %true otherwise.
Tejun Heo0a13c002012-08-03 10:30:44 -07001300 *
1301 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1302 * it can be processed by another CPU.
1303 */
Tejun Heod4283e92012-08-03 10:30:44 -07001304bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
Tejun Heo0a13c002012-08-03 10:30:44 -07001305{
Tejun Heo57469822012-08-03 10:30:45 -07001306 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
Tejun Heo0a13c002012-08-03 10:30:44 -07001307}
1308EXPORT_SYMBOL_GPL(queue_work);
1309
Tejun Heod8e794d2012-08-03 10:30:45 -07001310void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
David Howells52bad642006-11-22 14:54:01 +00001312 struct delayed_work *dwork = (struct delayed_work *)__data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001314 /* should have been called from irqsafe timer with irq already off */
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001315 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
Konstantin Khlebnikov1438ade52013-01-24 16:36:31 +04001317EXPORT_SYMBOL(delayed_work_timer_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001319static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1320 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001322 struct timer_list *timer = &dwork->timer;
1323 struct work_struct *work = &dwork->work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001325 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1326 timer->data != (unsigned long)dwork);
Tejun Heofc4b5142012-12-04 07:40:39 -08001327 WARN_ON_ONCE(timer_pending(timer));
1328 WARN_ON_ONCE(!list_empty(&work->entry));
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001329
Tejun Heo8852aac2012-12-01 16:23:42 -08001330 /*
1331 * If @delay is 0, queue @dwork->work immediately. This is for
1332 * both optimization and correctness. The earliest @timer can
1333 * expire is on the closest next tick and delayed_work users depend
1334 * on that there's no such delay when @delay is 0.
1335 */
1336 if (!delay) {
1337 __queue_work(cpu, wq, &dwork->work);
1338 return;
1339 }
1340
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001341 timer_stats_timer_set_start_info(&dwork->timer);
1342
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001343 dwork->wq = wq;
Tejun Heo12650572012-08-08 09:38:42 -07001344 dwork->cpu = cpu;
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001345 timer->expires = jiffies + delay;
1346
1347 if (unlikely(cpu != WORK_CPU_UNBOUND))
1348 add_timer_on(timer, cpu);
1349 else
1350 add_timer(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001353/**
1354 * queue_delayed_work_on - queue work on specific CPU after delay
1355 * @cpu: CPU number to execute work on
1356 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001357 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001358 * @delay: number of jiffies to wait before queueing
1359 *
Tejun Heo715f1302012-08-03 10:30:46 -07001360 * Returns %false if @work was already on a queue, %true otherwise. If
1361 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1362 * execution.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001363 */
Tejun Heod4283e92012-08-03 10:30:44 -07001364bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1365 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001366{
David Howells52bad642006-11-22 14:54:01 +00001367 struct work_struct *work = &dwork->work;
Tejun Heod4283e92012-08-03 10:30:44 -07001368 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001369 unsigned long flags;
1370
1371 /* read the comment in __queue_work() */
1372 local_irq_save(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001373
Tejun Heo22df02b2010-06-29 10:07:10 +02001374 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001375 __queue_delayed_work(cpu, wq, dwork, delay);
Tejun Heod4283e92012-08-03 10:30:44 -07001376 ret = true;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001377 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001378
1379 local_irq_restore(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001380 return ret;
1381}
Dave Jonesae90dd52006-06-30 01:40:45 -04001382EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Tejun Heoc8e55f32010-06-29 10:07:12 +02001384/**
Tejun Heo0a13c002012-08-03 10:30:44 -07001385 * queue_delayed_work - queue work on a workqueue after delay
1386 * @wq: workqueue to use
1387 * @dwork: delayable work to queue
1388 * @delay: number of jiffies to wait before queueing
1389 *
Tejun Heo715f1302012-08-03 10:30:46 -07001390 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
Tejun Heo0a13c002012-08-03 10:30:44 -07001391 */
Tejun Heod4283e92012-08-03 10:30:44 -07001392bool queue_delayed_work(struct workqueue_struct *wq,
Tejun Heo0a13c002012-08-03 10:30:44 -07001393 struct delayed_work *dwork, unsigned long delay)
1394{
Tejun Heo57469822012-08-03 10:30:45 -07001395 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
Tejun Heo0a13c002012-08-03 10:30:44 -07001396}
1397EXPORT_SYMBOL_GPL(queue_delayed_work);
1398
1399/**
Tejun Heo8376fe22012-08-03 10:30:47 -07001400 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1401 * @cpu: CPU number to execute work on
1402 * @wq: workqueue to use
1403 * @dwork: work to queue
1404 * @delay: number of jiffies to wait before queueing
1405 *
1406 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1407 * modify @dwork's timer so that it expires after @delay. If @delay is
1408 * zero, @work is guaranteed to be scheduled immediately regardless of its
1409 * current state.
1410 *
1411 * Returns %false if @dwork was idle and queued, %true if @dwork was
1412 * pending and its timer was modified.
1413 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001414 * This function is safe to call from any context including IRQ handler.
Tejun Heo8376fe22012-08-03 10:30:47 -07001415 * See try_to_grab_pending() for details.
1416 */
1417bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1418 struct delayed_work *dwork, unsigned long delay)
1419{
1420 unsigned long flags;
1421 int ret;
1422
1423 do {
1424 ret = try_to_grab_pending(&dwork->work, true, &flags);
1425 } while (unlikely(ret == -EAGAIN));
1426
1427 if (likely(ret >= 0)) {
1428 __queue_delayed_work(cpu, wq, dwork, delay);
1429 local_irq_restore(flags);
1430 }
1431
1432 /* -ENOENT from try_to_grab_pending() becomes %true */
1433 return ret;
1434}
1435EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1436
1437/**
1438 * mod_delayed_work - modify delay of or queue a delayed work
1439 * @wq: workqueue to use
1440 * @dwork: work to queue
1441 * @delay: number of jiffies to wait before queueing
1442 *
1443 * mod_delayed_work_on() on local CPU.
1444 */
1445bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
1446 unsigned long delay)
1447{
1448 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
1449}
1450EXPORT_SYMBOL_GPL(mod_delayed_work);
1451
1452/**
Tejun Heoc8e55f32010-06-29 10:07:12 +02001453 * worker_enter_idle - enter idle state
1454 * @worker: worker which is entering idle state
1455 *
1456 * @worker is entering idle state. Update stats and idle timer if
1457 * necessary.
1458 *
1459 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001460 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001461 */
1462static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001464 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Tejun Heo6183c002013-03-12 11:29:57 -07001466 if (WARN_ON_ONCE(worker->flags & WORKER_IDLE) ||
1467 WARN_ON_ONCE(!list_empty(&worker->entry) &&
1468 (worker->hentry.next || worker->hentry.pprev)))
1469 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Tejun Heocb444762010-07-02 10:03:50 +02001471 /* can't use worker_set_flags(), also called from start_worker() */
1472 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001473 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001474 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001475
Tejun Heoc8e55f32010-06-29 10:07:12 +02001476 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001477 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001478
Tejun Heo628c78e2012-07-17 12:39:27 -07001479 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1480 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001481
Tejun Heo544ecf32012-05-14 15:04:50 -07001482 /*
Tejun Heo706026c2013-01-24 11:01:34 -08001483 * Sanity check nr_running. Because wq_unbind_fn() releases
Tejun Heod565ed62013-01-24 11:01:33 -08001484 * pool->lock between setting %WORKER_UNBOUND and zapping
Tejun Heo628c78e2012-07-17 12:39:27 -07001485 * nr_running, the warning may trigger spuriously. Check iff
1486 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001487 */
Tejun Heo24647572013-01-24 11:01:33 -08001488 WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001489 pool->nr_workers == pool->nr_idle &&
Tejun Heoe19e3972013-01-24 11:39:44 -08001490 atomic_read(&pool->nr_running));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Tejun Heoc8e55f32010-06-29 10:07:12 +02001493/**
1494 * worker_leave_idle - leave idle state
1495 * @worker: worker which is leaving idle state
1496 *
1497 * @worker is leaving idle state. Update stats.
1498 *
1499 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001500 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001501 */
1502static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001504 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Tejun Heo6183c002013-03-12 11:29:57 -07001506 if (WARN_ON_ONCE(!(worker->flags & WORKER_IDLE)))
1507 return;
Tejun Heod302f012010-06-29 10:07:13 +02001508 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001509 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001510 list_del_init(&worker->entry);
1511}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Tejun Heoe22bee72010-06-29 10:07:14 +02001513/**
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001514 * worker_maybe_bind_and_lock - try to bind %current to worker_pool and lock it
1515 * @pool: target worker_pool
1516 *
1517 * Bind %current to the cpu of @pool if it is associated and lock @pool.
Tejun Heoe22bee72010-06-29 10:07:14 +02001518 *
1519 * Works which are scheduled while the cpu is online must at least be
1520 * scheduled to a worker which is bound to the cpu so that if they are
1521 * flushed from cpu callbacks while cpu is going down, they are
1522 * guaranteed to execute on the cpu.
1523 *
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001524 * This function is to be used by unbound workers and rescuers to bind
Tejun Heoe22bee72010-06-29 10:07:14 +02001525 * themselves to the target cpu and may race with cpu going down or
1526 * coming online. kthread_bind() can't be used because it may put the
1527 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
Tejun Heo706026c2013-01-24 11:01:34 -08001528 * verbatim as it's best effort and blocking and pool may be
Tejun Heoe22bee72010-06-29 10:07:14 +02001529 * [dis]associated in the meantime.
1530 *
Tejun Heo706026c2013-01-24 11:01:34 -08001531 * This function tries set_cpus_allowed() and locks pool and verifies the
Tejun Heo24647572013-01-24 11:01:33 -08001532 * binding against %POOL_DISASSOCIATED which is set during
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001533 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1534 * enters idle state or fetches works without dropping lock, it can
1535 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001536 *
1537 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001538 * Might sleep. Called without any lock but returns with pool->lock
Tejun Heoe22bee72010-06-29 10:07:14 +02001539 * held.
1540 *
1541 * RETURNS:
Tejun Heo706026c2013-01-24 11:01:34 -08001542 * %true if the associated pool is online (@worker is successfully
Tejun Heoe22bee72010-06-29 10:07:14 +02001543 * bound), %false if offline.
1544 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001545static bool worker_maybe_bind_and_lock(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001546__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001547{
Tejun Heoe22bee72010-06-29 10:07:14 +02001548 while (true) {
1549 /*
1550 * The following call may fail, succeed or succeed
1551 * without actually migrating the task to the cpu if
1552 * it races with cpu hotunplug operation. Verify
Tejun Heo24647572013-01-24 11:01:33 -08001553 * against POOL_DISASSOCIATED.
Tejun Heoe22bee72010-06-29 10:07:14 +02001554 */
Tejun Heo24647572013-01-24 11:01:33 -08001555 if (!(pool->flags & POOL_DISASSOCIATED))
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001556 set_cpus_allowed_ptr(current, get_cpu_mask(pool->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001557
Tejun Heod565ed62013-01-24 11:01:33 -08001558 spin_lock_irq(&pool->lock);
Tejun Heo24647572013-01-24 11:01:33 -08001559 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heoe22bee72010-06-29 10:07:14 +02001560 return false;
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001561 if (task_cpu(current) == pool->cpu &&
Tejun Heoe22bee72010-06-29 10:07:14 +02001562 cpumask_equal(&current->cpus_allowed,
Tejun Heoec22ca52013-01-24 11:01:33 -08001563 get_cpu_mask(pool->cpu)))
Tejun Heoe22bee72010-06-29 10:07:14 +02001564 return true;
Tejun Heod565ed62013-01-24 11:01:33 -08001565 spin_unlock_irq(&pool->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001566
Tejun Heo5035b202011-04-29 18:08:37 +02001567 /*
1568 * We've raced with CPU hot[un]plug. Give it a breather
1569 * and retry migration. cond_resched() is required here;
1570 * otherwise, we might deadlock against cpu_stop trying to
1571 * bring down the CPU on non-preemptive kernel.
1572 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001573 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001574 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001575 }
1576}
1577
1578/*
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001579 * Rebind an idle @worker to its CPU. worker_thread() will test
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001580 * list_empty(@worker->entry) before leaving idle and call this function.
Tejun Heo25511a42012-07-17 12:39:27 -07001581 */
1582static void idle_worker_rebind(struct worker *worker)
1583{
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001584 /* CPU may go down again inbetween, clear UNBOUND only on success */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001585 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001586 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heo25511a42012-07-17 12:39:27 -07001587
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001588 /* rebind complete, become available again */
1589 list_add(&worker->entry, &worker->pool->idle_list);
Tejun Heod565ed62013-01-24 11:01:33 -08001590 spin_unlock_irq(&worker->pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001591}
1592
1593/*
1594 * Function for @worker->rebind.work used to rebind unbound busy workers to
Tejun Heo403c8212012-07-17 12:39:27 -07001595 * the associated cpu which is coming back online. This is scheduled by
1596 * cpu up but can race with other cpu hotplug operations and may be
1597 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001598 */
Tejun Heo25511a42012-07-17 12:39:27 -07001599static void busy_worker_rebind_fn(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001600{
1601 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heoe22bee72010-06-29 10:07:14 +02001602
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001603 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshaneab6d822012-09-18 09:59:22 -07001604 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heoe22bee72010-06-29 10:07:14 +02001605
Tejun Heod565ed62013-01-24 11:01:33 -08001606 spin_unlock_irq(&worker->pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001607}
1608
Tejun Heo25511a42012-07-17 12:39:27 -07001609/**
Tejun Heo94cf58b2013-01-24 11:01:33 -08001610 * rebind_workers - rebind all workers of a pool to the associated CPU
1611 * @pool: pool of interest
Tejun Heo25511a42012-07-17 12:39:27 -07001612 *
Tejun Heo94cf58b2013-01-24 11:01:33 -08001613 * @pool->cpu is coming online. Rebind all workers to the CPU. Rebinding
Tejun Heo25511a42012-07-17 12:39:27 -07001614 * is different for idle and busy ones.
1615 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001616 * Idle ones will be removed from the idle_list and woken up. They will
1617 * add themselves back after completing rebind. This ensures that the
1618 * idle_list doesn't contain any unbound workers when re-bound busy workers
1619 * try to perform local wake-ups for concurrency management.
Tejun Heo25511a42012-07-17 12:39:27 -07001620 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001621 * Busy workers can rebind after they finish their current work items.
1622 * Queueing the rebind work item at the head of the scheduled list is
1623 * enough. Note that nr_running will be properly bumped as busy workers
1624 * rebind.
Tejun Heo25511a42012-07-17 12:39:27 -07001625 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001626 * On return, all non-manager workers are scheduled for rebind - see
1627 * manage_workers() for the manager special case. Any idle worker
1628 * including the manager will not appear on @idle_list until rebind is
1629 * complete, making local wake-ups safe.
Tejun Heo25511a42012-07-17 12:39:27 -07001630 */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001631static void rebind_workers(struct worker_pool *pool)
Tejun Heo25511a42012-07-17 12:39:27 -07001632{
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001633 struct worker *worker, *n;
Tejun Heo25511a42012-07-17 12:39:27 -07001634 int i;
1635
Tejun Heo94cf58b2013-01-24 11:01:33 -08001636 lockdep_assert_held(&pool->assoc_mutex);
1637 lockdep_assert_held(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001638
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001639 /* dequeue and kick idle ones */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001640 list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
1641 /*
1642 * idle workers should be off @pool->idle_list until rebind
1643 * is complete to avoid receiving premature local wake-ups.
1644 */
1645 list_del_init(&worker->entry);
Lai Jiangshan96e65302012-09-02 00:28:19 +08001646
Tejun Heo94cf58b2013-01-24 11:01:33 -08001647 /*
1648 * worker_thread() will see the above dequeuing and call
1649 * idle_worker_rebind().
1650 */
1651 wake_up_process(worker->task);
1652 }
Tejun Heo25511a42012-07-17 12:39:27 -07001653
Tejun Heo94cf58b2013-01-24 11:01:33 -08001654 /* rebind busy workers */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001655 for_each_busy_worker(worker, i, pool) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08001656 struct work_struct *rebind_work = &worker->rebind_work;
1657 struct workqueue_struct *wq;
Tejun Heo25511a42012-07-17 12:39:27 -07001658
Tejun Heo94cf58b2013-01-24 11:01:33 -08001659 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1660 work_data_bits(rebind_work)))
1661 continue;
Tejun Heo25511a42012-07-17 12:39:27 -07001662
Tejun Heo94cf58b2013-01-24 11:01:33 -08001663 debug_work_activate(rebind_work);
Tejun Heo90beca52012-09-04 23:12:33 -07001664
Tejun Heo94cf58b2013-01-24 11:01:33 -08001665 /*
1666 * wq doesn't really matter but let's keep @worker->pool
Tejun Heo112202d2013-02-13 19:29:12 -08001667 * and @pwq->pool consistent for sanity.
Tejun Heo94cf58b2013-01-24 11:01:33 -08001668 */
1669 if (std_worker_pool_pri(worker->pool))
1670 wq = system_highpri_wq;
1671 else
1672 wq = system_wq;
Tejun Heoec588152012-09-04 23:16:32 -07001673
Tejun Heo112202d2013-02-13 19:29:12 -08001674 insert_work(get_pwq(pool->cpu, wq), rebind_work,
Tejun Heo94cf58b2013-01-24 11:01:33 -08001675 worker->scheduled.next,
1676 work_color_to_flags(WORK_NO_COLOR));
Tejun Heoec588152012-09-04 23:16:32 -07001677 }
Tejun Heo25511a42012-07-17 12:39:27 -07001678}
1679
Tejun Heoc34056a2010-06-29 10:07:11 +02001680static struct worker *alloc_worker(void)
1681{
1682 struct worker *worker;
1683
1684 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001685 if (worker) {
1686 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001687 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001688 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001689 /* on creation a worker is in !idle && prep state */
1690 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001691 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001692 return worker;
1693}
1694
1695/**
1696 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001697 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001698 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001699 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001700 * can be started by calling start_worker() or destroyed using
1701 * destroy_worker().
1702 *
1703 * CONTEXT:
1704 * Might sleep. Does GFP_KERNEL allocations.
1705 *
1706 * RETURNS:
1707 * Pointer to the newly created worker.
1708 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001709static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001710{
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001711 const char *pri = std_worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001712 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001713 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001714
Tejun Heod565ed62013-01-24 11:01:33 -08001715 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001716 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heod565ed62013-01-24 11:01:33 -08001717 spin_unlock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001718 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001719 goto fail;
Tejun Heod565ed62013-01-24 11:01:33 -08001720 spin_lock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001721 }
Tejun Heod565ed62013-01-24 11:01:33 -08001722 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001723
1724 worker = alloc_worker();
1725 if (!worker)
1726 goto fail;
1727
Tejun Heobd7bdd42012-07-12 14:46:37 -07001728 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001729 worker->id = id;
1730
Tejun Heoec22ca52013-01-24 11:01:33 -08001731 if (pool->cpu != WORK_CPU_UNBOUND)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001732 worker->task = kthread_create_on_node(worker_thread,
Tejun Heoec22ca52013-01-24 11:01:33 -08001733 worker, cpu_to_node(pool->cpu),
1734 "kworker/%u:%d%s", pool->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001735 else
1736 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001737 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001738 if (IS_ERR(worker->task))
1739 goto fail;
1740
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001741 if (std_worker_pool_pri(pool))
Tejun Heo32704762012-07-13 22:16:45 -07001742 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1743
Tejun Heodb7bccf2010-06-29 10:07:12 +02001744 /*
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001745 * Determine CPU binding of the new worker depending on
Tejun Heo24647572013-01-24 11:01:33 -08001746 * %POOL_DISASSOCIATED. The caller is responsible for ensuring the
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001747 * flag remains stable across this function. See the comments
1748 * above the flag definition for details.
1749 *
1750 * As an unbound worker may later become a regular one if CPU comes
1751 * online, make sure every worker has %PF_THREAD_BOUND set.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001752 */
Tejun Heo24647572013-01-24 11:01:33 -08001753 if (!(pool->flags & POOL_DISASSOCIATED)) {
Tejun Heoec22ca52013-01-24 11:01:33 -08001754 kthread_bind(worker->task, pool->cpu);
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001755 } else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001756 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001757 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001759
Tejun Heoc34056a2010-06-29 10:07:11 +02001760 return worker;
1761fail:
1762 if (id >= 0) {
Tejun Heod565ed62013-01-24 11:01:33 -08001763 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001764 ida_remove(&pool->worker_ida, id);
Tejun Heod565ed62013-01-24 11:01:33 -08001765 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001766 }
1767 kfree(worker);
1768 return NULL;
1769}
1770
1771/**
1772 * start_worker - start a newly created worker
1773 * @worker: worker to start
1774 *
Tejun Heo706026c2013-01-24 11:01:34 -08001775 * Make the pool aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001776 *
1777 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001778 * spin_lock_irq(pool->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001779 */
1780static void start_worker(struct worker *worker)
1781{
Tejun Heocb444762010-07-02 10:03:50 +02001782 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001783 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001784 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001785 wake_up_process(worker->task);
1786}
1787
1788/**
1789 * destroy_worker - destroy a workqueue worker
1790 * @worker: worker to be destroyed
1791 *
Tejun Heo706026c2013-01-24 11:01:34 -08001792 * Destroy @worker and adjust @pool stats accordingly.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001793 *
1794 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001795 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001796 */
1797static void destroy_worker(struct worker *worker)
1798{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001799 struct worker_pool *pool = worker->pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001800 int id = worker->id;
1801
1802 /* sanity check frenzy */
Tejun Heo6183c002013-03-12 11:29:57 -07001803 if (WARN_ON(worker->current_work) ||
1804 WARN_ON(!list_empty(&worker->scheduled)))
1805 return;
Tejun Heoc34056a2010-06-29 10:07:11 +02001806
Tejun Heoc8e55f32010-06-29 10:07:12 +02001807 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001808 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001809 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001810 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001811
1812 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001813 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001814
Tejun Heod565ed62013-01-24 11:01:33 -08001815 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001816
Tejun Heoc34056a2010-06-29 10:07:11 +02001817 kthread_stop(worker->task);
1818 kfree(worker);
1819
Tejun Heod565ed62013-01-24 11:01:33 -08001820 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001821 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001822}
1823
Tejun Heo63d95a92012-07-12 14:46:37 -07001824static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001825{
Tejun Heo63d95a92012-07-12 14:46:37 -07001826 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001827
Tejun Heod565ed62013-01-24 11:01:33 -08001828 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001829
Tejun Heo63d95a92012-07-12 14:46:37 -07001830 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001831 struct worker *worker;
1832 unsigned long expires;
1833
1834 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001835 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001836 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1837
1838 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001839 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001840 else {
1841 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001842 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001843 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001844 }
1845 }
1846
Tejun Heod565ed62013-01-24 11:01:33 -08001847 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001848}
1849
1850static bool send_mayday(struct work_struct *work)
1851{
Tejun Heo112202d2013-02-13 19:29:12 -08001852 struct pool_workqueue *pwq = get_work_pwq(work);
1853 struct workqueue_struct *wq = pwq->wq;
Tejun Heof3421792010-07-02 10:03:51 +02001854 unsigned int cpu;
Tejun Heoe22bee72010-06-29 10:07:14 +02001855
1856 if (!(wq->flags & WQ_RESCUER))
1857 return false;
1858
1859 /* mayday mayday mayday */
Tejun Heo112202d2013-02-13 19:29:12 -08001860 cpu = pwq->pool->cpu;
Tejun Heof3421792010-07-02 10:03:51 +02001861 /* WORK_CPU_UNBOUND can't be set in cpumask, use cpu 0 instead */
1862 if (cpu == WORK_CPU_UNBOUND)
1863 cpu = 0;
Tejun Heof2e005a2010-07-20 15:59:09 +02001864 if (!mayday_test_and_set_cpu(cpu, wq->mayday_mask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001865 wake_up_process(wq->rescuer->task);
1866 return true;
1867}
1868
Tejun Heo706026c2013-01-24 11:01:34 -08001869static void pool_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001870{
Tejun Heo63d95a92012-07-12 14:46:37 -07001871 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001872 struct work_struct *work;
1873
Tejun Heod565ed62013-01-24 11:01:33 -08001874 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001875
Tejun Heo63d95a92012-07-12 14:46:37 -07001876 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001877 /*
1878 * We've been trying to create a new worker but
1879 * haven't been successful. We might be hitting an
1880 * allocation deadlock. Send distress signals to
1881 * rescuers.
1882 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001883 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001884 send_mayday(work);
1885 }
1886
Tejun Heod565ed62013-01-24 11:01:33 -08001887 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001888
Tejun Heo63d95a92012-07-12 14:46:37 -07001889 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001890}
1891
1892/**
1893 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001894 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001895 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001896 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001897 * have at least one idle worker on return from this function. If
1898 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001899 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001900 * possible allocation deadlock.
1901 *
1902 * On return, need_to_create_worker() is guaranteed to be false and
1903 * may_start_working() true.
1904 *
1905 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001906 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001907 * multiple times. Does GFP_KERNEL allocations. Called only from
1908 * manager.
1909 *
1910 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001911 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001912 * otherwise.
1913 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001914static bool maybe_create_worker(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001915__releases(&pool->lock)
1916__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001917{
Tejun Heo63d95a92012-07-12 14:46:37 -07001918 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001919 return false;
1920restart:
Tejun Heod565ed62013-01-24 11:01:33 -08001921 spin_unlock_irq(&pool->lock);
Tejun Heo9f9c236442010-07-14 11:31:20 +02001922
Tejun Heoe22bee72010-06-29 10:07:14 +02001923 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001924 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001925
1926 while (true) {
1927 struct worker *worker;
1928
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001929 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001930 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001931 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001932 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001933 start_worker(worker);
Tejun Heo6183c002013-03-12 11:29:57 -07001934 if (WARN_ON_ONCE(need_to_create_worker(pool)))
1935 goto restart;
Tejun Heoe22bee72010-06-29 10:07:14 +02001936 return true;
1937 }
1938
Tejun Heo63d95a92012-07-12 14:46:37 -07001939 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001940 break;
1941
Tejun Heoe22bee72010-06-29 10:07:14 +02001942 __set_current_state(TASK_INTERRUPTIBLE);
1943 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c236442010-07-14 11:31:20 +02001944
Tejun Heo63d95a92012-07-12 14:46:37 -07001945 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001946 break;
1947 }
1948
Tejun Heo63d95a92012-07-12 14:46:37 -07001949 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001950 spin_lock_irq(&pool->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001951 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001952 goto restart;
1953 return true;
1954}
1955
1956/**
1957 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001958 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001959 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001960 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001961 * IDLE_WORKER_TIMEOUT.
1962 *
1963 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001964 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001965 * multiple times. Called only from manager.
1966 *
1967 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001968 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001969 * otherwise.
1970 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001971static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001972{
1973 bool ret = false;
1974
Tejun Heo63d95a92012-07-12 14:46:37 -07001975 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001976 struct worker *worker;
1977 unsigned long expires;
1978
Tejun Heo63d95a92012-07-12 14:46:37 -07001979 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001980 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1981
1982 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001983 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001984 break;
1985 }
1986
1987 destroy_worker(worker);
1988 ret = true;
1989 }
1990
1991 return ret;
1992}
1993
1994/**
1995 * manage_workers - manage worker pool
1996 * @worker: self
1997 *
Tejun Heo706026c2013-01-24 11:01:34 -08001998 * Assume the manager role and manage the worker pool @worker belongs
Tejun Heoe22bee72010-06-29 10:07:14 +02001999 * to. At any given time, there can be only zero or one manager per
Tejun Heo706026c2013-01-24 11:01:34 -08002000 * pool. The exclusion is handled automatically by this function.
Tejun Heoe22bee72010-06-29 10:07:14 +02002001 *
2002 * The caller can safely start processing works on false return. On
2003 * true return, it's guaranteed that need_to_create_worker() is false
2004 * and may_start_working() is true.
2005 *
2006 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002007 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02002008 * multiple times. Does GFP_KERNEL allocations.
2009 *
2010 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08002011 * spin_lock_irq(pool->lock) which may be released and regrabbed
2012 * multiple times. Does GFP_KERNEL allocations.
Tejun Heoe22bee72010-06-29 10:07:14 +02002013 */
2014static bool manage_workers(struct worker *worker)
2015{
Tejun Heo63d95a92012-07-12 14:46:37 -07002016 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002017 bool ret = false;
2018
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002019 if (pool->flags & POOL_MANAGING_WORKERS)
Tejun Heoe22bee72010-06-29 10:07:14 +02002020 return ret;
2021
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002022 pool->flags |= POOL_MANAGING_WORKERS;
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002023
2024 /*
2025 * To simplify both worker management and CPU hotplug, hold off
2026 * management while hotplug is in progress. CPU hotplug path can't
2027 * grab %POOL_MANAGING_WORKERS to achieve this because that can
2028 * lead to idle worker depletion (all become busy thinking someone
2029 * else is managing) which in turn can result in deadlock under
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002030 * extreme circumstances. Use @pool->assoc_mutex to synchronize
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002031 * manager against CPU hotplug.
2032 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002033 * assoc_mutex would always be free unless CPU hotplug is in
Tejun Heod565ed62013-01-24 11:01:33 -08002034 * progress. trylock first without dropping @pool->lock.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002035 */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002036 if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002037 spin_unlock_irq(&pool->lock);
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002038 mutex_lock(&pool->assoc_mutex);
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002039 /*
2040 * CPU hotplug could have happened while we were waiting
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002041 * for assoc_mutex. Hotplug itself can't handle us
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002042 * because manager isn't either on idle or busy list, and
Tejun Heo706026c2013-01-24 11:01:34 -08002043 * @pool's state and ours could have deviated.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002044 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002045 * As hotplug is now excluded via assoc_mutex, we can
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002046 * simply try to bind. It will succeed or fail depending
Tejun Heo706026c2013-01-24 11:01:34 -08002047 * on @pool's current state. Try it and adjust
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002048 * %WORKER_UNBOUND accordingly.
2049 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002050 if (worker_maybe_bind_and_lock(pool))
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002051 worker->flags &= ~WORKER_UNBOUND;
2052 else
2053 worker->flags |= WORKER_UNBOUND;
2054
2055 ret = true;
2056 }
2057
Tejun Heo11ebea52012-07-12 14:46:37 -07002058 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02002059
2060 /*
2061 * Destroy and then create so that may_start_working() is true
2062 * on return.
2063 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002064 ret |= maybe_destroy_workers(pool);
2065 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02002066
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002067 pool->flags &= ~POOL_MANAGING_WORKERS;
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002068 mutex_unlock(&pool->assoc_mutex);
Tejun Heoe22bee72010-06-29 10:07:14 +02002069 return ret;
2070}
2071
Tejun Heoa62428c2010-06-29 10:07:10 +02002072/**
2073 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02002074 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02002075 * @work: work to process
2076 *
2077 * Process @work. This function contains all the logics necessary to
2078 * process a single work including synchronization against and
2079 * interaction with other workers on the same cpu, queueing and
2080 * flushing. As long as context requirement is met, any worker can
2081 * call this function to process a work.
2082 *
2083 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002084 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002085 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002086static void process_one_work(struct worker *worker, struct work_struct *work)
Tejun Heod565ed62013-01-24 11:01:33 -08002087__releases(&pool->lock)
2088__acquires(&pool->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002089{
Tejun Heo112202d2013-02-13 19:29:12 -08002090 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002091 struct worker_pool *pool = worker->pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002092 bool cpu_intensive = pwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heo73f53c42010-06-29 10:07:11 +02002093 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002094 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002095#ifdef CONFIG_LOCKDEP
2096 /*
2097 * It is permissible to free the struct work_struct from
2098 * inside the function that is called from it, this we need to
2099 * take into account for lockdep too. To avoid bogus "held
2100 * lock freed" warnings as well as problems when looking into
2101 * work->lockdep_map, make a copy and use that here.
2102 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002103 struct lockdep_map lockdep_map;
2104
2105 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002106#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002107 /*
2108 * Ensure we're on the correct CPU. DISASSOCIATED test is
2109 * necessary to avoid spurious warnings from rescuers servicing the
Tejun Heo24647572013-01-24 11:01:33 -08002110 * unbound or a disassociated pool.
Tejun Heo6fec10a2012-07-22 10:16:34 -07002111 */
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002112 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
Tejun Heo24647572013-01-24 11:01:33 -08002113 !(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heoec22ca52013-01-24 11:01:33 -08002114 raw_smp_processor_id() != pool->cpu);
Tejun Heo25511a42012-07-17 12:39:27 -07002115
Tejun Heo7e116292010-06-29 10:07:13 +02002116 /*
2117 * A single work shouldn't be executed concurrently by
2118 * multiple workers on a single cpu. Check whether anyone is
2119 * already processing the work. If so, defer the work to the
2120 * currently executing one.
2121 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002122 collision = find_worker_executing_work(pool, work);
Tejun Heo7e116292010-06-29 10:07:13 +02002123 if (unlikely(collision)) {
2124 move_linked_works(work, &collision->scheduled, NULL);
2125 return;
2126 }
2127
Tejun Heo8930cab2012-08-03 10:30:45 -07002128 /* claim and dequeue */
Tejun Heoa62428c2010-06-29 10:07:10 +02002129 debug_work_deactivate(work);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002130 hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work);
Tejun Heoc34056a2010-06-29 10:07:11 +02002131 worker->current_work = work;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002132 worker->current_func = work->func;
Tejun Heo112202d2013-02-13 19:29:12 -08002133 worker->current_pwq = pwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002134 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002135
Tejun Heoa62428c2010-06-29 10:07:10 +02002136 list_del_init(&work->entry);
2137
Tejun Heo649027d2010-06-29 10:07:14 +02002138 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002139 * CPU intensive works don't participate in concurrency
2140 * management. They're the scheduler's responsibility.
2141 */
2142 if (unlikely(cpu_intensive))
2143 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2144
Tejun Heo974271c2012-07-12 14:46:37 -07002145 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002146 * Unbound pool isn't concurrency managed and work items should be
Tejun Heo974271c2012-07-12 14:46:37 -07002147 * executed ASAP. Wake up another worker if necessary.
2148 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002149 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2150 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002151
Tejun Heo8930cab2012-08-03 10:30:45 -07002152 /*
Tejun Heo7c3eed52013-01-24 11:01:33 -08002153 * Record the last pool and clear PENDING which should be the last
Tejun Heod565ed62013-01-24 11:01:33 -08002154 * update to @work. Also, do this inside @pool->lock so that
Tejun Heo23657bb2012-08-13 17:08:19 -07002155 * PENDING and queued state changes happen together while IRQ is
2156 * disabled.
Tejun Heo8930cab2012-08-03 10:30:45 -07002157 */
Tejun Heo7c3eed52013-01-24 11:01:33 -08002158 set_work_pool_and_clear_pending(work, pool->id);
Tejun Heoa62428c2010-06-29 10:07:10 +02002159
Tejun Heod565ed62013-01-24 11:01:33 -08002160 spin_unlock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002161
Tejun Heo112202d2013-02-13 19:29:12 -08002162 lock_map_acquire_read(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002163 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002164 trace_workqueue_execute_start(work);
Tejun Heoa2c1c572012-12-18 10:35:02 -08002165 worker->current_func(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002166 /*
2167 * While we must be careful to not use "work" after this, the trace
2168 * point will only record its address.
2169 */
2170 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002171 lock_map_release(&lockdep_map);
Tejun Heo112202d2013-02-13 19:29:12 -08002172 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002173
2174 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
Valentin Ilie044c7822012-08-19 00:52:42 +03002175 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2176 " last function: %pf\n",
Tejun Heoa2c1c572012-12-18 10:35:02 -08002177 current->comm, preempt_count(), task_pid_nr(current),
2178 worker->current_func);
Tejun Heoa62428c2010-06-29 10:07:10 +02002179 debug_show_held_locks(current);
2180 dump_stack();
2181 }
2182
Tejun Heod565ed62013-01-24 11:01:33 -08002183 spin_lock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002184
Tejun Heofb0e7be2010-06-29 10:07:15 +02002185 /* clear cpu intensive status */
2186 if (unlikely(cpu_intensive))
2187 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2188
Tejun Heoa62428c2010-06-29 10:07:10 +02002189 /* we're done with it, release */
Sasha Levin42f85702012-12-17 10:01:23 -05002190 hash_del(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002191 worker->current_work = NULL;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002192 worker->current_func = NULL;
Tejun Heo112202d2013-02-13 19:29:12 -08002193 worker->current_pwq = NULL;
2194 pwq_dec_nr_in_flight(pwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02002195}
2196
Tejun Heoaffee4b2010-06-29 10:07:12 +02002197/**
2198 * process_scheduled_works - process scheduled works
2199 * @worker: self
2200 *
2201 * Process all scheduled works. Please note that the scheduled list
2202 * may change while processing a work, so this function repeatedly
2203 * fetches a work from the top and executes it.
2204 *
2205 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002206 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002207 * multiple times.
2208 */
2209static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002211 while (!list_empty(&worker->scheduled)) {
2212 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002214 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216}
2217
Tejun Heo4690c4a2010-06-29 10:07:10 +02002218/**
2219 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002220 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002221 *
Tejun Heo706026c2013-01-24 11:01:34 -08002222 * The worker thread function. There are NR_CPU_WORKER_POOLS dynamic pools
2223 * of these per each cpu. These workers process all works regardless of
Tejun Heoe22bee72010-06-29 10:07:14 +02002224 * their specific target workqueue. The only exception is works which
2225 * belong to workqueues with a rescuer which will be explained in
2226 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002227 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002228static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
Tejun Heoc34056a2010-06-29 10:07:11 +02002230 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002231 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Tejun Heoe22bee72010-06-29 10:07:14 +02002233 /* tell the scheduler that this is a workqueue worker */
2234 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002235woke_up:
Tejun Heod565ed62013-01-24 11:01:33 -08002236 spin_lock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002238 /* we are off idle list if destruction or rebind is requested */
2239 if (unlikely(list_empty(&worker->entry))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002240 spin_unlock_irq(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002241
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002242 /* if DIE is set, destruction is requested */
Tejun Heo25511a42012-07-17 12:39:27 -07002243 if (worker->flags & WORKER_DIE) {
2244 worker->task->flags &= ~PF_WQ_WORKER;
2245 return 0;
2246 }
2247
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002248 /* otherwise, rebind */
Tejun Heo25511a42012-07-17 12:39:27 -07002249 idle_worker_rebind(worker);
2250 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 }
2252
Tejun Heoc8e55f32010-06-29 10:07:12 +02002253 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002254recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002255 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002256 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002257 goto sleep;
2258
2259 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002260 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002261 goto recheck;
2262
Tejun Heoc8e55f32010-06-29 10:07:12 +02002263 /*
2264 * ->scheduled list can only be filled while a worker is
2265 * preparing to process a work or actually processing it.
2266 * Make sure nobody diddled with it while I was sleeping.
2267 */
Tejun Heo6183c002013-03-12 11:29:57 -07002268 WARN_ON_ONCE(!list_empty(&worker->scheduled));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002269
Tejun Heoe22bee72010-06-29 10:07:14 +02002270 /*
2271 * When control reaches this point, we're guaranteed to have
2272 * at least one idle worker or that someone else has already
2273 * assumed the manager role.
2274 */
2275 worker_clr_flags(worker, WORKER_PREP);
2276
2277 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002278 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002279 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002280 struct work_struct, entry);
2281
2282 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2283 /* optimization path, not strictly necessary */
2284 process_one_work(worker, work);
2285 if (unlikely(!list_empty(&worker->scheduled)))
2286 process_scheduled_works(worker);
2287 } else {
2288 move_linked_works(work, &worker->scheduled, NULL);
2289 process_scheduled_works(worker);
2290 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002291 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002292
Tejun Heoe22bee72010-06-29 10:07:14 +02002293 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002294sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002295 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002296 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002297
Tejun Heoc8e55f32010-06-29 10:07:12 +02002298 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002299 * pool->lock is held and there's no work to process and no need to
2300 * manage, sleep. Workers are woken up only while holding
2301 * pool->lock or from local cpu, so setting the current state
2302 * before releasing pool->lock is enough to prevent losing any
2303 * event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002304 */
2305 worker_enter_idle(worker);
2306 __set_current_state(TASK_INTERRUPTIBLE);
Tejun Heod565ed62013-01-24 11:01:33 -08002307 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002308 schedule();
2309 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310}
2311
Tejun Heoe22bee72010-06-29 10:07:14 +02002312/**
2313 * rescuer_thread - the rescuer thread function
Tejun Heo111c2252013-01-17 17:16:24 -08002314 * @__rescuer: self
Tejun Heoe22bee72010-06-29 10:07:14 +02002315 *
2316 * Workqueue rescuer thread function. There's one rescuer for each
2317 * workqueue which has WQ_RESCUER set.
2318 *
Tejun Heo706026c2013-01-24 11:01:34 -08002319 * Regular work processing on a pool may block trying to create a new
Tejun Heoe22bee72010-06-29 10:07:14 +02002320 * worker which uses GFP_KERNEL allocation which has slight chance of
2321 * developing into deadlock if some works currently on the same queue
2322 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2323 * the problem rescuer solves.
2324 *
Tejun Heo706026c2013-01-24 11:01:34 -08002325 * When such condition is possible, the pool summons rescuers of all
2326 * workqueues which have works queued on the pool and let them process
Tejun Heoe22bee72010-06-29 10:07:14 +02002327 * those works so that forward progress can be guaranteed.
2328 *
2329 * This should happen rarely.
2330 */
Tejun Heo111c2252013-01-17 17:16:24 -08002331static int rescuer_thread(void *__rescuer)
Tejun Heoe22bee72010-06-29 10:07:14 +02002332{
Tejun Heo111c2252013-01-17 17:16:24 -08002333 struct worker *rescuer = __rescuer;
2334 struct workqueue_struct *wq = rescuer->rescue_wq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002335 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heof3421792010-07-02 10:03:51 +02002336 bool is_unbound = wq->flags & WQ_UNBOUND;
Tejun Heoe22bee72010-06-29 10:07:14 +02002337 unsigned int cpu;
2338
2339 set_user_nice(current, RESCUER_NICE_LEVEL);
Tejun Heo111c2252013-01-17 17:16:24 -08002340
2341 /*
2342 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2343 * doesn't participate in concurrency management.
2344 */
2345 rescuer->task->flags |= PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002346repeat:
2347 set_current_state(TASK_INTERRUPTIBLE);
2348
Mike Galbraith412d32e2012-11-28 07:17:18 +01002349 if (kthread_should_stop()) {
2350 __set_current_state(TASK_RUNNING);
Tejun Heo111c2252013-01-17 17:16:24 -08002351 rescuer->task->flags &= ~PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002352 return 0;
Mike Galbraith412d32e2012-11-28 07:17:18 +01002353 }
Tejun Heoe22bee72010-06-29 10:07:14 +02002354
Tejun Heof3421792010-07-02 10:03:51 +02002355 /*
2356 * See whether any cpu is asking for help. Unbounded
2357 * workqueues use cpu 0 in mayday_mask for CPU_UNBOUND.
2358 */
Tejun Heof2e005a2010-07-20 15:59:09 +02002359 for_each_mayday_cpu(cpu, wq->mayday_mask) {
Tejun Heof3421792010-07-02 10:03:51 +02002360 unsigned int tcpu = is_unbound ? WORK_CPU_UNBOUND : cpu;
Tejun Heo112202d2013-02-13 19:29:12 -08002361 struct pool_workqueue *pwq = get_pwq(tcpu, wq);
2362 struct worker_pool *pool = pwq->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002363 struct work_struct *work, *n;
2364
2365 __set_current_state(TASK_RUNNING);
Tejun Heof2e005a2010-07-20 15:59:09 +02002366 mayday_clear_cpu(cpu, wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02002367
2368 /* migrate to the target cpu if possible */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002369 worker_maybe_bind_and_lock(pool);
Lai Jiangshanb3104102013-02-19 12:17:02 -08002370 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002371
2372 /*
2373 * Slurp in all works issued via this workqueue and
2374 * process'em.
2375 */
Tejun Heo6183c002013-03-12 11:29:57 -07002376 WARN_ON_ONCE(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002377 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heo112202d2013-02-13 19:29:12 -08002378 if (get_work_pwq(work) == pwq)
Tejun Heoe22bee72010-06-29 10:07:14 +02002379 move_linked_works(work, scheduled, &n);
2380
2381 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002382
2383 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002384 * Leave this pool. If keep_working() is %true, notify a
Tejun Heo75769582011-02-14 14:04:46 +01002385 * regular worker; otherwise, we end up with 0 concurrency
2386 * and stalling the execution.
2387 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002388 if (keep_working(pool))
2389 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002390
Lai Jiangshanb3104102013-02-19 12:17:02 -08002391 rescuer->pool = NULL;
Tejun Heod565ed62013-01-24 11:01:33 -08002392 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002393 }
2394
Tejun Heo111c2252013-01-17 17:16:24 -08002395 /* rescuers should never participate in concurrency management */
2396 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
Tejun Heoe22bee72010-06-29 10:07:14 +02002397 schedule();
2398 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399}
2400
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002401struct wq_barrier {
2402 struct work_struct work;
2403 struct completion done;
2404};
2405
2406static void wq_barrier_func(struct work_struct *work)
2407{
2408 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2409 complete(&barr->done);
2410}
2411
Tejun Heo4690c4a2010-06-29 10:07:10 +02002412/**
2413 * insert_wq_barrier - insert a barrier work
Tejun Heo112202d2013-02-13 19:29:12 -08002414 * @pwq: pwq to insert barrier into
Tejun Heo4690c4a2010-06-29 10:07:10 +02002415 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002416 * @target: target work to attach @barr to
2417 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002418 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002419 * @barr is linked to @target such that @barr is completed only after
2420 * @target finishes execution. Please note that the ordering
2421 * guarantee is observed only with respect to @target and on the local
2422 * cpu.
2423 *
2424 * Currently, a queued barrier can't be canceled. This is because
2425 * try_to_grab_pending() can't determine whether the work to be
2426 * grabbed is at the head of the queue and thus can't clear LINKED
2427 * flag of the previous work while there must be a valid next work
2428 * after a work with LINKED flag set.
2429 *
2430 * Note that when @worker is non-NULL, @target may be modified
Tejun Heo112202d2013-02-13 19:29:12 -08002431 * underneath us, so we can't reliably determine pwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002432 *
2433 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002434 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002435 */
Tejun Heo112202d2013-02-13 19:29:12 -08002436static void insert_wq_barrier(struct pool_workqueue *pwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002437 struct wq_barrier *barr,
2438 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002439{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002440 struct list_head *head;
2441 unsigned int linked = 0;
2442
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002443 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002444 * debugobject calls are safe here even with pool->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002445 * as we know for sure that this will not trigger any of the
2446 * checks and call back into the fixup functions where we
2447 * might deadlock.
2448 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002449 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002450 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002451 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002452
Tejun Heoaffee4b2010-06-29 10:07:12 +02002453 /*
2454 * If @target is currently being executed, schedule the
2455 * barrier to the worker; otherwise, put it after @target.
2456 */
2457 if (worker)
2458 head = worker->scheduled.next;
2459 else {
2460 unsigned long *bits = work_data_bits(target);
2461
2462 head = target->entry.next;
2463 /* there can already be other linked works, inherit and set */
2464 linked = *bits & WORK_STRUCT_LINKED;
2465 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2466 }
2467
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002468 debug_work_activate(&barr->work);
Tejun Heo112202d2013-02-13 19:29:12 -08002469 insert_work(pwq, &barr->work, head,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002470 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002471}
2472
Tejun Heo73f53c42010-06-29 10:07:11 +02002473/**
Tejun Heo112202d2013-02-13 19:29:12 -08002474 * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing
Tejun Heo73f53c42010-06-29 10:07:11 +02002475 * @wq: workqueue being flushed
2476 * @flush_color: new flush color, < 0 for no-op
2477 * @work_color: new work color, < 0 for no-op
2478 *
Tejun Heo112202d2013-02-13 19:29:12 -08002479 * Prepare pwqs for workqueue flushing.
Tejun Heo73f53c42010-06-29 10:07:11 +02002480 *
Tejun Heo112202d2013-02-13 19:29:12 -08002481 * If @flush_color is non-negative, flush_color on all pwqs should be
2482 * -1. If no pwq has in-flight commands at the specified color, all
2483 * pwq->flush_color's stay at -1 and %false is returned. If any pwq
2484 * has in flight commands, its pwq->flush_color is set to
2485 * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq
Tejun Heo73f53c42010-06-29 10:07:11 +02002486 * wakeup logic is armed and %true is returned.
2487 *
2488 * The caller should have initialized @wq->first_flusher prior to
2489 * calling this function with non-negative @flush_color. If
2490 * @flush_color is negative, no flush color update is done and %false
2491 * is returned.
2492 *
Tejun Heo112202d2013-02-13 19:29:12 -08002493 * If @work_color is non-negative, all pwqs should have the same
Tejun Heo73f53c42010-06-29 10:07:11 +02002494 * work_color which is previous to @work_color and all will be
2495 * advanced to @work_color.
2496 *
2497 * CONTEXT:
2498 * mutex_lock(wq->flush_mutex).
2499 *
2500 * RETURNS:
2501 * %true if @flush_color >= 0 and there's something to flush. %false
2502 * otherwise.
2503 */
Tejun Heo112202d2013-02-13 19:29:12 -08002504static bool flush_workqueue_prep_pwqs(struct workqueue_struct *wq,
Tejun Heo73f53c42010-06-29 10:07:11 +02002505 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
Tejun Heo73f53c42010-06-29 10:07:11 +02002507 bool wait = false;
2508 unsigned int cpu;
Oleg Nesterov14441962007-05-23 13:57:57 -07002509
Tejun Heo73f53c42010-06-29 10:07:11 +02002510 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002511 WARN_ON_ONCE(atomic_read(&wq->nr_pwqs_to_flush));
Tejun Heo112202d2013-02-13 19:29:12 -08002512 atomic_set(&wq->nr_pwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002513 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002514
Tejun Heo112202d2013-02-13 19:29:12 -08002515 for_each_pwq_cpu(cpu, wq) {
2516 struct pool_workqueue *pwq = get_pwq(cpu, wq);
2517 struct worker_pool *pool = pwq->pool;
Tejun Heo73f53c42010-06-29 10:07:11 +02002518
Tejun Heod565ed62013-01-24 11:01:33 -08002519 spin_lock_irq(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002520
2521 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002522 WARN_ON_ONCE(pwq->flush_color != -1);
Tejun Heo73f53c42010-06-29 10:07:11 +02002523
Tejun Heo112202d2013-02-13 19:29:12 -08002524 if (pwq->nr_in_flight[flush_color]) {
2525 pwq->flush_color = flush_color;
2526 atomic_inc(&wq->nr_pwqs_to_flush);
Tejun Heo73f53c42010-06-29 10:07:11 +02002527 wait = true;
2528 }
2529 }
2530
2531 if (work_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002532 WARN_ON_ONCE(work_color != work_next_color(pwq->work_color));
Tejun Heo112202d2013-02-13 19:29:12 -08002533 pwq->work_color = work_color;
Tejun Heo73f53c42010-06-29 10:07:11 +02002534 }
2535
Tejun Heod565ed62013-01-24 11:01:33 -08002536 spin_unlock_irq(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002537 }
2538
Tejun Heo112202d2013-02-13 19:29:12 -08002539 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_pwqs_to_flush))
Tejun Heo73f53c42010-06-29 10:07:11 +02002540 complete(&wq->first_flusher->done);
2541
2542 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543}
2544
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002545/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002547 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 *
2549 * Forces execution of the workqueue and blocks until its completion.
2550 * This is typically used in driver shutdown handlers.
2551 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002552 * We sleep until all works which were queued on entry have been handled,
2553 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002555void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556{
Tejun Heo73f53c42010-06-29 10:07:11 +02002557 struct wq_flusher this_flusher = {
2558 .list = LIST_HEAD_INIT(this_flusher.list),
2559 .flush_color = -1,
2560 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2561 };
2562 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002563
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002564 lock_map_acquire(&wq->lockdep_map);
2565 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002566
2567 mutex_lock(&wq->flush_mutex);
2568
2569 /*
2570 * Start-to-wait phase
2571 */
2572 next_color = work_next_color(wq->work_color);
2573
2574 if (next_color != wq->flush_color) {
2575 /*
2576 * Color space is not full. The current work_color
2577 * becomes our flush_color and work_color is advanced
2578 * by one.
2579 */
Tejun Heo6183c002013-03-12 11:29:57 -07002580 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow));
Tejun Heo73f53c42010-06-29 10:07:11 +02002581 this_flusher.flush_color = wq->work_color;
2582 wq->work_color = next_color;
2583
2584 if (!wq->first_flusher) {
2585 /* no flush in progress, become the first flusher */
Tejun Heo6183c002013-03-12 11:29:57 -07002586 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002587
2588 wq->first_flusher = &this_flusher;
2589
Tejun Heo112202d2013-02-13 19:29:12 -08002590 if (!flush_workqueue_prep_pwqs(wq, wq->flush_color,
Tejun Heo73f53c42010-06-29 10:07:11 +02002591 wq->work_color)) {
2592 /* nothing to flush, done */
2593 wq->flush_color = next_color;
2594 wq->first_flusher = NULL;
2595 goto out_unlock;
2596 }
2597 } else {
2598 /* wait in queue */
Tejun Heo6183c002013-03-12 11:29:57 -07002599 WARN_ON_ONCE(wq->flush_color == this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002600 list_add_tail(&this_flusher.list, &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002601 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002602 }
2603 } else {
2604 /*
2605 * Oops, color space is full, wait on overflow queue.
2606 * The next flush completion will assign us
2607 * flush_color and transfer to flusher_queue.
2608 */
2609 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2610 }
2611
2612 mutex_unlock(&wq->flush_mutex);
2613
2614 wait_for_completion(&this_flusher.done);
2615
2616 /*
2617 * Wake-up-and-cascade phase
2618 *
2619 * First flushers are responsible for cascading flushes and
2620 * handling overflow. Non-first flushers can simply return.
2621 */
2622 if (wq->first_flusher != &this_flusher)
2623 return;
2624
2625 mutex_lock(&wq->flush_mutex);
2626
Tejun Heo4ce48b32010-07-02 10:03:51 +02002627 /* we might have raced, check again with mutex held */
2628 if (wq->first_flusher != &this_flusher)
2629 goto out_unlock;
2630
Tejun Heo73f53c42010-06-29 10:07:11 +02002631 wq->first_flusher = NULL;
2632
Tejun Heo6183c002013-03-12 11:29:57 -07002633 WARN_ON_ONCE(!list_empty(&this_flusher.list));
2634 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002635
2636 while (true) {
2637 struct wq_flusher *next, *tmp;
2638
2639 /* complete all the flushers sharing the current flush color */
2640 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2641 if (next->flush_color != wq->flush_color)
2642 break;
2643 list_del_init(&next->list);
2644 complete(&next->done);
2645 }
2646
Tejun Heo6183c002013-03-12 11:29:57 -07002647 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow) &&
2648 wq->flush_color != work_next_color(wq->work_color));
Tejun Heo73f53c42010-06-29 10:07:11 +02002649
2650 /* this flush_color is finished, advance by one */
2651 wq->flush_color = work_next_color(wq->flush_color);
2652
2653 /* one color has been freed, handle overflow queue */
2654 if (!list_empty(&wq->flusher_overflow)) {
2655 /*
2656 * Assign the same color to all overflowed
2657 * flushers, advance work_color and append to
2658 * flusher_queue. This is the start-to-wait
2659 * phase for these overflowed flushers.
2660 */
2661 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2662 tmp->flush_color = wq->work_color;
2663
2664 wq->work_color = work_next_color(wq->work_color);
2665
2666 list_splice_tail_init(&wq->flusher_overflow,
2667 &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002668 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002669 }
2670
2671 if (list_empty(&wq->flusher_queue)) {
Tejun Heo6183c002013-03-12 11:29:57 -07002672 WARN_ON_ONCE(wq->flush_color != wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002673 break;
2674 }
2675
2676 /*
2677 * Need to flush more colors. Make the next flusher
Tejun Heo112202d2013-02-13 19:29:12 -08002678 * the new first flusher and arm pwqs.
Tejun Heo73f53c42010-06-29 10:07:11 +02002679 */
Tejun Heo6183c002013-03-12 11:29:57 -07002680 WARN_ON_ONCE(wq->flush_color == wq->work_color);
2681 WARN_ON_ONCE(wq->flush_color != next->flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002682
2683 list_del_init(&next->list);
2684 wq->first_flusher = next;
2685
Tejun Heo112202d2013-02-13 19:29:12 -08002686 if (flush_workqueue_prep_pwqs(wq, wq->flush_color, -1))
Tejun Heo73f53c42010-06-29 10:07:11 +02002687 break;
2688
2689 /*
2690 * Meh... this color is already done, clear first
2691 * flusher and repeat cascading.
2692 */
2693 wq->first_flusher = NULL;
2694 }
2695
2696out_unlock:
2697 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698}
Dave Jonesae90dd52006-06-30 01:40:45 -04002699EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002701/**
2702 * drain_workqueue - drain a workqueue
2703 * @wq: workqueue to drain
2704 *
2705 * Wait until the workqueue becomes empty. While draining is in progress,
2706 * only chain queueing is allowed. IOW, only currently pending or running
2707 * work items on @wq can queue further work items on it. @wq is flushed
2708 * repeatedly until it becomes empty. The number of flushing is detemined
2709 * by the depth of chaining and should be relatively short. Whine if it
2710 * takes too long.
2711 */
2712void drain_workqueue(struct workqueue_struct *wq)
2713{
2714 unsigned int flush_cnt = 0;
2715 unsigned int cpu;
2716
2717 /*
2718 * __queue_work() needs to test whether there are drainers, is much
2719 * hotter than drain_workqueue() and already looks at @wq->flags.
2720 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2721 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07002722 spin_lock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002723 if (!wq->nr_drainers++)
2724 wq->flags |= WQ_DRAINING;
Tejun Heoe98d5b12013-03-12 11:29:57 -07002725 spin_unlock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002726reflush:
2727 flush_workqueue(wq);
2728
Tejun Heo112202d2013-02-13 19:29:12 -08002729 for_each_pwq_cpu(cpu, wq) {
2730 struct pool_workqueue *pwq = get_pwq(cpu, wq);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002731 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002732
Tejun Heo112202d2013-02-13 19:29:12 -08002733 spin_lock_irq(&pwq->pool->lock);
2734 drained = !pwq->nr_active && list_empty(&pwq->delayed_works);
2735 spin_unlock_irq(&pwq->pool->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002736
2737 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002738 continue;
2739
2740 if (++flush_cnt == 10 ||
2741 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
Valentin Ilie044c7822012-08-19 00:52:42 +03002742 pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
2743 wq->name, flush_cnt);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002744 goto reflush;
2745 }
2746
Tejun Heoe98d5b12013-03-12 11:29:57 -07002747 spin_lock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002748 if (!--wq->nr_drainers)
2749 wq->flags &= ~WQ_DRAINING;
Tejun Heoe98d5b12013-03-12 11:29:57 -07002750 spin_unlock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002751}
2752EXPORT_SYMBOL_GPL(drain_workqueue);
2753
Tejun Heo606a5022012-08-20 14:51:23 -07002754static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
Tejun Heobaf59022010-09-16 10:42:16 +02002755{
2756 struct worker *worker = NULL;
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002757 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002758 struct pool_workqueue *pwq;
Tejun Heobaf59022010-09-16 10:42:16 +02002759
2760 might_sleep();
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002761 pool = get_work_pool(work);
2762 if (!pool)
Tejun Heobaf59022010-09-16 10:42:16 +02002763 return false;
2764
Tejun Heod565ed62013-01-24 11:01:33 -08002765 spin_lock_irq(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08002766 /* see the comment in try_to_grab_pending() with the same code */
Tejun Heo112202d2013-02-13 19:29:12 -08002767 pwq = get_work_pwq(work);
2768 if (pwq) {
2769 if (unlikely(pwq->pool != pool))
Tejun Heobaf59022010-09-16 10:42:16 +02002770 goto already_gone;
Tejun Heo606a5022012-08-20 14:51:23 -07002771 } else {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002772 worker = find_worker_executing_work(pool, work);
Tejun Heobaf59022010-09-16 10:42:16 +02002773 if (!worker)
2774 goto already_gone;
Tejun Heo112202d2013-02-13 19:29:12 -08002775 pwq = worker->current_pwq;
Tejun Heo606a5022012-08-20 14:51:23 -07002776 }
Tejun Heobaf59022010-09-16 10:42:16 +02002777
Tejun Heo112202d2013-02-13 19:29:12 -08002778 insert_wq_barrier(pwq, barr, work, worker);
Tejun Heod565ed62013-01-24 11:01:33 -08002779 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002780
Tejun Heoe159489b2011-01-09 23:32:15 +01002781 /*
2782 * If @max_active is 1 or rescuer is in use, flushing another work
2783 * item on the same workqueue may lead to deadlock. Make sure the
2784 * flusher is not running on the same workqueue by verifying write
2785 * access.
2786 */
Tejun Heo112202d2013-02-13 19:29:12 -08002787 if (pwq->wq->saved_max_active == 1 || pwq->wq->flags & WQ_RESCUER)
2788 lock_map_acquire(&pwq->wq->lockdep_map);
Tejun Heoe159489b2011-01-09 23:32:15 +01002789 else
Tejun Heo112202d2013-02-13 19:29:12 -08002790 lock_map_acquire_read(&pwq->wq->lockdep_map);
2791 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoe159489b2011-01-09 23:32:15 +01002792
Tejun Heobaf59022010-09-16 10:42:16 +02002793 return true;
2794already_gone:
Tejun Heod565ed62013-01-24 11:01:33 -08002795 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002796 return false;
2797}
2798
Oleg Nesterovdb700892008-07-25 01:47:49 -07002799/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002800 * flush_work - wait for a work to finish executing the last queueing instance
2801 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002802 *
Tejun Heo606a5022012-08-20 14:51:23 -07002803 * Wait until @work has finished execution. @work is guaranteed to be idle
2804 * on return if it hasn't been requeued since flush started.
Tejun Heo401a8d02010-09-16 10:36:00 +02002805 *
2806 * RETURNS:
2807 * %true if flush_work() waited for the work to finish execution,
2808 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002809 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002810bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002811{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002812 struct wq_barrier barr;
2813
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002814 lock_map_acquire(&work->lockdep_map);
2815 lock_map_release(&work->lockdep_map);
2816
Tejun Heo606a5022012-08-20 14:51:23 -07002817 if (start_flush_work(work, &barr)) {
Tejun Heobaf59022010-09-16 10:42:16 +02002818 wait_for_completion(&barr.done);
2819 destroy_work_on_stack(&barr.work);
2820 return true;
Tejun Heo606a5022012-08-20 14:51:23 -07002821 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002822 return false;
Tejun Heo606a5022012-08-20 14:51:23 -07002823 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002824}
2825EXPORT_SYMBOL_GPL(flush_work);
2826
Tejun Heo36e227d2012-08-03 10:30:46 -07002827static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
Tejun Heo401a8d02010-09-16 10:36:00 +02002828{
Tejun Heobbb68df2012-08-03 10:30:46 -07002829 unsigned long flags;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002830 int ret;
2831
2832 do {
Tejun Heobbb68df2012-08-03 10:30:46 -07002833 ret = try_to_grab_pending(work, is_dwork, &flags);
2834 /*
2835 * If someone else is canceling, wait for the same event it
2836 * would be waiting for before retrying.
2837 */
2838 if (unlikely(ret == -ENOENT))
Tejun Heo606a5022012-08-20 14:51:23 -07002839 flush_work(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002840 } while (unlikely(ret < 0));
2841
Tejun Heobbb68df2012-08-03 10:30:46 -07002842 /* tell other tasks trying to grab @work to back off */
2843 mark_work_canceling(work);
2844 local_irq_restore(flags);
2845
Tejun Heo606a5022012-08-20 14:51:23 -07002846 flush_work(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002847 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002848 return ret;
2849}
2850
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002851/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002852 * cancel_work_sync - cancel a work and wait for it to finish
2853 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002854 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002855 * Cancel @work and wait for its execution to finish. This function
2856 * can be used even if the work re-queues itself or migrates to
2857 * another workqueue. On return from this function, @work is
2858 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002859 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002860 * cancel_work_sync(&delayed_work->work) must not be used for
2861 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002862 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002863 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002864 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002865 *
2866 * RETURNS:
2867 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002868 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002869bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002870{
Tejun Heo36e227d2012-08-03 10:30:46 -07002871 return __cancel_work_timer(work, false);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002872}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002873EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002874
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002875/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002876 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2877 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002878 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002879 * Delayed timer is cancelled and the pending work is queued for
2880 * immediate execution. Like flush_work(), this function only
2881 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002882 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002883 * RETURNS:
2884 * %true if flush_work() waited for the work to finish execution,
2885 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002886 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002887bool flush_delayed_work(struct delayed_work *dwork)
2888{
Tejun Heo8930cab2012-08-03 10:30:45 -07002889 local_irq_disable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002890 if (del_timer_sync(&dwork->timer))
Lai Jiangshan60c057b2013-02-06 18:04:53 -08002891 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Tejun Heo8930cab2012-08-03 10:30:45 -07002892 local_irq_enable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002893 return flush_work(&dwork->work);
2894}
2895EXPORT_SYMBOL(flush_delayed_work);
2896
2897/**
Tejun Heo57b30ae2012-08-21 13:18:24 -07002898 * cancel_delayed_work - cancel a delayed work
2899 * @dwork: delayed_work to cancel
Tejun Heo09383492010-09-16 10:48:29 +02002900 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002901 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2902 * and canceled; %false if wasn't pending. Note that the work callback
2903 * function may still be running on return, unless it returns %true and the
2904 * work doesn't re-arm itself. Explicitly flush or use
2905 * cancel_delayed_work_sync() to wait on it.
Tejun Heo09383492010-09-16 10:48:29 +02002906 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002907 * This function is safe to call from any context including IRQ handler.
Tejun Heo09383492010-09-16 10:48:29 +02002908 */
Tejun Heo57b30ae2012-08-21 13:18:24 -07002909bool cancel_delayed_work(struct delayed_work *dwork)
Tejun Heo09383492010-09-16 10:48:29 +02002910{
Tejun Heo57b30ae2012-08-21 13:18:24 -07002911 unsigned long flags;
2912 int ret;
2913
2914 do {
2915 ret = try_to_grab_pending(&dwork->work, true, &flags);
2916 } while (unlikely(ret == -EAGAIN));
2917
2918 if (unlikely(ret < 0))
2919 return false;
2920
Tejun Heo7c3eed52013-01-24 11:01:33 -08002921 set_work_pool_and_clear_pending(&dwork->work,
2922 get_work_pool_id(&dwork->work));
Tejun Heo57b30ae2012-08-21 13:18:24 -07002923 local_irq_restore(flags);
Dan Magenheimerc0158ca2012-10-18 16:31:37 -07002924 return ret;
Tejun Heo09383492010-09-16 10:48:29 +02002925}
Tejun Heo57b30ae2012-08-21 13:18:24 -07002926EXPORT_SYMBOL(cancel_delayed_work);
Tejun Heo09383492010-09-16 10:48:29 +02002927
2928/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002929 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2930 * @dwork: the delayed work cancel
2931 *
2932 * This is cancel_work_sync() for delayed works.
2933 *
2934 * RETURNS:
2935 * %true if @dwork was pending, %false otherwise.
2936 */
2937bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002938{
Tejun Heo36e227d2012-08-03 10:30:46 -07002939 return __cancel_work_timer(&dwork->work, true);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002940}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002941EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002943/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07002944 * schedule_work_on - put work task on a specific cpu
2945 * @cpu: cpu to put the work task on
2946 * @work: job to be done
2947 *
2948 * This puts a job on a specific cpu
2949 */
Tejun Heod4283e92012-08-03 10:30:44 -07002950bool schedule_work_on(int cpu, struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07002951{
Tejun Heod320c032010-06-29 10:07:14 +02002952 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002953}
2954EXPORT_SYMBOL(schedule_work_on);
2955
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002956/**
Dave Jonesae90dd52006-06-30 01:40:45 -04002957 * schedule_work - put work task in global workqueue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 * @work: job to be done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 *
Tejun Heod4283e92012-08-03 10:30:44 -07002960 * Returns %false if @work was already on the kernel-global workqueue and
2961 * %true otherwise.
David Howells52bad642006-11-22 14:54:01 +00002962 *
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002963 * This puts a job in the kernel-global workqueue if it was not already
2964 * queued and leaves it in the same position on the kernel-global
2965 * workqueue otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 */
Tejun Heod4283e92012-08-03 10:30:44 -07002967bool schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968{
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002969 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970}
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002971EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002973/**
2974 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
2975 * @cpu: cpu to use
2976 * @dwork: job to be done
2977 * @delay: number of jiffies to wait
2978 *
2979 * After waiting for a given time this puts a job in the kernel-global
2980 * workqueue on the specified CPU.
2981 */
Tejun Heod4283e92012-08-03 10:30:44 -07002982bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
2983 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
Tejun Heod320c032010-06-29 10:07:14 +02002985 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
Dave Jonesae90dd52006-06-30 01:40:45 -04002987EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Andrew Mortonb6136772006-06-25 05:47:49 -07002989/**
Tejun Heo0a13c002012-08-03 10:30:44 -07002990 * schedule_delayed_work - put work task in global workqueue after delay
2991 * @dwork: job to be done
2992 * @delay: number of jiffies to wait or 0 for immediate execution
2993 *
2994 * After waiting for a given time this puts a job in the kernel-global
2995 * workqueue.
2996 */
Tejun Heod4283e92012-08-03 10:30:44 -07002997bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
Tejun Heo0a13c002012-08-03 10:30:44 -07002998{
2999 return queue_delayed_work(system_wq, dwork, delay);
3000}
3001EXPORT_SYMBOL(schedule_delayed_work);
3002
3003/**
Tejun Heo31ddd872010-10-19 11:14:49 +02003004 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07003005 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07003006 *
Tejun Heo31ddd872010-10-19 11:14:49 +02003007 * schedule_on_each_cpu() executes @func on each online CPU using the
3008 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07003009 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02003010 *
3011 * RETURNS:
3012 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07003013 */
David Howells65f27f32006-11-22 14:55:48 +00003014int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003015{
3016 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02003017 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08003018
Andrew Mortonb6136772006-06-25 05:47:49 -07003019 works = alloc_percpu(struct work_struct);
3020 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003021 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07003022
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003023 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08003024
Christoph Lameter15316ba2006-01-08 01:00:43 -08003025 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01003026 struct work_struct *work = per_cpu_ptr(works, cpu);
3027
3028 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003029 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003030 }
Tejun Heo93981802009-11-17 14:06:20 -08003031
3032 for_each_online_cpu(cpu)
3033 flush_work(per_cpu_ptr(works, cpu));
3034
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003035 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003036 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003037 return 0;
3038}
3039
Alan Sterneef6a7d2010-02-12 17:39:21 +09003040/**
3041 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3042 *
3043 * Forces execution of the kernel-global workqueue and blocks until its
3044 * completion.
3045 *
3046 * Think twice before calling this function! It's very easy to get into
3047 * trouble if you don't take great care. Either of the following situations
3048 * will lead to deadlock:
3049 *
3050 * One of the work items currently on the workqueue needs to acquire
3051 * a lock held by your code or its caller.
3052 *
3053 * Your code is running in the context of a work routine.
3054 *
3055 * They will be detected by lockdep when they occur, but the first might not
3056 * occur very often. It depends on what work items are on the workqueue and
3057 * what locks they need, which you have no control over.
3058 *
3059 * In most situations flushing the entire workqueue is overkill; you merely
3060 * need to know that a particular work item isn't queued and isn't running.
3061 * In such cases you should use cancel_delayed_work_sync() or
3062 * cancel_work_sync() instead.
3063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064void flush_scheduled_work(void)
3065{
Tejun Heod320c032010-06-29 10:07:14 +02003066 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
Dave Jonesae90dd52006-06-30 01:40:45 -04003068EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
3070/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003071 * execute_in_process_context - reliably execute the routine with user context
3072 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003073 * @ew: guaranteed storage for the execute work structure (must
3074 * be available when the work executes)
3075 *
3076 * Executes the function immediately if process context is available,
3077 * otherwise schedules the function for delayed execution.
3078 *
3079 * Returns: 0 - function was executed
3080 * 1 - function was scheduled for execution
3081 */
David Howells65f27f32006-11-22 14:55:48 +00003082int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003083{
3084 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003085 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003086 return 0;
3087 }
3088
David Howells65f27f32006-11-22 14:55:48 +00003089 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003090 schedule_work(&ew->work);
3091
3092 return 1;
3093}
3094EXPORT_SYMBOL_GPL(execute_in_process_context);
3095
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096int keventd_up(void)
3097{
Tejun Heod320c032010-06-29 10:07:14 +02003098 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099}
3100
Tejun Heo30cdf242013-03-12 11:29:57 -07003101static int alloc_and_link_pwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
Tejun Heo30cdf242013-03-12 11:29:57 -07003103 int cpu;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003104
Tejun Heo30cdf242013-03-12 11:29:57 -07003105 if (!(wq->flags & WQ_UNBOUND)) {
3106 wq->pool_wq.pcpu = alloc_percpu(struct pool_workqueue);
3107 if (!wq->pool_wq.pcpu)
3108 return -ENOMEM;
3109
3110 for_each_possible_cpu(cpu) {
3111 struct pool_workqueue *pwq = get_pwq(cpu, wq);
3112
3113 list_add_tail(&pwq->pwqs_node, &wq->pwqs);
3114 }
3115 } else {
3116 struct pool_workqueue *pwq;
3117
3118 pwq = kmem_cache_zalloc(pwq_cache, GFP_KERNEL);
3119 if (!pwq)
3120 return -ENOMEM;
3121
3122 wq->pool_wq.single = pwq;
3123 list_add_tail(&pwq->pwqs_node, &wq->pwqs);
3124 }
3125
3126 return 0;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003127}
3128
Tejun Heo112202d2013-02-13 19:29:12 -08003129static void free_pwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003130{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003131 if (!(wq->flags & WQ_UNBOUND))
Tejun Heo112202d2013-02-13 19:29:12 -08003132 free_percpu(wq->pool_wq.pcpu);
Tejun Heoe904e6c2013-03-12 11:29:57 -07003133 else
3134 kmem_cache_free(pwq_cache, wq->pool_wq.single);
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003135}
3136
Tejun Heof3421792010-07-02 10:03:51 +02003137static int wq_clamp_max_active(int max_active, unsigned int flags,
3138 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003139{
Tejun Heof3421792010-07-02 10:03:51 +02003140 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3141
3142 if (max_active < 1 || max_active > lim)
Valentin Ilie044c7822012-08-19 00:52:42 +03003143 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3144 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003145
Tejun Heof3421792010-07-02 10:03:51 +02003146 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003147}
3148
Tejun Heob196be82012-01-10 15:11:35 -08003149struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003150 unsigned int flags,
3151 int max_active,
3152 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003153 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003154{
Tejun Heob196be82012-01-10 15:11:35 -08003155 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003156 struct workqueue_struct *wq;
Tejun Heoc34056a2010-06-29 10:07:11 +02003157 unsigned int cpu;
Tejun Heob196be82012-01-10 15:11:35 -08003158 size_t namelen;
3159
3160 /* determine namelen, allocate wq and format name */
3161 va_start(args, lock_name);
3162 va_copy(args1, args);
3163 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3164
3165 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3166 if (!wq)
3167 goto err;
3168
3169 vsnprintf(wq->name, namelen, fmt, args1);
3170 va_end(args);
3171 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003172
Tejun Heof3421792010-07-02 10:03:51 +02003173 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02003174 * Workqueues which may be used during memory reclaim should
3175 * have a rescuer to guarantee forward progress.
3176 */
3177 if (flags & WQ_MEM_RECLAIM)
3178 flags |= WQ_RESCUER;
3179
Tejun Heod320c032010-06-29 10:07:14 +02003180 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003181 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003182
Tejun Heob196be82012-01-10 15:11:35 -08003183 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003184 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003185 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003186 mutex_init(&wq->flush_mutex);
Tejun Heo112202d2013-02-13 19:29:12 -08003187 atomic_set(&wq->nr_pwqs_to_flush, 0);
Tejun Heo30cdf242013-03-12 11:29:57 -07003188 INIT_LIST_HEAD(&wq->pwqs);
Tejun Heo73f53c42010-06-29 10:07:11 +02003189 INIT_LIST_HEAD(&wq->flusher_queue);
3190 INIT_LIST_HEAD(&wq->flusher_overflow);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003191
Johannes Bergeb13ba82008-01-16 09:51:58 +01003192 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003193 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003194
Tejun Heo30cdf242013-03-12 11:29:57 -07003195 if (alloc_and_link_pwqs(wq) < 0)
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003196 goto err;
3197
Tejun Heo112202d2013-02-13 19:29:12 -08003198 for_each_pwq_cpu(cpu, wq) {
3199 struct pool_workqueue *pwq = get_pwq(cpu, wq);
Tejun Heo15376632010-06-29 10:07:11 +02003200
Tejun Heo112202d2013-02-13 19:29:12 -08003201 BUG_ON((unsigned long)pwq & WORK_STRUCT_FLAG_MASK);
3202 pwq->pool = get_std_worker_pool(cpu, flags & WQ_HIGHPRI);
3203 pwq->wq = wq;
3204 pwq->flush_color = -1;
3205 pwq->max_active = max_active;
3206 INIT_LIST_HEAD(&pwq->delayed_works);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003207 }
3208
Tejun Heoe22bee72010-06-29 10:07:14 +02003209 if (flags & WQ_RESCUER) {
3210 struct worker *rescuer;
3211
Tejun Heof2e005a2010-07-20 15:59:09 +02003212 if (!alloc_mayday_mask(&wq->mayday_mask, GFP_KERNEL))
Tejun Heoe22bee72010-06-29 10:07:14 +02003213 goto err;
3214
3215 wq->rescuer = rescuer = alloc_worker();
3216 if (!rescuer)
3217 goto err;
3218
Tejun Heo111c2252013-01-17 17:16:24 -08003219 rescuer->rescue_wq = wq;
3220 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
Tejun Heob196be82012-01-10 15:11:35 -08003221 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003222 if (IS_ERR(rescuer->task))
3223 goto err;
3224
Tejun Heoe22bee72010-06-29 10:07:14 +02003225 rescuer->task->flags |= PF_THREAD_BOUND;
3226 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003227 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003228
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003229 /*
3230 * workqueue_lock protects global freeze state and workqueues
3231 * list. Grab it, set max_active accordingly and add the new
3232 * workqueue to workqueues list.
3233 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07003234 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003235
Tejun Heo58a69cb2011-02-16 09:25:31 +01003236 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heo112202d2013-02-13 19:29:12 -08003237 for_each_pwq_cpu(cpu, wq)
3238 get_pwq(cpu, wq)->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003239
Tejun Heo15376632010-06-29 10:07:11 +02003240 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003241
Tejun Heoe98d5b12013-03-12 11:29:57 -07003242 spin_unlock_irq(&workqueue_lock);
Tejun Heo15376632010-06-29 10:07:11 +02003243
Oleg Nesterov3af244332007-05-09 02:34:09 -07003244 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003245err:
3246 if (wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08003247 free_pwqs(wq);
Tejun Heof2e005a2010-07-20 15:59:09 +02003248 free_mayday_mask(wq->mayday_mask);
Tejun Heoe22bee72010-06-29 10:07:14 +02003249 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003250 kfree(wq);
3251 }
3252 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003253}
Tejun Heod320c032010-06-29 10:07:14 +02003254EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003255
3256/**
3257 * destroy_workqueue - safely terminate a workqueue
3258 * @wq: target workqueue
3259 *
3260 * Safely destroy a workqueue. All work currently pending will be done first.
3261 */
3262void destroy_workqueue(struct workqueue_struct *wq)
3263{
Tejun Heoc8e55f32010-06-29 10:07:12 +02003264 unsigned int cpu;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003265
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003266 /* drain it before proceeding with destruction */
3267 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003268
Tejun Heo6183c002013-03-12 11:29:57 -07003269 /* sanity checks */
3270 for_each_pwq_cpu(cpu, wq) {
3271 struct pool_workqueue *pwq = get_pwq(cpu, wq);
3272 int i;
3273
3274 for (i = 0; i < WORK_NR_COLORS; i++)
3275 if (WARN_ON(pwq->nr_in_flight[i]))
3276 return;
3277 if (WARN_ON(pwq->nr_active) ||
3278 WARN_ON(!list_empty(&pwq->delayed_works)))
3279 return;
3280 }
3281
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003282 /*
3283 * wq list is used to freeze wq, remove from list after
3284 * flushing is complete in case freeze races us.
3285 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07003286 spin_lock_irq(&workqueue_lock);
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003287 list_del(&wq->list);
Tejun Heoe98d5b12013-03-12 11:29:57 -07003288 spin_unlock_irq(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003289
Tejun Heoe22bee72010-06-29 10:07:14 +02003290 if (wq->flags & WQ_RESCUER) {
3291 kthread_stop(wq->rescuer->task);
Tejun Heof2e005a2010-07-20 15:59:09 +02003292 free_mayday_mask(wq->mayday_mask);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003293 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003294 }
3295
Tejun Heo112202d2013-02-13 19:29:12 -08003296 free_pwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003297 kfree(wq);
3298}
3299EXPORT_SYMBOL_GPL(destroy_workqueue);
3300
Tejun Heodcd989c2010-06-29 10:07:14 +02003301/**
Tejun Heo112202d2013-02-13 19:29:12 -08003302 * pwq_set_max_active - adjust max_active of a pwq
3303 * @pwq: target pool_workqueue
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003304 * @max_active: new max_active value.
3305 *
Tejun Heo112202d2013-02-13 19:29:12 -08003306 * Set @pwq->max_active to @max_active and activate delayed works if
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003307 * increased.
3308 *
3309 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003310 * spin_lock_irq(pool->lock).
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003311 */
Tejun Heo112202d2013-02-13 19:29:12 -08003312static void pwq_set_max_active(struct pool_workqueue *pwq, int max_active)
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003313{
Tejun Heo112202d2013-02-13 19:29:12 -08003314 pwq->max_active = max_active;
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003315
Tejun Heo112202d2013-02-13 19:29:12 -08003316 while (!list_empty(&pwq->delayed_works) &&
3317 pwq->nr_active < pwq->max_active)
3318 pwq_activate_first_delayed(pwq);
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003319}
3320
3321/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003322 * workqueue_set_max_active - adjust max_active of a workqueue
3323 * @wq: target workqueue
3324 * @max_active: new max_active value.
3325 *
3326 * Set max_active of @wq to @max_active.
3327 *
3328 * CONTEXT:
3329 * Don't call from IRQ context.
3330 */
3331void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3332{
3333 unsigned int cpu;
3334
Tejun Heof3421792010-07-02 10:03:51 +02003335 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003336
Tejun Heoe98d5b12013-03-12 11:29:57 -07003337 spin_lock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003338
3339 wq->saved_max_active = max_active;
3340
Tejun Heo112202d2013-02-13 19:29:12 -08003341 for_each_pwq_cpu(cpu, wq) {
3342 struct pool_workqueue *pwq = get_pwq(cpu, wq);
3343 struct worker_pool *pool = pwq->pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02003344
Tejun Heoe98d5b12013-03-12 11:29:57 -07003345 spin_lock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003346
Tejun Heo58a69cb2011-02-16 09:25:31 +01003347 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heo35b6bb62013-01-24 11:01:33 -08003348 !(pool->flags & POOL_FREEZING))
Tejun Heo112202d2013-02-13 19:29:12 -08003349 pwq_set_max_active(pwq, max_active);
Tejun Heodcd989c2010-06-29 10:07:14 +02003350
Tejun Heoe98d5b12013-03-12 11:29:57 -07003351 spin_unlock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003352 }
3353
Tejun Heoe98d5b12013-03-12 11:29:57 -07003354 spin_unlock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003355}
3356EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3357
3358/**
3359 * workqueue_congested - test whether a workqueue is congested
3360 * @cpu: CPU in question
3361 * @wq: target workqueue
3362 *
3363 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3364 * no synchronization around this function and the test result is
3365 * unreliable and only useful as advisory hints or for debugging.
3366 *
3367 * RETURNS:
3368 * %true if congested, %false otherwise.
3369 */
3370bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq)
3371{
Tejun Heo112202d2013-02-13 19:29:12 -08003372 struct pool_workqueue *pwq = get_pwq(cpu, wq);
Tejun Heodcd989c2010-06-29 10:07:14 +02003373
Tejun Heo112202d2013-02-13 19:29:12 -08003374 return !list_empty(&pwq->delayed_works);
Tejun Heodcd989c2010-06-29 10:07:14 +02003375}
3376EXPORT_SYMBOL_GPL(workqueue_congested);
3377
3378/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003379 * work_busy - test whether a work is currently pending or running
3380 * @work: the work to be tested
3381 *
3382 * Test whether @work is currently pending or running. There is no
3383 * synchronization around this function and the test result is
3384 * unreliable and only useful as advisory hints or for debugging.
Tejun Heodcd989c2010-06-29 10:07:14 +02003385 *
3386 * RETURNS:
3387 * OR'd bitmask of WORK_BUSY_* bits.
3388 */
3389unsigned int work_busy(struct work_struct *work)
3390{
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003391 struct worker_pool *pool = get_work_pool(work);
Tejun Heodcd989c2010-06-29 10:07:14 +02003392 unsigned long flags;
3393 unsigned int ret = 0;
3394
Tejun Heodcd989c2010-06-29 10:07:14 +02003395 if (work_pending(work))
3396 ret |= WORK_BUSY_PENDING;
Tejun Heodcd989c2010-06-29 10:07:14 +02003397
Lai Jiangshan038366c2013-02-06 18:04:53 -08003398 if (pool) {
3399 spin_lock_irqsave(&pool->lock, flags);
3400 if (find_worker_executing_work(pool, work))
3401 ret |= WORK_BUSY_RUNNING;
3402 spin_unlock_irqrestore(&pool->lock, flags);
3403 }
Tejun Heodcd989c2010-06-29 10:07:14 +02003404
3405 return ret;
3406}
3407EXPORT_SYMBOL_GPL(work_busy);
3408
Tejun Heodb7bccf2010-06-29 10:07:12 +02003409/*
3410 * CPU hotplug.
3411 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003412 * There are two challenges in supporting CPU hotplug. Firstly, there
Tejun Heo112202d2013-02-13 19:29:12 -08003413 * are a lot of assumptions on strong associations among work, pwq and
Tejun Heo706026c2013-01-24 11:01:34 -08003414 * pool which make migrating pending and scheduled works very
Tejun Heoe22bee72010-06-29 10:07:14 +02003415 * difficult to implement without impacting hot paths. Secondly,
Tejun Heo94cf58b2013-01-24 11:01:33 -08003416 * worker pools serve mix of short, long and very long running works making
Tejun Heoe22bee72010-06-29 10:07:14 +02003417 * blocked draining impractical.
3418 *
Tejun Heo24647572013-01-24 11:01:33 -08003419 * This is solved by allowing the pools to be disassociated from the CPU
Tejun Heo628c78e2012-07-17 12:39:27 -07003420 * running as an unbound one and allowing it to be reattached later if the
3421 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003422 */
3423
Tejun Heo706026c2013-01-24 11:01:34 -08003424static void wq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003425{
Tejun Heo38db41d2013-01-24 11:01:34 -08003426 int cpu = smp_processor_id();
Tejun Heo4ce62e92012-07-13 22:16:44 -07003427 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003428 struct worker *worker;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003429 int i;
3430
Tejun Heo38db41d2013-01-24 11:01:34 -08003431 for_each_std_worker_pool(pool, cpu) {
Tejun Heo6183c002013-03-12 11:29:57 -07003432 WARN_ON_ONCE(cpu != smp_processor_id());
Tejun Heo94cf58b2013-01-24 11:01:33 -08003433
3434 mutex_lock(&pool->assoc_mutex);
3435 spin_lock_irq(&pool->lock);
3436
3437 /*
3438 * We've claimed all manager positions. Make all workers
3439 * unbound and set DISASSOCIATED. Before this, all workers
3440 * except for the ones which are still executing works from
3441 * before the last CPU down must be on the cpu. After
3442 * this, they may become diasporas.
3443 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003444 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003445 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003446
Sasha Levinb67bfe02013-02-27 17:06:00 -08003447 for_each_busy_worker(worker, i, pool)
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003448 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003449
Tejun Heo24647572013-01-24 11:01:33 -08003450 pool->flags |= POOL_DISASSOCIATED;
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003451
Tejun Heo94cf58b2013-01-24 11:01:33 -08003452 spin_unlock_irq(&pool->lock);
3453 mutex_unlock(&pool->assoc_mutex);
3454 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003455
3456 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07003457 * Call schedule() so that we cross rq->lock and thus can guarantee
3458 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3459 * as scheduler callbacks may be invoked from other cpus.
3460 */
3461 schedule();
3462
3463 /*
3464 * Sched callbacks are disabled now. Zap nr_running. After this,
3465 * nr_running stays zero and need_more_worker() and keep_working()
Tejun Heo38db41d2013-01-24 11:01:34 -08003466 * are always true as long as the worklist is not empty. Pools on
3467 * @cpu now behave as unbound (in terms of concurrency management)
3468 * pools which are served by workers tied to the CPU.
Tejun Heo628c78e2012-07-17 12:39:27 -07003469 *
3470 * On return from this function, the current worker would trigger
3471 * unbound chain execution of pending work items if other workers
3472 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02003473 */
Tejun Heo38db41d2013-01-24 11:01:34 -08003474 for_each_std_worker_pool(pool, cpu)
Tejun Heoe19e3972013-01-24 11:39:44 -08003475 atomic_set(&pool->nr_running, 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003476}
3477
Tejun Heo8db25e72012-07-17 12:39:28 -07003478/*
3479 * Workqueues should be brought up before normal priority CPU notifiers.
3480 * This will be registered high priority CPU notifier.
3481 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003482static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
Tejun Heo8db25e72012-07-17 12:39:28 -07003483 unsigned long action,
3484 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003485{
3486 unsigned int cpu = (unsigned long)hcpu;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003487 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Tejun Heo8db25e72012-07-17 12:39:28 -07003489 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 case CPU_UP_PREPARE:
Tejun Heo38db41d2013-01-24 11:01:34 -08003491 for_each_std_worker_pool(pool, cpu) {
Tejun Heo3ce63372012-07-17 12:39:27 -07003492 struct worker *worker;
3493
3494 if (pool->nr_workers)
3495 continue;
3496
3497 worker = create_worker(pool);
3498 if (!worker)
3499 return NOTIFY_BAD;
3500
Tejun Heod565ed62013-01-24 11:01:33 -08003501 spin_lock_irq(&pool->lock);
Tejun Heo3ce63372012-07-17 12:39:27 -07003502 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003503 spin_unlock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003505 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003506
Tejun Heo65758202012-07-17 12:39:26 -07003507 case CPU_DOWN_FAILED:
3508 case CPU_ONLINE:
Tejun Heo38db41d2013-01-24 11:01:34 -08003509 for_each_std_worker_pool(pool, cpu) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08003510 mutex_lock(&pool->assoc_mutex);
3511 spin_lock_irq(&pool->lock);
3512
Tejun Heo24647572013-01-24 11:01:33 -08003513 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heo94cf58b2013-01-24 11:01:33 -08003514 rebind_workers(pool);
3515
3516 spin_unlock_irq(&pool->lock);
3517 mutex_unlock(&pool->assoc_mutex);
3518 }
Tejun Heo8db25e72012-07-17 12:39:28 -07003519 break;
Tejun Heo65758202012-07-17 12:39:26 -07003520 }
3521 return NOTIFY_OK;
3522}
3523
3524/*
3525 * Workqueues should be brought down after normal priority CPU notifiers.
3526 * This will be registered as low priority CPU notifier.
3527 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003528static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
Tejun Heo65758202012-07-17 12:39:26 -07003529 unsigned long action,
3530 void *hcpu)
3531{
Tejun Heo8db25e72012-07-17 12:39:28 -07003532 unsigned int cpu = (unsigned long)hcpu;
3533 struct work_struct unbind_work;
3534
Tejun Heo65758202012-07-17 12:39:26 -07003535 switch (action & ~CPU_TASKS_FROZEN) {
3536 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003537 /* unbinding should happen on the local CPU */
Tejun Heo706026c2013-01-24 11:01:34 -08003538 INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
Joonsoo Kim7635d2f2012-08-15 23:25:41 +09003539 queue_work_on(cpu, system_highpri_wq, &unbind_work);
Tejun Heo8db25e72012-07-17 12:39:28 -07003540 flush_work(&unbind_work);
3541 break;
Tejun Heo65758202012-07-17 12:39:26 -07003542 }
3543 return NOTIFY_OK;
3544}
3545
Rusty Russell2d3854a2008-11-05 13:39:10 +11003546#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003547
Rusty Russell2d3854a2008-11-05 13:39:10 +11003548struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07003549 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003550 long (*fn)(void *);
3551 void *arg;
3552 long ret;
3553};
3554
Tejun Heoed48ece2012-09-18 12:48:43 -07003555static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003556{
Tejun Heoed48ece2012-09-18 12:48:43 -07003557 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
3558
Rusty Russell2d3854a2008-11-05 13:39:10 +11003559 wfc->ret = wfc->fn(wfc->arg);
3560}
3561
3562/**
3563 * work_on_cpu - run a function in user context on a particular cpu
3564 * @cpu: the cpu to run on
3565 * @fn: the function to run
3566 * @arg: the function arg
3567 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003568 * This will return the value @fn returns.
3569 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b44003e2009-04-09 09:50:37 -06003570 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003571 */
3572long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
3573{
Tejun Heoed48ece2012-09-18 12:48:43 -07003574 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003575
Tejun Heoed48ece2012-09-18 12:48:43 -07003576 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
3577 schedule_work_on(cpu, &wfc.work);
3578 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003579 return wfc.ret;
3580}
3581EXPORT_SYMBOL_GPL(work_on_cpu);
3582#endif /* CONFIG_SMP */
3583
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003584#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303585
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003586/**
3587 * freeze_workqueues_begin - begin freezing workqueues
3588 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003589 * Start freezing workqueues. After this function returns, all freezable
3590 * workqueues will queue new works to their frozen_works list instead of
Tejun Heo706026c2013-01-24 11:01:34 -08003591 * pool->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003592 *
3593 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003594 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003595 */
3596void freeze_workqueues_begin(void)
3597{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003598 unsigned int cpu;
3599
Tejun Heoe98d5b12013-03-12 11:29:57 -07003600 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003601
Tejun Heo6183c002013-03-12 11:29:57 -07003602 WARN_ON_ONCE(workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003603 workqueue_freezing = true;
3604
Tejun Heo706026c2013-01-24 11:01:34 -08003605 for_each_wq_cpu(cpu) {
Tejun Heo35b6bb62013-01-24 11:01:33 -08003606 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003607 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003608
Tejun Heo38db41d2013-01-24 11:01:34 -08003609 for_each_std_worker_pool(pool, cpu) {
Tejun Heoe98d5b12013-03-12 11:29:57 -07003610 spin_lock(&pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08003611
Tejun Heo35b6bb62013-01-24 11:01:33 -08003612 WARN_ON_ONCE(pool->flags & POOL_FREEZING);
3613 pool->flags |= POOL_FREEZING;
Tejun Heoa1056302013-01-24 11:01:33 -08003614
3615 list_for_each_entry(wq, &workqueues, list) {
Tejun Heo112202d2013-02-13 19:29:12 -08003616 struct pool_workqueue *pwq = get_pwq(cpu, wq);
Tejun Heoa1056302013-01-24 11:01:33 -08003617
Tejun Heo112202d2013-02-13 19:29:12 -08003618 if (pwq && pwq->pool == pool &&
Tejun Heoa1056302013-01-24 11:01:33 -08003619 (wq->flags & WQ_FREEZABLE))
Tejun Heo112202d2013-02-13 19:29:12 -08003620 pwq->max_active = 0;
Tejun Heoa1056302013-01-24 11:01:33 -08003621 }
3622
Tejun Heoe98d5b12013-03-12 11:29:57 -07003623 spin_unlock(&pool->lock);
Tejun Heo35b6bb62013-01-24 11:01:33 -08003624 }
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003625 }
3626
Tejun Heoe98d5b12013-03-12 11:29:57 -07003627 spin_unlock_irq(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003629
3630/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003631 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003632 *
3633 * Check whether freezing is complete. This function must be called
3634 * between freeze_workqueues_begin() and thaw_workqueues().
3635 *
3636 * CONTEXT:
3637 * Grabs and releases workqueue_lock.
3638 *
3639 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003640 * %true if some freezable workqueues are still busy. %false if freezing
3641 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003642 */
3643bool freeze_workqueues_busy(void)
3644{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003645 unsigned int cpu;
3646 bool busy = false;
3647
Tejun Heoe98d5b12013-03-12 11:29:57 -07003648 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003649
Tejun Heo6183c002013-03-12 11:29:57 -07003650 WARN_ON_ONCE(!workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003651
Tejun Heo706026c2013-01-24 11:01:34 -08003652 for_each_wq_cpu(cpu) {
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003653 struct workqueue_struct *wq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003654 /*
3655 * nr_active is monotonically decreasing. It's safe
3656 * to peek without lock.
3657 */
3658 list_for_each_entry(wq, &workqueues, list) {
Tejun Heo112202d2013-02-13 19:29:12 -08003659 struct pool_workqueue *pwq = get_pwq(cpu, wq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003660
Tejun Heo112202d2013-02-13 19:29:12 -08003661 if (!pwq || !(wq->flags & WQ_FREEZABLE))
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003662 continue;
3663
Tejun Heo6183c002013-03-12 11:29:57 -07003664 WARN_ON_ONCE(pwq->nr_active < 0);
Tejun Heo112202d2013-02-13 19:29:12 -08003665 if (pwq->nr_active) {
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003666 busy = true;
3667 goto out_unlock;
3668 }
3669 }
3670 }
3671out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07003672 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003673 return busy;
3674}
3675
3676/**
3677 * thaw_workqueues - thaw workqueues
3678 *
3679 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo706026c2013-01-24 11:01:34 -08003680 * frozen works are transferred to their respective pool worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003681 *
3682 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003683 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003684 */
3685void thaw_workqueues(void)
3686{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003687 unsigned int cpu;
3688
Tejun Heoe98d5b12013-03-12 11:29:57 -07003689 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003690
3691 if (!workqueue_freezing)
3692 goto out_unlock;
3693
Tejun Heo706026c2013-01-24 11:01:34 -08003694 for_each_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003695 struct worker_pool *pool;
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003696 struct workqueue_struct *wq;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003697
Tejun Heo38db41d2013-01-24 11:01:34 -08003698 for_each_std_worker_pool(pool, cpu) {
Tejun Heoe98d5b12013-03-12 11:29:57 -07003699 spin_lock(&pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08003700
Tejun Heo35b6bb62013-01-24 11:01:33 -08003701 WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
3702 pool->flags &= ~POOL_FREEZING;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003703
Tejun Heoa1056302013-01-24 11:01:33 -08003704 list_for_each_entry(wq, &workqueues, list) {
Tejun Heo112202d2013-02-13 19:29:12 -08003705 struct pool_workqueue *pwq = get_pwq(cpu, wq);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003706
Tejun Heo112202d2013-02-13 19:29:12 -08003707 if (!pwq || pwq->pool != pool ||
Tejun Heoa1056302013-01-24 11:01:33 -08003708 !(wq->flags & WQ_FREEZABLE))
3709 continue;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003710
Tejun Heoa1056302013-01-24 11:01:33 -08003711 /* restore max_active and repopulate worklist */
Tejun Heo112202d2013-02-13 19:29:12 -08003712 pwq_set_max_active(pwq, wq->saved_max_active);
Tejun Heoa1056302013-01-24 11:01:33 -08003713 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003714
Tejun Heo4ce62e92012-07-13 22:16:44 -07003715 wake_up_worker(pool);
Tejun Heoa1056302013-01-24 11:01:33 -08003716
Tejun Heoe98d5b12013-03-12 11:29:57 -07003717 spin_unlock(&pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08003718 }
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003719 }
3720
3721 workqueue_freezing = false;
3722out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07003723 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003724}
3725#endif /* CONFIG_FREEZER */
3726
Suresh Siddha6ee05782010-07-30 14:57:37 -07003727static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728{
Tejun Heoc34056a2010-06-29 10:07:11 +02003729 unsigned int cpu;
3730
Tejun Heo7c3eed52013-01-24 11:01:33 -08003731 /* make sure we have enough bits for OFFQ pool ID */
3732 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) <
Lai Jiangshan6be19582013-02-06 18:04:53 -08003733 WORK_CPU_END * NR_STD_WORKER_POOLS);
Tejun Heob5490072012-08-03 10:30:46 -07003734
Tejun Heoe904e6c2013-03-12 11:29:57 -07003735 WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long));
3736
3737 pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);
3738
Tejun Heo65758202012-07-17 12:39:26 -07003739 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
Lai Jiangshana5b4e572012-09-18 09:59:23 -07003740 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003741
Tejun Heo706026c2013-01-24 11:01:34 -08003742 /* initialize CPU pools */
3743 for_each_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003744 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003745
Tejun Heo38db41d2013-01-24 11:01:34 -08003746 for_each_std_worker_pool(pool, cpu) {
Tejun Heod565ed62013-01-24 11:01:33 -08003747 spin_lock_init(&pool->lock);
Tejun Heoec22ca52013-01-24 11:01:33 -08003748 pool->cpu = cpu;
Tejun Heo24647572013-01-24 11:01:33 -08003749 pool->flags |= POOL_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003750 INIT_LIST_HEAD(&pool->worklist);
3751 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003752 hash_init(pool->busy_hash);
Tejun Heoe22bee72010-06-29 10:07:14 +02003753
Tejun Heo4ce62e92012-07-13 22:16:44 -07003754 init_timer_deferrable(&pool->idle_timer);
3755 pool->idle_timer.function = idle_worker_timeout;
3756 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003757
Tejun Heo706026c2013-01-24 11:01:34 -08003758 setup_timer(&pool->mayday_timer, pool_mayday_timeout,
Tejun Heo4ce62e92012-07-13 22:16:44 -07003759 (unsigned long)pool);
3760
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003761 mutex_init(&pool->assoc_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003762 ida_init(&pool->worker_ida);
Tejun Heo9daf9e62013-01-24 11:01:33 -08003763
3764 /* alloc pool ID */
3765 BUG_ON(worker_pool_assign_id(pool));
Tejun Heo4ce62e92012-07-13 22:16:44 -07003766 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003767 }
3768
Tejun Heoe22bee72010-06-29 10:07:14 +02003769 /* create the initial worker */
Tejun Heo706026c2013-01-24 11:01:34 -08003770 for_each_online_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003771 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003772
Tejun Heo38db41d2013-01-24 11:01:34 -08003773 for_each_std_worker_pool(pool, cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003774 struct worker *worker;
3775
Tejun Heo24647572013-01-24 11:01:33 -08003776 if (cpu != WORK_CPU_UNBOUND)
3777 pool->flags &= ~POOL_DISASSOCIATED;
3778
Tejun Heobc2ae0f2012-07-17 12:39:27 -07003779 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003780 BUG_ON(!worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003781 spin_lock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003782 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003783 spin_unlock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003784 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003785 }
3786
Tejun Heod320c032010-06-29 10:07:14 +02003787 system_wq = alloc_workqueue("events", 0, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003788 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
Tejun Heod320c032010-06-29 10:07:14 +02003789 system_long_wq = alloc_workqueue("events_long", 0, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003790 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3791 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003792 system_freezable_wq = alloc_workqueue("events_freezable",
3793 WQ_FREEZABLE, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003794 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
Tejun Heoae930e02012-08-20 14:51:23 -07003795 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003796 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003798early_initcall(init_workqueues);