blob: 46381490f49607c24e6d4e284b6403741133d7d4 [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 Heo76af4d92013-03-12 11:30:00 -070045#include <linux/rculist.h>
Tejun Heoe22bee72010-06-29 10:07:14 +020046
Tejun Heoea138442013-01-18 14:05:55 -080047#include "workqueue_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Tejun Heoc8e55f32010-06-29 10:07:12 +020049enum {
Tejun Heobc2ae0f2012-07-17 12:39:27 -070050 /*
Tejun Heo24647572013-01-24 11:01:33 -080051 * worker_pool flags
Tejun Heobc2ae0f2012-07-17 12:39:27 -070052 *
Tejun Heo24647572013-01-24 11:01:33 -080053 * A bound pool is either associated or disassociated with its CPU.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070054 * While associated (!DISASSOCIATED), all workers are bound to the
55 * CPU and none has %WORKER_UNBOUND set and concurrency management
56 * is in effect.
57 *
58 * While DISASSOCIATED, the cpu may be offline and all workers have
59 * %WORKER_UNBOUND set and concurrency management disabled, and may
Tejun Heo24647572013-01-24 11:01:33 -080060 * be executing on any CPU. The pool behaves as an unbound one.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070061 *
62 * Note that DISASSOCIATED can be flipped only while holding
Tejun Heo24647572013-01-24 11:01:33 -080063 * assoc_mutex to avoid changing binding state while
64 * create_worker() is in progress.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070065 */
Tejun Heo11ebea52012-07-12 14:46:37 -070066 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
Lai Jiangshan552a37e2012-09-10 10:03:33 -070067 POOL_MANAGING_WORKERS = 1 << 1, /* managing workers */
Tejun Heo24647572013-01-24 11:01:33 -080068 POOL_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */
Tejun Heo35b6bb62013-01-24 11:01:33 -080069 POOL_FREEZING = 1 << 3, /* freeze in progress */
Tejun Heodb7bccf2010-06-29 10:07:12 +020070
Tejun Heoc8e55f32010-06-29 10:07:12 +020071 /* worker flags */
72 WORKER_STARTED = 1 << 0, /* started */
73 WORKER_DIE = 1 << 1, /* die die die */
74 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020075 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heofb0e7be2010-06-29 10:07:15 +020076 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020077 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoe22bee72010-06-29 10:07:14 +020078
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -070079 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_UNBOUND |
Tejun Heo403c8212012-07-17 12:39:27 -070080 WORKER_CPU_INTENSIVE,
Tejun Heodb7bccf2010-06-29 10:07:12 +020081
Tejun Heoe34cdddb2013-01-24 11:01:33 -080082 NR_STD_WORKER_POOLS = 2, /* # standard pools per cpu */
Tejun Heo4ce62e92012-07-13 22:16:44 -070083
Tejun Heoc8e55f32010-06-29 10:07:12 +020084 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020085
Tejun Heoe22bee72010-06-29 10:07:14 +020086 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
87 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
88
Tejun Heo3233cdb2011-02-16 18:10:19 +010089 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
90 /* call for help after 10ms
91 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020092 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
93 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heoe22bee72010-06-29 10:07:14 +020094
95 /*
96 * Rescue workers are used only on emergencies and shared by
97 * all cpus. Give -20.
98 */
99 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -0700100 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoc8e55f32010-06-29 10:07:12 +0200101};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/*
Tejun Heo4690c4a2010-06-29 10:07:10 +0200104 * Structure fields follow one of the following exclusion rules.
105 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200106 * I: Modifiable by initialization/destruction paths and read-only for
107 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200108 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200109 * P: Preemption protected. Disabling preemption is enough and should
110 * only be modified and accessed from the local cpu.
111 *
Tejun Heod565ed62013-01-24 11:01:33 -0800112 * L: pool->lock protected. Access with pool->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200113 *
Tejun Heod565ed62013-01-24 11:01:33 -0800114 * X: During normal operation, modification requires pool->lock and should
115 * be done only from local cpu. Either disabling preemption on local
116 * cpu or grabbing pool->lock is enough for read access. If
117 * POOL_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200118 *
Tejun Heo73f53c42010-06-29 10:07:11 +0200119 * F: wq->flush_mutex protected.
120 *
Tejun Heo4690c4a2010-06-29 10:07:10 +0200121 * W: workqueue_lock protected.
Tejun Heo76af4d92013-03-12 11:30:00 -0700122 *
123 * R: workqueue_lock protected for writes. Sched-RCU protected for reads.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200124 */
125
Tejun Heo2eaebdb2013-01-18 14:05:55 -0800126/* struct worker is defined in workqueue_internal.h */
Tejun Heoc34056a2010-06-29 10:07:11 +0200127
Tejun Heobd7bdd42012-07-12 14:46:37 -0700128struct worker_pool {
Tejun Heod565ed62013-01-24 11:01:33 -0800129 spinlock_t lock; /* the pool lock */
Tejun Heod84ff052013-03-12 11:29:59 -0700130 int cpu; /* I: the associated cpu */
Tejun Heo9daf9e62013-01-24 11:01:33 -0800131 int id; /* I: pool ID */
Tejun Heo11ebea52012-07-12 14:46:37 -0700132 unsigned int flags; /* X: flags */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700133
134 struct list_head worklist; /* L: list of pending works */
135 int nr_workers; /* L: total number of workers */
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700136
137 /* nr_idle includes the ones off idle_list for rebinding */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700138 int nr_idle; /* L: currently idle ones */
139
140 struct list_head idle_list; /* X: list of idle workers */
141 struct timer_list idle_timer; /* L: worker idle timeout */
142 struct timer_list mayday_timer; /* L: SOS timer for workers */
143
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800144 /* workers are chained either in busy_hash or idle_list */
145 DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER);
146 /* L: hash of busy workers */
147
Tejun Heo24647572013-01-24 11:01:33 -0800148 struct mutex assoc_mutex; /* protect POOL_DISASSOCIATED */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700149 struct ida worker_ida; /* L: for worker IDs */
Tejun Heoe19e3972013-01-24 11:39:44 -0800150
151 /*
152 * The current concurrency level. As it's likely to be accessed
153 * from other CPUs during try_to_wake_up(), put it in a separate
154 * cacheline.
155 */
156 atomic_t nr_running ____cacheline_aligned_in_smp;
Tejun Heo8b03ae32010-06-29 10:07:12 +0200157} ____cacheline_aligned_in_smp;
158
159/*
Tejun Heo112202d2013-02-13 19:29:12 -0800160 * The per-pool workqueue. While queued, the lower WORK_STRUCT_FLAG_BITS
161 * of work_struct->data are used for flags and the remaining high bits
162 * point to the pwq; thus, pwqs need to be aligned at two's power of the
163 * number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
Tejun Heo112202d2013-02-13 19:29:12 -0800165struct pool_workqueue {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700166 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200167 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200168 int work_color; /* L: current color */
169 int flush_color; /* L: flushing color */
170 int nr_in_flight[WORK_NR_COLORS];
171 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200172 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200173 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200174 struct list_head delayed_works; /* L: delayed works */
Tejun Heo76af4d92013-03-12 11:30:00 -0700175 struct list_head pwqs_node; /* R: node on wq->pwqs */
Tejun Heo493a1722013-03-12 11:29:59 -0700176 struct list_head mayday_node; /* W: node on wq->maydays */
Tejun Heoe904e6c2013-03-12 11:29:57 -0700177} __aligned(1 << WORK_STRUCT_FLAG_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200180 * Structure used to wait for workqueue flush.
181 */
182struct wq_flusher {
183 struct list_head list; /* F: list of flushers */
184 int flush_color; /* F: flush color waiting for */
185 struct completion done; /* flush completion */
186};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Tejun Heo73f53c42010-06-29 10:07:11 +0200188/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * The externally visible workqueue abstraction is an array of
190 * per-CPU workqueues:
191 */
192struct workqueue_struct {
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200193 unsigned int flags; /* W: WQ_* flags */
Tejun Heo420c0dd2013-03-12 11:29:59 -0700194 struct pool_workqueue __percpu *cpu_pwqs; /* I: per-cpu pwq's */
Tejun Heo76af4d92013-03-12 11:30:00 -0700195 struct list_head pwqs; /* R: all pwqs of this wq */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200196 struct list_head list; /* W: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200197
198 struct mutex flush_mutex; /* protects wq flushing */
199 int work_color; /* F: current work color */
200 int flush_color; /* F: current flush color */
Tejun Heo112202d2013-02-13 19:29:12 -0800201 atomic_t nr_pwqs_to_flush; /* flush in progress */
Tejun Heo73f53c42010-06-29 10:07:11 +0200202 struct wq_flusher *first_flusher; /* F: first flusher */
203 struct list_head flusher_queue; /* F: flush waiters */
204 struct list_head flusher_overflow; /* F: flush overflow list */
205
Tejun Heo493a1722013-03-12 11:29:59 -0700206 struct list_head maydays; /* W: pwqs requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200207 struct worker *rescuer; /* I: rescue worker */
208
Tejun Heo9c5a2ba2011-04-05 18:01:44 +0200209 int nr_drainers; /* W: drain in progress */
Tejun Heo112202d2013-02-13 19:29:12 -0800210 int saved_max_active; /* W: saved pwq max_active */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700211#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200212 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700213#endif
Tejun Heob196be82012-01-10 15:11:35 -0800214 char name[]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
Tejun Heoe904e6c2013-03-12 11:29:57 -0700217static struct kmem_cache *pwq_cache;
218
Tejun Heod320c032010-06-29 10:07:14 +0200219struct workqueue_struct *system_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200220EXPORT_SYMBOL_GPL(system_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300221struct workqueue_struct *system_highpri_wq __read_mostly;
Joonsoo Kim1aabe902012-08-15 23:25:39 +0900222EXPORT_SYMBOL_GPL(system_highpri_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300223struct workqueue_struct *system_long_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200224EXPORT_SYMBOL_GPL(system_long_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300225struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200226EXPORT_SYMBOL_GPL(system_unbound_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300227struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100228EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200229
Tejun Heo97bd2342010-10-05 10:41:14 +0200230#define CREATE_TRACE_POINTS
231#include <trace/events/workqueue.h>
232
Tejun Heo76af4d92013-03-12 11:30:00 -0700233#define assert_rcu_or_wq_lock() \
234 rcu_lockdep_assert(rcu_read_lock_sched_held() || \
235 lockdep_is_held(&workqueue_lock), \
236 "sched RCU or workqueue lock should be held")
237
Tejun Heo38db41d2013-01-24 11:01:34 -0800238#define for_each_std_worker_pool(pool, cpu) \
Tejun Heoa60dc392013-01-24 11:01:34 -0800239 for ((pool) = &std_worker_pools(cpu)[0]; \
240 (pool) < &std_worker_pools(cpu)[NR_STD_WORKER_POOLS]; (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700241
Sasha Levinb67bfe02013-02-27 17:06:00 -0800242#define for_each_busy_worker(worker, i, pool) \
243 hash_for_each(pool->busy_hash, i, worker, hentry)
Tejun Heodb7bccf2010-06-29 10:07:12 +0200244
Tejun Heo706026c2013-01-24 11:01:34 -0800245static inline int __next_wq_cpu(int cpu, const struct cpumask *mask,
246 unsigned int sw)
Tejun Heof3421792010-07-02 10:03:51 +0200247{
248 if (cpu < nr_cpu_ids) {
249 if (sw & 1) {
250 cpu = cpumask_next(cpu, mask);
251 if (cpu < nr_cpu_ids)
252 return cpu;
253 }
254 if (sw & 2)
255 return WORK_CPU_UNBOUND;
256 }
Lai Jiangshan6be19582013-02-06 18:04:53 -0800257 return WORK_CPU_END;
Tejun Heof3421792010-07-02 10:03:51 +0200258}
259
Tejun Heo09884952010-08-01 11:50:12 +0200260/*
261 * CPU iterators
262 *
Tejun Heo706026c2013-01-24 11:01:34 -0800263 * An extra cpu number is defined using an invalid cpu number
Tejun Heo09884952010-08-01 11:50:12 +0200264 * (WORK_CPU_UNBOUND) to host workqueues which are not bound to any
Tejun Heo706026c2013-01-24 11:01:34 -0800265 * specific CPU. The following iterators are similar to for_each_*_cpu()
266 * iterators but also considers the unbound CPU.
Tejun Heo09884952010-08-01 11:50:12 +0200267 *
Tejun Heo706026c2013-01-24 11:01:34 -0800268 * for_each_wq_cpu() : possible CPUs + WORK_CPU_UNBOUND
269 * for_each_online_wq_cpu() : online CPUs + WORK_CPU_UNBOUND
Tejun Heo09884952010-08-01 11:50:12 +0200270 */
Tejun Heo706026c2013-01-24 11:01:34 -0800271#define for_each_wq_cpu(cpu) \
272 for ((cpu) = __next_wq_cpu(-1, cpu_possible_mask, 3); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800273 (cpu) < WORK_CPU_END; \
Tejun Heo706026c2013-01-24 11:01:34 -0800274 (cpu) = __next_wq_cpu((cpu), cpu_possible_mask, 3))
Tejun Heof3421792010-07-02 10:03:51 +0200275
Tejun Heo706026c2013-01-24 11:01:34 -0800276#define for_each_online_wq_cpu(cpu) \
277 for ((cpu) = __next_wq_cpu(-1, cpu_online_mask, 3); \
Lai Jiangshan6be19582013-02-06 18:04:53 -0800278 (cpu) < WORK_CPU_END; \
Tejun Heo706026c2013-01-24 11:01:34 -0800279 (cpu) = __next_wq_cpu((cpu), cpu_online_mask, 3))
Tejun Heof3421792010-07-02 10:03:51 +0200280
Tejun Heo49e3cf42013-03-12 11:29:58 -0700281/**
Tejun Heo17116962013-03-12 11:29:58 -0700282 * for_each_pool - iterate through all worker_pools in the system
283 * @pool: iteration cursor
284 * @id: integer used for iteration
Tejun Heofa1b54e2013-03-12 11:30:00 -0700285 *
286 * This must be called either with workqueue_lock held or sched RCU read
287 * locked. If the pool needs to be used beyond the locking in effect, the
288 * caller is responsible for guaranteeing that the pool stays online.
289 *
290 * The if/else clause exists only for the lockdep assertion and can be
291 * ignored.
Tejun Heo17116962013-03-12 11:29:58 -0700292 */
293#define for_each_pool(pool, id) \
Tejun Heofa1b54e2013-03-12 11:30:00 -0700294 idr_for_each_entry(&worker_pool_idr, pool, id) \
295 if (({ assert_rcu_or_wq_lock(); false; })) { } \
296 else
Tejun Heo17116962013-03-12 11:29:58 -0700297
298/**
Tejun Heo49e3cf42013-03-12 11:29:58 -0700299 * for_each_pwq - iterate through all pool_workqueues of the specified workqueue
300 * @pwq: iteration cursor
301 * @wq: the target workqueue
Tejun Heo76af4d92013-03-12 11:30:00 -0700302 *
303 * This must be called either with workqueue_lock held or sched RCU read
304 * locked. If the pwq needs to be used beyond the locking in effect, the
305 * caller is responsible for guaranteeing that the pwq stays online.
306 *
307 * The if/else clause exists only for the lockdep assertion and can be
308 * ignored.
Tejun Heo49e3cf42013-03-12 11:29:58 -0700309 */
310#define for_each_pwq(pwq, wq) \
Tejun Heo76af4d92013-03-12 11:30:00 -0700311 list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node) \
312 if (({ assert_rcu_or_wq_lock(); false; })) { } \
313 else
Tejun Heof3421792010-07-02 10:03:51 +0200314
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900315#ifdef CONFIG_DEBUG_OBJECTS_WORK
316
317static struct debug_obj_descr work_debug_descr;
318
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100319static void *work_debug_hint(void *addr)
320{
321 return ((struct work_struct *) addr)->func;
322}
323
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900324/*
325 * fixup_init is called when:
326 * - an active object is initialized
327 */
328static int work_fixup_init(void *addr, enum debug_obj_state state)
329{
330 struct work_struct *work = addr;
331
332 switch (state) {
333 case ODEBUG_STATE_ACTIVE:
334 cancel_work_sync(work);
335 debug_object_init(work, &work_debug_descr);
336 return 1;
337 default:
338 return 0;
339 }
340}
341
342/*
343 * fixup_activate is called when:
344 * - an active object is activated
345 * - an unknown object is activated (might be a statically initialized object)
346 */
347static int work_fixup_activate(void *addr, enum debug_obj_state state)
348{
349 struct work_struct *work = addr;
350
351 switch (state) {
352
353 case ODEBUG_STATE_NOTAVAILABLE:
354 /*
355 * This is not really a fixup. The work struct was
356 * statically initialized. We just make sure that it
357 * is tracked in the object tracker.
358 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200359 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900360 debug_object_init(work, &work_debug_descr);
361 debug_object_activate(work, &work_debug_descr);
362 return 0;
363 }
364 WARN_ON_ONCE(1);
365 return 0;
366
367 case ODEBUG_STATE_ACTIVE:
368 WARN_ON(1);
369
370 default:
371 return 0;
372 }
373}
374
375/*
376 * fixup_free is called when:
377 * - an active object is freed
378 */
379static int work_fixup_free(void *addr, enum debug_obj_state state)
380{
381 struct work_struct *work = addr;
382
383 switch (state) {
384 case ODEBUG_STATE_ACTIVE:
385 cancel_work_sync(work);
386 debug_object_free(work, &work_debug_descr);
387 return 1;
388 default:
389 return 0;
390 }
391}
392
393static struct debug_obj_descr work_debug_descr = {
394 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100395 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900396 .fixup_init = work_fixup_init,
397 .fixup_activate = work_fixup_activate,
398 .fixup_free = work_fixup_free,
399};
400
401static inline void debug_work_activate(struct work_struct *work)
402{
403 debug_object_activate(work, &work_debug_descr);
404}
405
406static inline void debug_work_deactivate(struct work_struct *work)
407{
408 debug_object_deactivate(work, &work_debug_descr);
409}
410
411void __init_work(struct work_struct *work, int onstack)
412{
413 if (onstack)
414 debug_object_init_on_stack(work, &work_debug_descr);
415 else
416 debug_object_init(work, &work_debug_descr);
417}
418EXPORT_SYMBOL_GPL(__init_work);
419
420void destroy_work_on_stack(struct work_struct *work)
421{
422 debug_object_free(work, &work_debug_descr);
423}
424EXPORT_SYMBOL_GPL(destroy_work_on_stack);
425
426#else
427static inline void debug_work_activate(struct work_struct *work) { }
428static inline void debug_work_deactivate(struct work_struct *work) { }
429#endif
430
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100431/* Serializes the accesses to the list of workqueues. */
432static DEFINE_SPINLOCK(workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433static LIST_HEAD(workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200434static bool workqueue_freezing; /* W: have wqs started freezing? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Oleg Nesterov14441962007-05-23 13:57:57 -0700436/*
Tejun Heoe19e3972013-01-24 11:39:44 -0800437 * The CPU and unbound standard worker pools. The unbound ones have
438 * POOL_DISASSOCIATED set, and their workers have WORKER_UNBOUND set.
Oleg Nesterov14441962007-05-23 13:57:57 -0700439 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800440static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
441 cpu_std_worker_pools);
Tejun Heoa60dc392013-01-24 11:01:34 -0800442static struct worker_pool unbound_std_worker_pools[NR_STD_WORKER_POOLS];
Tejun Heof3421792010-07-02 10:03:51 +0200443
Tejun Heofa1b54e2013-03-12 11:30:00 -0700444/*
445 * idr of all pools. Modifications are protected by workqueue_lock. Read
446 * accesses are protected by sched-RCU protected.
447 */
Tejun Heo9daf9e62013-01-24 11:01:33 -0800448static DEFINE_IDR(worker_pool_idr);
449
Tejun Heoc34056a2010-06-29 10:07:11 +0200450static int worker_thread(void *__worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Tejun Heoa60dc392013-01-24 11:01:34 -0800452static struct worker_pool *std_worker_pools(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Tejun Heof3421792010-07-02 10:03:51 +0200454 if (cpu != WORK_CPU_UNBOUND)
Tejun Heoa60dc392013-01-24 11:01:34 -0800455 return per_cpu(cpu_std_worker_pools, cpu);
Tejun Heof3421792010-07-02 10:03:51 +0200456 else
Tejun Heoa60dc392013-01-24 11:01:34 -0800457 return unbound_std_worker_pools;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Tejun Heo4e8f0a62013-01-24 11:01:34 -0800460static int std_worker_pool_pri(struct worker_pool *pool)
461{
Tejun Heoa60dc392013-01-24 11:01:34 -0800462 return pool - std_worker_pools(pool->cpu);
Tejun Heo4e8f0a62013-01-24 11:01:34 -0800463}
464
Tejun Heo9daf9e62013-01-24 11:01:33 -0800465/* allocate ID and assign it to @pool */
466static int worker_pool_assign_id(struct worker_pool *pool)
467{
468 int ret;
469
Tejun Heofa1b54e2013-03-12 11:30:00 -0700470 do {
471 if (!idr_pre_get(&worker_pool_idr, GFP_KERNEL))
472 return -ENOMEM;
473
474 spin_lock_irq(&workqueue_lock);
475 ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
476 spin_unlock_irq(&workqueue_lock);
477 } while (ret == -EAGAIN);
Tejun Heo9daf9e62013-01-24 11:01:33 -0800478
479 return ret;
480}
481
Tejun Heod565ed62013-01-24 11:01:33 -0800482static struct worker_pool *get_std_worker_pool(int cpu, bool highpri)
483{
Tejun Heoa60dc392013-01-24 11:01:34 -0800484 struct worker_pool *pools = std_worker_pools(cpu);
Tejun Heod565ed62013-01-24 11:01:33 -0800485
Tejun Heoa60dc392013-01-24 11:01:34 -0800486 return &pools[highpri];
Tejun Heod565ed62013-01-24 11:01:33 -0800487}
488
Tejun Heo76af4d92013-03-12 11:30:00 -0700489/**
490 * first_pwq - return the first pool_workqueue of the specified workqueue
491 * @wq: the target workqueue
492 *
493 * This must be called either with workqueue_lock held or sched RCU read
494 * locked. If the pwq needs to be used beyond the locking in effect, the
495 * caller is responsible for guaranteeing that the pwq stays online.
496 */
Tejun Heo7fb98ea2013-03-12 11:30:00 -0700497static struct pool_workqueue *first_pwq(struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700498{
Tejun Heo76af4d92013-03-12 11:30:00 -0700499 assert_rcu_or_wq_lock();
500 return list_first_or_null_rcu(&wq->pwqs, struct pool_workqueue,
501 pwqs_node);
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700502}
503
Tejun Heo73f53c42010-06-29 10:07:11 +0200504static unsigned int work_color_to_flags(int color)
505{
506 return color << WORK_STRUCT_COLOR_SHIFT;
507}
508
509static int get_work_color(struct work_struct *work)
510{
511 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
512 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
513}
514
515static int work_next_color(int color)
516{
517 return (color + 1) % WORK_NR_COLORS;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700518}
519
David Howells4594bf12006-12-07 11:33:26 +0000520/*
Tejun Heo112202d2013-02-13 19:29:12 -0800521 * While queued, %WORK_STRUCT_PWQ is set and non flag bits of a work's data
522 * contain the pointer to the queued pwq. Once execution starts, the flag
Tejun Heo7c3eed52013-01-24 11:01:33 -0800523 * is cleared and the high bits contain OFFQ flags and pool ID.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200524 *
Tejun Heo112202d2013-02-13 19:29:12 -0800525 * set_work_pwq(), set_work_pool_and_clear_pending(), mark_work_canceling()
526 * and clear_work_data() can be used to set the pwq, pool or clear
Tejun Heobbb68df2012-08-03 10:30:46 -0700527 * work->data. These functions should only be called while the work is
528 * owned - ie. while the PENDING bit is set.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200529 *
Tejun Heo112202d2013-02-13 19:29:12 -0800530 * get_work_pool() and get_work_pwq() can be used to obtain the pool or pwq
Tejun Heo7c3eed52013-01-24 11:01:33 -0800531 * corresponding to a work. Pool is available once the work has been
Tejun Heo112202d2013-02-13 19:29:12 -0800532 * queued anywhere after initialization until it is sync canceled. pwq is
Tejun Heo7c3eed52013-01-24 11:01:33 -0800533 * available only while the work item is queued.
Tejun Heobbb68df2012-08-03 10:30:46 -0700534 *
535 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
536 * canceled. While being canceled, a work item may have its PENDING set
537 * but stay off timer and worklist for arbitrarily long and nobody should
538 * try to steal the PENDING bit.
David Howells4594bf12006-12-07 11:33:26 +0000539 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200540static inline void set_work_data(struct work_struct *work, unsigned long data,
541 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000542{
Tejun Heo6183c002013-03-12 11:29:57 -0700543 WARN_ON_ONCE(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200544 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000545}
David Howells365970a2006-11-22 14:54:49 +0000546
Tejun Heo112202d2013-02-13 19:29:12 -0800547static void set_work_pwq(struct work_struct *work, struct pool_workqueue *pwq,
Tejun Heo7a22ad72010-06-29 10:07:13 +0200548 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200549{
Tejun Heo112202d2013-02-13 19:29:12 -0800550 set_work_data(work, (unsigned long)pwq,
551 WORK_STRUCT_PENDING | WORK_STRUCT_PWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200552}
553
Lai Jiangshan4468a002013-02-06 18:04:53 -0800554static void set_work_pool_and_keep_pending(struct work_struct *work,
555 int pool_id)
556{
557 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT,
558 WORK_STRUCT_PENDING);
559}
560
Tejun Heo7c3eed52013-01-24 11:01:33 -0800561static void set_work_pool_and_clear_pending(struct work_struct *work,
562 int pool_id)
David Howells365970a2006-11-22 14:54:49 +0000563{
Tejun Heo23657bb2012-08-13 17:08:19 -0700564 /*
565 * The following wmb is paired with the implied mb in
566 * test_and_set_bit(PENDING) and ensures all updates to @work made
567 * here are visible to and precede any updates by the next PENDING
568 * owner.
569 */
570 smp_wmb();
Tejun Heo7c3eed52013-01-24 11:01:33 -0800571 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200572}
573
574static void clear_work_data(struct work_struct *work)
575{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800576 smp_wmb(); /* see set_work_pool_and_clear_pending() */
577 set_work_data(work, WORK_STRUCT_NO_POOL, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200578}
579
Tejun Heo112202d2013-02-13 19:29:12 -0800580static struct pool_workqueue *get_work_pwq(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200581{
Tejun Heoe1201532010-07-22 14:14:25 +0200582 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200583
Tejun Heo112202d2013-02-13 19:29:12 -0800584 if (data & WORK_STRUCT_PWQ)
Tejun Heoe1201532010-07-22 14:14:25 +0200585 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
586 else
587 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200588}
589
Tejun Heo7c3eed52013-01-24 11:01:33 -0800590/**
591 * get_work_pool - return the worker_pool a given work was associated with
592 * @work: the work item of interest
593 *
594 * Return the worker_pool @work was last associated with. %NULL if none.
Tejun Heofa1b54e2013-03-12 11:30:00 -0700595 *
596 * Pools are created and destroyed under workqueue_lock, and allows read
597 * access under sched-RCU read lock. As such, this function should be
598 * called under workqueue_lock or with preemption disabled.
599 *
600 * All fields of the returned pool are accessible as long as the above
601 * mentioned locking is in effect. If the returned pool needs to be used
602 * beyond the critical section, the caller is responsible for ensuring the
603 * returned pool is and stays online.
Tejun Heo7c3eed52013-01-24 11:01:33 -0800604 */
605static struct worker_pool *get_work_pool(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200606{
Tejun Heoe1201532010-07-22 14:14:25 +0200607 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800608 int pool_id;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200609
Tejun Heofa1b54e2013-03-12 11:30:00 -0700610 assert_rcu_or_wq_lock();
611
Tejun Heo112202d2013-02-13 19:29:12 -0800612 if (data & WORK_STRUCT_PWQ)
613 return ((struct pool_workqueue *)
Tejun Heo7c3eed52013-01-24 11:01:33 -0800614 (data & WORK_STRUCT_WQ_DATA_MASK))->pool;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200615
Tejun Heo7c3eed52013-01-24 11:01:33 -0800616 pool_id = data >> WORK_OFFQ_POOL_SHIFT;
617 if (pool_id == WORK_OFFQ_POOL_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200618 return NULL;
619
Tejun Heofa1b54e2013-03-12 11:30:00 -0700620 return idr_find(&worker_pool_idr, pool_id);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800621}
622
623/**
624 * get_work_pool_id - return the worker pool ID a given work is associated with
625 * @work: the work item of interest
626 *
627 * Return the worker_pool ID @work was last associated with.
628 * %WORK_OFFQ_POOL_NONE if none.
629 */
630static int get_work_pool_id(struct work_struct *work)
631{
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800632 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800633
Tejun Heo112202d2013-02-13 19:29:12 -0800634 if (data & WORK_STRUCT_PWQ)
635 return ((struct pool_workqueue *)
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800636 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->id;
637
638 return data >> WORK_OFFQ_POOL_SHIFT;
Tejun Heo7c3eed52013-01-24 11:01:33 -0800639}
640
Tejun Heobbb68df2012-08-03 10:30:46 -0700641static void mark_work_canceling(struct work_struct *work)
642{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800643 unsigned long pool_id = get_work_pool_id(work);
Tejun Heobbb68df2012-08-03 10:30:46 -0700644
Tejun Heo7c3eed52013-01-24 11:01:33 -0800645 pool_id <<= WORK_OFFQ_POOL_SHIFT;
646 set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700647}
648
649static bool work_is_canceling(struct work_struct *work)
650{
651 unsigned long data = atomic_long_read(&work->data);
652
Tejun Heo112202d2013-02-13 19:29:12 -0800653 return !(data & WORK_STRUCT_PWQ) && (data & WORK_OFFQ_CANCELING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700654}
655
David Howells365970a2006-11-22 14:54:49 +0000656/*
Tejun Heo32704762012-07-13 22:16:45 -0700657 * Policy functions. These define the policies on how the global worker
658 * pools are managed. Unless noted otherwise, these functions assume that
Tejun Heod565ed62013-01-24 11:01:33 -0800659 * they're being called with pool->lock held.
David Howells365970a2006-11-22 14:54:49 +0000660 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200661
Tejun Heo63d95a92012-07-12 14:46:37 -0700662static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000663{
Tejun Heoe19e3972013-01-24 11:39:44 -0800664 return !atomic_read(&pool->nr_running);
David Howells365970a2006-11-22 14:54:49 +0000665}
666
Tejun Heoe22bee72010-06-29 10:07:14 +0200667/*
668 * Need to wake up a worker? Called from anything but currently
669 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700670 *
671 * Note that, because unbound workers never contribute to nr_running, this
Tejun Heo706026c2013-01-24 11:01:34 -0800672 * function will always return %true for unbound pools as long as the
Tejun Heo974271c2012-07-12 14:46:37 -0700673 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200674 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700675static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000676{
Tejun Heo63d95a92012-07-12 14:46:37 -0700677 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000678}
679
Tejun Heoe22bee72010-06-29 10:07:14 +0200680/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700681static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200682{
Tejun Heo63d95a92012-07-12 14:46:37 -0700683 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200684}
685
686/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700687static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200688{
Tejun Heoe19e3972013-01-24 11:39:44 -0800689 return !list_empty(&pool->worklist) &&
690 atomic_read(&pool->nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200691}
692
693/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700694static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200695{
Tejun Heo63d95a92012-07-12 14:46:37 -0700696 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200697}
698
699/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700700static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200701{
Tejun Heo63d95a92012-07-12 14:46:37 -0700702 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700703 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200704}
705
706/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700707static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200708{
Lai Jiangshan552a37e2012-09-10 10:03:33 -0700709 bool managing = pool->flags & POOL_MANAGING_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -0700710 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
711 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200712
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700713 /*
714 * nr_idle and idle_list may disagree if idle rebinding is in
715 * progress. Never return %true if idle_list is empty.
716 */
717 if (list_empty(&pool->idle_list))
718 return false;
719
Tejun Heoe22bee72010-06-29 10:07:14 +0200720 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
721}
722
723/*
724 * Wake up functions.
725 */
726
Tejun Heo7e116292010-06-29 10:07:13 +0200727/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700728static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200729{
Tejun Heo63d95a92012-07-12 14:46:37 -0700730 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200731 return NULL;
732
Tejun Heo63d95a92012-07-12 14:46:37 -0700733 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200734}
735
736/**
737 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700738 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200739 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700740 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200741 *
742 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800743 * spin_lock_irq(pool->lock).
Tejun Heo7e116292010-06-29 10:07:13 +0200744 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700745static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200746{
Tejun Heo63d95a92012-07-12 14:46:37 -0700747 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200748
749 if (likely(worker))
750 wake_up_process(worker->task);
751}
752
Tejun Heo4690c4a2010-06-29 10:07:10 +0200753/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200754 * wq_worker_waking_up - a worker is waking up
755 * @task: task waking up
756 * @cpu: CPU @task is waking up to
757 *
758 * This function is called during try_to_wake_up() when a worker is
759 * being awoken.
760 *
761 * CONTEXT:
762 * spin_lock_irq(rq->lock)
763 */
Tejun Heod84ff052013-03-12 11:29:59 -0700764void wq_worker_waking_up(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200765{
766 struct worker *worker = kthread_data(task);
767
Joonsoo Kim36576002012-10-26 23:03:49 +0900768 if (!(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoec22ca52013-01-24 11:01:33 -0800769 WARN_ON_ONCE(worker->pool->cpu != cpu);
Tejun Heoe19e3972013-01-24 11:39:44 -0800770 atomic_inc(&worker->pool->nr_running);
Joonsoo Kim36576002012-10-26 23:03:49 +0900771 }
Tejun Heoe22bee72010-06-29 10:07:14 +0200772}
773
774/**
775 * wq_worker_sleeping - a worker is going to sleep
776 * @task: task going to sleep
777 * @cpu: CPU in question, must be the current CPU number
778 *
779 * This function is called during schedule() when a busy worker is
780 * going to sleep. Worker on the same cpu can be woken up by
781 * returning pointer to its task.
782 *
783 * CONTEXT:
784 * spin_lock_irq(rq->lock)
785 *
786 * RETURNS:
787 * Worker task on @cpu to wake up, %NULL if none.
788 */
Tejun Heod84ff052013-03-12 11:29:59 -0700789struct task_struct *wq_worker_sleeping(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200790{
791 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heo111c2252013-01-17 17:16:24 -0800792 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200793
Tejun Heo111c2252013-01-17 17:16:24 -0800794 /*
795 * Rescuers, which may not have all the fields set up like normal
796 * workers, also reach here, let's not access anything before
797 * checking NOT_RUNNING.
798 */
Steven Rostedt2d646722010-12-03 23:12:33 -0500799 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200800 return NULL;
801
Tejun Heo111c2252013-01-17 17:16:24 -0800802 pool = worker->pool;
Tejun Heo111c2252013-01-17 17:16:24 -0800803
Tejun Heoe22bee72010-06-29 10:07:14 +0200804 /* this can only happen on the local cpu */
Tejun Heo6183c002013-03-12 11:29:57 -0700805 if (WARN_ON_ONCE(cpu != raw_smp_processor_id()))
806 return NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +0200807
808 /*
809 * The counterpart of the following dec_and_test, implied mb,
810 * worklist not empty test sequence is in insert_work().
811 * Please read comment there.
812 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700813 * NOT_RUNNING is clear. This means that we're bound to and
814 * running on the local cpu w/ rq lock held and preemption
815 * disabled, which in turn means that none else could be
Tejun Heod565ed62013-01-24 11:01:33 -0800816 * manipulating idle_list, so dereferencing idle_list without pool
Tejun Heo628c78e2012-07-17 12:39:27 -0700817 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200818 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800819 if (atomic_dec_and_test(&pool->nr_running) &&
820 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700821 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200822 return to_wakeup ? to_wakeup->task : NULL;
823}
824
825/**
826 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200827 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200828 * @flags: flags to set
829 * @wakeup: wakeup an idle worker if necessary
830 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200831 * Set @flags in @worker->flags and adjust nr_running accordingly. If
832 * nr_running becomes zero and @wakeup is %true, an idle worker is
833 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200834 *
Tejun Heocb444762010-07-02 10:03:50 +0200835 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800836 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200837 */
838static inline void worker_set_flags(struct worker *worker, unsigned int flags,
839 bool wakeup)
840{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700841 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200842
Tejun Heocb444762010-07-02 10:03:50 +0200843 WARN_ON_ONCE(worker->task != current);
844
Tejun Heoe22bee72010-06-29 10:07:14 +0200845 /*
846 * If transitioning into NOT_RUNNING, adjust nr_running and
847 * wake up an idle worker as necessary if requested by
848 * @wakeup.
849 */
850 if ((flags & WORKER_NOT_RUNNING) &&
851 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoe22bee72010-06-29 10:07:14 +0200852 if (wakeup) {
Tejun Heoe19e3972013-01-24 11:39:44 -0800853 if (atomic_dec_and_test(&pool->nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700854 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700855 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200856 } else
Tejun Heoe19e3972013-01-24 11:39:44 -0800857 atomic_dec(&pool->nr_running);
Tejun Heoe22bee72010-06-29 10:07:14 +0200858 }
859
Tejun Heod302f012010-06-29 10:07:13 +0200860 worker->flags |= flags;
861}
862
863/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200864 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200865 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200866 * @flags: flags to clear
867 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200868 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200869 *
Tejun Heocb444762010-07-02 10:03:50 +0200870 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800871 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200872 */
873static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
874{
Tejun Heo63d95a92012-07-12 14:46:37 -0700875 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200876 unsigned int oflags = worker->flags;
877
Tejun Heocb444762010-07-02 10:03:50 +0200878 WARN_ON_ONCE(worker->task != current);
879
Tejun Heod302f012010-06-29 10:07:13 +0200880 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200881
Tejun Heo42c025f2011-01-11 15:58:49 +0100882 /*
883 * If transitioning out of NOT_RUNNING, increment nr_running. Note
884 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
885 * of multiple flags, not a single flag.
886 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200887 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
888 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heoe19e3972013-01-24 11:39:44 -0800889 atomic_inc(&pool->nr_running);
Tejun Heod302f012010-06-29 10:07:13 +0200890}
891
892/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200893 * find_worker_executing_work - find worker which is executing a work
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800894 * @pool: pool of interest
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200895 * @work: work to find worker for
896 *
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800897 * Find a worker which is executing @work on @pool by searching
898 * @pool->busy_hash which is keyed by the address of @work. For a worker
Tejun Heoa2c1c572012-12-18 10:35:02 -0800899 * to match, its current execution should match the address of @work and
900 * its work function. This is to avoid unwanted dependency between
901 * unrelated work executions through a work item being recycled while still
902 * being executed.
903 *
904 * This is a bit tricky. A work item may be freed once its execution
905 * starts and nothing prevents the freed area from being recycled for
906 * another work item. If the same work item address ends up being reused
907 * before the original execution finishes, workqueue will identify the
908 * recycled work item as currently executing and make it wait until the
909 * current execution finishes, introducing an unwanted dependency.
910 *
911 * This function checks the work item address, work function and workqueue
912 * to avoid false positives. Note that this isn't complete as one may
913 * construct a work function which can introduce dependency onto itself
914 * through a recycled work item. Well, if somebody wants to shoot oneself
915 * in the foot that badly, there's only so much we can do, and if such
916 * deadlock actually occurs, it should be easy to locate the culprit work
917 * function.
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200918 *
919 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800920 * spin_lock_irq(pool->lock).
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200921 *
922 * RETURNS:
923 * Pointer to worker which is executing @work if found, NULL
924 * otherwise.
925 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800926static struct worker *find_worker_executing_work(struct worker_pool *pool,
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200927 struct work_struct *work)
928{
Sasha Levin42f85702012-12-17 10:01:23 -0500929 struct worker *worker;
Sasha Levin42f85702012-12-17 10:01:23 -0500930
Sasha Levinb67bfe02013-02-27 17:06:00 -0800931 hash_for_each_possible(pool->busy_hash, worker, hentry,
Tejun Heoa2c1c572012-12-18 10:35:02 -0800932 (unsigned long)work)
933 if (worker->current_work == work &&
934 worker->current_func == work->func)
Sasha Levin42f85702012-12-17 10:01:23 -0500935 return worker;
936
937 return NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200938}
939
940/**
Tejun Heobf4ede02012-08-03 10:30:46 -0700941 * move_linked_works - move linked works to a list
942 * @work: start of series of works to be scheduled
943 * @head: target list to append @work to
944 * @nextp: out paramter for nested worklist walking
945 *
946 * Schedule linked works starting from @work to @head. Work series to
947 * be scheduled starts at @work and includes any consecutive work with
948 * WORK_STRUCT_LINKED set in its predecessor.
949 *
950 * If @nextp is not NULL, it's updated to point to the next work of
951 * the last scheduled work. This allows move_linked_works() to be
952 * nested inside outer list_for_each_entry_safe().
953 *
954 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800955 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700956 */
957static void move_linked_works(struct work_struct *work, struct list_head *head,
958 struct work_struct **nextp)
959{
960 struct work_struct *n;
961
962 /*
963 * Linked worklist will always end before the end of the list,
964 * use NULL for list head.
965 */
966 list_for_each_entry_safe_from(work, n, NULL, entry) {
967 list_move_tail(&work->entry, head);
968 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
969 break;
970 }
971
972 /*
973 * If we're already inside safe list traversal and have moved
974 * multiple works to the scheduled queue, the next position
975 * needs to be updated.
976 */
977 if (nextp)
978 *nextp = n;
979}
980
Tejun Heo112202d2013-02-13 19:29:12 -0800981static void pwq_activate_delayed_work(struct work_struct *work)
Tejun Heobf4ede02012-08-03 10:30:46 -0700982{
Tejun Heo112202d2013-02-13 19:29:12 -0800983 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobf4ede02012-08-03 10:30:46 -0700984
985 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -0800986 move_linked_works(work, &pwq->pool->worklist, NULL);
Tejun Heobf4ede02012-08-03 10:30:46 -0700987 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo112202d2013-02-13 19:29:12 -0800988 pwq->nr_active++;
Tejun Heobf4ede02012-08-03 10:30:46 -0700989}
990
Tejun Heo112202d2013-02-13 19:29:12 -0800991static void pwq_activate_first_delayed(struct pool_workqueue *pwq)
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700992{
Tejun Heo112202d2013-02-13 19:29:12 -0800993 struct work_struct *work = list_first_entry(&pwq->delayed_works,
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700994 struct work_struct, entry);
995
Tejun Heo112202d2013-02-13 19:29:12 -0800996 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -0700997}
998
Tejun Heobf4ede02012-08-03 10:30:46 -0700999/**
Tejun Heo112202d2013-02-13 19:29:12 -08001000 * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight
1001 * @pwq: pwq of interest
Tejun Heobf4ede02012-08-03 10:30:46 -07001002 * @color: color of work which left the queue
Tejun Heobf4ede02012-08-03 10:30:46 -07001003 *
1004 * A work either has completed or is removed from pending queue,
Tejun Heo112202d2013-02-13 19:29:12 -08001005 * decrement nr_in_flight of its pwq and handle workqueue flushing.
Tejun Heobf4ede02012-08-03 10:30:46 -07001006 *
1007 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001008 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -07001009 */
Tejun Heo112202d2013-02-13 19:29:12 -08001010static void pwq_dec_nr_in_flight(struct pool_workqueue *pwq, int color)
Tejun Heobf4ede02012-08-03 10:30:46 -07001011{
1012 /* ignore uncolored works */
1013 if (color == WORK_NO_COLOR)
1014 return;
1015
Tejun Heo112202d2013-02-13 19:29:12 -08001016 pwq->nr_in_flight[color]--;
Tejun Heobf4ede02012-08-03 10:30:46 -07001017
Tejun Heo112202d2013-02-13 19:29:12 -08001018 pwq->nr_active--;
1019 if (!list_empty(&pwq->delayed_works)) {
Lai Jiangshanb3f9f402012-09-18 10:40:00 -07001020 /* one down, submit a delayed one */
Tejun Heo112202d2013-02-13 19:29:12 -08001021 if (pwq->nr_active < pwq->max_active)
1022 pwq_activate_first_delayed(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001023 }
1024
1025 /* is flush in progress and are we at the flushing tip? */
Tejun Heo112202d2013-02-13 19:29:12 -08001026 if (likely(pwq->flush_color != color))
Tejun Heobf4ede02012-08-03 10:30:46 -07001027 return;
1028
1029 /* are there still in-flight works? */
Tejun Heo112202d2013-02-13 19:29:12 -08001030 if (pwq->nr_in_flight[color])
Tejun Heobf4ede02012-08-03 10:30:46 -07001031 return;
1032
Tejun Heo112202d2013-02-13 19:29:12 -08001033 /* this pwq is done, clear flush_color */
1034 pwq->flush_color = -1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001035
1036 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001037 * If this was the last pwq, wake up the first flusher. It
Tejun Heobf4ede02012-08-03 10:30:46 -07001038 * will handle the rest.
1039 */
Tejun Heo112202d2013-02-13 19:29:12 -08001040 if (atomic_dec_and_test(&pwq->wq->nr_pwqs_to_flush))
1041 complete(&pwq->wq->first_flusher->done);
Tejun Heobf4ede02012-08-03 10:30:46 -07001042}
1043
Tejun Heo36e227d2012-08-03 10:30:46 -07001044/**
Tejun Heobbb68df2012-08-03 10:30:46 -07001045 * try_to_grab_pending - steal work item from worklist and disable irq
Tejun Heo36e227d2012-08-03 10:30:46 -07001046 * @work: work item to steal
1047 * @is_dwork: @work is a delayed_work
Tejun Heobbb68df2012-08-03 10:30:46 -07001048 * @flags: place to store irq state
Tejun Heo36e227d2012-08-03 10:30:46 -07001049 *
1050 * Try to grab PENDING bit of @work. This function can handle @work in any
1051 * stable state - idle, on timer or on worklist. Return values are
1052 *
1053 * 1 if @work was pending and we successfully stole PENDING
1054 * 0 if @work was idle and we claimed PENDING
1055 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
Tejun Heobbb68df2012-08-03 10:30:46 -07001056 * -ENOENT if someone else is canceling @work, this state may persist
1057 * for arbitrarily long
Tejun Heo36e227d2012-08-03 10:30:46 -07001058 *
Tejun Heobbb68df2012-08-03 10:30:46 -07001059 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001060 * interrupted while holding PENDING and @work off queue, irq must be
1061 * disabled on entry. This, combined with delayed_work->timer being
1062 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
Tejun Heobbb68df2012-08-03 10:30:46 -07001063 *
1064 * On successful return, >= 0, irq is disabled and the caller is
1065 * responsible for releasing it using local_irq_restore(*@flags).
1066 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001067 * This function is safe to call from any context including IRQ handler.
Tejun Heobf4ede02012-08-03 10:30:46 -07001068 */
Tejun Heobbb68df2012-08-03 10:30:46 -07001069static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1070 unsigned long *flags)
Tejun Heobf4ede02012-08-03 10:30:46 -07001071{
Tejun Heod565ed62013-01-24 11:01:33 -08001072 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08001073 struct pool_workqueue *pwq;
Tejun Heobf4ede02012-08-03 10:30:46 -07001074
Tejun Heobbb68df2012-08-03 10:30:46 -07001075 local_irq_save(*flags);
1076
Tejun Heo36e227d2012-08-03 10:30:46 -07001077 /* try to steal the timer if it exists */
1078 if (is_dwork) {
1079 struct delayed_work *dwork = to_delayed_work(work);
1080
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001081 /*
1082 * dwork->timer is irqsafe. If del_timer() fails, it's
1083 * guaranteed that the timer is not queued anywhere and not
1084 * running on the local CPU.
1085 */
Tejun Heo36e227d2012-08-03 10:30:46 -07001086 if (likely(del_timer(&dwork->timer)))
1087 return 1;
1088 }
1089
1090 /* try to claim PENDING the normal way */
Tejun Heobf4ede02012-08-03 10:30:46 -07001091 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1092 return 0;
1093
1094 /*
1095 * The queueing is in progress, or it is already queued. Try to
1096 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1097 */
Tejun Heod565ed62013-01-24 11:01:33 -08001098 pool = get_work_pool(work);
1099 if (!pool)
Tejun Heobbb68df2012-08-03 10:30:46 -07001100 goto fail;
Tejun Heobf4ede02012-08-03 10:30:46 -07001101
Tejun Heod565ed62013-01-24 11:01:33 -08001102 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001103 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001104 * work->data is guaranteed to point to pwq only while the work
1105 * item is queued on pwq->wq, and both updating work->data to point
1106 * to pwq on queueing and to pool on dequeueing are done under
1107 * pwq->pool->lock. This in turn guarantees that, if work->data
1108 * points to pwq which is associated with a locked pool, the work
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001109 * item is currently queued on that pool.
1110 */
Tejun Heo112202d2013-02-13 19:29:12 -08001111 pwq = get_work_pwq(work);
1112 if (pwq && pwq->pool == pool) {
Tejun Heo16062832013-02-06 18:04:53 -08001113 debug_work_deactivate(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001114
Tejun Heo16062832013-02-06 18:04:53 -08001115 /*
1116 * A delayed work item cannot be grabbed directly because
1117 * it might have linked NO_COLOR work items which, if left
Tejun Heo112202d2013-02-13 19:29:12 -08001118 * on the delayed_list, will confuse pwq->nr_active
Tejun Heo16062832013-02-06 18:04:53 -08001119 * management later on and cause stall. Make sure the work
1120 * item is activated before grabbing.
1121 */
1122 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
Tejun Heo112202d2013-02-13 19:29:12 -08001123 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001124
Tejun Heo16062832013-02-06 18:04:53 -08001125 list_del_init(&work->entry);
Tejun Heo112202d2013-02-13 19:29:12 -08001126 pwq_dec_nr_in_flight(get_work_pwq(work), get_work_color(work));
Tejun Heo36e227d2012-08-03 10:30:46 -07001127
Tejun Heo112202d2013-02-13 19:29:12 -08001128 /* work->data points to pwq iff queued, point to pool */
Tejun Heo16062832013-02-06 18:04:53 -08001129 set_work_pool_and_keep_pending(work, pool->id);
Lai Jiangshan4468a002013-02-06 18:04:53 -08001130
Tejun Heo16062832013-02-06 18:04:53 -08001131 spin_unlock(&pool->lock);
1132 return 1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001133 }
Tejun Heod565ed62013-01-24 11:01:33 -08001134 spin_unlock(&pool->lock);
Tejun Heobbb68df2012-08-03 10:30:46 -07001135fail:
1136 local_irq_restore(*flags);
1137 if (work_is_canceling(work))
1138 return -ENOENT;
1139 cpu_relax();
Tejun Heo36e227d2012-08-03 10:30:46 -07001140 return -EAGAIN;
Tejun Heobf4ede02012-08-03 10:30:46 -07001141}
1142
1143/**
Tejun Heo706026c2013-01-24 11:01:34 -08001144 * insert_work - insert a work into a pool
Tejun Heo112202d2013-02-13 19:29:12 -08001145 * @pwq: pwq @work belongs to
Tejun Heo4690c4a2010-06-29 10:07:10 +02001146 * @work: work to insert
1147 * @head: insertion point
1148 * @extra_flags: extra WORK_STRUCT_* flags to set
1149 *
Tejun Heo112202d2013-02-13 19:29:12 -08001150 * Insert @work which belongs to @pwq after @head. @extra_flags is or'd to
Tejun Heo706026c2013-01-24 11:01:34 -08001151 * work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001152 *
1153 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001154 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001155 */
Tejun Heo112202d2013-02-13 19:29:12 -08001156static void insert_work(struct pool_workqueue *pwq, struct work_struct *work,
1157 struct list_head *head, unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001158{
Tejun Heo112202d2013-02-13 19:29:12 -08001159 struct worker_pool *pool = pwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01001160
Tejun Heo4690c4a2010-06-29 10:07:10 +02001161 /* we own @work, set data and link */
Tejun Heo112202d2013-02-13 19:29:12 -08001162 set_work_pwq(work, pwq, extra_flags);
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -07001163 list_add_tail(&work->entry, head);
Tejun Heoe22bee72010-06-29 10:07:14 +02001164
1165 /*
1166 * Ensure either worker_sched_deactivated() sees the above
1167 * list_add_tail() or we see zero nr_running to avoid workers
1168 * lying around lazily while there are works to be processed.
1169 */
1170 smp_mb();
1171
Tejun Heo63d95a92012-07-12 14:46:37 -07001172 if (__need_more_worker(pool))
1173 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001174}
1175
Tejun Heoc8efcc22010-12-20 19:32:04 +01001176/*
1177 * Test whether @work is being queued from another work executing on the
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001178 * same workqueue.
Tejun Heoc8efcc22010-12-20 19:32:04 +01001179 */
1180static bool is_chained_work(struct workqueue_struct *wq)
1181{
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001182 struct worker *worker;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001183
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001184 worker = current_wq_worker();
1185 /*
1186 * Return %true iff I'm a worker execuing a work item on @wq. If
1187 * I'm @worker, it's safe to dereference it without locking.
1188 */
Tejun Heo112202d2013-02-13 19:29:12 -08001189 return worker && worker->current_pwq->wq == wq;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001190}
1191
Tejun Heod84ff052013-03-12 11:29:59 -07001192static void __queue_work(int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 struct work_struct *work)
1194{
Tejun Heo112202d2013-02-13 19:29:12 -08001195 struct pool_workqueue *pwq;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001196 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001197 unsigned int work_flags;
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001198 unsigned int req_cpu = cpu;
Tejun Heo8930cab2012-08-03 10:30:45 -07001199
1200 /*
1201 * While a work item is PENDING && off queue, a task trying to
1202 * steal the PENDING will busy-loop waiting for it to either get
1203 * queued or lose PENDING. Grabbing PENDING and queueing should
1204 * happen with IRQ disabled.
1205 */
1206 WARN_ON_ONCE(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001208 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001209
Tejun Heoc8efcc22010-12-20 19:32:04 +01001210 /* if dying, only works from the same workqueue are allowed */
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02001211 if (unlikely(wq->flags & WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +01001212 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +02001213 return;
1214
Tejun Heo112202d2013-02-13 19:29:12 -08001215 /* determine the pwq to use */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001216 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001217 struct worker_pool *last_pool;
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001218
Tejun Heo57469822012-08-03 10:30:45 -07001219 if (cpu == WORK_CPU_UNBOUND)
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001220 cpu = raw_smp_processor_id();
1221
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001222 /*
Tejun Heodbf25762012-08-20 14:51:23 -07001223 * It's multi cpu. If @work was previously on a different
1224 * cpu, it might still be running there, in which case the
1225 * work needs to be queued on that cpu to guarantee
1226 * non-reentrancy.
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001227 */
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001228 pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001229 last_pool = get_work_pool(work);
Tejun Heodbf25762012-08-20 14:51:23 -07001230
Tejun Heo112202d2013-02-13 19:29:12 -08001231 if (last_pool && last_pool != pwq->pool) {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001232 struct worker *worker;
1233
Tejun Heod565ed62013-01-24 11:01:33 -08001234 spin_lock(&last_pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001235
Tejun Heoc9e7cf22013-01-24 11:01:33 -08001236 worker = find_worker_executing_work(last_pool, work);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001237
Tejun Heo112202d2013-02-13 19:29:12 -08001238 if (worker && worker->current_pwq->wq == wq) {
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001239 pwq = per_cpu_ptr(wq->cpu_pwqs, last_pool->cpu);
Lai Jiangshan8594fad2013-02-07 13:14:20 -08001240 } else {
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001241 /* meh... not running there, queue here */
Tejun Heod565ed62013-01-24 11:01:33 -08001242 spin_unlock(&last_pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08001243 spin_lock(&pwq->pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001244 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001245 } else {
Tejun Heo112202d2013-02-13 19:29:12 -08001246 spin_lock(&pwq->pool->lock);
Tejun Heo8930cab2012-08-03 10:30:45 -07001247 }
Tejun Heof3421792010-07-02 10:03:51 +02001248 } else {
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001249 pwq = first_pwq(wq);
Tejun Heo112202d2013-02-13 19:29:12 -08001250 spin_lock(&pwq->pool->lock);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001251 }
1252
Tejun Heo112202d2013-02-13 19:29:12 -08001253 /* pwq determined, queue */
1254 trace_workqueue_queue_work(req_cpu, pwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001255
Dan Carpenterf5b25522012-04-13 22:06:58 +03001256 if (WARN_ON(!list_empty(&work->entry))) {
Tejun Heo112202d2013-02-13 19:29:12 -08001257 spin_unlock(&pwq->pool->lock);
Dan Carpenterf5b25522012-04-13 22:06:58 +03001258 return;
1259 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001260
Tejun Heo112202d2013-02-13 19:29:12 -08001261 pwq->nr_in_flight[pwq->work_color]++;
1262 work_flags = work_color_to_flags(pwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001263
Tejun Heo112202d2013-02-13 19:29:12 -08001264 if (likely(pwq->nr_active < pwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001265 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -08001266 pwq->nr_active++;
1267 worklist = &pwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001268 } else {
1269 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo112202d2013-02-13 19:29:12 -08001270 worklist = &pwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001271 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001272
Tejun Heo112202d2013-02-13 19:29:12 -08001273 insert_work(pwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001274
Tejun Heo112202d2013-02-13 19:29:12 -08001275 spin_unlock(&pwq->pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001278/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07001279 * queue_work_on - queue work on specific cpu
1280 * @cpu: CPU number to execute work on
1281 * @wq: workqueue to use
1282 * @work: work to queue
1283 *
Tejun Heod4283e92012-08-03 10:30:44 -07001284 * Returns %false if @work was already on a queue, %true otherwise.
Zhang Ruic1a220e2008-07-23 21:28:39 -07001285 *
1286 * We queue the work to a specific CPU, the caller must ensure it
1287 * can't go away.
1288 */
Tejun Heod4283e92012-08-03 10:30:44 -07001289bool queue_work_on(int cpu, struct workqueue_struct *wq,
1290 struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07001291{
Tejun Heod4283e92012-08-03 10:30:44 -07001292 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001293 unsigned long flags;
1294
1295 local_irq_save(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001296
Tejun Heo22df02b2010-06-29 10:07:10 +02001297 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001298 __queue_work(cpu, wq, work);
Tejun Heod4283e92012-08-03 10:30:44 -07001299 ret = true;
Zhang Ruic1a220e2008-07-23 21:28:39 -07001300 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001301
1302 local_irq_restore(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001303 return ret;
1304}
1305EXPORT_SYMBOL_GPL(queue_work_on);
1306
Tejun Heo0a13c002012-08-03 10:30:44 -07001307/**
1308 * queue_work - queue work on a workqueue
1309 * @wq: workqueue to use
1310 * @work: work to queue
1311 *
Tejun Heod4283e92012-08-03 10:30:44 -07001312 * Returns %false if @work was already on a queue, %true otherwise.
Tejun Heo0a13c002012-08-03 10:30:44 -07001313 *
1314 * We queue the work to the CPU on which it was submitted, but if the CPU dies
1315 * it can be processed by another CPU.
1316 */
Tejun Heod4283e92012-08-03 10:30:44 -07001317bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
Tejun Heo0a13c002012-08-03 10:30:44 -07001318{
Tejun Heo57469822012-08-03 10:30:45 -07001319 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
Tejun Heo0a13c002012-08-03 10:30:44 -07001320}
1321EXPORT_SYMBOL_GPL(queue_work);
1322
Tejun Heod8e794d2012-08-03 10:30:45 -07001323void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
David Howells52bad642006-11-22 14:54:01 +00001325 struct delayed_work *dwork = (struct delayed_work *)__data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001327 /* should have been called from irqsafe timer with irq already off */
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001328 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
Konstantin Khlebnikov1438ade52013-01-24 16:36:31 +04001330EXPORT_SYMBOL(delayed_work_timer_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001332static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1333 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001335 struct timer_list *timer = &dwork->timer;
1336 struct work_struct *work = &dwork->work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001338 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1339 timer->data != (unsigned long)dwork);
Tejun Heofc4b5142012-12-04 07:40:39 -08001340 WARN_ON_ONCE(timer_pending(timer));
1341 WARN_ON_ONCE(!list_empty(&work->entry));
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001342
Tejun Heo8852aac2012-12-01 16:23:42 -08001343 /*
1344 * If @delay is 0, queue @dwork->work immediately. This is for
1345 * both optimization and correctness. The earliest @timer can
1346 * expire is on the closest next tick and delayed_work users depend
1347 * on that there's no such delay when @delay is 0.
1348 */
1349 if (!delay) {
1350 __queue_work(cpu, wq, &dwork->work);
1351 return;
1352 }
1353
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001354 timer_stats_timer_set_start_info(&dwork->timer);
1355
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001356 dwork->wq = wq;
Tejun Heo12650572012-08-08 09:38:42 -07001357 dwork->cpu = cpu;
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001358 timer->expires = jiffies + delay;
1359
1360 if (unlikely(cpu != WORK_CPU_UNBOUND))
1361 add_timer_on(timer, cpu);
1362 else
1363 add_timer(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001366/**
1367 * queue_delayed_work_on - queue work on specific CPU after delay
1368 * @cpu: CPU number to execute work on
1369 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001370 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001371 * @delay: number of jiffies to wait before queueing
1372 *
Tejun Heo715f1302012-08-03 10:30:46 -07001373 * Returns %false if @work was already on a queue, %true otherwise. If
1374 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1375 * execution.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001376 */
Tejun Heod4283e92012-08-03 10:30:44 -07001377bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1378 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001379{
David Howells52bad642006-11-22 14:54:01 +00001380 struct work_struct *work = &dwork->work;
Tejun Heod4283e92012-08-03 10:30:44 -07001381 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001382 unsigned long flags;
1383
1384 /* read the comment in __queue_work() */
1385 local_irq_save(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001386
Tejun Heo22df02b2010-06-29 10:07:10 +02001387 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001388 __queue_delayed_work(cpu, wq, dwork, delay);
Tejun Heod4283e92012-08-03 10:30:44 -07001389 ret = true;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001390 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001391
1392 local_irq_restore(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001393 return ret;
1394}
Dave Jonesae90dd52006-06-30 01:40:45 -04001395EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Tejun Heoc8e55f32010-06-29 10:07:12 +02001397/**
Tejun Heo0a13c002012-08-03 10:30:44 -07001398 * queue_delayed_work - queue work on a workqueue after delay
1399 * @wq: workqueue to use
1400 * @dwork: delayable work to queue
1401 * @delay: number of jiffies to wait before queueing
1402 *
Tejun Heo715f1302012-08-03 10:30:46 -07001403 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
Tejun Heo0a13c002012-08-03 10:30:44 -07001404 */
Tejun Heod4283e92012-08-03 10:30:44 -07001405bool queue_delayed_work(struct workqueue_struct *wq,
Tejun Heo0a13c002012-08-03 10:30:44 -07001406 struct delayed_work *dwork, unsigned long delay)
1407{
Tejun Heo57469822012-08-03 10:30:45 -07001408 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
Tejun Heo0a13c002012-08-03 10:30:44 -07001409}
1410EXPORT_SYMBOL_GPL(queue_delayed_work);
1411
1412/**
Tejun Heo8376fe22012-08-03 10:30:47 -07001413 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1414 * @cpu: CPU number to execute work on
1415 * @wq: workqueue to use
1416 * @dwork: work to queue
1417 * @delay: number of jiffies to wait before queueing
1418 *
1419 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1420 * modify @dwork's timer so that it expires after @delay. If @delay is
1421 * zero, @work is guaranteed to be scheduled immediately regardless of its
1422 * current state.
1423 *
1424 * Returns %false if @dwork was idle and queued, %true if @dwork was
1425 * pending and its timer was modified.
1426 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001427 * This function is safe to call from any context including IRQ handler.
Tejun Heo8376fe22012-08-03 10:30:47 -07001428 * See try_to_grab_pending() for details.
1429 */
1430bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1431 struct delayed_work *dwork, unsigned long delay)
1432{
1433 unsigned long flags;
1434 int ret;
1435
1436 do {
1437 ret = try_to_grab_pending(&dwork->work, true, &flags);
1438 } while (unlikely(ret == -EAGAIN));
1439
1440 if (likely(ret >= 0)) {
1441 __queue_delayed_work(cpu, wq, dwork, delay);
1442 local_irq_restore(flags);
1443 }
1444
1445 /* -ENOENT from try_to_grab_pending() becomes %true */
1446 return ret;
1447}
1448EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1449
1450/**
1451 * mod_delayed_work - modify delay of or queue a delayed work
1452 * @wq: workqueue to use
1453 * @dwork: work to queue
1454 * @delay: number of jiffies to wait before queueing
1455 *
1456 * mod_delayed_work_on() on local CPU.
1457 */
1458bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
1459 unsigned long delay)
1460{
1461 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
1462}
1463EXPORT_SYMBOL_GPL(mod_delayed_work);
1464
1465/**
Tejun Heoc8e55f32010-06-29 10:07:12 +02001466 * worker_enter_idle - enter idle state
1467 * @worker: worker which is entering idle state
1468 *
1469 * @worker is entering idle state. Update stats and idle timer if
1470 * necessary.
1471 *
1472 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001473 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001474 */
1475static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001477 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Tejun Heo6183c002013-03-12 11:29:57 -07001479 if (WARN_ON_ONCE(worker->flags & WORKER_IDLE) ||
1480 WARN_ON_ONCE(!list_empty(&worker->entry) &&
1481 (worker->hentry.next || worker->hentry.pprev)))
1482 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Tejun Heocb444762010-07-02 10:03:50 +02001484 /* can't use worker_set_flags(), also called from start_worker() */
1485 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001486 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001487 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001488
Tejun Heoc8e55f32010-06-29 10:07:12 +02001489 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001490 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001491
Tejun Heo628c78e2012-07-17 12:39:27 -07001492 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1493 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001494
Tejun Heo544ecf32012-05-14 15:04:50 -07001495 /*
Tejun Heo706026c2013-01-24 11:01:34 -08001496 * Sanity check nr_running. Because wq_unbind_fn() releases
Tejun Heod565ed62013-01-24 11:01:33 -08001497 * pool->lock between setting %WORKER_UNBOUND and zapping
Tejun Heo628c78e2012-07-17 12:39:27 -07001498 * nr_running, the warning may trigger spuriously. Check iff
1499 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001500 */
Tejun Heo24647572013-01-24 11:01:33 -08001501 WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001502 pool->nr_workers == pool->nr_idle &&
Tejun Heoe19e3972013-01-24 11:39:44 -08001503 atomic_read(&pool->nr_running));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505
Tejun Heoc8e55f32010-06-29 10:07:12 +02001506/**
1507 * worker_leave_idle - leave idle state
1508 * @worker: worker which is leaving idle state
1509 *
1510 * @worker is leaving idle state. Update stats.
1511 *
1512 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001513 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001514 */
1515static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001517 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Tejun Heo6183c002013-03-12 11:29:57 -07001519 if (WARN_ON_ONCE(!(worker->flags & WORKER_IDLE)))
1520 return;
Tejun Heod302f012010-06-29 10:07:13 +02001521 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001522 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001523 list_del_init(&worker->entry);
1524}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Tejun Heoe22bee72010-06-29 10:07:14 +02001526/**
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001527 * worker_maybe_bind_and_lock - try to bind %current to worker_pool and lock it
1528 * @pool: target worker_pool
1529 *
1530 * Bind %current to the cpu of @pool if it is associated and lock @pool.
Tejun Heoe22bee72010-06-29 10:07:14 +02001531 *
1532 * Works which are scheduled while the cpu is online must at least be
1533 * scheduled to a worker which is bound to the cpu so that if they are
1534 * flushed from cpu callbacks while cpu is going down, they are
1535 * guaranteed to execute on the cpu.
1536 *
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001537 * This function is to be used by unbound workers and rescuers to bind
Tejun Heoe22bee72010-06-29 10:07:14 +02001538 * themselves to the target cpu and may race with cpu going down or
1539 * coming online. kthread_bind() can't be used because it may put the
1540 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
Tejun Heo706026c2013-01-24 11:01:34 -08001541 * verbatim as it's best effort and blocking and pool may be
Tejun Heoe22bee72010-06-29 10:07:14 +02001542 * [dis]associated in the meantime.
1543 *
Tejun Heo706026c2013-01-24 11:01:34 -08001544 * This function tries set_cpus_allowed() and locks pool and verifies the
Tejun Heo24647572013-01-24 11:01:33 -08001545 * binding against %POOL_DISASSOCIATED which is set during
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001546 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1547 * enters idle state or fetches works without dropping lock, it can
1548 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001549 *
1550 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001551 * Might sleep. Called without any lock but returns with pool->lock
Tejun Heoe22bee72010-06-29 10:07:14 +02001552 * held.
1553 *
1554 * RETURNS:
Tejun Heo706026c2013-01-24 11:01:34 -08001555 * %true if the associated pool is online (@worker is successfully
Tejun Heoe22bee72010-06-29 10:07:14 +02001556 * bound), %false if offline.
1557 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001558static bool worker_maybe_bind_and_lock(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001559__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001560{
Tejun Heoe22bee72010-06-29 10:07:14 +02001561 while (true) {
1562 /*
1563 * The following call may fail, succeed or succeed
1564 * without actually migrating the task to the cpu if
1565 * it races with cpu hotunplug operation. Verify
Tejun Heo24647572013-01-24 11:01:33 -08001566 * against POOL_DISASSOCIATED.
Tejun Heoe22bee72010-06-29 10:07:14 +02001567 */
Tejun Heo24647572013-01-24 11:01:33 -08001568 if (!(pool->flags & POOL_DISASSOCIATED))
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001569 set_cpus_allowed_ptr(current, get_cpu_mask(pool->cpu));
Oleg Nesterov85f41862007-05-09 02:34:20 -07001570
Tejun Heod565ed62013-01-24 11:01:33 -08001571 spin_lock_irq(&pool->lock);
Tejun Heo24647572013-01-24 11:01:33 -08001572 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heoe22bee72010-06-29 10:07:14 +02001573 return false;
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001574 if (task_cpu(current) == pool->cpu &&
Tejun Heoe22bee72010-06-29 10:07:14 +02001575 cpumask_equal(&current->cpus_allowed,
Tejun Heoec22ca52013-01-24 11:01:33 -08001576 get_cpu_mask(pool->cpu)))
Tejun Heoe22bee72010-06-29 10:07:14 +02001577 return true;
Tejun Heod565ed62013-01-24 11:01:33 -08001578 spin_unlock_irq(&pool->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001579
Tejun Heo5035b202011-04-29 18:08:37 +02001580 /*
1581 * We've raced with CPU hot[un]plug. Give it a breather
1582 * and retry migration. cond_resched() is required here;
1583 * otherwise, we might deadlock against cpu_stop trying to
1584 * bring down the CPU on non-preemptive kernel.
1585 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001586 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001587 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001588 }
1589}
1590
1591/*
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001592 * Rebind an idle @worker to its CPU. worker_thread() will test
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001593 * list_empty(@worker->entry) before leaving idle and call this function.
Tejun Heo25511a42012-07-17 12:39:27 -07001594 */
1595static void idle_worker_rebind(struct worker *worker)
1596{
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001597 /* CPU may go down again inbetween, clear UNBOUND only on success */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001598 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001599 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heo25511a42012-07-17 12:39:27 -07001600
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001601 /* rebind complete, become available again */
1602 list_add(&worker->entry, &worker->pool->idle_list);
Tejun Heod565ed62013-01-24 11:01:33 -08001603 spin_unlock_irq(&worker->pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001604}
1605
1606/*
1607 * Function for @worker->rebind.work used to rebind unbound busy workers to
Tejun Heo403c8212012-07-17 12:39:27 -07001608 * the associated cpu which is coming back online. This is scheduled by
1609 * cpu up but can race with other cpu hotplug operations and may be
1610 * executed twice without intervening cpu down.
Tejun Heoe22bee72010-06-29 10:07:14 +02001611 */
Tejun Heo25511a42012-07-17 12:39:27 -07001612static void busy_worker_rebind_fn(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001613{
1614 struct worker *worker = container_of(work, struct worker, rebind_work);
Tejun Heoe22bee72010-06-29 10:07:14 +02001615
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001616 if (worker_maybe_bind_and_lock(worker->pool))
Lai Jiangshaneab6d822012-09-18 09:59:22 -07001617 worker_clr_flags(worker, WORKER_UNBOUND);
Tejun Heoe22bee72010-06-29 10:07:14 +02001618
Tejun Heod565ed62013-01-24 11:01:33 -08001619 spin_unlock_irq(&worker->pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001620}
1621
Tejun Heo25511a42012-07-17 12:39:27 -07001622/**
Tejun Heo94cf58b2013-01-24 11:01:33 -08001623 * rebind_workers - rebind all workers of a pool to the associated CPU
1624 * @pool: pool of interest
Tejun Heo25511a42012-07-17 12:39:27 -07001625 *
Tejun Heo94cf58b2013-01-24 11:01:33 -08001626 * @pool->cpu is coming online. Rebind all workers to the CPU. Rebinding
Tejun Heo25511a42012-07-17 12:39:27 -07001627 * is different for idle and busy ones.
1628 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001629 * Idle ones will be removed from the idle_list and woken up. They will
1630 * add themselves back after completing rebind. This ensures that the
1631 * idle_list doesn't contain any unbound workers when re-bound busy workers
1632 * try to perform local wake-ups for concurrency management.
Tejun Heo25511a42012-07-17 12:39:27 -07001633 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001634 * Busy workers can rebind after they finish their current work items.
1635 * Queueing the rebind work item at the head of the scheduled list is
1636 * enough. Note that nr_running will be properly bumped as busy workers
1637 * rebind.
Tejun Heo25511a42012-07-17 12:39:27 -07001638 *
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001639 * On return, all non-manager workers are scheduled for rebind - see
1640 * manage_workers() for the manager special case. Any idle worker
1641 * including the manager will not appear on @idle_list until rebind is
1642 * complete, making local wake-ups safe.
Tejun Heo25511a42012-07-17 12:39:27 -07001643 */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001644static void rebind_workers(struct worker_pool *pool)
Tejun Heo25511a42012-07-17 12:39:27 -07001645{
Lai Jiangshanea1abd62012-09-18 09:59:22 -07001646 struct worker *worker, *n;
Tejun Heo25511a42012-07-17 12:39:27 -07001647 int i;
1648
Tejun Heo94cf58b2013-01-24 11:01:33 -08001649 lockdep_assert_held(&pool->assoc_mutex);
1650 lockdep_assert_held(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07001651
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07001652 /* dequeue and kick idle ones */
Tejun Heo94cf58b2013-01-24 11:01:33 -08001653 list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
1654 /*
1655 * idle workers should be off @pool->idle_list until rebind
1656 * is complete to avoid receiving premature local wake-ups.
1657 */
1658 list_del_init(&worker->entry);
Lai Jiangshan96e65302012-09-02 00:28:19 +08001659
Tejun Heo94cf58b2013-01-24 11:01:33 -08001660 /*
1661 * worker_thread() will see the above dequeuing and call
1662 * idle_worker_rebind().
1663 */
1664 wake_up_process(worker->task);
1665 }
Tejun Heo25511a42012-07-17 12:39:27 -07001666
Tejun Heo94cf58b2013-01-24 11:01:33 -08001667 /* rebind busy workers */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001668 for_each_busy_worker(worker, i, pool) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08001669 struct work_struct *rebind_work = &worker->rebind_work;
1670 struct workqueue_struct *wq;
Tejun Heo25511a42012-07-17 12:39:27 -07001671
Tejun Heo94cf58b2013-01-24 11:01:33 -08001672 if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
1673 work_data_bits(rebind_work)))
1674 continue;
Tejun Heo25511a42012-07-17 12:39:27 -07001675
Tejun Heo94cf58b2013-01-24 11:01:33 -08001676 debug_work_activate(rebind_work);
Tejun Heo90beca52012-09-04 23:12:33 -07001677
Tejun Heo94cf58b2013-01-24 11:01:33 -08001678 /*
1679 * wq doesn't really matter but let's keep @worker->pool
Tejun Heo112202d2013-02-13 19:29:12 -08001680 * and @pwq->pool consistent for sanity.
Tejun Heo94cf58b2013-01-24 11:01:33 -08001681 */
1682 if (std_worker_pool_pri(worker->pool))
1683 wq = system_highpri_wq;
1684 else
1685 wq = system_wq;
Tejun Heoec588152012-09-04 23:16:32 -07001686
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001687 insert_work(per_cpu_ptr(wq->cpu_pwqs, pool->cpu), rebind_work,
Tejun Heo94cf58b2013-01-24 11:01:33 -08001688 worker->scheduled.next,
1689 work_color_to_flags(WORK_NO_COLOR));
Tejun Heoec588152012-09-04 23:16:32 -07001690 }
Tejun Heo25511a42012-07-17 12:39:27 -07001691}
1692
Tejun Heoc34056a2010-06-29 10:07:11 +02001693static struct worker *alloc_worker(void)
1694{
1695 struct worker *worker;
1696
1697 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001698 if (worker) {
1699 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001700 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heo25511a42012-07-17 12:39:27 -07001701 INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
Tejun Heoe22bee72010-06-29 10:07:14 +02001702 /* on creation a worker is in !idle && prep state */
1703 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001704 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001705 return worker;
1706}
1707
1708/**
1709 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001710 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001711 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001712 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001713 * can be started by calling start_worker() or destroyed using
1714 * destroy_worker().
1715 *
1716 * CONTEXT:
1717 * Might sleep. Does GFP_KERNEL allocations.
1718 *
1719 * RETURNS:
1720 * Pointer to the newly created worker.
1721 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001722static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001723{
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001724 const char *pri = std_worker_pool_pri(pool) ? "H" : "";
Tejun Heoc34056a2010-06-29 10:07:11 +02001725 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001726 int id = -1;
Tejun Heoc34056a2010-06-29 10:07:11 +02001727
Tejun Heod565ed62013-01-24 11:01:33 -08001728 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001729 while (ida_get_new(&pool->worker_ida, &id)) {
Tejun Heod565ed62013-01-24 11:01:33 -08001730 spin_unlock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001731 if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
Tejun Heoc34056a2010-06-29 10:07:11 +02001732 goto fail;
Tejun Heod565ed62013-01-24 11:01:33 -08001733 spin_lock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001734 }
Tejun Heod565ed62013-01-24 11:01:33 -08001735 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001736
1737 worker = alloc_worker();
1738 if (!worker)
1739 goto fail;
1740
Tejun Heobd7bdd42012-07-12 14:46:37 -07001741 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001742 worker->id = id;
1743
Tejun Heoec22ca52013-01-24 11:01:33 -08001744 if (pool->cpu != WORK_CPU_UNBOUND)
Eric Dumazet94dcf292011-03-22 16:30:45 -07001745 worker->task = kthread_create_on_node(worker_thread,
Tejun Heoec22ca52013-01-24 11:01:33 -08001746 worker, cpu_to_node(pool->cpu),
Tejun Heod84ff052013-03-12 11:29:59 -07001747 "kworker/%d:%d%s", pool->cpu, id, pri);
Tejun Heof3421792010-07-02 10:03:51 +02001748 else
1749 worker->task = kthread_create(worker_thread, worker,
Tejun Heo32704762012-07-13 22:16:45 -07001750 "kworker/u:%d%s", id, pri);
Tejun Heoc34056a2010-06-29 10:07:11 +02001751 if (IS_ERR(worker->task))
1752 goto fail;
1753
Tejun Heoe34cdddb2013-01-24 11:01:33 -08001754 if (std_worker_pool_pri(pool))
Tejun Heo32704762012-07-13 22:16:45 -07001755 set_user_nice(worker->task, HIGHPRI_NICE_LEVEL);
1756
Tejun Heodb7bccf2010-06-29 10:07:12 +02001757 /*
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001758 * Determine CPU binding of the new worker depending on
Tejun Heo24647572013-01-24 11:01:33 -08001759 * %POOL_DISASSOCIATED. The caller is responsible for ensuring the
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001760 * flag remains stable across this function. See the comments
1761 * above the flag definition for details.
1762 *
1763 * As an unbound worker may later become a regular one if CPU comes
1764 * online, make sure every worker has %PF_THREAD_BOUND set.
Tejun Heodb7bccf2010-06-29 10:07:12 +02001765 */
Tejun Heo24647572013-01-24 11:01:33 -08001766 if (!(pool->flags & POOL_DISASSOCIATED)) {
Tejun Heoec22ca52013-01-24 11:01:33 -08001767 kthread_bind(worker->task, pool->cpu);
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001768 } else {
Tejun Heodb7bccf2010-06-29 10:07:12 +02001769 worker->task->flags |= PF_THREAD_BOUND;
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001770 worker->flags |= WORKER_UNBOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07001772
Tejun Heoc34056a2010-06-29 10:07:11 +02001773 return worker;
1774fail:
1775 if (id >= 0) {
Tejun Heod565ed62013-01-24 11:01:33 -08001776 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001777 ida_remove(&pool->worker_ida, id);
Tejun Heod565ed62013-01-24 11:01:33 -08001778 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001779 }
1780 kfree(worker);
1781 return NULL;
1782}
1783
1784/**
1785 * start_worker - start a newly created worker
1786 * @worker: worker to start
1787 *
Tejun Heo706026c2013-01-24 11:01:34 -08001788 * Make the pool aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001789 *
1790 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001791 * spin_lock_irq(pool->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001792 */
1793static void start_worker(struct worker *worker)
1794{
Tejun Heocb444762010-07-02 10:03:50 +02001795 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001796 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001797 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001798 wake_up_process(worker->task);
1799}
1800
1801/**
1802 * destroy_worker - destroy a workqueue worker
1803 * @worker: worker to be destroyed
1804 *
Tejun Heo706026c2013-01-24 11:01:34 -08001805 * Destroy @worker and adjust @pool stats accordingly.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001806 *
1807 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001808 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001809 */
1810static void destroy_worker(struct worker *worker)
1811{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001812 struct worker_pool *pool = worker->pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001813 int id = worker->id;
1814
1815 /* sanity check frenzy */
Tejun Heo6183c002013-03-12 11:29:57 -07001816 if (WARN_ON(worker->current_work) ||
1817 WARN_ON(!list_empty(&worker->scheduled)))
1818 return;
Tejun Heoc34056a2010-06-29 10:07:11 +02001819
Tejun Heoc8e55f32010-06-29 10:07:12 +02001820 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001821 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001822 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001823 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001824
1825 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001826 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001827
Tejun Heod565ed62013-01-24 11:01:33 -08001828 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001829
Tejun Heoc34056a2010-06-29 10:07:11 +02001830 kthread_stop(worker->task);
1831 kfree(worker);
1832
Tejun Heod565ed62013-01-24 11:01:33 -08001833 spin_lock_irq(&pool->lock);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001834 ida_remove(&pool->worker_ida, id);
Tejun Heoc34056a2010-06-29 10:07:11 +02001835}
1836
Tejun Heo63d95a92012-07-12 14:46:37 -07001837static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001838{
Tejun Heo63d95a92012-07-12 14:46:37 -07001839 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001840
Tejun Heod565ed62013-01-24 11:01:33 -08001841 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001842
Tejun Heo63d95a92012-07-12 14:46:37 -07001843 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001844 struct worker *worker;
1845 unsigned long expires;
1846
1847 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001848 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001849 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1850
1851 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001852 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001853 else {
1854 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001855 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001856 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001857 }
1858 }
1859
Tejun Heod565ed62013-01-24 11:01:33 -08001860 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001861}
1862
Tejun Heo493a1722013-03-12 11:29:59 -07001863static void send_mayday(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001864{
Tejun Heo112202d2013-02-13 19:29:12 -08001865 struct pool_workqueue *pwq = get_work_pwq(work);
1866 struct workqueue_struct *wq = pwq->wq;
Tejun Heo493a1722013-03-12 11:29:59 -07001867
1868 lockdep_assert_held(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001869
1870 if (!(wq->flags & WQ_RESCUER))
Tejun Heo493a1722013-03-12 11:29:59 -07001871 return;
Tejun Heoe22bee72010-06-29 10:07:14 +02001872
1873 /* mayday mayday mayday */
Tejun Heo493a1722013-03-12 11:29:59 -07001874 if (list_empty(&pwq->mayday_node)) {
1875 list_add_tail(&pwq->mayday_node, &wq->maydays);
Tejun Heoe22bee72010-06-29 10:07:14 +02001876 wake_up_process(wq->rescuer->task);
Tejun Heo493a1722013-03-12 11:29:59 -07001877 }
Tejun Heoe22bee72010-06-29 10:07:14 +02001878}
1879
Tejun Heo706026c2013-01-24 11:01:34 -08001880static void pool_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001881{
Tejun Heo63d95a92012-07-12 14:46:37 -07001882 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001883 struct work_struct *work;
1884
Tejun Heo493a1722013-03-12 11:29:59 -07001885 spin_lock_irq(&workqueue_lock); /* for wq->maydays */
1886 spin_lock(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001887
Tejun Heo63d95a92012-07-12 14:46:37 -07001888 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001889 /*
1890 * We've been trying to create a new worker but
1891 * haven't been successful. We might be hitting an
1892 * allocation deadlock. Send distress signals to
1893 * rescuers.
1894 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001895 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001896 send_mayday(work);
1897 }
1898
Tejun Heo493a1722013-03-12 11:29:59 -07001899 spin_unlock(&pool->lock);
1900 spin_unlock_irq(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001901
Tejun Heo63d95a92012-07-12 14:46:37 -07001902 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001903}
1904
1905/**
1906 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001907 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001908 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001909 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001910 * have at least one idle worker on return from this function. If
1911 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001912 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001913 * possible allocation deadlock.
1914 *
1915 * On return, need_to_create_worker() is guaranteed to be false and
1916 * may_start_working() true.
1917 *
1918 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001919 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001920 * multiple times. Does GFP_KERNEL allocations. Called only from
1921 * manager.
1922 *
1923 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001924 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001925 * otherwise.
1926 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001927static bool maybe_create_worker(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001928__releases(&pool->lock)
1929__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001930{
Tejun Heo63d95a92012-07-12 14:46:37 -07001931 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001932 return false;
1933restart:
Tejun Heod565ed62013-01-24 11:01:33 -08001934 spin_unlock_irq(&pool->lock);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001935
Tejun Heoe22bee72010-06-29 10:07:14 +02001936 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001937 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001938
1939 while (true) {
1940 struct worker *worker;
1941
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001942 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001943 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001944 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001945 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001946 start_worker(worker);
Tejun Heo6183c002013-03-12 11:29:57 -07001947 if (WARN_ON_ONCE(need_to_create_worker(pool)))
1948 goto restart;
Tejun Heoe22bee72010-06-29 10:07:14 +02001949 return true;
1950 }
1951
Tejun Heo63d95a92012-07-12 14:46:37 -07001952 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001953 break;
1954
Tejun Heoe22bee72010-06-29 10:07:14 +02001955 __set_current_state(TASK_INTERRUPTIBLE);
1956 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001957
Tejun Heo63d95a92012-07-12 14:46:37 -07001958 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001959 break;
1960 }
1961
Tejun Heo63d95a92012-07-12 14:46:37 -07001962 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001963 spin_lock_irq(&pool->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001964 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001965 goto restart;
1966 return true;
1967}
1968
1969/**
1970 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001971 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001972 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001973 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001974 * IDLE_WORKER_TIMEOUT.
1975 *
1976 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001977 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001978 * multiple times. Called only from manager.
1979 *
1980 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001981 * false if no action was taken and pool->lock stayed locked, true
Tejun Heoe22bee72010-06-29 10:07:14 +02001982 * otherwise.
1983 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001984static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001985{
1986 bool ret = false;
1987
Tejun Heo63d95a92012-07-12 14:46:37 -07001988 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001989 struct worker *worker;
1990 unsigned long expires;
1991
Tejun Heo63d95a92012-07-12 14:46:37 -07001992 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001993 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1994
1995 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001996 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001997 break;
1998 }
1999
2000 destroy_worker(worker);
2001 ret = true;
2002 }
2003
2004 return ret;
2005}
2006
2007/**
2008 * manage_workers - manage worker pool
2009 * @worker: self
2010 *
Tejun Heo706026c2013-01-24 11:01:34 -08002011 * Assume the manager role and manage the worker pool @worker belongs
Tejun Heoe22bee72010-06-29 10:07:14 +02002012 * to. At any given time, there can be only zero or one manager per
Tejun Heo706026c2013-01-24 11:01:34 -08002013 * pool. The exclusion is handled automatically by this function.
Tejun Heoe22bee72010-06-29 10:07:14 +02002014 *
2015 * The caller can safely start processing works on false return. On
2016 * true return, it's guaranteed that need_to_create_worker() is false
2017 * and may_start_working() is true.
2018 *
2019 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002020 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02002021 * multiple times. Does GFP_KERNEL allocations.
2022 *
2023 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08002024 * spin_lock_irq(pool->lock) which may be released and regrabbed
2025 * multiple times. Does GFP_KERNEL allocations.
Tejun Heoe22bee72010-06-29 10:07:14 +02002026 */
2027static bool manage_workers(struct worker *worker)
2028{
Tejun Heo63d95a92012-07-12 14:46:37 -07002029 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002030 bool ret = false;
2031
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002032 if (pool->flags & POOL_MANAGING_WORKERS)
Tejun Heoe22bee72010-06-29 10:07:14 +02002033 return ret;
2034
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002035 pool->flags |= POOL_MANAGING_WORKERS;
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002036
2037 /*
2038 * To simplify both worker management and CPU hotplug, hold off
2039 * management while hotplug is in progress. CPU hotplug path can't
2040 * grab %POOL_MANAGING_WORKERS to achieve this because that can
2041 * lead to idle worker depletion (all become busy thinking someone
2042 * else is managing) which in turn can result in deadlock under
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002043 * extreme circumstances. Use @pool->assoc_mutex to synchronize
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002044 * manager against CPU hotplug.
2045 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002046 * assoc_mutex would always be free unless CPU hotplug is in
Tejun Heod565ed62013-01-24 11:01:33 -08002047 * progress. trylock first without dropping @pool->lock.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002048 */
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002049 if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002050 spin_unlock_irq(&pool->lock);
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002051 mutex_lock(&pool->assoc_mutex);
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002052 /*
2053 * CPU hotplug could have happened while we were waiting
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002054 * for assoc_mutex. Hotplug itself can't handle us
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002055 * because manager isn't either on idle or busy list, and
Tejun Heo706026c2013-01-24 11:01:34 -08002056 * @pool's state and ours could have deviated.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002057 *
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002058 * As hotplug is now excluded via assoc_mutex, we can
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002059 * simply try to bind. It will succeed or fail depending
Tejun Heo706026c2013-01-24 11:01:34 -08002060 * on @pool's current state. Try it and adjust
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002061 * %WORKER_UNBOUND accordingly.
2062 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002063 if (worker_maybe_bind_and_lock(pool))
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002064 worker->flags &= ~WORKER_UNBOUND;
2065 else
2066 worker->flags |= WORKER_UNBOUND;
2067
2068 ret = true;
2069 }
2070
Tejun Heo11ebea52012-07-12 14:46:37 -07002071 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02002072
2073 /*
2074 * Destroy and then create so that may_start_working() is true
2075 * on return.
2076 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002077 ret |= maybe_destroy_workers(pool);
2078 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02002079
Lai Jiangshan552a37e2012-09-10 10:03:33 -07002080 pool->flags &= ~POOL_MANAGING_WORKERS;
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07002081 mutex_unlock(&pool->assoc_mutex);
Tejun Heoe22bee72010-06-29 10:07:14 +02002082 return ret;
2083}
2084
Tejun Heoa62428c2010-06-29 10:07:10 +02002085/**
2086 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02002087 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02002088 * @work: work to process
2089 *
2090 * Process @work. This function contains all the logics necessary to
2091 * process a single work including synchronization against and
2092 * interaction with other workers on the same cpu, queueing and
2093 * flushing. As long as context requirement is met, any worker can
2094 * call this function to process a work.
2095 *
2096 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002097 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002098 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002099static void process_one_work(struct worker *worker, struct work_struct *work)
Tejun Heod565ed62013-01-24 11:01:33 -08002100__releases(&pool->lock)
2101__acquires(&pool->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002102{
Tejun Heo112202d2013-02-13 19:29:12 -08002103 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002104 struct worker_pool *pool = worker->pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002105 bool cpu_intensive = pwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heo73f53c42010-06-29 10:07:11 +02002106 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002107 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002108#ifdef CONFIG_LOCKDEP
2109 /*
2110 * It is permissible to free the struct work_struct from
2111 * inside the function that is called from it, this we need to
2112 * take into account for lockdep too. To avoid bogus "held
2113 * lock freed" warnings as well as problems when looking into
2114 * work->lockdep_map, make a copy and use that here.
2115 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002116 struct lockdep_map lockdep_map;
2117
2118 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002119#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002120 /*
2121 * Ensure we're on the correct CPU. DISASSOCIATED test is
2122 * necessary to avoid spurious warnings from rescuers servicing the
Tejun Heo24647572013-01-24 11:01:33 -08002123 * unbound or a disassociated pool.
Tejun Heo6fec10a2012-07-22 10:16:34 -07002124 */
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002125 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
Tejun Heo24647572013-01-24 11:01:33 -08002126 !(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heoec22ca52013-01-24 11:01:33 -08002127 raw_smp_processor_id() != pool->cpu);
Tejun Heo25511a42012-07-17 12:39:27 -07002128
Tejun Heo7e116292010-06-29 10:07:13 +02002129 /*
2130 * A single work shouldn't be executed concurrently by
2131 * multiple workers on a single cpu. Check whether anyone is
2132 * already processing the work. If so, defer the work to the
2133 * currently executing one.
2134 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002135 collision = find_worker_executing_work(pool, work);
Tejun Heo7e116292010-06-29 10:07:13 +02002136 if (unlikely(collision)) {
2137 move_linked_works(work, &collision->scheduled, NULL);
2138 return;
2139 }
2140
Tejun Heo8930cab2012-08-03 10:30:45 -07002141 /* claim and dequeue */
Tejun Heoa62428c2010-06-29 10:07:10 +02002142 debug_work_deactivate(work);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002143 hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work);
Tejun Heoc34056a2010-06-29 10:07:11 +02002144 worker->current_work = work;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002145 worker->current_func = work->func;
Tejun Heo112202d2013-02-13 19:29:12 -08002146 worker->current_pwq = pwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002147 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002148
Tejun Heoa62428c2010-06-29 10:07:10 +02002149 list_del_init(&work->entry);
2150
Tejun Heo649027d2010-06-29 10:07:14 +02002151 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002152 * CPU intensive works don't participate in concurrency
2153 * management. They're the scheduler's responsibility.
2154 */
2155 if (unlikely(cpu_intensive))
2156 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2157
Tejun Heo974271c2012-07-12 14:46:37 -07002158 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002159 * Unbound pool isn't concurrency managed and work items should be
Tejun Heo974271c2012-07-12 14:46:37 -07002160 * executed ASAP. Wake up another worker if necessary.
2161 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002162 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2163 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002164
Tejun Heo8930cab2012-08-03 10:30:45 -07002165 /*
Tejun Heo7c3eed52013-01-24 11:01:33 -08002166 * Record the last pool and clear PENDING which should be the last
Tejun Heod565ed62013-01-24 11:01:33 -08002167 * update to @work. Also, do this inside @pool->lock so that
Tejun Heo23657bb2012-08-13 17:08:19 -07002168 * PENDING and queued state changes happen together while IRQ is
2169 * disabled.
Tejun Heo8930cab2012-08-03 10:30:45 -07002170 */
Tejun Heo7c3eed52013-01-24 11:01:33 -08002171 set_work_pool_and_clear_pending(work, pool->id);
Tejun Heoa62428c2010-06-29 10:07:10 +02002172
Tejun Heod565ed62013-01-24 11:01:33 -08002173 spin_unlock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002174
Tejun Heo112202d2013-02-13 19:29:12 -08002175 lock_map_acquire_read(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002176 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002177 trace_workqueue_execute_start(work);
Tejun Heoa2c1c572012-12-18 10:35:02 -08002178 worker->current_func(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002179 /*
2180 * While we must be careful to not use "work" after this, the trace
2181 * point will only record its address.
2182 */
2183 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002184 lock_map_release(&lockdep_map);
Tejun Heo112202d2013-02-13 19:29:12 -08002185 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002186
2187 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
Valentin Ilie044c7822012-08-19 00:52:42 +03002188 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2189 " last function: %pf\n",
Tejun Heoa2c1c572012-12-18 10:35:02 -08002190 current->comm, preempt_count(), task_pid_nr(current),
2191 worker->current_func);
Tejun Heoa62428c2010-06-29 10:07:10 +02002192 debug_show_held_locks(current);
2193 dump_stack();
2194 }
2195
Tejun Heod565ed62013-01-24 11:01:33 -08002196 spin_lock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002197
Tejun Heofb0e7be2010-06-29 10:07:15 +02002198 /* clear cpu intensive status */
2199 if (unlikely(cpu_intensive))
2200 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2201
Tejun Heoa62428c2010-06-29 10:07:10 +02002202 /* we're done with it, release */
Sasha Levin42f85702012-12-17 10:01:23 -05002203 hash_del(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002204 worker->current_work = NULL;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002205 worker->current_func = NULL;
Tejun Heo112202d2013-02-13 19:29:12 -08002206 worker->current_pwq = NULL;
2207 pwq_dec_nr_in_flight(pwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02002208}
2209
Tejun Heoaffee4b2010-06-29 10:07:12 +02002210/**
2211 * process_scheduled_works - process scheduled works
2212 * @worker: self
2213 *
2214 * Process all scheduled works. Please note that the scheduled list
2215 * may change while processing a work, so this function repeatedly
2216 * fetches a work from the top and executes it.
2217 *
2218 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002219 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002220 * multiple times.
2221 */
2222static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002224 while (!list_empty(&worker->scheduled)) {
2225 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002227 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
Tejun Heo4690c4a2010-06-29 10:07:10 +02002231/**
2232 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002233 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002234 *
Tejun Heo706026c2013-01-24 11:01:34 -08002235 * The worker thread function. There are NR_CPU_WORKER_POOLS dynamic pools
2236 * of these per each cpu. These workers process all works regardless of
Tejun Heoe22bee72010-06-29 10:07:14 +02002237 * their specific target workqueue. The only exception is works which
2238 * belong to workqueues with a rescuer which will be explained in
2239 * rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002240 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002241static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242{
Tejun Heoc34056a2010-06-29 10:07:11 +02002243 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002244 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Tejun Heoe22bee72010-06-29 10:07:14 +02002246 /* tell the scheduler that this is a workqueue worker */
2247 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002248woke_up:
Tejun Heod565ed62013-01-24 11:01:33 -08002249 spin_lock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002251 /* we are off idle list if destruction or rebind is requested */
2252 if (unlikely(list_empty(&worker->entry))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002253 spin_unlock_irq(&pool->lock);
Tejun Heo25511a42012-07-17 12:39:27 -07002254
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002255 /* if DIE is set, destruction is requested */
Tejun Heo25511a42012-07-17 12:39:27 -07002256 if (worker->flags & WORKER_DIE) {
2257 worker->task->flags &= ~PF_WQ_WORKER;
2258 return 0;
2259 }
2260
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002261 /* otherwise, rebind */
Tejun Heo25511a42012-07-17 12:39:27 -07002262 idle_worker_rebind(worker);
2263 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265
Tejun Heoc8e55f32010-06-29 10:07:12 +02002266 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002267recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002268 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002269 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002270 goto sleep;
2271
2272 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002273 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002274 goto recheck;
2275
Tejun Heoc8e55f32010-06-29 10:07:12 +02002276 /*
2277 * ->scheduled list can only be filled while a worker is
2278 * preparing to process a work or actually processing it.
2279 * Make sure nobody diddled with it while I was sleeping.
2280 */
Tejun Heo6183c002013-03-12 11:29:57 -07002281 WARN_ON_ONCE(!list_empty(&worker->scheduled));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002282
Tejun Heoe22bee72010-06-29 10:07:14 +02002283 /*
2284 * When control reaches this point, we're guaranteed to have
2285 * at least one idle worker or that someone else has already
2286 * assumed the manager role.
2287 */
2288 worker_clr_flags(worker, WORKER_PREP);
2289
2290 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002291 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002292 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002293 struct work_struct, entry);
2294
2295 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2296 /* optimization path, not strictly necessary */
2297 process_one_work(worker, work);
2298 if (unlikely(!list_empty(&worker->scheduled)))
2299 process_scheduled_works(worker);
2300 } else {
2301 move_linked_works(work, &worker->scheduled, NULL);
2302 process_scheduled_works(worker);
2303 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002304 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002305
Tejun Heoe22bee72010-06-29 10:07:14 +02002306 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002307sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002308 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002309 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002310
Tejun Heoc8e55f32010-06-29 10:07:12 +02002311 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002312 * pool->lock is held and there's no work to process and no need to
2313 * manage, sleep. Workers are woken up only while holding
2314 * pool->lock or from local cpu, so setting the current state
2315 * before releasing pool->lock is enough to prevent losing any
2316 * event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002317 */
2318 worker_enter_idle(worker);
2319 __set_current_state(TASK_INTERRUPTIBLE);
Tejun Heod565ed62013-01-24 11:01:33 -08002320 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002321 schedule();
2322 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323}
2324
Tejun Heoe22bee72010-06-29 10:07:14 +02002325/**
2326 * rescuer_thread - the rescuer thread function
Tejun Heo111c2252013-01-17 17:16:24 -08002327 * @__rescuer: self
Tejun Heoe22bee72010-06-29 10:07:14 +02002328 *
2329 * Workqueue rescuer thread function. There's one rescuer for each
2330 * workqueue which has WQ_RESCUER set.
2331 *
Tejun Heo706026c2013-01-24 11:01:34 -08002332 * Regular work processing on a pool may block trying to create a new
Tejun Heoe22bee72010-06-29 10:07:14 +02002333 * worker which uses GFP_KERNEL allocation which has slight chance of
2334 * developing into deadlock if some works currently on the same queue
2335 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2336 * the problem rescuer solves.
2337 *
Tejun Heo706026c2013-01-24 11:01:34 -08002338 * When such condition is possible, the pool summons rescuers of all
2339 * workqueues which have works queued on the pool and let them process
Tejun Heoe22bee72010-06-29 10:07:14 +02002340 * those works so that forward progress can be guaranteed.
2341 *
2342 * This should happen rarely.
2343 */
Tejun Heo111c2252013-01-17 17:16:24 -08002344static int rescuer_thread(void *__rescuer)
Tejun Heoe22bee72010-06-29 10:07:14 +02002345{
Tejun Heo111c2252013-01-17 17:16:24 -08002346 struct worker *rescuer = __rescuer;
2347 struct workqueue_struct *wq = rescuer->rescue_wq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002348 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heoe22bee72010-06-29 10:07:14 +02002349
2350 set_user_nice(current, RESCUER_NICE_LEVEL);
Tejun Heo111c2252013-01-17 17:16:24 -08002351
2352 /*
2353 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2354 * doesn't participate in concurrency management.
2355 */
2356 rescuer->task->flags |= PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002357repeat:
2358 set_current_state(TASK_INTERRUPTIBLE);
2359
Mike Galbraith412d32e2012-11-28 07:17:18 +01002360 if (kthread_should_stop()) {
2361 __set_current_state(TASK_RUNNING);
Tejun Heo111c2252013-01-17 17:16:24 -08002362 rescuer->task->flags &= ~PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002363 return 0;
Mike Galbraith412d32e2012-11-28 07:17:18 +01002364 }
Tejun Heoe22bee72010-06-29 10:07:14 +02002365
Tejun Heo493a1722013-03-12 11:29:59 -07002366 /* see whether any pwq is asking for help */
2367 spin_lock_irq(&workqueue_lock);
2368
2369 while (!list_empty(&wq->maydays)) {
2370 struct pool_workqueue *pwq = list_first_entry(&wq->maydays,
2371 struct pool_workqueue, mayday_node);
Tejun Heo112202d2013-02-13 19:29:12 -08002372 struct worker_pool *pool = pwq->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002373 struct work_struct *work, *n;
2374
2375 __set_current_state(TASK_RUNNING);
Tejun Heo493a1722013-03-12 11:29:59 -07002376 list_del_init(&pwq->mayday_node);
2377
2378 spin_unlock_irq(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002379
2380 /* migrate to the target cpu if possible */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002381 worker_maybe_bind_and_lock(pool);
Lai Jiangshanb3104102013-02-19 12:17:02 -08002382 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002383
2384 /*
2385 * Slurp in all works issued via this workqueue and
2386 * process'em.
2387 */
Tejun Heo6183c002013-03-12 11:29:57 -07002388 WARN_ON_ONCE(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002389 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heo112202d2013-02-13 19:29:12 -08002390 if (get_work_pwq(work) == pwq)
Tejun Heoe22bee72010-06-29 10:07:14 +02002391 move_linked_works(work, scheduled, &n);
2392
2393 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002394
2395 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002396 * Leave this pool. If keep_working() is %true, notify a
Tejun Heo75769582011-02-14 14:04:46 +01002397 * regular worker; otherwise, we end up with 0 concurrency
2398 * and stalling the execution.
2399 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002400 if (keep_working(pool))
2401 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002402
Lai Jiangshanb3104102013-02-19 12:17:02 -08002403 rescuer->pool = NULL;
Tejun Heo493a1722013-03-12 11:29:59 -07002404 spin_unlock(&pool->lock);
2405 spin_lock(&workqueue_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002406 }
2407
Tejun Heo493a1722013-03-12 11:29:59 -07002408 spin_unlock_irq(&workqueue_lock);
2409
Tejun Heo111c2252013-01-17 17:16:24 -08002410 /* rescuers should never participate in concurrency management */
2411 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
Tejun Heoe22bee72010-06-29 10:07:14 +02002412 schedule();
2413 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002416struct wq_barrier {
2417 struct work_struct work;
2418 struct completion done;
2419};
2420
2421static void wq_barrier_func(struct work_struct *work)
2422{
2423 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2424 complete(&barr->done);
2425}
2426
Tejun Heo4690c4a2010-06-29 10:07:10 +02002427/**
2428 * insert_wq_barrier - insert a barrier work
Tejun Heo112202d2013-02-13 19:29:12 -08002429 * @pwq: pwq to insert barrier into
Tejun Heo4690c4a2010-06-29 10:07:10 +02002430 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002431 * @target: target work to attach @barr to
2432 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002433 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002434 * @barr is linked to @target such that @barr is completed only after
2435 * @target finishes execution. Please note that the ordering
2436 * guarantee is observed only with respect to @target and on the local
2437 * cpu.
2438 *
2439 * Currently, a queued barrier can't be canceled. This is because
2440 * try_to_grab_pending() can't determine whether the work to be
2441 * grabbed is at the head of the queue and thus can't clear LINKED
2442 * flag of the previous work while there must be a valid next work
2443 * after a work with LINKED flag set.
2444 *
2445 * Note that when @worker is non-NULL, @target may be modified
Tejun Heo112202d2013-02-13 19:29:12 -08002446 * underneath us, so we can't reliably determine pwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002447 *
2448 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002449 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002450 */
Tejun Heo112202d2013-02-13 19:29:12 -08002451static void insert_wq_barrier(struct pool_workqueue *pwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002452 struct wq_barrier *barr,
2453 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002454{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002455 struct list_head *head;
2456 unsigned int linked = 0;
2457
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002458 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002459 * debugobject calls are safe here even with pool->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002460 * as we know for sure that this will not trigger any of the
2461 * checks and call back into the fixup functions where we
2462 * might deadlock.
2463 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002464 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002465 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002466 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002467
Tejun Heoaffee4b2010-06-29 10:07:12 +02002468 /*
2469 * If @target is currently being executed, schedule the
2470 * barrier to the worker; otherwise, put it after @target.
2471 */
2472 if (worker)
2473 head = worker->scheduled.next;
2474 else {
2475 unsigned long *bits = work_data_bits(target);
2476
2477 head = target->entry.next;
2478 /* there can already be other linked works, inherit and set */
2479 linked = *bits & WORK_STRUCT_LINKED;
2480 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2481 }
2482
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002483 debug_work_activate(&barr->work);
Tejun Heo112202d2013-02-13 19:29:12 -08002484 insert_work(pwq, &barr->work, head,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002485 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002486}
2487
Tejun Heo73f53c42010-06-29 10:07:11 +02002488/**
Tejun Heo112202d2013-02-13 19:29:12 -08002489 * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing
Tejun Heo73f53c42010-06-29 10:07:11 +02002490 * @wq: workqueue being flushed
2491 * @flush_color: new flush color, < 0 for no-op
2492 * @work_color: new work color, < 0 for no-op
2493 *
Tejun Heo112202d2013-02-13 19:29:12 -08002494 * Prepare pwqs for workqueue flushing.
Tejun Heo73f53c42010-06-29 10:07:11 +02002495 *
Tejun Heo112202d2013-02-13 19:29:12 -08002496 * If @flush_color is non-negative, flush_color on all pwqs should be
2497 * -1. If no pwq has in-flight commands at the specified color, all
2498 * pwq->flush_color's stay at -1 and %false is returned. If any pwq
2499 * has in flight commands, its pwq->flush_color is set to
2500 * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq
Tejun Heo73f53c42010-06-29 10:07:11 +02002501 * wakeup logic is armed and %true is returned.
2502 *
2503 * The caller should have initialized @wq->first_flusher prior to
2504 * calling this function with non-negative @flush_color. If
2505 * @flush_color is negative, no flush color update is done and %false
2506 * is returned.
2507 *
Tejun Heo112202d2013-02-13 19:29:12 -08002508 * If @work_color is non-negative, all pwqs should have the same
Tejun Heo73f53c42010-06-29 10:07:11 +02002509 * work_color which is previous to @work_color and all will be
2510 * advanced to @work_color.
2511 *
2512 * CONTEXT:
2513 * mutex_lock(wq->flush_mutex).
2514 *
2515 * RETURNS:
2516 * %true if @flush_color >= 0 and there's something to flush. %false
2517 * otherwise.
2518 */
Tejun Heo112202d2013-02-13 19:29:12 -08002519static bool flush_workqueue_prep_pwqs(struct workqueue_struct *wq,
Tejun Heo73f53c42010-06-29 10:07:11 +02002520 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
Tejun Heo73f53c42010-06-29 10:07:11 +02002522 bool wait = false;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002523 struct pool_workqueue *pwq;
Oleg Nesterov14441962007-05-23 13:57:57 -07002524
Tejun Heo73f53c42010-06-29 10:07:11 +02002525 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002526 WARN_ON_ONCE(atomic_read(&wq->nr_pwqs_to_flush));
Tejun Heo112202d2013-02-13 19:29:12 -08002527 atomic_set(&wq->nr_pwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002528 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002529
Tejun Heo76af4d92013-03-12 11:30:00 -07002530 local_irq_disable();
2531
Tejun Heo49e3cf42013-03-12 11:29:58 -07002532 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08002533 struct worker_pool *pool = pwq->pool;
Tejun Heo73f53c42010-06-29 10:07:11 +02002534
Tejun Heo76af4d92013-03-12 11:30:00 -07002535 spin_lock(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002536
2537 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002538 WARN_ON_ONCE(pwq->flush_color != -1);
Tejun Heo73f53c42010-06-29 10:07:11 +02002539
Tejun Heo112202d2013-02-13 19:29:12 -08002540 if (pwq->nr_in_flight[flush_color]) {
2541 pwq->flush_color = flush_color;
2542 atomic_inc(&wq->nr_pwqs_to_flush);
Tejun Heo73f53c42010-06-29 10:07:11 +02002543 wait = true;
2544 }
2545 }
2546
2547 if (work_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002548 WARN_ON_ONCE(work_color != work_next_color(pwq->work_color));
Tejun Heo112202d2013-02-13 19:29:12 -08002549 pwq->work_color = work_color;
Tejun Heo73f53c42010-06-29 10:07:11 +02002550 }
2551
Tejun Heo76af4d92013-03-12 11:30:00 -07002552 spin_unlock(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002553 }
2554
Tejun Heo76af4d92013-03-12 11:30:00 -07002555 local_irq_enable();
2556
Tejun Heo112202d2013-02-13 19:29:12 -08002557 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_pwqs_to_flush))
Tejun Heo73f53c42010-06-29 10:07:11 +02002558 complete(&wq->first_flusher->done);
2559
2560 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561}
2562
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002563/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002565 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 *
2567 * Forces execution of the workqueue and blocks until its completion.
2568 * This is typically used in driver shutdown handlers.
2569 *
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002570 * We sleep until all works which were queued on entry have been handled,
2571 * but we are not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002573void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
Tejun Heo73f53c42010-06-29 10:07:11 +02002575 struct wq_flusher this_flusher = {
2576 .list = LIST_HEAD_INIT(this_flusher.list),
2577 .flush_color = -1,
2578 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2579 };
2580 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002581
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002582 lock_map_acquire(&wq->lockdep_map);
2583 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002584
2585 mutex_lock(&wq->flush_mutex);
2586
2587 /*
2588 * Start-to-wait phase
2589 */
2590 next_color = work_next_color(wq->work_color);
2591
2592 if (next_color != wq->flush_color) {
2593 /*
2594 * Color space is not full. The current work_color
2595 * becomes our flush_color and work_color is advanced
2596 * by one.
2597 */
Tejun Heo6183c002013-03-12 11:29:57 -07002598 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow));
Tejun Heo73f53c42010-06-29 10:07:11 +02002599 this_flusher.flush_color = wq->work_color;
2600 wq->work_color = next_color;
2601
2602 if (!wq->first_flusher) {
2603 /* no flush in progress, become the first flusher */
Tejun Heo6183c002013-03-12 11:29:57 -07002604 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002605
2606 wq->first_flusher = &this_flusher;
2607
Tejun Heo112202d2013-02-13 19:29:12 -08002608 if (!flush_workqueue_prep_pwqs(wq, wq->flush_color,
Tejun Heo73f53c42010-06-29 10:07:11 +02002609 wq->work_color)) {
2610 /* nothing to flush, done */
2611 wq->flush_color = next_color;
2612 wq->first_flusher = NULL;
2613 goto out_unlock;
2614 }
2615 } else {
2616 /* wait in queue */
Tejun Heo6183c002013-03-12 11:29:57 -07002617 WARN_ON_ONCE(wq->flush_color == this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002618 list_add_tail(&this_flusher.list, &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002619 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002620 }
2621 } else {
2622 /*
2623 * Oops, color space is full, wait on overflow queue.
2624 * The next flush completion will assign us
2625 * flush_color and transfer to flusher_queue.
2626 */
2627 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2628 }
2629
2630 mutex_unlock(&wq->flush_mutex);
2631
2632 wait_for_completion(&this_flusher.done);
2633
2634 /*
2635 * Wake-up-and-cascade phase
2636 *
2637 * First flushers are responsible for cascading flushes and
2638 * handling overflow. Non-first flushers can simply return.
2639 */
2640 if (wq->first_flusher != &this_flusher)
2641 return;
2642
2643 mutex_lock(&wq->flush_mutex);
2644
Tejun Heo4ce48b32010-07-02 10:03:51 +02002645 /* we might have raced, check again with mutex held */
2646 if (wq->first_flusher != &this_flusher)
2647 goto out_unlock;
2648
Tejun Heo73f53c42010-06-29 10:07:11 +02002649 wq->first_flusher = NULL;
2650
Tejun Heo6183c002013-03-12 11:29:57 -07002651 WARN_ON_ONCE(!list_empty(&this_flusher.list));
2652 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002653
2654 while (true) {
2655 struct wq_flusher *next, *tmp;
2656
2657 /* complete all the flushers sharing the current flush color */
2658 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2659 if (next->flush_color != wq->flush_color)
2660 break;
2661 list_del_init(&next->list);
2662 complete(&next->done);
2663 }
2664
Tejun Heo6183c002013-03-12 11:29:57 -07002665 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow) &&
2666 wq->flush_color != work_next_color(wq->work_color));
Tejun Heo73f53c42010-06-29 10:07:11 +02002667
2668 /* this flush_color is finished, advance by one */
2669 wq->flush_color = work_next_color(wq->flush_color);
2670
2671 /* one color has been freed, handle overflow queue */
2672 if (!list_empty(&wq->flusher_overflow)) {
2673 /*
2674 * Assign the same color to all overflowed
2675 * flushers, advance work_color and append to
2676 * flusher_queue. This is the start-to-wait
2677 * phase for these overflowed flushers.
2678 */
2679 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2680 tmp->flush_color = wq->work_color;
2681
2682 wq->work_color = work_next_color(wq->work_color);
2683
2684 list_splice_tail_init(&wq->flusher_overflow,
2685 &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002686 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002687 }
2688
2689 if (list_empty(&wq->flusher_queue)) {
Tejun Heo6183c002013-03-12 11:29:57 -07002690 WARN_ON_ONCE(wq->flush_color != wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002691 break;
2692 }
2693
2694 /*
2695 * Need to flush more colors. Make the next flusher
Tejun Heo112202d2013-02-13 19:29:12 -08002696 * the new first flusher and arm pwqs.
Tejun Heo73f53c42010-06-29 10:07:11 +02002697 */
Tejun Heo6183c002013-03-12 11:29:57 -07002698 WARN_ON_ONCE(wq->flush_color == wq->work_color);
2699 WARN_ON_ONCE(wq->flush_color != next->flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002700
2701 list_del_init(&next->list);
2702 wq->first_flusher = next;
2703
Tejun Heo112202d2013-02-13 19:29:12 -08002704 if (flush_workqueue_prep_pwqs(wq, wq->flush_color, -1))
Tejun Heo73f53c42010-06-29 10:07:11 +02002705 break;
2706
2707 /*
2708 * Meh... this color is already done, clear first
2709 * flusher and repeat cascading.
2710 */
2711 wq->first_flusher = NULL;
2712 }
2713
2714out_unlock:
2715 mutex_unlock(&wq->flush_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716}
Dave Jonesae90dd52006-06-30 01:40:45 -04002717EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002719/**
2720 * drain_workqueue - drain a workqueue
2721 * @wq: workqueue to drain
2722 *
2723 * Wait until the workqueue becomes empty. While draining is in progress,
2724 * only chain queueing is allowed. IOW, only currently pending or running
2725 * work items on @wq can queue further work items on it. @wq is flushed
2726 * repeatedly until it becomes empty. The number of flushing is detemined
2727 * by the depth of chaining and should be relatively short. Whine if it
2728 * takes too long.
2729 */
2730void drain_workqueue(struct workqueue_struct *wq)
2731{
2732 unsigned int flush_cnt = 0;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002733 struct pool_workqueue *pwq;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002734
2735 /*
2736 * __queue_work() needs to test whether there are drainers, is much
2737 * hotter than drain_workqueue() and already looks at @wq->flags.
2738 * Use WQ_DRAINING so that queue doesn't have to check nr_drainers.
2739 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07002740 spin_lock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002741 if (!wq->nr_drainers++)
2742 wq->flags |= WQ_DRAINING;
Tejun Heoe98d5b12013-03-12 11:29:57 -07002743 spin_unlock_irq(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002744reflush:
2745 flush_workqueue(wq);
2746
Tejun Heo76af4d92013-03-12 11:30:00 -07002747 local_irq_disable();
2748
Tejun Heo49e3cf42013-03-12 11:29:58 -07002749 for_each_pwq(pwq, wq) {
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002750 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002751
Tejun Heo76af4d92013-03-12 11:30:00 -07002752 spin_lock(&pwq->pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08002753 drained = !pwq->nr_active && list_empty(&pwq->delayed_works);
Tejun Heo76af4d92013-03-12 11:30:00 -07002754 spin_unlock(&pwq->pool->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002755
2756 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002757 continue;
2758
2759 if (++flush_cnt == 10 ||
2760 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
Valentin Ilie044c7822012-08-19 00:52:42 +03002761 pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
2762 wq->name, flush_cnt);
Tejun Heo76af4d92013-03-12 11:30:00 -07002763
2764 local_irq_enable();
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002765 goto reflush;
2766 }
2767
Tejun Heo76af4d92013-03-12 11:30:00 -07002768 spin_lock(&workqueue_lock);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002769 if (!--wq->nr_drainers)
2770 wq->flags &= ~WQ_DRAINING;
Tejun Heo76af4d92013-03-12 11:30:00 -07002771 spin_unlock(&workqueue_lock);
2772
2773 local_irq_enable();
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002774}
2775EXPORT_SYMBOL_GPL(drain_workqueue);
2776
Tejun Heo606a5022012-08-20 14:51:23 -07002777static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
Tejun Heobaf59022010-09-16 10:42:16 +02002778{
2779 struct worker *worker = NULL;
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002780 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002781 struct pool_workqueue *pwq;
Tejun Heobaf59022010-09-16 10:42:16 +02002782
2783 might_sleep();
Tejun Heobaf59022010-09-16 10:42:16 +02002784
Tejun Heofa1b54e2013-03-12 11:30:00 -07002785 local_irq_disable();
2786 pool = get_work_pool(work);
2787 if (!pool) {
2788 local_irq_enable();
2789 return false;
2790 }
2791
2792 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08002793 /* see the comment in try_to_grab_pending() with the same code */
Tejun Heo112202d2013-02-13 19:29:12 -08002794 pwq = get_work_pwq(work);
2795 if (pwq) {
2796 if (unlikely(pwq->pool != pool))
Tejun Heobaf59022010-09-16 10:42:16 +02002797 goto already_gone;
Tejun Heo606a5022012-08-20 14:51:23 -07002798 } else {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002799 worker = find_worker_executing_work(pool, work);
Tejun Heobaf59022010-09-16 10:42:16 +02002800 if (!worker)
2801 goto already_gone;
Tejun Heo112202d2013-02-13 19:29:12 -08002802 pwq = worker->current_pwq;
Tejun Heo606a5022012-08-20 14:51:23 -07002803 }
Tejun Heobaf59022010-09-16 10:42:16 +02002804
Tejun Heo112202d2013-02-13 19:29:12 -08002805 insert_wq_barrier(pwq, barr, work, worker);
Tejun Heod565ed62013-01-24 11:01:33 -08002806 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002807
Tejun Heoe1594892011-01-09 23:32:15 +01002808 /*
2809 * If @max_active is 1 or rescuer is in use, flushing another work
2810 * item on the same workqueue may lead to deadlock. Make sure the
2811 * flusher is not running on the same workqueue by verifying write
2812 * access.
2813 */
Tejun Heo112202d2013-02-13 19:29:12 -08002814 if (pwq->wq->saved_max_active == 1 || pwq->wq->flags & WQ_RESCUER)
2815 lock_map_acquire(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002816 else
Tejun Heo112202d2013-02-13 19:29:12 -08002817 lock_map_acquire_read(&pwq->wq->lockdep_map);
2818 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002819
Tejun Heobaf59022010-09-16 10:42:16 +02002820 return true;
2821already_gone:
Tejun Heod565ed62013-01-24 11:01:33 -08002822 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002823 return false;
2824}
2825
Oleg Nesterovdb700892008-07-25 01:47:49 -07002826/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002827 * flush_work - wait for a work to finish executing the last queueing instance
2828 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002829 *
Tejun Heo606a5022012-08-20 14:51:23 -07002830 * Wait until @work has finished execution. @work is guaranteed to be idle
2831 * on return if it hasn't been requeued since flush started.
Tejun Heo401a8d02010-09-16 10:36:00 +02002832 *
2833 * RETURNS:
2834 * %true if flush_work() waited for the work to finish execution,
2835 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002836 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002837bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002838{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002839 struct wq_barrier barr;
2840
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002841 lock_map_acquire(&work->lockdep_map);
2842 lock_map_release(&work->lockdep_map);
2843
Tejun Heo606a5022012-08-20 14:51:23 -07002844 if (start_flush_work(work, &barr)) {
Tejun Heobaf59022010-09-16 10:42:16 +02002845 wait_for_completion(&barr.done);
2846 destroy_work_on_stack(&barr.work);
2847 return true;
Tejun Heo606a5022012-08-20 14:51:23 -07002848 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002849 return false;
Tejun Heo606a5022012-08-20 14:51:23 -07002850 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002851}
2852EXPORT_SYMBOL_GPL(flush_work);
2853
Tejun Heo36e227d2012-08-03 10:30:46 -07002854static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
Tejun Heo401a8d02010-09-16 10:36:00 +02002855{
Tejun Heobbb68df2012-08-03 10:30:46 -07002856 unsigned long flags;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002857 int ret;
2858
2859 do {
Tejun Heobbb68df2012-08-03 10:30:46 -07002860 ret = try_to_grab_pending(work, is_dwork, &flags);
2861 /*
2862 * If someone else is canceling, wait for the same event it
2863 * would be waiting for before retrying.
2864 */
2865 if (unlikely(ret == -ENOENT))
Tejun Heo606a5022012-08-20 14:51:23 -07002866 flush_work(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002867 } while (unlikely(ret < 0));
2868
Tejun Heobbb68df2012-08-03 10:30:46 -07002869 /* tell other tasks trying to grab @work to back off */
2870 mark_work_canceling(work);
2871 local_irq_restore(flags);
2872
Tejun Heo606a5022012-08-20 14:51:23 -07002873 flush_work(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002874 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002875 return ret;
2876}
2877
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002878/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002879 * cancel_work_sync - cancel a work and wait for it to finish
2880 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002881 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002882 * Cancel @work and wait for its execution to finish. This function
2883 * can be used even if the work re-queues itself or migrates to
2884 * another workqueue. On return from this function, @work is
2885 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002886 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002887 * cancel_work_sync(&delayed_work->work) must not be used for
2888 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002889 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002890 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002891 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002892 *
2893 * RETURNS:
2894 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002895 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002896bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002897{
Tejun Heo36e227d2012-08-03 10:30:46 -07002898 return __cancel_work_timer(work, false);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002899}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002900EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002901
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002902/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002903 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2904 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002905 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002906 * Delayed timer is cancelled and the pending work is queued for
2907 * immediate execution. Like flush_work(), this function only
2908 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002909 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002910 * RETURNS:
2911 * %true if flush_work() waited for the work to finish execution,
2912 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002913 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002914bool flush_delayed_work(struct delayed_work *dwork)
2915{
Tejun Heo8930cab2012-08-03 10:30:45 -07002916 local_irq_disable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002917 if (del_timer_sync(&dwork->timer))
Lai Jiangshan60c057b2013-02-06 18:04:53 -08002918 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Tejun Heo8930cab2012-08-03 10:30:45 -07002919 local_irq_enable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002920 return flush_work(&dwork->work);
2921}
2922EXPORT_SYMBOL(flush_delayed_work);
2923
2924/**
Tejun Heo57b30ae2012-08-21 13:18:24 -07002925 * cancel_delayed_work - cancel a delayed work
2926 * @dwork: delayed_work to cancel
Tejun Heo09383492010-09-16 10:48:29 +02002927 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002928 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2929 * and canceled; %false if wasn't pending. Note that the work callback
2930 * function may still be running on return, unless it returns %true and the
2931 * work doesn't re-arm itself. Explicitly flush or use
2932 * cancel_delayed_work_sync() to wait on it.
Tejun Heo09383492010-09-16 10:48:29 +02002933 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002934 * This function is safe to call from any context including IRQ handler.
Tejun Heo09383492010-09-16 10:48:29 +02002935 */
Tejun Heo57b30ae2012-08-21 13:18:24 -07002936bool cancel_delayed_work(struct delayed_work *dwork)
Tejun Heo09383492010-09-16 10:48:29 +02002937{
Tejun Heo57b30ae2012-08-21 13:18:24 -07002938 unsigned long flags;
2939 int ret;
2940
2941 do {
2942 ret = try_to_grab_pending(&dwork->work, true, &flags);
2943 } while (unlikely(ret == -EAGAIN));
2944
2945 if (unlikely(ret < 0))
2946 return false;
2947
Tejun Heo7c3eed52013-01-24 11:01:33 -08002948 set_work_pool_and_clear_pending(&dwork->work,
2949 get_work_pool_id(&dwork->work));
Tejun Heo57b30ae2012-08-21 13:18:24 -07002950 local_irq_restore(flags);
Dan Magenheimerc0158ca2012-10-18 16:31:37 -07002951 return ret;
Tejun Heo09383492010-09-16 10:48:29 +02002952}
Tejun Heo57b30ae2012-08-21 13:18:24 -07002953EXPORT_SYMBOL(cancel_delayed_work);
Tejun Heo09383492010-09-16 10:48:29 +02002954
2955/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002956 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2957 * @dwork: the delayed work cancel
2958 *
2959 * This is cancel_work_sync() for delayed works.
2960 *
2961 * RETURNS:
2962 * %true if @dwork was pending, %false otherwise.
2963 */
2964bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002965{
Tejun Heo36e227d2012-08-03 10:30:46 -07002966 return __cancel_work_timer(&dwork->work, true);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002967}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002968EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002970/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07002971 * schedule_work_on - put work task on a specific cpu
2972 * @cpu: cpu to put the work task on
2973 * @work: job to be done
2974 *
2975 * This puts a job on a specific cpu
2976 */
Tejun Heod4283e92012-08-03 10:30:44 -07002977bool schedule_work_on(int cpu, struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07002978{
Tejun Heod320c032010-06-29 10:07:14 +02002979 return queue_work_on(cpu, system_wq, work);
Zhang Ruic1a220e2008-07-23 21:28:39 -07002980}
2981EXPORT_SYMBOL(schedule_work_on);
2982
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002983/**
Dave Jonesae90dd52006-06-30 01:40:45 -04002984 * schedule_work - put work task in global workqueue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 * @work: job to be done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 *
Tejun Heod4283e92012-08-03 10:30:44 -07002987 * Returns %false if @work was already on the kernel-global workqueue and
2988 * %true otherwise.
David Howells52bad642006-11-22 14:54:01 +00002989 *
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002990 * This puts a job in the kernel-global workqueue if it was not already
2991 * queued and leaves it in the same position on the kernel-global
2992 * workqueue otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 */
Tejun Heod4283e92012-08-03 10:30:44 -07002994bool schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002996 return queue_work(system_wq, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997}
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002998EXPORT_SYMBOL(schedule_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07003000/**
3001 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
3002 * @cpu: cpu to use
3003 * @dwork: job to be done
3004 * @delay: number of jiffies to wait
3005 *
3006 * After waiting for a given time this puts a job in the kernel-global
3007 * workqueue on the specified CPU.
3008 */
Tejun Heod4283e92012-08-03 10:30:44 -07003009bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3010 unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011{
Tejun Heod320c032010-06-29 10:07:14 +02003012 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013}
Dave Jonesae90dd52006-06-30 01:40:45 -04003014EXPORT_SYMBOL(schedule_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
Andrew Mortonb6136772006-06-25 05:47:49 -07003016/**
Tejun Heo0a13c002012-08-03 10:30:44 -07003017 * schedule_delayed_work - put work task in global workqueue after delay
3018 * @dwork: job to be done
3019 * @delay: number of jiffies to wait or 0 for immediate execution
3020 *
3021 * After waiting for a given time this puts a job in the kernel-global
3022 * workqueue.
3023 */
Tejun Heod4283e92012-08-03 10:30:44 -07003024bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
Tejun Heo0a13c002012-08-03 10:30:44 -07003025{
3026 return queue_delayed_work(system_wq, dwork, delay);
3027}
3028EXPORT_SYMBOL(schedule_delayed_work);
3029
3030/**
Tejun Heo31ddd872010-10-19 11:14:49 +02003031 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07003032 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07003033 *
Tejun Heo31ddd872010-10-19 11:14:49 +02003034 * schedule_on_each_cpu() executes @func on each online CPU using the
3035 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07003036 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02003037 *
3038 * RETURNS:
3039 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07003040 */
David Howells65f27f32006-11-22 14:55:48 +00003041int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003042{
3043 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02003044 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08003045
Andrew Mortonb6136772006-06-25 05:47:49 -07003046 works = alloc_percpu(struct work_struct);
3047 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08003048 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07003049
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003050 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08003051
Christoph Lameter15316ba2006-01-08 01:00:43 -08003052 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01003053 struct work_struct *work = per_cpu_ptr(works, cpu);
3054
3055 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003056 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02003057 }
Tejun Heo93981802009-11-17 14:06:20 -08003058
3059 for_each_online_cpu(cpu)
3060 flush_work(per_cpu_ptr(works, cpu));
3061
Gautham R Shenoy95402b32008-01-25 21:08:02 +01003062 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07003063 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08003064 return 0;
3065}
3066
Alan Sterneef6a7d2010-02-12 17:39:21 +09003067/**
3068 * flush_scheduled_work - ensure that any scheduled work has run to completion.
3069 *
3070 * Forces execution of the kernel-global workqueue and blocks until its
3071 * completion.
3072 *
3073 * Think twice before calling this function! It's very easy to get into
3074 * trouble if you don't take great care. Either of the following situations
3075 * will lead to deadlock:
3076 *
3077 * One of the work items currently on the workqueue needs to acquire
3078 * a lock held by your code or its caller.
3079 *
3080 * Your code is running in the context of a work routine.
3081 *
3082 * They will be detected by lockdep when they occur, but the first might not
3083 * occur very often. It depends on what work items are on the workqueue and
3084 * what locks they need, which you have no control over.
3085 *
3086 * In most situations flushing the entire workqueue is overkill; you merely
3087 * need to know that a particular work item isn't queued and isn't running.
3088 * In such cases you should use cancel_delayed_work_sync() or
3089 * cancel_work_sync() instead.
3090 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091void flush_scheduled_work(void)
3092{
Tejun Heod320c032010-06-29 10:07:14 +02003093 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094}
Dave Jonesae90dd52006-06-30 01:40:45 -04003095EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
3097/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06003098 * execute_in_process_context - reliably execute the routine with user context
3099 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06003100 * @ew: guaranteed storage for the execute work structure (must
3101 * be available when the work executes)
3102 *
3103 * Executes the function immediately if process context is available,
3104 * otherwise schedules the function for delayed execution.
3105 *
3106 * Returns: 0 - function was executed
3107 * 1 - function was scheduled for execution
3108 */
David Howells65f27f32006-11-22 14:55:48 +00003109int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06003110{
3111 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003112 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003113 return 0;
3114 }
3115
David Howells65f27f32006-11-22 14:55:48 +00003116 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003117 schedule_work(&ew->work);
3118
3119 return 1;
3120}
3121EXPORT_SYMBOL_GPL(execute_in_process_context);
3122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123int keventd_up(void)
3124{
Tejun Heod320c032010-06-29 10:07:14 +02003125 return system_wq != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126}
3127
Tejun Heo30cdf242013-03-12 11:29:57 -07003128static int alloc_and_link_pwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003130 bool highpri = wq->flags & WQ_HIGHPRI;
Tejun Heo30cdf242013-03-12 11:29:57 -07003131 int cpu;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003132
Tejun Heo30cdf242013-03-12 11:29:57 -07003133 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo420c0dd2013-03-12 11:29:59 -07003134 wq->cpu_pwqs = alloc_percpu(struct pool_workqueue);
3135 if (!wq->cpu_pwqs)
Tejun Heo30cdf242013-03-12 11:29:57 -07003136 return -ENOMEM;
3137
3138 for_each_possible_cpu(cpu) {
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003139 struct pool_workqueue *pwq =
3140 per_cpu_ptr(wq->cpu_pwqs, cpu);
Tejun Heo30cdf242013-03-12 11:29:57 -07003141
Tejun Heo49e3cf42013-03-12 11:29:58 -07003142 pwq->pool = get_std_worker_pool(cpu, highpri);
Tejun Heo76af4d92013-03-12 11:30:00 -07003143 list_add_tail_rcu(&pwq->pwqs_node, &wq->pwqs);
Tejun Heo30cdf242013-03-12 11:29:57 -07003144 }
3145 } else {
3146 struct pool_workqueue *pwq;
3147
3148 pwq = kmem_cache_zalloc(pwq_cache, GFP_KERNEL);
3149 if (!pwq)
3150 return -ENOMEM;
3151
Tejun Heo49e3cf42013-03-12 11:29:58 -07003152 pwq->pool = get_std_worker_pool(WORK_CPU_UNBOUND, highpri);
Tejun Heo76af4d92013-03-12 11:30:00 -07003153 list_add_tail_rcu(&pwq->pwqs_node, &wq->pwqs);
Tejun Heo30cdf242013-03-12 11:29:57 -07003154 }
3155
3156 return 0;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003157}
3158
Tejun Heo112202d2013-02-13 19:29:12 -08003159static void free_pwqs(struct workqueue_struct *wq)
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003160{
Lai Jiangshane06ffa12012-03-09 18:03:20 +08003161 if (!(wq->flags & WQ_UNBOUND))
Tejun Heo420c0dd2013-03-12 11:29:59 -07003162 free_percpu(wq->cpu_pwqs);
3163 else if (!list_empty(&wq->pwqs))
3164 kmem_cache_free(pwq_cache, list_first_entry(&wq->pwqs,
3165 struct pool_workqueue, pwqs_node));
Oleg Nesterov06ba38a2007-05-09 02:34:15 -07003166}
3167
Tejun Heof3421792010-07-02 10:03:51 +02003168static int wq_clamp_max_active(int max_active, unsigned int flags,
3169 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003170{
Tejun Heof3421792010-07-02 10:03:51 +02003171 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3172
3173 if (max_active < 1 || max_active > lim)
Valentin Ilie044c7822012-08-19 00:52:42 +03003174 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3175 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003176
Tejun Heof3421792010-07-02 10:03:51 +02003177 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003178}
3179
Tejun Heob196be82012-01-10 15:11:35 -08003180struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003181 unsigned int flags,
3182 int max_active,
3183 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003184 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003185{
Tejun Heob196be82012-01-10 15:11:35 -08003186 va_list args, args1;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003187 struct workqueue_struct *wq;
Tejun Heo49e3cf42013-03-12 11:29:58 -07003188 struct pool_workqueue *pwq;
Tejun Heob196be82012-01-10 15:11:35 -08003189 size_t namelen;
3190
3191 /* determine namelen, allocate wq and format name */
3192 va_start(args, lock_name);
3193 va_copy(args1, args);
3194 namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3195
3196 wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3197 if (!wq)
3198 goto err;
3199
3200 vsnprintf(wq->name, namelen, fmt, args1);
3201 va_end(args);
3202 va_end(args1);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003203
Tejun Heof3421792010-07-02 10:03:51 +02003204 /*
Tejun Heo6370a6a2010-10-11 15:12:27 +02003205 * Workqueues which may be used during memory reclaim should
3206 * have a rescuer to guarantee forward progress.
3207 */
3208 if (flags & WQ_MEM_RECLAIM)
3209 flags |= WQ_RESCUER;
3210
Tejun Heod320c032010-06-29 10:07:14 +02003211 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003212 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003213
Tejun Heob196be82012-01-10 15:11:35 -08003214 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003215 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003216 wq->saved_max_active = max_active;
Tejun Heo73f53c42010-06-29 10:07:11 +02003217 mutex_init(&wq->flush_mutex);
Tejun Heo112202d2013-02-13 19:29:12 -08003218 atomic_set(&wq->nr_pwqs_to_flush, 0);
Tejun Heo30cdf242013-03-12 11:29:57 -07003219 INIT_LIST_HEAD(&wq->pwqs);
Tejun Heo73f53c42010-06-29 10:07:11 +02003220 INIT_LIST_HEAD(&wq->flusher_queue);
3221 INIT_LIST_HEAD(&wq->flusher_overflow);
Tejun Heo493a1722013-03-12 11:29:59 -07003222 INIT_LIST_HEAD(&wq->maydays);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003223
Johannes Bergeb13ba82008-01-16 09:51:58 +01003224 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003225 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003226
Tejun Heo30cdf242013-03-12 11:29:57 -07003227 if (alloc_and_link_pwqs(wq) < 0)
Tejun Heobdbc5dd2010-07-02 10:03:51 +02003228 goto err;
3229
Tejun Heo76af4d92013-03-12 11:30:00 -07003230 local_irq_disable();
Tejun Heo49e3cf42013-03-12 11:29:58 -07003231 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08003232 BUG_ON((unsigned long)pwq & WORK_STRUCT_FLAG_MASK);
Tejun Heo112202d2013-02-13 19:29:12 -08003233 pwq->wq = wq;
3234 pwq->flush_color = -1;
3235 pwq->max_active = max_active;
3236 INIT_LIST_HEAD(&pwq->delayed_works);
Tejun Heo493a1722013-03-12 11:29:59 -07003237 INIT_LIST_HEAD(&pwq->mayday_node);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003238 }
Tejun Heo76af4d92013-03-12 11:30:00 -07003239 local_irq_enable();
Oleg Nesterov3af244332007-05-09 02:34:09 -07003240
Tejun Heoe22bee72010-06-29 10:07:14 +02003241 if (flags & WQ_RESCUER) {
3242 struct worker *rescuer;
3243
Tejun Heoe22bee72010-06-29 10:07:14 +02003244 wq->rescuer = rescuer = alloc_worker();
3245 if (!rescuer)
3246 goto err;
3247
Tejun Heo111c2252013-01-17 17:16:24 -08003248 rescuer->rescue_wq = wq;
3249 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
Tejun Heob196be82012-01-10 15:11:35 -08003250 wq->name);
Tejun Heoe22bee72010-06-29 10:07:14 +02003251 if (IS_ERR(rescuer->task))
3252 goto err;
3253
Tejun Heoe22bee72010-06-29 10:07:14 +02003254 rescuer->task->flags |= PF_THREAD_BOUND;
3255 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003256 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003257
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003258 /*
3259 * workqueue_lock protects global freeze state and workqueues
3260 * list. Grab it, set max_active accordingly and add the new
3261 * workqueue to workqueues list.
3262 */
Tejun Heoe98d5b12013-03-12 11:29:57 -07003263 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003264
Tejun Heo58a69cb2011-02-16 09:25:31 +01003265 if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
Tejun Heo49e3cf42013-03-12 11:29:58 -07003266 for_each_pwq(pwq, wq)
3267 pwq->max_active = 0;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003268
Tejun Heo15376632010-06-29 10:07:11 +02003269 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003270
Tejun Heoe98d5b12013-03-12 11:29:57 -07003271 spin_unlock_irq(&workqueue_lock);
Tejun Heo15376632010-06-29 10:07:11 +02003272
Oleg Nesterov3af244332007-05-09 02:34:09 -07003273 return wq;
Tejun Heo4690c4a2010-06-29 10:07:10 +02003274err:
3275 if (wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08003276 free_pwqs(wq);
Tejun Heoe22bee72010-06-29 10:07:14 +02003277 kfree(wq->rescuer);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003278 kfree(wq);
3279 }
3280 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003281}
Tejun Heod320c032010-06-29 10:07:14 +02003282EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003283
3284/**
3285 * destroy_workqueue - safely terminate a workqueue
3286 * @wq: target workqueue
3287 *
3288 * Safely destroy a workqueue. All work currently pending will be done first.
3289 */
3290void destroy_workqueue(struct workqueue_struct *wq)
3291{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003292 struct pool_workqueue *pwq;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003293
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003294 /* drain it before proceeding with destruction */
3295 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003296
Tejun Heo76af4d92013-03-12 11:30:00 -07003297 spin_lock_irq(&workqueue_lock);
3298
Tejun Heo6183c002013-03-12 11:29:57 -07003299 /* sanity checks */
Tejun Heo49e3cf42013-03-12 11:29:58 -07003300 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07003301 int i;
3302
Tejun Heo76af4d92013-03-12 11:30:00 -07003303 for (i = 0; i < WORK_NR_COLORS; i++) {
3304 if (WARN_ON(pwq->nr_in_flight[i])) {
3305 spin_unlock_irq(&workqueue_lock);
Tejun Heo6183c002013-03-12 11:29:57 -07003306 return;
Tejun Heo76af4d92013-03-12 11:30:00 -07003307 }
3308 }
3309
Tejun Heo6183c002013-03-12 11:29:57 -07003310 if (WARN_ON(pwq->nr_active) ||
Tejun Heo76af4d92013-03-12 11:30:00 -07003311 WARN_ON(!list_empty(&pwq->delayed_works))) {
3312 spin_unlock_irq(&workqueue_lock);
Tejun Heo6183c002013-03-12 11:29:57 -07003313 return;
Tejun Heo76af4d92013-03-12 11:30:00 -07003314 }
Tejun Heo6183c002013-03-12 11:29:57 -07003315 }
3316
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003317 /*
3318 * wq list is used to freeze wq, remove from list after
3319 * flushing is complete in case freeze races us.
3320 */
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07003321 list_del(&wq->list);
Tejun Heo76af4d92013-03-12 11:30:00 -07003322
Tejun Heoe98d5b12013-03-12 11:29:57 -07003323 spin_unlock_irq(&workqueue_lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003324
Tejun Heoe22bee72010-06-29 10:07:14 +02003325 if (wq->flags & WQ_RESCUER) {
3326 kthread_stop(wq->rescuer->task);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003327 kfree(wq->rescuer);
Tejun Heoe22bee72010-06-29 10:07:14 +02003328 }
3329
Tejun Heo112202d2013-02-13 19:29:12 -08003330 free_pwqs(wq);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003331 kfree(wq);
3332}
3333EXPORT_SYMBOL_GPL(destroy_workqueue);
3334
Tejun Heodcd989c2010-06-29 10:07:14 +02003335/**
Tejun Heo112202d2013-02-13 19:29:12 -08003336 * pwq_set_max_active - adjust max_active of a pwq
3337 * @pwq: target pool_workqueue
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003338 * @max_active: new max_active value.
3339 *
Tejun Heo112202d2013-02-13 19:29:12 -08003340 * Set @pwq->max_active to @max_active and activate delayed works if
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003341 * increased.
3342 *
3343 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003344 * spin_lock_irq(pool->lock).
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003345 */
Tejun Heo112202d2013-02-13 19:29:12 -08003346static void pwq_set_max_active(struct pool_workqueue *pwq, int max_active)
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003347{
Tejun Heo112202d2013-02-13 19:29:12 -08003348 pwq->max_active = max_active;
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003349
Tejun Heo112202d2013-02-13 19:29:12 -08003350 while (!list_empty(&pwq->delayed_works) &&
3351 pwq->nr_active < pwq->max_active)
3352 pwq_activate_first_delayed(pwq);
Lai Jiangshan9f4bd4c2012-09-19 10:40:48 -07003353}
3354
3355/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003356 * workqueue_set_max_active - adjust max_active of a workqueue
3357 * @wq: target workqueue
3358 * @max_active: new max_active value.
3359 *
3360 * Set max_active of @wq to @max_active.
3361 *
3362 * CONTEXT:
3363 * Don't call from IRQ context.
3364 */
3365void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3366{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003367 struct pool_workqueue *pwq;
Tejun Heodcd989c2010-06-29 10:07:14 +02003368
Tejun Heof3421792010-07-02 10:03:51 +02003369 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003370
Tejun Heoe98d5b12013-03-12 11:29:57 -07003371 spin_lock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003372
3373 wq->saved_max_active = max_active;
3374
Tejun Heo49e3cf42013-03-12 11:29:58 -07003375 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08003376 struct worker_pool *pool = pwq->pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02003377
Tejun Heoe98d5b12013-03-12 11:29:57 -07003378 spin_lock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003379
Tejun Heo58a69cb2011-02-16 09:25:31 +01003380 if (!(wq->flags & WQ_FREEZABLE) ||
Tejun Heo35b6bb62013-01-24 11:01:33 -08003381 !(pool->flags & POOL_FREEZING))
Tejun Heo112202d2013-02-13 19:29:12 -08003382 pwq_set_max_active(pwq, max_active);
Tejun Heodcd989c2010-06-29 10:07:14 +02003383
Tejun Heoe98d5b12013-03-12 11:29:57 -07003384 spin_unlock(&pool->lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003385 }
3386
Tejun Heoe98d5b12013-03-12 11:29:57 -07003387 spin_unlock_irq(&workqueue_lock);
Tejun Heodcd989c2010-06-29 10:07:14 +02003388}
3389EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3390
3391/**
3392 * workqueue_congested - test whether a workqueue is congested
3393 * @cpu: CPU in question
3394 * @wq: target workqueue
3395 *
3396 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3397 * no synchronization around this function and the test result is
3398 * unreliable and only useful as advisory hints or for debugging.
3399 *
3400 * RETURNS:
3401 * %true if congested, %false otherwise.
3402 */
Tejun Heod84ff052013-03-12 11:29:59 -07003403bool workqueue_congested(int cpu, struct workqueue_struct *wq)
Tejun Heodcd989c2010-06-29 10:07:14 +02003404{
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003405 struct pool_workqueue *pwq;
Tejun Heo76af4d92013-03-12 11:30:00 -07003406 bool ret;
3407
3408 preempt_disable();
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003409
3410 if (!(wq->flags & WQ_UNBOUND))
3411 pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
3412 else
3413 pwq = first_pwq(wq);
Tejun Heodcd989c2010-06-29 10:07:14 +02003414
Tejun Heo76af4d92013-03-12 11:30:00 -07003415 ret = !list_empty(&pwq->delayed_works);
3416 preempt_enable();
3417
3418 return ret;
Tejun Heodcd989c2010-06-29 10:07:14 +02003419}
3420EXPORT_SYMBOL_GPL(workqueue_congested);
3421
3422/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003423 * work_busy - test whether a work is currently pending or running
3424 * @work: the work to be tested
3425 *
3426 * Test whether @work is currently pending or running. There is no
3427 * synchronization around this function and the test result is
3428 * unreliable and only useful as advisory hints or for debugging.
Tejun Heodcd989c2010-06-29 10:07:14 +02003429 *
3430 * RETURNS:
3431 * OR'd bitmask of WORK_BUSY_* bits.
3432 */
3433unsigned int work_busy(struct work_struct *work)
3434{
Tejun Heofa1b54e2013-03-12 11:30:00 -07003435 struct worker_pool *pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02003436 unsigned long flags;
3437 unsigned int ret = 0;
3438
Tejun Heodcd989c2010-06-29 10:07:14 +02003439 if (work_pending(work))
3440 ret |= WORK_BUSY_PENDING;
Tejun Heodcd989c2010-06-29 10:07:14 +02003441
Tejun Heofa1b54e2013-03-12 11:30:00 -07003442 local_irq_save(flags);
3443 pool = get_work_pool(work);
Lai Jiangshan038366c2013-02-06 18:04:53 -08003444 if (pool) {
Tejun Heofa1b54e2013-03-12 11:30:00 -07003445 spin_lock(&pool->lock);
Lai Jiangshan038366c2013-02-06 18:04:53 -08003446 if (find_worker_executing_work(pool, work))
3447 ret |= WORK_BUSY_RUNNING;
Tejun Heofa1b54e2013-03-12 11:30:00 -07003448 spin_unlock(&pool->lock);
Lai Jiangshan038366c2013-02-06 18:04:53 -08003449 }
Tejun Heofa1b54e2013-03-12 11:30:00 -07003450 local_irq_restore(flags);
Tejun Heodcd989c2010-06-29 10:07:14 +02003451
3452 return ret;
3453}
3454EXPORT_SYMBOL_GPL(work_busy);
3455
Tejun Heodb7bccf2010-06-29 10:07:12 +02003456/*
3457 * CPU hotplug.
3458 *
Tejun Heoe22bee72010-06-29 10:07:14 +02003459 * There are two challenges in supporting CPU hotplug. Firstly, there
Tejun Heo112202d2013-02-13 19:29:12 -08003460 * are a lot of assumptions on strong associations among work, pwq and
Tejun Heo706026c2013-01-24 11:01:34 -08003461 * pool which make migrating pending and scheduled works very
Tejun Heoe22bee72010-06-29 10:07:14 +02003462 * difficult to implement without impacting hot paths. Secondly,
Tejun Heo94cf58b2013-01-24 11:01:33 -08003463 * worker pools serve mix of short, long and very long running works making
Tejun Heoe22bee72010-06-29 10:07:14 +02003464 * blocked draining impractical.
3465 *
Tejun Heo24647572013-01-24 11:01:33 -08003466 * This is solved by allowing the pools to be disassociated from the CPU
Tejun Heo628c78e2012-07-17 12:39:27 -07003467 * running as an unbound one and allowing it to be reattached later if the
3468 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02003469 */
3470
Tejun Heo706026c2013-01-24 11:01:34 -08003471static void wq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02003472{
Tejun Heo38db41d2013-01-24 11:01:34 -08003473 int cpu = smp_processor_id();
Tejun Heo4ce62e92012-07-13 22:16:44 -07003474 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003475 struct worker *worker;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003476 int i;
3477
Tejun Heo38db41d2013-01-24 11:01:34 -08003478 for_each_std_worker_pool(pool, cpu) {
Tejun Heo6183c002013-03-12 11:29:57 -07003479 WARN_ON_ONCE(cpu != smp_processor_id());
Tejun Heo94cf58b2013-01-24 11:01:33 -08003480
3481 mutex_lock(&pool->assoc_mutex);
3482 spin_lock_irq(&pool->lock);
3483
3484 /*
3485 * We've claimed all manager positions. Make all workers
3486 * unbound and set DISASSOCIATED. Before this, all workers
3487 * except for the ones which are still executing works from
3488 * before the last CPU down must be on the cpu. After
3489 * this, they may become diasporas.
3490 */
Tejun Heo4ce62e92012-07-13 22:16:44 -07003491 list_for_each_entry(worker, &pool->idle_list, entry)
Tejun Heo403c8212012-07-17 12:39:27 -07003492 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003493
Sasha Levinb67bfe02013-02-27 17:06:00 -08003494 for_each_busy_worker(worker, i, pool)
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003495 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02003496
Tejun Heo24647572013-01-24 11:01:33 -08003497 pool->flags |= POOL_DISASSOCIATED;
Tejun Heof2d5a0e2012-07-17 12:39:26 -07003498
Tejun Heo94cf58b2013-01-24 11:01:33 -08003499 spin_unlock_irq(&pool->lock);
3500 mutex_unlock(&pool->assoc_mutex);
3501 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003502
3503 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07003504 * Call schedule() so that we cross rq->lock and thus can guarantee
3505 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
3506 * as scheduler callbacks may be invoked from other cpus.
3507 */
3508 schedule();
3509
3510 /*
3511 * Sched callbacks are disabled now. Zap nr_running. After this,
3512 * nr_running stays zero and need_more_worker() and keep_working()
Tejun Heo38db41d2013-01-24 11:01:34 -08003513 * are always true as long as the worklist is not empty. Pools on
3514 * @cpu now behave as unbound (in terms of concurrency management)
3515 * pools which are served by workers tied to the CPU.
Tejun Heo628c78e2012-07-17 12:39:27 -07003516 *
3517 * On return from this function, the current worker would trigger
3518 * unbound chain execution of pending work items if other workers
3519 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02003520 */
Tejun Heo38db41d2013-01-24 11:01:34 -08003521 for_each_std_worker_pool(pool, cpu)
Tejun Heoe19e3972013-01-24 11:39:44 -08003522 atomic_set(&pool->nr_running, 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02003523}
3524
Tejun Heo8db25e72012-07-17 12:39:28 -07003525/*
3526 * Workqueues should be brought up before normal priority CPU notifiers.
3527 * This will be registered high priority CPU notifier.
3528 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003529static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
Tejun Heo8db25e72012-07-17 12:39:28 -07003530 unsigned long action,
3531 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003532{
Tejun Heod84ff052013-03-12 11:29:59 -07003533 int cpu = (unsigned long)hcpu;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003534 struct worker_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
Tejun Heo8db25e72012-07-17 12:39:28 -07003536 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 case CPU_UP_PREPARE:
Tejun Heo38db41d2013-01-24 11:01:34 -08003538 for_each_std_worker_pool(pool, cpu) {
Tejun Heo3ce63372012-07-17 12:39:27 -07003539 struct worker *worker;
3540
3541 if (pool->nr_workers)
3542 continue;
3543
3544 worker = create_worker(pool);
3545 if (!worker)
3546 return NOTIFY_BAD;
3547
Tejun Heod565ed62013-01-24 11:01:33 -08003548 spin_lock_irq(&pool->lock);
Tejun Heo3ce63372012-07-17 12:39:27 -07003549 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003550 spin_unlock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02003552 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07003553
Tejun Heo65758202012-07-17 12:39:26 -07003554 case CPU_DOWN_FAILED:
3555 case CPU_ONLINE:
Tejun Heo38db41d2013-01-24 11:01:34 -08003556 for_each_std_worker_pool(pool, cpu) {
Tejun Heo94cf58b2013-01-24 11:01:33 -08003557 mutex_lock(&pool->assoc_mutex);
3558 spin_lock_irq(&pool->lock);
3559
Tejun Heo24647572013-01-24 11:01:33 -08003560 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heo94cf58b2013-01-24 11:01:33 -08003561 rebind_workers(pool);
3562
3563 spin_unlock_irq(&pool->lock);
3564 mutex_unlock(&pool->assoc_mutex);
3565 }
Tejun Heo8db25e72012-07-17 12:39:28 -07003566 break;
Tejun Heo65758202012-07-17 12:39:26 -07003567 }
3568 return NOTIFY_OK;
3569}
3570
3571/*
3572 * Workqueues should be brought down after normal priority CPU notifiers.
3573 * This will be registered as low priority CPU notifier.
3574 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07003575static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
Tejun Heo65758202012-07-17 12:39:26 -07003576 unsigned long action,
3577 void *hcpu)
3578{
Tejun Heod84ff052013-03-12 11:29:59 -07003579 int cpu = (unsigned long)hcpu;
Tejun Heo8db25e72012-07-17 12:39:28 -07003580 struct work_struct unbind_work;
3581
Tejun Heo65758202012-07-17 12:39:26 -07003582 switch (action & ~CPU_TASKS_FROZEN) {
3583 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07003584 /* unbinding should happen on the local CPU */
Tejun Heo706026c2013-01-24 11:01:34 -08003585 INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
Joonsoo Kim7635d2f2012-08-15 23:25:41 +09003586 queue_work_on(cpu, system_highpri_wq, &unbind_work);
Tejun Heo8db25e72012-07-17 12:39:28 -07003587 flush_work(&unbind_work);
3588 break;
Tejun Heo65758202012-07-17 12:39:26 -07003589 }
3590 return NOTIFY_OK;
3591}
3592
Rusty Russell2d3854a2008-11-05 13:39:10 +11003593#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08003594
Rusty Russell2d3854a2008-11-05 13:39:10 +11003595struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07003596 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11003597 long (*fn)(void *);
3598 void *arg;
3599 long ret;
3600};
3601
Tejun Heoed48ece2012-09-18 12:48:43 -07003602static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003603{
Tejun Heoed48ece2012-09-18 12:48:43 -07003604 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
3605
Rusty Russell2d3854a2008-11-05 13:39:10 +11003606 wfc->ret = wfc->fn(wfc->arg);
3607}
3608
3609/**
3610 * work_on_cpu - run a function in user context on a particular cpu
3611 * @cpu: the cpu to run on
3612 * @fn: the function to run
3613 * @arg: the function arg
3614 *
Rusty Russell31ad9082009-01-16 15:31:15 -08003615 * This will return the value @fn returns.
3616 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b440032009-04-09 09:50:37 -06003617 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11003618 */
Tejun Heod84ff052013-03-12 11:29:59 -07003619long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
Rusty Russell2d3854a2008-11-05 13:39:10 +11003620{
Tejun Heoed48ece2012-09-18 12:48:43 -07003621 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11003622
Tejun Heoed48ece2012-09-18 12:48:43 -07003623 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
3624 schedule_work_on(cpu, &wfc.work);
3625 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11003626 return wfc.ret;
3627}
3628EXPORT_SYMBOL_GPL(work_on_cpu);
3629#endif /* CONFIG_SMP */
3630
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003631#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10303632
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003633/**
3634 * freeze_workqueues_begin - begin freezing workqueues
3635 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01003636 * Start freezing workqueues. After this function returns, all freezable
3637 * workqueues will queue new works to their frozen_works list instead of
Tejun Heo706026c2013-01-24 11:01:34 -08003638 * pool->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003639 *
3640 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003641 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003642 */
3643void freeze_workqueues_begin(void)
3644{
Tejun Heo17116962013-03-12 11:29:58 -07003645 struct worker_pool *pool;
Tejun Heo24b8a842013-03-12 11:29:58 -07003646 struct workqueue_struct *wq;
3647 struct pool_workqueue *pwq;
Tejun Heo17116962013-03-12 11:29:58 -07003648 int id;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003649
Tejun Heoe98d5b12013-03-12 11:29:57 -07003650 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003651
Tejun Heo6183c002013-03-12 11:29:57 -07003652 WARN_ON_ONCE(workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003653 workqueue_freezing = true;
3654
Tejun Heo24b8a842013-03-12 11:29:58 -07003655 /* set FREEZING */
Tejun Heo17116962013-03-12 11:29:58 -07003656 for_each_pool(pool, id) {
Tejun Heo17116962013-03-12 11:29:58 -07003657 spin_lock(&pool->lock);
Tejun Heo17116962013-03-12 11:29:58 -07003658 WARN_ON_ONCE(pool->flags & POOL_FREEZING);
3659 pool->flags |= POOL_FREEZING;
Tejun Heo17116962013-03-12 11:29:58 -07003660 spin_unlock(&pool->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003661 }
3662
Tejun Heo24b8a842013-03-12 11:29:58 -07003663 /* suppress further executions by setting max_active to zero */
3664 list_for_each_entry(wq, &workqueues, list) {
3665 if (!(wq->flags & WQ_FREEZABLE))
3666 continue;
3667
3668 for_each_pwq(pwq, wq) {
3669 spin_lock(&pwq->pool->lock);
3670 pwq->max_active = 0;
3671 spin_unlock(&pwq->pool->lock);
3672 }
3673 }
3674
Tejun Heoe98d5b12013-03-12 11:29:57 -07003675 spin_unlock_irq(&workqueue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003677
3678/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01003679 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003680 *
3681 * Check whether freezing is complete. This function must be called
3682 * between freeze_workqueues_begin() and thaw_workqueues().
3683 *
3684 * CONTEXT:
3685 * Grabs and releases workqueue_lock.
3686 *
3687 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01003688 * %true if some freezable workqueues are still busy. %false if freezing
3689 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003690 */
3691bool freeze_workqueues_busy(void)
3692{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003693 bool busy = false;
Tejun Heo24b8a842013-03-12 11:29:58 -07003694 struct workqueue_struct *wq;
3695 struct pool_workqueue *pwq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003696
Tejun Heoe98d5b12013-03-12 11:29:57 -07003697 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003698
Tejun Heo6183c002013-03-12 11:29:57 -07003699 WARN_ON_ONCE(!workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003700
Tejun Heo24b8a842013-03-12 11:29:58 -07003701 list_for_each_entry(wq, &workqueues, list) {
3702 if (!(wq->flags & WQ_FREEZABLE))
3703 continue;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003704 /*
3705 * nr_active is monotonically decreasing. It's safe
3706 * to peek without lock.
3707 */
Tejun Heo24b8a842013-03-12 11:29:58 -07003708 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07003709 WARN_ON_ONCE(pwq->nr_active < 0);
Tejun Heo112202d2013-02-13 19:29:12 -08003710 if (pwq->nr_active) {
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003711 busy = true;
3712 goto out_unlock;
3713 }
3714 }
3715 }
3716out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07003717 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003718 return busy;
3719}
3720
3721/**
3722 * thaw_workqueues - thaw workqueues
3723 *
3724 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo706026c2013-01-24 11:01:34 -08003725 * frozen works are transferred to their respective pool worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003726 *
3727 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08003728 * Grabs and releases workqueue_lock and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003729 */
3730void thaw_workqueues(void)
3731{
Tejun Heo24b8a842013-03-12 11:29:58 -07003732 struct workqueue_struct *wq;
3733 struct pool_workqueue *pwq;
3734 struct worker_pool *pool;
3735 int id;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003736
Tejun Heoe98d5b12013-03-12 11:29:57 -07003737 spin_lock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003738
3739 if (!workqueue_freezing)
3740 goto out_unlock;
3741
Tejun Heo24b8a842013-03-12 11:29:58 -07003742 /* clear FREEZING */
3743 for_each_pool(pool, id) {
3744 spin_lock(&pool->lock);
3745 WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
3746 pool->flags &= ~POOL_FREEZING;
3747 spin_unlock(&pool->lock);
3748 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003749
Tejun Heo24b8a842013-03-12 11:29:58 -07003750 /* restore max_active and repopulate worklist */
3751 list_for_each_entry(wq, &workqueues, list) {
3752 if (!(wq->flags & WQ_FREEZABLE))
3753 continue;
Tejun Heod565ed62013-01-24 11:01:33 -08003754
Tejun Heo24b8a842013-03-12 11:29:58 -07003755 for_each_pwq(pwq, wq) {
3756 spin_lock(&pwq->pool->lock);
3757 pwq_set_max_active(pwq, wq->saved_max_active);
3758 spin_unlock(&pwq->pool->lock);
Tejun Heod565ed62013-01-24 11:01:33 -08003759 }
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003760 }
3761
Tejun Heo24b8a842013-03-12 11:29:58 -07003762 /* kick workers */
3763 for_each_pool(pool, id) {
3764 spin_lock(&pool->lock);
3765 wake_up_worker(pool);
3766 spin_unlock(&pool->lock);
3767 }
3768
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003769 workqueue_freezing = false;
3770out_unlock:
Tejun Heoe98d5b12013-03-12 11:29:57 -07003771 spin_unlock_irq(&workqueue_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003772}
3773#endif /* CONFIG_FREEZER */
3774
Suresh Siddha6ee05782010-07-30 14:57:37 -07003775static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776{
Tejun Heod84ff052013-03-12 11:29:59 -07003777 int cpu;
Tejun Heoc34056a2010-06-29 10:07:11 +02003778
Tejun Heo7c3eed52013-01-24 11:01:33 -08003779 /* make sure we have enough bits for OFFQ pool ID */
3780 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) <
Lai Jiangshan6be19582013-02-06 18:04:53 -08003781 WORK_CPU_END * NR_STD_WORKER_POOLS);
Tejun Heob5490072012-08-03 10:30:46 -07003782
Tejun Heoe904e6c2013-03-12 11:29:57 -07003783 WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long));
3784
3785 pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);
3786
Tejun Heo65758202012-07-17 12:39:26 -07003787 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
Lai Jiangshana5b4e572012-09-18 09:59:23 -07003788 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02003789
Tejun Heo706026c2013-01-24 11:01:34 -08003790 /* initialize CPU pools */
3791 for_each_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003792 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02003793
Tejun Heo38db41d2013-01-24 11:01:34 -08003794 for_each_std_worker_pool(pool, cpu) {
Tejun Heod565ed62013-01-24 11:01:33 -08003795 spin_lock_init(&pool->lock);
Tejun Heoec22ca52013-01-24 11:01:33 -08003796 pool->cpu = cpu;
Tejun Heo24647572013-01-24 11:01:33 -08003797 pool->flags |= POOL_DISASSOCIATED;
Tejun Heo4ce62e92012-07-13 22:16:44 -07003798 INIT_LIST_HEAD(&pool->worklist);
3799 INIT_LIST_HEAD(&pool->idle_list);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08003800 hash_init(pool->busy_hash);
Tejun Heoe22bee72010-06-29 10:07:14 +02003801
Tejun Heo4ce62e92012-07-13 22:16:44 -07003802 init_timer_deferrable(&pool->idle_timer);
3803 pool->idle_timer.function = idle_worker_timeout;
3804 pool->idle_timer.data = (unsigned long)pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003805
Tejun Heo706026c2013-01-24 11:01:34 -08003806 setup_timer(&pool->mayday_timer, pool_mayday_timeout,
Tejun Heo4ce62e92012-07-13 22:16:44 -07003807 (unsigned long)pool);
3808
Lai Jiangshanb2eb83d2012-09-18 09:59:23 -07003809 mutex_init(&pool->assoc_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003810 ida_init(&pool->worker_ida);
Tejun Heo9daf9e62013-01-24 11:01:33 -08003811
3812 /* alloc pool ID */
3813 BUG_ON(worker_pool_assign_id(pool));
Tejun Heo4ce62e92012-07-13 22:16:44 -07003814 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02003815 }
3816
Tejun Heoe22bee72010-06-29 10:07:14 +02003817 /* create the initial worker */
Tejun Heo706026c2013-01-24 11:01:34 -08003818 for_each_online_wq_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003819 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02003820
Tejun Heo38db41d2013-01-24 11:01:34 -08003821 for_each_std_worker_pool(pool, cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07003822 struct worker *worker;
3823
Tejun Heo24647572013-01-24 11:01:33 -08003824 if (cpu != WORK_CPU_UNBOUND)
3825 pool->flags &= ~POOL_DISASSOCIATED;
3826
Tejun Heobc2ae0f2012-07-17 12:39:27 -07003827 worker = create_worker(pool);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003828 BUG_ON(!worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003829 spin_lock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003830 start_worker(worker);
Tejun Heod565ed62013-01-24 11:01:33 -08003831 spin_unlock_irq(&pool->lock);
Tejun Heo4ce62e92012-07-13 22:16:44 -07003832 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003833 }
3834
Tejun Heod320c032010-06-29 10:07:14 +02003835 system_wq = alloc_workqueue("events", 0, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003836 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
Tejun Heod320c032010-06-29 10:07:14 +02003837 system_long_wq = alloc_workqueue("events_long", 0, 0);
Tejun Heof3421792010-07-02 10:03:51 +02003838 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
3839 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01003840 system_freezable_wq = alloc_workqueue("events_freezable",
3841 WQ_FREEZABLE, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09003842 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
Tejun Heoae930e02012-08-20 14:51:23 -07003843 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07003844 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845}
Suresh Siddha6ee05782010-07-30 14:57:37 -07003846early_initcall(init_workqueues);