blob: c8c5838c52c9d889896d4c7f53d74badad2a12b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heoc54fce62010-09-10 16:51:36 +02002 * kernel/workqueue.c - generic async execution with shared worker pool
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Tejun Heoc54fce62010-09-10 16:51:36 +02004 * Copyright (C) 2002 Ingo Molnar
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Tejun Heoc54fce62010-09-10 16:51:36 +02006 * Derived from the taskqueue/keventd code by:
7 * David Woodhouse <dwmw2@infradead.org>
8 * Andrew Morton
9 * Kai Petzke <wpp@marie.physik.tu-berlin.de>
10 * Theodore Ts'o <tytso@mit.edu>
Christoph Lameter89ada672005-10-30 15:01:59 -080011 *
Christoph Lametercde53532008-07-04 09:59:22 -070012 * Made to use alloc_percpu by Christoph Lameter.
Tejun Heoc54fce62010-09-10 16:51:36 +020013 *
14 * Copyright (C) 2010 SUSE Linux Products GmbH
15 * Copyright (C) 2010 Tejun Heo <tj@kernel.org>
16 *
17 * This is the generic async execution mechanism. Work items as are
18 * executed in process context. The worker pool is shared and
19 * automatically managed. There is one worker pool for each CPU and
20 * one extra for works which are better served by workers which are
21 * not bound to any specific CPU.
22 *
23 * Please read Documentation/workqueue.txt for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Paul Gortmaker9984de12011-05-23 14:51:41 -040026#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/init.h>
30#include <linux/signal.h>
31#include <linux/completion.h>
32#include <linux/workqueue.h>
33#include <linux/slab.h>
34#include <linux/cpu.h>
35#include <linux/notifier.h>
36#include <linux/kthread.h>
James Bottomley1fa44ec2006-02-23 12:43:43 -060037#include <linux/hardirq.h>
Christoph Lameter46934022006-10-11 01:21:26 -070038#include <linux/mempolicy.h>
Rafael J. Wysocki341a5952006-12-06 20:34:49 -080039#include <linux/freezer.h>
Peter Zijlstrad5abe662006-12-06 20:37:26 -080040#include <linux/kallsyms.h>
41#include <linux/debug_locks.h>
Johannes Berg4e6045f2007-10-18 23:39:55 -070042#include <linux/lockdep.h>
Tejun Heoc34056a2010-06-29 10:07:11 +020043#include <linux/idr.h>
Tejun Heo29c91e92013-03-12 11:30:03 -070044#include <linux/jhash.h>
Sasha Levin42f85702012-12-17 10:01:23 -050045#include <linux/hashtable.h>
Tejun Heo76af4d92013-03-12 11:30:00 -070046#include <linux/rculist.h>
Tejun Heobce90382013-04-01 11:23:32 -070047#include <linux/nodemask.h>
Tejun Heoe22bee72010-06-29 10:07:14 +020048
Tejun Heoea138442013-01-18 14:05:55 -080049#include "workqueue_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Tejun Heoc8e55f32010-06-29 10:07:12 +020051enum {
Tejun Heobc2ae0f2012-07-17 12:39:27 -070052 /*
Tejun Heo24647572013-01-24 11:01:33 -080053 * worker_pool flags
Tejun Heobc2ae0f2012-07-17 12:39:27 -070054 *
Tejun Heo24647572013-01-24 11:01:33 -080055 * A bound pool is either associated or disassociated with its CPU.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070056 * While associated (!DISASSOCIATED), all workers are bound to the
57 * CPU and none has %WORKER_UNBOUND set and concurrency management
58 * is in effect.
59 *
60 * While DISASSOCIATED, the cpu may be offline and all workers have
61 * %WORKER_UNBOUND set and concurrency management disabled, and may
Tejun Heo24647572013-01-24 11:01:33 -080062 * be executing on any CPU. The pool behaves as an unbound one.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070063 *
Tejun Heobc3a1af2013-03-13 19:47:39 -070064 * Note that DISASSOCIATED should be flipped only while holding
65 * manager_mutex to avoid changing binding state while
Tejun Heo24647572013-01-24 11:01:33 -080066 * create_worker() is in progress.
Tejun Heobc2ae0f2012-07-17 12:39:27 -070067 */
Tejun Heo11ebea52012-07-12 14:46:37 -070068 POOL_MANAGE_WORKERS = 1 << 0, /* need to manage workers */
Tejun Heo24647572013-01-24 11:01:33 -080069 POOL_DISASSOCIATED = 1 << 2, /* cpu can't serve workers */
Tejun Heo35b6bb62013-01-24 11:01:33 -080070 POOL_FREEZING = 1 << 3, /* freeze in progress */
Tejun Heodb7bccf2010-06-29 10:07:12 +020071
Tejun Heoc8e55f32010-06-29 10:07:12 +020072 /* worker flags */
73 WORKER_STARTED = 1 << 0, /* started */
74 WORKER_DIE = 1 << 1, /* die die die */
75 WORKER_IDLE = 1 << 2, /* is idle */
Tejun Heoe22bee72010-06-29 10:07:14 +020076 WORKER_PREP = 1 << 3, /* preparing to run works */
Tejun Heofb0e7be2010-06-29 10:07:15 +020077 WORKER_CPU_INTENSIVE = 1 << 6, /* cpu intensive */
Tejun Heof3421792010-07-02 10:03:51 +020078 WORKER_UNBOUND = 1 << 7, /* worker is unbound */
Tejun Heoa9ab7752013-03-19 13:45:21 -070079 WORKER_REBOUND = 1 << 8, /* worker was rebound */
Tejun Heoe22bee72010-06-29 10:07:14 +020080
Tejun Heoa9ab7752013-03-19 13:45:21 -070081 WORKER_NOT_RUNNING = WORKER_PREP | WORKER_CPU_INTENSIVE |
82 WORKER_UNBOUND | WORKER_REBOUND,
Tejun Heodb7bccf2010-06-29 10:07:12 +020083
Tejun Heoe34cdddb2013-01-24 11:01:33 -080084 NR_STD_WORKER_POOLS = 2, /* # standard pools per cpu */
Tejun Heo4ce62e92012-07-13 22:16:44 -070085
Tejun Heo29c91e92013-03-12 11:30:03 -070086 UNBOUND_POOL_HASH_ORDER = 6, /* hashed by pool->attrs */
Tejun Heoc8e55f32010-06-29 10:07:12 +020087 BUSY_WORKER_HASH_ORDER = 6, /* 64 pointers */
Tejun Heodb7bccf2010-06-29 10:07:12 +020088
Tejun Heoe22bee72010-06-29 10:07:14 +020089 MAX_IDLE_WORKERS_RATIO = 4, /* 1/4 of busy can be idle */
90 IDLE_WORKER_TIMEOUT = 300 * HZ, /* keep idle ones for 5 mins */
91
Tejun Heo3233cdb2011-02-16 18:10:19 +010092 MAYDAY_INITIAL_TIMEOUT = HZ / 100 >= 2 ? HZ / 100 : 2,
93 /* call for help after 10ms
94 (min two ticks) */
Tejun Heoe22bee72010-06-29 10:07:14 +020095 MAYDAY_INTERVAL = HZ / 10, /* and then every 100ms */
96 CREATE_COOLDOWN = HZ, /* time to breath after fail */
Tejun Heoe22bee72010-06-29 10:07:14 +020097
98 /*
99 * Rescue workers are used only on emergencies and shared by
100 * all cpus. Give -20.
101 */
102 RESCUER_NICE_LEVEL = -20,
Tejun Heo32704762012-07-13 22:16:45 -0700103 HIGHPRI_NICE_LEVEL = -20,
Tejun Heoecf68812013-04-01 11:23:34 -0700104
105 WQ_NAME_LEN = 24,
Tejun Heoc8e55f32010-06-29 10:07:12 +0200106};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108/*
Tejun Heo4690c4a2010-06-29 10:07:10 +0200109 * Structure fields follow one of the following exclusion rules.
110 *
Tejun Heoe41e7042010-08-24 14:22:47 +0200111 * I: Modifiable by initialization/destruction paths and read-only for
112 * everyone else.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200113 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200114 * P: Preemption protected. Disabling preemption is enough and should
115 * only be modified and accessed from the local cpu.
116 *
Tejun Heod565ed62013-01-24 11:01:33 -0800117 * L: pool->lock protected. Access with pool->lock held.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200118 *
Tejun Heod565ed62013-01-24 11:01:33 -0800119 * X: During normal operation, modification requires pool->lock and should
120 * be done only from local cpu. Either disabling preemption on local
121 * cpu or grabbing pool->lock is enough for read access. If
122 * POOL_DISASSOCIATED is set, it's identical to L.
Tejun Heoe22bee72010-06-29 10:07:14 +0200123 *
Tejun Heo822d8402013-03-19 13:45:21 -0700124 * MG: pool->manager_mutex and pool->lock protected. Writes require both
125 * locks. Reads can happen under either lock.
126 *
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700127 * PL: wq_pool_mutex protected.
Tejun Heo76af4d92013-03-12 11:30:00 -0700128 *
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700129 * PR: wq_pool_mutex protected for writes. Sched-RCU protected for reads.
Tejun Heo5bcab332013-03-13 19:47:40 -0700130 *
Lai Jiangshan3c25a552013-03-25 16:57:17 -0700131 * WQ: wq->mutex protected.
132 *
Lai Jiangshanb5927602013-03-25 16:57:19 -0700133 * WR: wq->mutex protected for writes. Sched-RCU protected for reads.
Tejun Heo2e109a22013-03-13 19:47:40 -0700134 *
135 * MD: wq_mayday_lock protected.
Tejun Heo4690c4a2010-06-29 10:07:10 +0200136 */
137
Tejun Heo2eaebdb2013-01-18 14:05:55 -0800138/* struct worker is defined in workqueue_internal.h */
Tejun Heoc34056a2010-06-29 10:07:11 +0200139
Tejun Heobd7bdd42012-07-12 14:46:37 -0700140struct worker_pool {
Tejun Heod565ed62013-01-24 11:01:33 -0800141 spinlock_t lock; /* the pool lock */
Tejun Heod84ff052013-03-12 11:29:59 -0700142 int cpu; /* I: the associated cpu */
Tejun Heof3f90ad2013-04-01 11:23:34 -0700143 int node; /* I: the associated node ID */
Tejun Heo9daf9e62013-01-24 11:01:33 -0800144 int id; /* I: pool ID */
Tejun Heo11ebea52012-07-12 14:46:37 -0700145 unsigned int flags; /* X: flags */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700146
147 struct list_head worklist; /* L: list of pending works */
148 int nr_workers; /* L: total number of workers */
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700149
150 /* nr_idle includes the ones off idle_list for rebinding */
Tejun Heobd7bdd42012-07-12 14:46:37 -0700151 int nr_idle; /* L: currently idle ones */
152
153 struct list_head idle_list; /* X: list of idle workers */
154 struct timer_list idle_timer; /* L: worker idle timeout */
155 struct timer_list mayday_timer; /* L: SOS timer for workers */
156
Tejun Heoc5aa87b2013-03-13 16:51:36 -0700157 /* a workers is either on busy_hash or idle_list, or the manager */
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800158 DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER);
159 /* L: hash of busy workers */
160
Tejun Heobc3a1af2013-03-13 19:47:39 -0700161 /* see manage_workers() for details on the two manager mutexes */
Tejun Heo34a06bd2013-03-12 11:30:00 -0700162 struct mutex manager_arb; /* manager arbitration */
Tejun Heobc3a1af2013-03-13 19:47:39 -0700163 struct mutex manager_mutex; /* manager exclusion */
Tejun Heo822d8402013-03-19 13:45:21 -0700164 struct idr worker_idr; /* MG: worker IDs and iteration */
Tejun Heoe19e3972013-01-24 11:39:44 -0800165
Tejun Heo7a4e3442013-03-12 11:30:00 -0700166 struct workqueue_attrs *attrs; /* I: worker attributes */
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700167 struct hlist_node hash_node; /* PL: unbound_pool_hash node */
168 int refcnt; /* PL: refcnt for unbound pools */
Tejun Heo7a4e3442013-03-12 11:30:00 -0700169
Tejun Heoe19e3972013-01-24 11:39:44 -0800170 /*
171 * The current concurrency level. As it's likely to be accessed
172 * from other CPUs during try_to_wake_up(), put it in a separate
173 * cacheline.
174 */
175 atomic_t nr_running ____cacheline_aligned_in_smp;
Tejun Heo29c91e92013-03-12 11:30:03 -0700176
177 /*
178 * Destruction of pool is sched-RCU protected to allow dereferences
179 * from get_work_pool().
180 */
181 struct rcu_head rcu;
Tejun Heo8b03ae32010-06-29 10:07:12 +0200182} ____cacheline_aligned_in_smp;
183
184/*
Tejun Heo112202d2013-02-13 19:29:12 -0800185 * The per-pool workqueue. While queued, the lower WORK_STRUCT_FLAG_BITS
186 * of work_struct->data are used for flags and the remaining high bits
187 * point to the pwq; thus, pwqs need to be aligned at two's power of the
188 * number of flag bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
Tejun Heo112202d2013-02-13 19:29:12 -0800190struct pool_workqueue {
Tejun Heobd7bdd42012-07-12 14:46:37 -0700191 struct worker_pool *pool; /* I: the associated pool */
Tejun Heo4690c4a2010-06-29 10:07:10 +0200192 struct workqueue_struct *wq; /* I: the owning workqueue */
Tejun Heo73f53c42010-06-29 10:07:11 +0200193 int work_color; /* L: current color */
194 int flush_color; /* L: flushing color */
Tejun Heo8864b4e2013-03-12 11:30:04 -0700195 int refcnt; /* L: reference count */
Tejun Heo73f53c42010-06-29 10:07:11 +0200196 int nr_in_flight[WORK_NR_COLORS];
197 /* L: nr of in_flight works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200198 int nr_active; /* L: nr of active works */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200199 int max_active; /* L: max active works */
Tejun Heo1e19ffc2010-06-29 10:07:12 +0200200 struct list_head delayed_works; /* L: delayed works */
Lai Jiangshan3c25a552013-03-25 16:57:17 -0700201 struct list_head pwqs_node; /* WR: node on wq->pwqs */
Tejun Heo2e109a22013-03-13 19:47:40 -0700202 struct list_head mayday_node; /* MD: node on wq->maydays */
Tejun Heo8864b4e2013-03-12 11:30:04 -0700203
204 /*
205 * Release of unbound pwq is punted to system_wq. See put_pwq()
206 * and pwq_unbound_release_workfn() for details. pool_workqueue
207 * itself is also sched-RCU protected so that the first pwq can be
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -0700208 * determined without grabbing wq->mutex.
Tejun Heo8864b4e2013-03-12 11:30:04 -0700209 */
210 struct work_struct unbound_release_work;
211 struct rcu_head rcu;
Tejun Heoe904e6c2013-03-12 11:29:57 -0700212} __aligned(1 << WORK_STRUCT_FLAG_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/*
Tejun Heo73f53c42010-06-29 10:07:11 +0200215 * Structure used to wait for workqueue flush.
216 */
217struct wq_flusher {
Lai Jiangshan3c25a552013-03-25 16:57:17 -0700218 struct list_head list; /* WQ: list of flushers */
219 int flush_color; /* WQ: flush color waiting for */
Tejun Heo73f53c42010-06-29 10:07:11 +0200220 struct completion done; /* flush completion */
221};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Tejun Heo226223a2013-03-12 11:30:05 -0700223struct wq_device;
224
Tejun Heo73f53c42010-06-29 10:07:11 +0200225/*
Tejun Heoc5aa87b2013-03-13 16:51:36 -0700226 * The externally visible workqueue. It relays the issued work items to
227 * the appropriate worker_pool through its pool_workqueues.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
229struct workqueue_struct {
Lai Jiangshan87fc7412013-03-25 16:57:18 -0700230 unsigned int flags; /* WQ: WQ_* flags */
Tejun Heo420c0dd2013-03-12 11:29:59 -0700231 struct pool_workqueue __percpu *cpu_pwqs; /* I: per-cpu pwq's */
Lai Jiangshan3c25a552013-03-25 16:57:17 -0700232 struct list_head pwqs; /* WR: all pwqs of this wq */
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700233 struct list_head list; /* PL: list of all workqueues */
Tejun Heo73f53c42010-06-29 10:07:11 +0200234
Lai Jiangshan3c25a552013-03-25 16:57:17 -0700235 struct mutex mutex; /* protects this wq */
236 int work_color; /* WQ: current work color */
237 int flush_color; /* WQ: current flush color */
Tejun Heo112202d2013-02-13 19:29:12 -0800238 atomic_t nr_pwqs_to_flush; /* flush in progress */
Lai Jiangshan3c25a552013-03-25 16:57:17 -0700239 struct wq_flusher *first_flusher; /* WQ: first flusher */
240 struct list_head flusher_queue; /* WQ: flush waiters */
241 struct list_head flusher_overflow; /* WQ: flush overflow list */
Tejun Heo73f53c42010-06-29 10:07:11 +0200242
Tejun Heo2e109a22013-03-13 19:47:40 -0700243 struct list_head maydays; /* MD: pwqs requesting rescue */
Tejun Heoe22bee72010-06-29 10:07:14 +0200244 struct worker *rescuer; /* I: rescue worker */
245
Lai Jiangshan87fc7412013-03-25 16:57:18 -0700246 int nr_drainers; /* WQ: drain in progress */
Lai Jiangshana357fc02013-03-25 16:57:19 -0700247 int saved_max_active; /* WQ: saved pwq max_active */
Tejun Heo226223a2013-03-12 11:30:05 -0700248
Tejun Heo6029a912013-04-01 11:23:34 -0700249 struct workqueue_attrs *unbound_attrs; /* WQ: only for unbound wqs */
250
Tejun Heo226223a2013-03-12 11:30:05 -0700251#ifdef CONFIG_SYSFS
252 struct wq_device *wq_dev; /* I: for sysfs interface */
253#endif
Johannes Berg4e6045f2007-10-18 23:39:55 -0700254#ifdef CONFIG_LOCKDEP
Tejun Heo4690c4a2010-06-29 10:07:10 +0200255 struct lockdep_map lockdep_map;
Johannes Berg4e6045f2007-10-18 23:39:55 -0700256#endif
Tejun Heoecf68812013-04-01 11:23:34 -0700257 char name[WQ_NAME_LEN]; /* I: workqueue name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
Tejun Heoe904e6c2013-03-12 11:29:57 -0700260static struct kmem_cache *pwq_cache;
261
Tejun Heobce90382013-04-01 11:23:32 -0700262static int wq_numa_tbl_len; /* highest possible NUMA node id + 1 */
263static cpumask_var_t *wq_numa_possible_cpumask;
264 /* possible CPUs of each node */
265
266static bool wq_numa_enabled; /* unbound NUMA affinity enabled */
267
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700268static DEFINE_MUTEX(wq_pool_mutex); /* protects pools and workqueues list */
Tejun Heo2e109a22013-03-13 19:47:40 -0700269static DEFINE_SPINLOCK(wq_mayday_lock); /* protects wq->maydays list */
Tejun Heo5bcab332013-03-13 19:47:40 -0700270
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700271static LIST_HEAD(workqueues); /* PL: list of all workqueues */
272static bool workqueue_freezing; /* PL: have wqs started freezing? */
Tejun Heo7d19c5c2013-03-13 19:47:40 -0700273
274/* the per-cpu worker pools */
275static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
276 cpu_worker_pools);
277
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700278static DEFINE_IDR(worker_pool_idr); /* PR: idr of all pools */
Tejun Heo7d19c5c2013-03-13 19:47:40 -0700279
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700280/* PL: hash of all unbound pools keyed by pool->attrs */
Tejun Heo29c91e92013-03-12 11:30:03 -0700281static DEFINE_HASHTABLE(unbound_pool_hash, UNBOUND_POOL_HASH_ORDER);
282
Tejun Heoc5aa87b2013-03-13 16:51:36 -0700283/* I: attributes used when instantiating standard unbound pools on demand */
Tejun Heo29c91e92013-03-12 11:30:03 -0700284static struct workqueue_attrs *unbound_std_wq_attrs[NR_STD_WORKER_POOLS];
285
Tejun Heod320c032010-06-29 10:07:14 +0200286struct workqueue_struct *system_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200287EXPORT_SYMBOL_GPL(system_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300288struct workqueue_struct *system_highpri_wq __read_mostly;
Joonsoo Kim1aabe902012-08-15 23:25:39 +0900289EXPORT_SYMBOL_GPL(system_highpri_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300290struct workqueue_struct *system_long_wq __read_mostly;
Tejun Heod320c032010-06-29 10:07:14 +0200291EXPORT_SYMBOL_GPL(system_long_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300292struct workqueue_struct *system_unbound_wq __read_mostly;
Tejun Heof3421792010-07-02 10:03:51 +0200293EXPORT_SYMBOL_GPL(system_unbound_wq);
Valentin Ilie044c7822012-08-19 00:52:42 +0300294struct workqueue_struct *system_freezable_wq __read_mostly;
Tejun Heo24d51ad2011-02-21 09:52:50 +0100295EXPORT_SYMBOL_GPL(system_freezable_wq);
Tejun Heod320c032010-06-29 10:07:14 +0200296
Tejun Heo7d19c5c2013-03-13 19:47:40 -0700297static int worker_thread(void *__worker);
298static void copy_workqueue_attrs(struct workqueue_attrs *to,
299 const struct workqueue_attrs *from);
300
Tejun Heo97bd2342010-10-05 10:41:14 +0200301#define CREATE_TRACE_POINTS
302#include <trace/events/workqueue.h>
303
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700304#define assert_rcu_or_pool_mutex() \
Tejun Heo5bcab332013-03-13 19:47:40 -0700305 rcu_lockdep_assert(rcu_read_lock_sched_held() || \
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700306 lockdep_is_held(&wq_pool_mutex), \
307 "sched RCU or wq_pool_mutex should be held")
Tejun Heo5bcab332013-03-13 19:47:40 -0700308
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -0700309#define assert_rcu_or_wq_mutex(wq) \
Tejun Heo76af4d92013-03-12 11:30:00 -0700310 rcu_lockdep_assert(rcu_read_lock_sched_held() || \
Lai Jiangshanb5927602013-03-25 16:57:19 -0700311 lockdep_is_held(&wq->mutex), \
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -0700312 "sched RCU or wq->mutex should be held")
Tejun Heo76af4d92013-03-12 11:30:00 -0700313
Tejun Heo822d8402013-03-19 13:45:21 -0700314#ifdef CONFIG_LOCKDEP
315#define assert_manager_or_pool_lock(pool) \
Lai Jiangshan519e3c12013-03-20 03:28:21 +0800316 WARN_ONCE(debug_locks && \
317 !lockdep_is_held(&(pool)->manager_mutex) && \
Tejun Heo822d8402013-03-19 13:45:21 -0700318 !lockdep_is_held(&(pool)->lock), \
319 "pool->manager_mutex or ->lock should be held")
320#else
321#define assert_manager_or_pool_lock(pool) do { } while (0)
322#endif
323
Tejun Heof02ae732013-03-12 11:30:03 -0700324#define for_each_cpu_worker_pool(pool, cpu) \
325 for ((pool) = &per_cpu(cpu_worker_pools, cpu)[0]; \
326 (pool) < &per_cpu(cpu_worker_pools, cpu)[NR_STD_WORKER_POOLS]; \
Tejun Heo7a62c2c2013-03-12 11:30:03 -0700327 (pool)++)
Tejun Heo4ce62e92012-07-13 22:16:44 -0700328
Tejun Heo49e3cf42013-03-12 11:29:58 -0700329/**
Tejun Heo17116962013-03-12 11:29:58 -0700330 * for_each_pool - iterate through all worker_pools in the system
331 * @pool: iteration cursor
Tejun Heo611c92a2013-03-13 16:51:36 -0700332 * @pi: integer used for iteration
Tejun Heofa1b54e2013-03-12 11:30:00 -0700333 *
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700334 * This must be called either with wq_pool_mutex held or sched RCU read
335 * locked. If the pool needs to be used beyond the locking in effect, the
336 * caller is responsible for guaranteeing that the pool stays online.
Tejun Heofa1b54e2013-03-12 11:30:00 -0700337 *
338 * The if/else clause exists only for the lockdep assertion and can be
339 * ignored.
Tejun Heo17116962013-03-12 11:29:58 -0700340 */
Tejun Heo611c92a2013-03-13 16:51:36 -0700341#define for_each_pool(pool, pi) \
342 idr_for_each_entry(&worker_pool_idr, pool, pi) \
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700343 if (({ assert_rcu_or_pool_mutex(); false; })) { } \
Tejun Heofa1b54e2013-03-12 11:30:00 -0700344 else
Tejun Heo17116962013-03-12 11:29:58 -0700345
346/**
Tejun Heo822d8402013-03-19 13:45:21 -0700347 * for_each_pool_worker - iterate through all workers of a worker_pool
348 * @worker: iteration cursor
349 * @wi: integer used for iteration
350 * @pool: worker_pool to iterate workers of
351 *
352 * This must be called with either @pool->manager_mutex or ->lock held.
353 *
354 * The if/else clause exists only for the lockdep assertion and can be
355 * ignored.
356 */
357#define for_each_pool_worker(worker, wi, pool) \
358 idr_for_each_entry(&(pool)->worker_idr, (worker), (wi)) \
359 if (({ assert_manager_or_pool_lock((pool)); false; })) { } \
360 else
361
362/**
Tejun Heo49e3cf42013-03-12 11:29:58 -0700363 * for_each_pwq - iterate through all pool_workqueues of the specified workqueue
364 * @pwq: iteration cursor
365 * @wq: the target workqueue
Tejun Heo76af4d92013-03-12 11:30:00 -0700366 *
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -0700367 * This must be called either with wq->mutex held or sched RCU read locked.
Tejun Heo794b18b2013-03-13 19:47:40 -0700368 * If the pwq needs to be used beyond the locking in effect, the caller is
369 * responsible for guaranteeing that the pwq stays online.
Tejun Heo76af4d92013-03-12 11:30:00 -0700370 *
371 * The if/else clause exists only for the lockdep assertion and can be
372 * ignored.
Tejun Heo49e3cf42013-03-12 11:29:58 -0700373 */
374#define for_each_pwq(pwq, wq) \
Tejun Heo76af4d92013-03-12 11:30:00 -0700375 list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node) \
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -0700376 if (({ assert_rcu_or_wq_mutex(wq); false; })) { } \
Tejun Heo76af4d92013-03-12 11:30:00 -0700377 else
Tejun Heof3421792010-07-02 10:03:51 +0200378
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900379#ifdef CONFIG_DEBUG_OBJECTS_WORK
380
381static struct debug_obj_descr work_debug_descr;
382
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100383static void *work_debug_hint(void *addr)
384{
385 return ((struct work_struct *) addr)->func;
386}
387
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900388/*
389 * fixup_init is called when:
390 * - an active object is initialized
391 */
392static int work_fixup_init(void *addr, enum debug_obj_state state)
393{
394 struct work_struct *work = addr;
395
396 switch (state) {
397 case ODEBUG_STATE_ACTIVE:
398 cancel_work_sync(work);
399 debug_object_init(work, &work_debug_descr);
400 return 1;
401 default:
402 return 0;
403 }
404}
405
406/*
407 * fixup_activate is called when:
408 * - an active object is activated
409 * - an unknown object is activated (might be a statically initialized object)
410 */
411static int work_fixup_activate(void *addr, enum debug_obj_state state)
412{
413 struct work_struct *work = addr;
414
415 switch (state) {
416
417 case ODEBUG_STATE_NOTAVAILABLE:
418 /*
419 * This is not really a fixup. The work struct was
420 * statically initialized. We just make sure that it
421 * is tracked in the object tracker.
422 */
Tejun Heo22df02b2010-06-29 10:07:10 +0200423 if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900424 debug_object_init(work, &work_debug_descr);
425 debug_object_activate(work, &work_debug_descr);
426 return 0;
427 }
428 WARN_ON_ONCE(1);
429 return 0;
430
431 case ODEBUG_STATE_ACTIVE:
432 WARN_ON(1);
433
434 default:
435 return 0;
436 }
437}
438
439/*
440 * fixup_free is called when:
441 * - an active object is freed
442 */
443static int work_fixup_free(void *addr, enum debug_obj_state state)
444{
445 struct work_struct *work = addr;
446
447 switch (state) {
448 case ODEBUG_STATE_ACTIVE:
449 cancel_work_sync(work);
450 debug_object_free(work, &work_debug_descr);
451 return 1;
452 default:
453 return 0;
454 }
455}
456
457static struct debug_obj_descr work_debug_descr = {
458 .name = "work_struct",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100459 .debug_hint = work_debug_hint,
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900460 .fixup_init = work_fixup_init,
461 .fixup_activate = work_fixup_activate,
462 .fixup_free = work_fixup_free,
463};
464
465static inline void debug_work_activate(struct work_struct *work)
466{
467 debug_object_activate(work, &work_debug_descr);
468}
469
470static inline void debug_work_deactivate(struct work_struct *work)
471{
472 debug_object_deactivate(work, &work_debug_descr);
473}
474
475void __init_work(struct work_struct *work, int onstack)
476{
477 if (onstack)
478 debug_object_init_on_stack(work, &work_debug_descr);
479 else
480 debug_object_init(work, &work_debug_descr);
481}
482EXPORT_SYMBOL_GPL(__init_work);
483
484void destroy_work_on_stack(struct work_struct *work)
485{
486 debug_object_free(work, &work_debug_descr);
487}
488EXPORT_SYMBOL_GPL(destroy_work_on_stack);
489
490#else
491static inline void debug_work_activate(struct work_struct *work) { }
492static inline void debug_work_deactivate(struct work_struct *work) { }
493#endif
494
Tejun Heo9daf9e62013-01-24 11:01:33 -0800495/* allocate ID and assign it to @pool */
496static int worker_pool_assign_id(struct worker_pool *pool)
497{
498 int ret;
499
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700500 lockdep_assert_held(&wq_pool_mutex);
Tejun Heo5bcab332013-03-13 19:47:40 -0700501
Tejun Heofa1b54e2013-03-12 11:30:00 -0700502 do {
503 if (!idr_pre_get(&worker_pool_idr, GFP_KERNEL))
504 return -ENOMEM;
Tejun Heofa1b54e2013-03-12 11:30:00 -0700505 ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
Tejun Heofa1b54e2013-03-12 11:30:00 -0700506 } while (ret == -EAGAIN);
Tejun Heo9daf9e62013-01-24 11:01:33 -0800507
508 return ret;
509}
510
Tejun Heo76af4d92013-03-12 11:30:00 -0700511/**
512 * first_pwq - return the first pool_workqueue of the specified workqueue
513 * @wq: the target workqueue
514 *
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -0700515 * This must be called either with wq->mutex held or sched RCU read locked.
Tejun Heo794b18b2013-03-13 19:47:40 -0700516 * If the pwq needs to be used beyond the locking in effect, the caller is
517 * responsible for guaranteeing that the pwq stays online.
Tejun Heo76af4d92013-03-12 11:30:00 -0700518 */
Tejun Heo7fb98ea2013-03-12 11:30:00 -0700519static struct pool_workqueue *first_pwq(struct workqueue_struct *wq)
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700520{
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -0700521 assert_rcu_or_wq_mutex(wq);
Tejun Heo76af4d92013-03-12 11:30:00 -0700522 return list_first_or_null_rcu(&wq->pwqs, struct pool_workqueue,
523 pwqs_node);
Oleg Nesterova848e3b2007-05-09 02:34:17 -0700524}
525
Tejun Heo73f53c42010-06-29 10:07:11 +0200526static unsigned int work_color_to_flags(int color)
527{
528 return color << WORK_STRUCT_COLOR_SHIFT;
529}
530
531static int get_work_color(struct work_struct *work)
532{
533 return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
534 ((1 << WORK_STRUCT_COLOR_BITS) - 1);
535}
536
537static int work_next_color(int color)
538{
539 return (color + 1) % WORK_NR_COLORS;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -0700540}
541
David Howells4594bf12006-12-07 11:33:26 +0000542/*
Tejun Heo112202d2013-02-13 19:29:12 -0800543 * While queued, %WORK_STRUCT_PWQ is set and non flag bits of a work's data
544 * contain the pointer to the queued pwq. Once execution starts, the flag
Tejun Heo7c3eed52013-01-24 11:01:33 -0800545 * is cleared and the high bits contain OFFQ flags and pool ID.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200546 *
Tejun Heo112202d2013-02-13 19:29:12 -0800547 * set_work_pwq(), set_work_pool_and_clear_pending(), mark_work_canceling()
548 * and clear_work_data() can be used to set the pwq, pool or clear
Tejun Heobbb68df2012-08-03 10:30:46 -0700549 * work->data. These functions should only be called while the work is
550 * owned - ie. while the PENDING bit is set.
Tejun Heo7a22ad72010-06-29 10:07:13 +0200551 *
Tejun Heo112202d2013-02-13 19:29:12 -0800552 * get_work_pool() and get_work_pwq() can be used to obtain the pool or pwq
Tejun Heo7c3eed52013-01-24 11:01:33 -0800553 * corresponding to a work. Pool is available once the work has been
Tejun Heo112202d2013-02-13 19:29:12 -0800554 * queued anywhere after initialization until it is sync canceled. pwq is
Tejun Heo7c3eed52013-01-24 11:01:33 -0800555 * available only while the work item is queued.
Tejun Heobbb68df2012-08-03 10:30:46 -0700556 *
557 * %WORK_OFFQ_CANCELING is used to mark a work item which is being
558 * canceled. While being canceled, a work item may have its PENDING set
559 * but stay off timer and worklist for arbitrarily long and nobody should
560 * try to steal the PENDING bit.
David Howells4594bf12006-12-07 11:33:26 +0000561 */
Tejun Heo7a22ad72010-06-29 10:07:13 +0200562static inline void set_work_data(struct work_struct *work, unsigned long data,
563 unsigned long flags)
David Howells365970a2006-11-22 14:54:49 +0000564{
Tejun Heo6183c002013-03-12 11:29:57 -0700565 WARN_ON_ONCE(!work_pending(work));
Tejun Heo7a22ad72010-06-29 10:07:13 +0200566 atomic_long_set(&work->data, data | flags | work_static(work));
David Howells365970a2006-11-22 14:54:49 +0000567}
David Howells365970a2006-11-22 14:54:49 +0000568
Tejun Heo112202d2013-02-13 19:29:12 -0800569static void set_work_pwq(struct work_struct *work, struct pool_workqueue *pwq,
Tejun Heo7a22ad72010-06-29 10:07:13 +0200570 unsigned long extra_flags)
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200571{
Tejun Heo112202d2013-02-13 19:29:12 -0800572 set_work_data(work, (unsigned long)pwq,
573 WORK_STRUCT_PENDING | WORK_STRUCT_PWQ | extra_flags);
Oleg Nesterov4d707b92010-04-23 17:40:40 +0200574}
575
Lai Jiangshan4468a002013-02-06 18:04:53 -0800576static void set_work_pool_and_keep_pending(struct work_struct *work,
577 int pool_id)
578{
579 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT,
580 WORK_STRUCT_PENDING);
581}
582
Tejun Heo7c3eed52013-01-24 11:01:33 -0800583static void set_work_pool_and_clear_pending(struct work_struct *work,
584 int pool_id)
David Howells365970a2006-11-22 14:54:49 +0000585{
Tejun Heo23657bb2012-08-13 17:08:19 -0700586 /*
587 * The following wmb is paired with the implied mb in
588 * test_and_set_bit(PENDING) and ensures all updates to @work made
589 * here are visible to and precede any updates by the next PENDING
590 * owner.
591 */
592 smp_wmb();
Tejun Heo7c3eed52013-01-24 11:01:33 -0800593 set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200594}
595
596static void clear_work_data(struct work_struct *work)
597{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800598 smp_wmb(); /* see set_work_pool_and_clear_pending() */
599 set_work_data(work, WORK_STRUCT_NO_POOL, 0);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200600}
601
Tejun Heo112202d2013-02-13 19:29:12 -0800602static struct pool_workqueue *get_work_pwq(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200603{
Tejun Heoe1201532010-07-22 14:14:25 +0200604 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7a22ad72010-06-29 10:07:13 +0200605
Tejun Heo112202d2013-02-13 19:29:12 -0800606 if (data & WORK_STRUCT_PWQ)
Tejun Heoe1201532010-07-22 14:14:25 +0200607 return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
608 else
609 return NULL;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200610}
611
Tejun Heo7c3eed52013-01-24 11:01:33 -0800612/**
613 * get_work_pool - return the worker_pool a given work was associated with
614 * @work: the work item of interest
615 *
616 * Return the worker_pool @work was last associated with. %NULL if none.
Tejun Heofa1b54e2013-03-12 11:30:00 -0700617 *
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700618 * Pools are created and destroyed under wq_pool_mutex, and allows read
619 * access under sched-RCU read lock. As such, this function should be
620 * called under wq_pool_mutex or with preemption disabled.
Tejun Heofa1b54e2013-03-12 11:30:00 -0700621 *
622 * All fields of the returned pool are accessible as long as the above
623 * mentioned locking is in effect. If the returned pool needs to be used
624 * beyond the critical section, the caller is responsible for ensuring the
625 * returned pool is and stays online.
Tejun Heo7c3eed52013-01-24 11:01:33 -0800626 */
627static struct worker_pool *get_work_pool(struct work_struct *work)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200628{
Tejun Heoe1201532010-07-22 14:14:25 +0200629 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800630 int pool_id;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200631
Lai Jiangshan68e13a62013-03-25 16:57:17 -0700632 assert_rcu_or_pool_mutex();
Tejun Heofa1b54e2013-03-12 11:30:00 -0700633
Tejun Heo112202d2013-02-13 19:29:12 -0800634 if (data & WORK_STRUCT_PWQ)
635 return ((struct pool_workqueue *)
Tejun Heo7c3eed52013-01-24 11:01:33 -0800636 (data & WORK_STRUCT_WQ_DATA_MASK))->pool;
Tejun Heo7a22ad72010-06-29 10:07:13 +0200637
Tejun Heo7c3eed52013-01-24 11:01:33 -0800638 pool_id = data >> WORK_OFFQ_POOL_SHIFT;
639 if (pool_id == WORK_OFFQ_POOL_NONE)
Tejun Heo7a22ad72010-06-29 10:07:13 +0200640 return NULL;
641
Tejun Heofa1b54e2013-03-12 11:30:00 -0700642 return idr_find(&worker_pool_idr, pool_id);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800643}
644
645/**
646 * get_work_pool_id - return the worker pool ID a given work is associated with
647 * @work: the work item of interest
648 *
649 * Return the worker_pool ID @work was last associated with.
650 * %WORK_OFFQ_POOL_NONE if none.
651 */
652static int get_work_pool_id(struct work_struct *work)
653{
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800654 unsigned long data = atomic_long_read(&work->data);
Tejun Heo7c3eed52013-01-24 11:01:33 -0800655
Tejun Heo112202d2013-02-13 19:29:12 -0800656 if (data & WORK_STRUCT_PWQ)
657 return ((struct pool_workqueue *)
Lai Jiangshan54d5b7d2013-02-07 13:14:20 -0800658 (data & WORK_STRUCT_WQ_DATA_MASK))->pool->id;
659
660 return data >> WORK_OFFQ_POOL_SHIFT;
Tejun Heo7c3eed52013-01-24 11:01:33 -0800661}
662
Tejun Heobbb68df2012-08-03 10:30:46 -0700663static void mark_work_canceling(struct work_struct *work)
664{
Tejun Heo7c3eed52013-01-24 11:01:33 -0800665 unsigned long pool_id = get_work_pool_id(work);
Tejun Heobbb68df2012-08-03 10:30:46 -0700666
Tejun Heo7c3eed52013-01-24 11:01:33 -0800667 pool_id <<= WORK_OFFQ_POOL_SHIFT;
668 set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700669}
670
671static bool work_is_canceling(struct work_struct *work)
672{
673 unsigned long data = atomic_long_read(&work->data);
674
Tejun Heo112202d2013-02-13 19:29:12 -0800675 return !(data & WORK_STRUCT_PWQ) && (data & WORK_OFFQ_CANCELING);
Tejun Heobbb68df2012-08-03 10:30:46 -0700676}
677
David Howells365970a2006-11-22 14:54:49 +0000678/*
Tejun Heo32704762012-07-13 22:16:45 -0700679 * Policy functions. These define the policies on how the global worker
680 * pools are managed. Unless noted otherwise, these functions assume that
Tejun Heod565ed62013-01-24 11:01:33 -0800681 * they're being called with pool->lock held.
David Howells365970a2006-11-22 14:54:49 +0000682 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200683
Tejun Heo63d95a92012-07-12 14:46:37 -0700684static bool __need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000685{
Tejun Heoe19e3972013-01-24 11:39:44 -0800686 return !atomic_read(&pool->nr_running);
David Howells365970a2006-11-22 14:54:49 +0000687}
688
Tejun Heoe22bee72010-06-29 10:07:14 +0200689/*
690 * Need to wake up a worker? Called from anything but currently
691 * running workers.
Tejun Heo974271c2012-07-12 14:46:37 -0700692 *
693 * Note that, because unbound workers never contribute to nr_running, this
Tejun Heo706026c2013-01-24 11:01:34 -0800694 * function will always return %true for unbound pools as long as the
Tejun Heo974271c2012-07-12 14:46:37 -0700695 * worklist isn't empty.
Tejun Heoe22bee72010-06-29 10:07:14 +0200696 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700697static bool need_more_worker(struct worker_pool *pool)
David Howells365970a2006-11-22 14:54:49 +0000698{
Tejun Heo63d95a92012-07-12 14:46:37 -0700699 return !list_empty(&pool->worklist) && __need_more_worker(pool);
David Howells365970a2006-11-22 14:54:49 +0000700}
701
Tejun Heoe22bee72010-06-29 10:07:14 +0200702/* Can I start working? Called from busy but !running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700703static bool may_start_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200704{
Tejun Heo63d95a92012-07-12 14:46:37 -0700705 return pool->nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200706}
707
708/* Do I need to keep working? Called from currently running workers. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700709static bool keep_working(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200710{
Tejun Heoe19e3972013-01-24 11:39:44 -0800711 return !list_empty(&pool->worklist) &&
712 atomic_read(&pool->nr_running) <= 1;
Tejun Heoe22bee72010-06-29 10:07:14 +0200713}
714
715/* Do we need a new worker? Called from manager. */
Tejun Heo63d95a92012-07-12 14:46:37 -0700716static bool need_to_create_worker(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200717{
Tejun Heo63d95a92012-07-12 14:46:37 -0700718 return need_more_worker(pool) && !may_start_working(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200719}
720
721/* Do I need to be the manager? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700722static bool need_to_manage_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200723{
Tejun Heo63d95a92012-07-12 14:46:37 -0700724 return need_to_create_worker(pool) ||
Tejun Heo11ebea52012-07-12 14:46:37 -0700725 (pool->flags & POOL_MANAGE_WORKERS);
Tejun Heoe22bee72010-06-29 10:07:14 +0200726}
727
728/* Do we have too many workers and should some go away? */
Tejun Heo63d95a92012-07-12 14:46:37 -0700729static bool too_many_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +0200730{
Tejun Heo34a06bd2013-03-12 11:30:00 -0700731 bool managing = mutex_is_locked(&pool->manager_arb);
Tejun Heo63d95a92012-07-12 14:46:37 -0700732 int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
733 int nr_busy = pool->nr_workers - nr_idle;
Tejun Heoe22bee72010-06-29 10:07:14 +0200734
Lai Jiangshanea1abd62012-09-18 09:59:22 -0700735 /*
736 * nr_idle and idle_list may disagree if idle rebinding is in
737 * progress. Never return %true if idle_list is empty.
738 */
739 if (list_empty(&pool->idle_list))
740 return false;
741
Tejun Heoe22bee72010-06-29 10:07:14 +0200742 return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
743}
744
745/*
746 * Wake up functions.
747 */
748
Tejun Heo7e116292010-06-29 10:07:13 +0200749/* Return the first worker. Safe with preemption disabled */
Tejun Heo63d95a92012-07-12 14:46:37 -0700750static struct worker *first_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200751{
Tejun Heo63d95a92012-07-12 14:46:37 -0700752 if (unlikely(list_empty(&pool->idle_list)))
Tejun Heo7e116292010-06-29 10:07:13 +0200753 return NULL;
754
Tejun Heo63d95a92012-07-12 14:46:37 -0700755 return list_first_entry(&pool->idle_list, struct worker, entry);
Tejun Heo7e116292010-06-29 10:07:13 +0200756}
757
758/**
759 * wake_up_worker - wake up an idle worker
Tejun Heo63d95a92012-07-12 14:46:37 -0700760 * @pool: worker pool to wake worker from
Tejun Heo7e116292010-06-29 10:07:13 +0200761 *
Tejun Heo63d95a92012-07-12 14:46:37 -0700762 * Wake up the first idle worker of @pool.
Tejun Heo7e116292010-06-29 10:07:13 +0200763 *
764 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800765 * spin_lock_irq(pool->lock).
Tejun Heo7e116292010-06-29 10:07:13 +0200766 */
Tejun Heo63d95a92012-07-12 14:46:37 -0700767static void wake_up_worker(struct worker_pool *pool)
Tejun Heo7e116292010-06-29 10:07:13 +0200768{
Tejun Heo63d95a92012-07-12 14:46:37 -0700769 struct worker *worker = first_worker(pool);
Tejun Heo7e116292010-06-29 10:07:13 +0200770
771 if (likely(worker))
772 wake_up_process(worker->task);
773}
774
Tejun Heo4690c4a2010-06-29 10:07:10 +0200775/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200776 * wq_worker_waking_up - a worker is waking up
777 * @task: task waking up
778 * @cpu: CPU @task is waking up to
779 *
780 * This function is called during try_to_wake_up() when a worker is
781 * being awoken.
782 *
783 * CONTEXT:
784 * spin_lock_irq(rq->lock)
785 */
Tejun Heod84ff052013-03-12 11:29:59 -0700786void wq_worker_waking_up(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200787{
788 struct worker *worker = kthread_data(task);
789
Joonsoo Kim36576002012-10-26 23:03:49 +0900790 if (!(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoec22ca52013-01-24 11:01:33 -0800791 WARN_ON_ONCE(worker->pool->cpu != cpu);
Tejun Heoe19e3972013-01-24 11:39:44 -0800792 atomic_inc(&worker->pool->nr_running);
Joonsoo Kim36576002012-10-26 23:03:49 +0900793 }
Tejun Heoe22bee72010-06-29 10:07:14 +0200794}
795
796/**
797 * wq_worker_sleeping - a worker is going to sleep
798 * @task: task going to sleep
799 * @cpu: CPU in question, must be the current CPU number
800 *
801 * This function is called during schedule() when a busy worker is
802 * going to sleep. Worker on the same cpu can be woken up by
803 * returning pointer to its task.
804 *
805 * CONTEXT:
806 * spin_lock_irq(rq->lock)
807 *
808 * RETURNS:
809 * Worker task on @cpu to wake up, %NULL if none.
810 */
Tejun Heod84ff052013-03-12 11:29:59 -0700811struct task_struct *wq_worker_sleeping(struct task_struct *task, int cpu)
Tejun Heoe22bee72010-06-29 10:07:14 +0200812{
813 struct worker *worker = kthread_data(task), *to_wakeup = NULL;
Tejun Heo111c2252013-01-17 17:16:24 -0800814 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200815
Tejun Heo111c2252013-01-17 17:16:24 -0800816 /*
817 * Rescuers, which may not have all the fields set up like normal
818 * workers, also reach here, let's not access anything before
819 * checking NOT_RUNNING.
820 */
Steven Rostedt2d646722010-12-03 23:12:33 -0500821 if (worker->flags & WORKER_NOT_RUNNING)
Tejun Heoe22bee72010-06-29 10:07:14 +0200822 return NULL;
823
Tejun Heo111c2252013-01-17 17:16:24 -0800824 pool = worker->pool;
Tejun Heo111c2252013-01-17 17:16:24 -0800825
Tejun Heoe22bee72010-06-29 10:07:14 +0200826 /* this can only happen on the local cpu */
Tejun Heo6183c002013-03-12 11:29:57 -0700827 if (WARN_ON_ONCE(cpu != raw_smp_processor_id()))
828 return NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +0200829
830 /*
831 * The counterpart of the following dec_and_test, implied mb,
832 * worklist not empty test sequence is in insert_work().
833 * Please read comment there.
834 *
Tejun Heo628c78e2012-07-17 12:39:27 -0700835 * NOT_RUNNING is clear. This means that we're bound to and
836 * running on the local cpu w/ rq lock held and preemption
837 * disabled, which in turn means that none else could be
Tejun Heod565ed62013-01-24 11:01:33 -0800838 * manipulating idle_list, so dereferencing idle_list without pool
Tejun Heo628c78e2012-07-17 12:39:27 -0700839 * lock is safe.
Tejun Heoe22bee72010-06-29 10:07:14 +0200840 */
Tejun Heoe19e3972013-01-24 11:39:44 -0800841 if (atomic_dec_and_test(&pool->nr_running) &&
842 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700843 to_wakeup = first_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200844 return to_wakeup ? to_wakeup->task : NULL;
845}
846
847/**
848 * worker_set_flags - set worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200849 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200850 * @flags: flags to set
851 * @wakeup: wakeup an idle worker if necessary
852 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200853 * Set @flags in @worker->flags and adjust nr_running accordingly. If
854 * nr_running becomes zero and @wakeup is %true, an idle worker is
855 * woken up.
Tejun Heod302f012010-06-29 10:07:13 +0200856 *
Tejun Heocb444762010-07-02 10:03:50 +0200857 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800858 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200859 */
860static inline void worker_set_flags(struct worker *worker, unsigned int flags,
861 bool wakeup)
862{
Tejun Heobd7bdd42012-07-12 14:46:37 -0700863 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200864
Tejun Heocb444762010-07-02 10:03:50 +0200865 WARN_ON_ONCE(worker->task != current);
866
Tejun Heoe22bee72010-06-29 10:07:14 +0200867 /*
868 * If transitioning into NOT_RUNNING, adjust nr_running and
869 * wake up an idle worker as necessary if requested by
870 * @wakeup.
871 */
872 if ((flags & WORKER_NOT_RUNNING) &&
873 !(worker->flags & WORKER_NOT_RUNNING)) {
Tejun Heoe22bee72010-06-29 10:07:14 +0200874 if (wakeup) {
Tejun Heoe19e3972013-01-24 11:39:44 -0800875 if (atomic_dec_and_test(&pool->nr_running) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -0700876 !list_empty(&pool->worklist))
Tejun Heo63d95a92012-07-12 14:46:37 -0700877 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +0200878 } else
Tejun Heoe19e3972013-01-24 11:39:44 -0800879 atomic_dec(&pool->nr_running);
Tejun Heoe22bee72010-06-29 10:07:14 +0200880 }
881
Tejun Heod302f012010-06-29 10:07:13 +0200882 worker->flags |= flags;
883}
884
885/**
Tejun Heoe22bee72010-06-29 10:07:14 +0200886 * worker_clr_flags - clear worker flags and adjust nr_running accordingly
Tejun Heocb444762010-07-02 10:03:50 +0200887 * @worker: self
Tejun Heod302f012010-06-29 10:07:13 +0200888 * @flags: flags to clear
889 *
Tejun Heoe22bee72010-06-29 10:07:14 +0200890 * Clear @flags in @worker->flags and adjust nr_running accordingly.
Tejun Heod302f012010-06-29 10:07:13 +0200891 *
Tejun Heocb444762010-07-02 10:03:50 +0200892 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800893 * spin_lock_irq(pool->lock)
Tejun Heod302f012010-06-29 10:07:13 +0200894 */
895static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
896{
Tejun Heo63d95a92012-07-12 14:46:37 -0700897 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +0200898 unsigned int oflags = worker->flags;
899
Tejun Heocb444762010-07-02 10:03:50 +0200900 WARN_ON_ONCE(worker->task != current);
901
Tejun Heod302f012010-06-29 10:07:13 +0200902 worker->flags &= ~flags;
Tejun Heoe22bee72010-06-29 10:07:14 +0200903
Tejun Heo42c025f2011-01-11 15:58:49 +0100904 /*
905 * If transitioning out of NOT_RUNNING, increment nr_running. Note
906 * that the nested NOT_RUNNING is not a noop. NOT_RUNNING is mask
907 * of multiple flags, not a single flag.
908 */
Tejun Heoe22bee72010-06-29 10:07:14 +0200909 if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
910 if (!(worker->flags & WORKER_NOT_RUNNING))
Tejun Heoe19e3972013-01-24 11:39:44 -0800911 atomic_inc(&pool->nr_running);
Tejun Heod302f012010-06-29 10:07:13 +0200912}
913
914/**
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200915 * find_worker_executing_work - find worker which is executing a work
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800916 * @pool: pool of interest
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200917 * @work: work to find worker for
918 *
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800919 * Find a worker which is executing @work on @pool by searching
920 * @pool->busy_hash which is keyed by the address of @work. For a worker
Tejun Heoa2c1c572012-12-18 10:35:02 -0800921 * to match, its current execution should match the address of @work and
922 * its work function. This is to avoid unwanted dependency between
923 * unrelated work executions through a work item being recycled while still
924 * being executed.
925 *
926 * This is a bit tricky. A work item may be freed once its execution
927 * starts and nothing prevents the freed area from being recycled for
928 * another work item. If the same work item address ends up being reused
929 * before the original execution finishes, workqueue will identify the
930 * recycled work item as currently executing and make it wait until the
931 * current execution finishes, introducing an unwanted dependency.
932 *
Tejun Heoc5aa87b2013-03-13 16:51:36 -0700933 * This function checks the work item address and work function to avoid
934 * false positives. Note that this isn't complete as one may construct a
935 * work function which can introduce dependency onto itself through a
936 * recycled work item. Well, if somebody wants to shoot oneself in the
937 * foot that badly, there's only so much we can do, and if such deadlock
938 * actually occurs, it should be easy to locate the culprit work function.
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200939 *
940 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800941 * spin_lock_irq(pool->lock).
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200942 *
943 * RETURNS:
944 * Pointer to worker which is executing @work if found, NULL
945 * otherwise.
946 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -0800947static struct worker *find_worker_executing_work(struct worker_pool *pool,
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200948 struct work_struct *work)
949{
Sasha Levin42f85702012-12-17 10:01:23 -0500950 struct worker *worker;
Sasha Levin42f85702012-12-17 10:01:23 -0500951
Sasha Levinb67bfe02013-02-27 17:06:00 -0800952 hash_for_each_possible(pool->busy_hash, worker, hentry,
Tejun Heoa2c1c572012-12-18 10:35:02 -0800953 (unsigned long)work)
954 if (worker->current_work == work &&
955 worker->current_func == work->func)
Sasha Levin42f85702012-12-17 10:01:23 -0500956 return worker;
957
958 return NULL;
Tejun Heo8cca0ee2010-06-29 10:07:13 +0200959}
960
961/**
Tejun Heobf4ede02012-08-03 10:30:46 -0700962 * move_linked_works - move linked works to a list
963 * @work: start of series of works to be scheduled
964 * @head: target list to append @work to
965 * @nextp: out paramter for nested worklist walking
966 *
967 * Schedule linked works starting from @work to @head. Work series to
968 * be scheduled starts at @work and includes any consecutive work with
969 * WORK_STRUCT_LINKED set in its predecessor.
970 *
971 * If @nextp is not NULL, it's updated to point to the next work of
972 * the last scheduled work. This allows move_linked_works() to be
973 * nested inside outer list_for_each_entry_safe().
974 *
975 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -0800976 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -0700977 */
978static void move_linked_works(struct work_struct *work, struct list_head *head,
979 struct work_struct **nextp)
980{
981 struct work_struct *n;
982
983 /*
984 * Linked worklist will always end before the end of the list,
985 * use NULL for list head.
986 */
987 list_for_each_entry_safe_from(work, n, NULL, entry) {
988 list_move_tail(&work->entry, head);
989 if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
990 break;
991 }
992
993 /*
994 * If we're already inside safe list traversal and have moved
995 * multiple works to the scheduled queue, the next position
996 * needs to be updated.
997 */
998 if (nextp)
999 *nextp = n;
1000}
1001
Tejun Heo8864b4e2013-03-12 11:30:04 -07001002/**
1003 * get_pwq - get an extra reference on the specified pool_workqueue
1004 * @pwq: pool_workqueue to get
1005 *
1006 * Obtain an extra reference on @pwq. The caller should guarantee that
1007 * @pwq has positive refcnt and be holding the matching pool->lock.
1008 */
1009static void get_pwq(struct pool_workqueue *pwq)
1010{
1011 lockdep_assert_held(&pwq->pool->lock);
1012 WARN_ON_ONCE(pwq->refcnt <= 0);
1013 pwq->refcnt++;
1014}
1015
1016/**
1017 * put_pwq - put a pool_workqueue reference
1018 * @pwq: pool_workqueue to put
1019 *
1020 * Drop a reference of @pwq. If its refcnt reaches zero, schedule its
1021 * destruction. The caller should be holding the matching pool->lock.
1022 */
1023static void put_pwq(struct pool_workqueue *pwq)
1024{
1025 lockdep_assert_held(&pwq->pool->lock);
1026 if (likely(--pwq->refcnt))
1027 return;
1028 if (WARN_ON_ONCE(!(pwq->wq->flags & WQ_UNBOUND)))
1029 return;
1030 /*
1031 * @pwq can't be released under pool->lock, bounce to
1032 * pwq_unbound_release_workfn(). This never recurses on the same
1033 * pool->lock as this path is taken only for unbound workqueues and
1034 * the release work item is scheduled on a per-cpu workqueue. To
1035 * avoid lockdep warning, unbound pool->locks are given lockdep
1036 * subclass of 1 in get_unbound_pool().
1037 */
1038 schedule_work(&pwq->unbound_release_work);
1039}
1040
Tejun Heo112202d2013-02-13 19:29:12 -08001041static void pwq_activate_delayed_work(struct work_struct *work)
Tejun Heobf4ede02012-08-03 10:30:46 -07001042{
Tejun Heo112202d2013-02-13 19:29:12 -08001043 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobf4ede02012-08-03 10:30:46 -07001044
1045 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -08001046 move_linked_works(work, &pwq->pool->worklist, NULL);
Tejun Heobf4ede02012-08-03 10:30:46 -07001047 __clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
Tejun Heo112202d2013-02-13 19:29:12 -08001048 pwq->nr_active++;
Tejun Heobf4ede02012-08-03 10:30:46 -07001049}
1050
Tejun Heo112202d2013-02-13 19:29:12 -08001051static void pwq_activate_first_delayed(struct pool_workqueue *pwq)
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001052{
Tejun Heo112202d2013-02-13 19:29:12 -08001053 struct work_struct *work = list_first_entry(&pwq->delayed_works,
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001054 struct work_struct, entry);
1055
Tejun Heo112202d2013-02-13 19:29:12 -08001056 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001057}
1058
Tejun Heobf4ede02012-08-03 10:30:46 -07001059/**
Tejun Heo112202d2013-02-13 19:29:12 -08001060 * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight
1061 * @pwq: pwq of interest
Tejun Heobf4ede02012-08-03 10:30:46 -07001062 * @color: color of work which left the queue
Tejun Heobf4ede02012-08-03 10:30:46 -07001063 *
1064 * A work either has completed or is removed from pending queue,
Tejun Heo112202d2013-02-13 19:29:12 -08001065 * decrement nr_in_flight of its pwq and handle workqueue flushing.
Tejun Heobf4ede02012-08-03 10:30:46 -07001066 *
1067 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001068 * spin_lock_irq(pool->lock).
Tejun Heobf4ede02012-08-03 10:30:46 -07001069 */
Tejun Heo112202d2013-02-13 19:29:12 -08001070static void pwq_dec_nr_in_flight(struct pool_workqueue *pwq, int color)
Tejun Heobf4ede02012-08-03 10:30:46 -07001071{
Tejun Heo8864b4e2013-03-12 11:30:04 -07001072 /* uncolored work items don't participate in flushing or nr_active */
Tejun Heobf4ede02012-08-03 10:30:46 -07001073 if (color == WORK_NO_COLOR)
Tejun Heo8864b4e2013-03-12 11:30:04 -07001074 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001075
Tejun Heo112202d2013-02-13 19:29:12 -08001076 pwq->nr_in_flight[color]--;
Tejun Heobf4ede02012-08-03 10:30:46 -07001077
Tejun Heo112202d2013-02-13 19:29:12 -08001078 pwq->nr_active--;
1079 if (!list_empty(&pwq->delayed_works)) {
Lai Jiangshanb3f9f402012-09-18 10:40:00 -07001080 /* one down, submit a delayed one */
Tejun Heo112202d2013-02-13 19:29:12 -08001081 if (pwq->nr_active < pwq->max_active)
1082 pwq_activate_first_delayed(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001083 }
1084
1085 /* is flush in progress and are we at the flushing tip? */
Tejun Heo112202d2013-02-13 19:29:12 -08001086 if (likely(pwq->flush_color != color))
Tejun Heo8864b4e2013-03-12 11:30:04 -07001087 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001088
1089 /* are there still in-flight works? */
Tejun Heo112202d2013-02-13 19:29:12 -08001090 if (pwq->nr_in_flight[color])
Tejun Heo8864b4e2013-03-12 11:30:04 -07001091 goto out_put;
Tejun Heobf4ede02012-08-03 10:30:46 -07001092
Tejun Heo112202d2013-02-13 19:29:12 -08001093 /* this pwq is done, clear flush_color */
1094 pwq->flush_color = -1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001095
1096 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001097 * If this was the last pwq, wake up the first flusher. It
Tejun Heobf4ede02012-08-03 10:30:46 -07001098 * will handle the rest.
1099 */
Tejun Heo112202d2013-02-13 19:29:12 -08001100 if (atomic_dec_and_test(&pwq->wq->nr_pwqs_to_flush))
1101 complete(&pwq->wq->first_flusher->done);
Tejun Heo8864b4e2013-03-12 11:30:04 -07001102out_put:
1103 put_pwq(pwq);
Tejun Heobf4ede02012-08-03 10:30:46 -07001104}
1105
Tejun Heo36e227d2012-08-03 10:30:46 -07001106/**
Tejun Heobbb68df2012-08-03 10:30:46 -07001107 * try_to_grab_pending - steal work item from worklist and disable irq
Tejun Heo36e227d2012-08-03 10:30:46 -07001108 * @work: work item to steal
1109 * @is_dwork: @work is a delayed_work
Tejun Heobbb68df2012-08-03 10:30:46 -07001110 * @flags: place to store irq state
Tejun Heo36e227d2012-08-03 10:30:46 -07001111 *
1112 * Try to grab PENDING bit of @work. This function can handle @work in any
1113 * stable state - idle, on timer or on worklist. Return values are
1114 *
1115 * 1 if @work was pending and we successfully stole PENDING
1116 * 0 if @work was idle and we claimed PENDING
1117 * -EAGAIN if PENDING couldn't be grabbed at the moment, safe to busy-retry
Tejun Heobbb68df2012-08-03 10:30:46 -07001118 * -ENOENT if someone else is canceling @work, this state may persist
1119 * for arbitrarily long
Tejun Heo36e227d2012-08-03 10:30:46 -07001120 *
Tejun Heobbb68df2012-08-03 10:30:46 -07001121 * On >= 0 return, the caller owns @work's PENDING bit. To avoid getting
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001122 * interrupted while holding PENDING and @work off queue, irq must be
1123 * disabled on entry. This, combined with delayed_work->timer being
1124 * irqsafe, ensures that we return -EAGAIN for finite short period of time.
Tejun Heobbb68df2012-08-03 10:30:46 -07001125 *
1126 * On successful return, >= 0, irq is disabled and the caller is
1127 * responsible for releasing it using local_irq_restore(*@flags).
1128 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001129 * This function is safe to call from any context including IRQ handler.
Tejun Heobf4ede02012-08-03 10:30:46 -07001130 */
Tejun Heobbb68df2012-08-03 10:30:46 -07001131static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1132 unsigned long *flags)
Tejun Heobf4ede02012-08-03 10:30:46 -07001133{
Tejun Heod565ed62013-01-24 11:01:33 -08001134 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08001135 struct pool_workqueue *pwq;
Tejun Heobf4ede02012-08-03 10:30:46 -07001136
Tejun Heobbb68df2012-08-03 10:30:46 -07001137 local_irq_save(*flags);
1138
Tejun Heo36e227d2012-08-03 10:30:46 -07001139 /* try to steal the timer if it exists */
1140 if (is_dwork) {
1141 struct delayed_work *dwork = to_delayed_work(work);
1142
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001143 /*
1144 * dwork->timer is irqsafe. If del_timer() fails, it's
1145 * guaranteed that the timer is not queued anywhere and not
1146 * running on the local CPU.
1147 */
Tejun Heo36e227d2012-08-03 10:30:46 -07001148 if (likely(del_timer(&dwork->timer)))
1149 return 1;
1150 }
1151
1152 /* try to claim PENDING the normal way */
Tejun Heobf4ede02012-08-03 10:30:46 -07001153 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1154 return 0;
1155
1156 /*
1157 * The queueing is in progress, or it is already queued. Try to
1158 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1159 */
Tejun Heod565ed62013-01-24 11:01:33 -08001160 pool = get_work_pool(work);
1161 if (!pool)
Tejun Heobbb68df2012-08-03 10:30:46 -07001162 goto fail;
Tejun Heobf4ede02012-08-03 10:30:46 -07001163
Tejun Heod565ed62013-01-24 11:01:33 -08001164 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001165 /*
Tejun Heo112202d2013-02-13 19:29:12 -08001166 * work->data is guaranteed to point to pwq only while the work
1167 * item is queued on pwq->wq, and both updating work->data to point
1168 * to pwq on queueing and to pool on dequeueing are done under
1169 * pwq->pool->lock. This in turn guarantees that, if work->data
1170 * points to pwq which is associated with a locked pool, the work
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08001171 * item is currently queued on that pool.
1172 */
Tejun Heo112202d2013-02-13 19:29:12 -08001173 pwq = get_work_pwq(work);
1174 if (pwq && pwq->pool == pool) {
Tejun Heo16062832013-02-06 18:04:53 -08001175 debug_work_deactivate(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001176
Tejun Heo16062832013-02-06 18:04:53 -08001177 /*
1178 * A delayed work item cannot be grabbed directly because
1179 * it might have linked NO_COLOR work items which, if left
Tejun Heo112202d2013-02-13 19:29:12 -08001180 * on the delayed_list, will confuse pwq->nr_active
Tejun Heo16062832013-02-06 18:04:53 -08001181 * management later on and cause stall. Make sure the work
1182 * item is activated before grabbing.
1183 */
1184 if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
Tejun Heo112202d2013-02-13 19:29:12 -08001185 pwq_activate_delayed_work(work);
Lai Jiangshan3aa62492012-09-18 10:40:00 -07001186
Tejun Heo16062832013-02-06 18:04:53 -08001187 list_del_init(&work->entry);
Tejun Heo112202d2013-02-13 19:29:12 -08001188 pwq_dec_nr_in_flight(get_work_pwq(work), get_work_color(work));
Tejun Heo36e227d2012-08-03 10:30:46 -07001189
Tejun Heo112202d2013-02-13 19:29:12 -08001190 /* work->data points to pwq iff queued, point to pool */
Tejun Heo16062832013-02-06 18:04:53 -08001191 set_work_pool_and_keep_pending(work, pool->id);
Lai Jiangshan4468a002013-02-06 18:04:53 -08001192
Tejun Heo16062832013-02-06 18:04:53 -08001193 spin_unlock(&pool->lock);
1194 return 1;
Tejun Heobf4ede02012-08-03 10:30:46 -07001195 }
Tejun Heod565ed62013-01-24 11:01:33 -08001196 spin_unlock(&pool->lock);
Tejun Heobbb68df2012-08-03 10:30:46 -07001197fail:
1198 local_irq_restore(*flags);
1199 if (work_is_canceling(work))
1200 return -ENOENT;
1201 cpu_relax();
Tejun Heo36e227d2012-08-03 10:30:46 -07001202 return -EAGAIN;
Tejun Heobf4ede02012-08-03 10:30:46 -07001203}
1204
1205/**
Tejun Heo706026c2013-01-24 11:01:34 -08001206 * insert_work - insert a work into a pool
Tejun Heo112202d2013-02-13 19:29:12 -08001207 * @pwq: pwq @work belongs to
Tejun Heo4690c4a2010-06-29 10:07:10 +02001208 * @work: work to insert
1209 * @head: insertion point
1210 * @extra_flags: extra WORK_STRUCT_* flags to set
1211 *
Tejun Heo112202d2013-02-13 19:29:12 -08001212 * Insert @work which belongs to @pwq after @head. @extra_flags is or'd to
Tejun Heo706026c2013-01-24 11:01:34 -08001213 * work_struct flags.
Tejun Heo4690c4a2010-06-29 10:07:10 +02001214 *
1215 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001216 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02001217 */
Tejun Heo112202d2013-02-13 19:29:12 -08001218static void insert_work(struct pool_workqueue *pwq, struct work_struct *work,
1219 struct list_head *head, unsigned int extra_flags)
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001220{
Tejun Heo112202d2013-02-13 19:29:12 -08001221 struct worker_pool *pool = pwq->pool;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01001222
Tejun Heo4690c4a2010-06-29 10:07:10 +02001223 /* we own @work, set data and link */
Tejun Heo112202d2013-02-13 19:29:12 -08001224 set_work_pwq(work, pwq, extra_flags);
Oleg Nesterov1a4d9b02008-07-25 01:47:47 -07001225 list_add_tail(&work->entry, head);
Tejun Heo8864b4e2013-03-12 11:30:04 -07001226 get_pwq(pwq);
Tejun Heoe22bee72010-06-29 10:07:14 +02001227
1228 /*
Tejun Heoc5aa87b2013-03-13 16:51:36 -07001229 * Ensure either wq_worker_sleeping() sees the above
1230 * list_add_tail() or we see zero nr_running to avoid workers lying
1231 * around lazily while there are works to be processed.
Tejun Heoe22bee72010-06-29 10:07:14 +02001232 */
1233 smp_mb();
1234
Tejun Heo63d95a92012-07-12 14:46:37 -07001235 if (__need_more_worker(pool))
1236 wake_up_worker(pool);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07001237}
1238
Tejun Heoc8efcc22010-12-20 19:32:04 +01001239/*
1240 * Test whether @work is being queued from another work executing on the
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001241 * same workqueue.
Tejun Heoc8efcc22010-12-20 19:32:04 +01001242 */
1243static bool is_chained_work(struct workqueue_struct *wq)
1244{
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001245 struct worker *worker;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001246
Tejun Heo8d03ecf2013-02-13 19:29:10 -08001247 worker = current_wq_worker();
1248 /*
1249 * Return %true iff I'm a worker execuing a work item on @wq. If
1250 * I'm @worker, it's safe to dereference it without locking.
1251 */
Tejun Heo112202d2013-02-13 19:29:12 -08001252 return worker && worker->current_pwq->wq == wq;
Tejun Heoc8efcc22010-12-20 19:32:04 +01001253}
1254
Tejun Heod84ff052013-03-12 11:29:59 -07001255static void __queue_work(int cpu, struct workqueue_struct *wq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 struct work_struct *work)
1257{
Tejun Heo112202d2013-02-13 19:29:12 -08001258 struct pool_workqueue *pwq;
Tejun Heoc9178082013-03-12 11:30:04 -07001259 struct worker_pool *last_pool;
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001260 struct list_head *worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001261 unsigned int work_flags;
Joonsoo Kimb75cac92012-08-15 23:25:37 +09001262 unsigned int req_cpu = cpu;
Tejun Heo8930cab2012-08-03 10:30:45 -07001263
1264 /*
1265 * While a work item is PENDING && off queue, a task trying to
1266 * steal the PENDING will busy-loop waiting for it to either get
1267 * queued or lose PENDING. Grabbing PENDING and queueing should
1268 * happen with IRQ disabled.
1269 */
1270 WARN_ON_ONCE(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09001272 debug_work_activate(work);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001273
Tejun Heoc8efcc22010-12-20 19:32:04 +01001274 /* if dying, only works from the same workqueue are allowed */
Tejun Heo618b01e2013-03-12 11:30:04 -07001275 if (unlikely(wq->flags & __WQ_DRAINING) &&
Tejun Heoc8efcc22010-12-20 19:32:04 +01001276 WARN_ON_ONCE(!is_chained_work(wq)))
Tejun Heoe41e7042010-08-24 14:22:47 +02001277 return;
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07001278retry:
Tejun Heoc9178082013-03-12 11:30:04 -07001279 /* pwq which will be used unless @work is executing elsewhere */
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001280 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo57469822012-08-03 10:30:45 -07001281 if (cpu == WORK_CPU_UNBOUND)
Tejun Heoc7fc77f2010-07-02 10:03:51 +02001282 cpu = raw_smp_processor_id();
Tejun Heo7fb98ea2013-03-12 11:30:00 -07001283 pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
Tejun Heoc9178082013-03-12 11:30:04 -07001284 } else {
1285 pwq = first_pwq(wq);
1286 }
Tejun Heodbf25762012-08-20 14:51:23 -07001287
Tejun Heoc9178082013-03-12 11:30:04 -07001288 /*
1289 * If @work was previously on a different pool, it might still be
1290 * running there, in which case the work needs to be queued on that
1291 * pool to guarantee non-reentrancy.
1292 */
1293 last_pool = get_work_pool(work);
1294 if (last_pool && last_pool != pwq->pool) {
1295 struct worker *worker;
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001296
Tejun Heoc9178082013-03-12 11:30:04 -07001297 spin_lock(&last_pool->lock);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001298
Tejun Heoc9178082013-03-12 11:30:04 -07001299 worker = find_worker_executing_work(last_pool, work);
Tejun Heo18aa9ef2010-06-29 10:07:13 +02001300
Tejun Heoc9178082013-03-12 11:30:04 -07001301 if (worker && worker->current_pwq->wq == wq) {
1302 pwq = worker->current_pwq;
Tejun Heo8930cab2012-08-03 10:30:45 -07001303 } else {
Tejun Heoc9178082013-03-12 11:30:04 -07001304 /* meh... not running there, queue here */
1305 spin_unlock(&last_pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08001306 spin_lock(&pwq->pool->lock);
Tejun Heo8930cab2012-08-03 10:30:45 -07001307 }
Tejun Heof3421792010-07-02 10:03:51 +02001308 } else {
Tejun Heo112202d2013-02-13 19:29:12 -08001309 spin_lock(&pwq->pool->lock);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001310 }
1311
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07001312 /*
1313 * pwq is determined and locked. For unbound pools, we could have
1314 * raced with pwq release and it could already be dead. If its
1315 * refcnt is zero, repeat pwq selection. Note that pwqs never die
1316 * without another pwq replacing it as the first pwq or while a
1317 * work item is executing on it, so the retying is guaranteed to
1318 * make forward-progress.
1319 */
1320 if (unlikely(!pwq->refcnt)) {
1321 if (wq->flags & WQ_UNBOUND) {
1322 spin_unlock(&pwq->pool->lock);
1323 cpu_relax();
1324 goto retry;
1325 }
1326 /* oops */
1327 WARN_ONCE(true, "workqueue: per-cpu pwq for %s on cpu%d has 0 refcnt",
1328 wq->name, cpu);
1329 }
1330
Tejun Heo112202d2013-02-13 19:29:12 -08001331 /* pwq determined, queue */
1332 trace_workqueue_queue_work(req_cpu, pwq, work);
Tejun Heo502ca9d2010-06-29 10:07:13 +02001333
Dan Carpenterf5b25522012-04-13 22:06:58 +03001334 if (WARN_ON(!list_empty(&work->entry))) {
Tejun Heo112202d2013-02-13 19:29:12 -08001335 spin_unlock(&pwq->pool->lock);
Dan Carpenterf5b25522012-04-13 22:06:58 +03001336 return;
1337 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001338
Tejun Heo112202d2013-02-13 19:29:12 -08001339 pwq->nr_in_flight[pwq->work_color]++;
1340 work_flags = work_color_to_flags(pwq->work_color);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001341
Tejun Heo112202d2013-02-13 19:29:12 -08001342 if (likely(pwq->nr_active < pwq->max_active)) {
Tejun Heocdadf002010-10-05 10:49:55 +02001343 trace_workqueue_activate_work(work);
Tejun Heo112202d2013-02-13 19:29:12 -08001344 pwq->nr_active++;
1345 worklist = &pwq->pool->worklist;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001346 } else {
1347 work_flags |= WORK_STRUCT_DELAYED;
Tejun Heo112202d2013-02-13 19:29:12 -08001348 worklist = &pwq->delayed_works;
Tejun Heo8a2e8e5d2010-08-25 10:33:56 +02001349 }
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001350
Tejun Heo112202d2013-02-13 19:29:12 -08001351 insert_work(pwq, work, worklist, work_flags);
Tejun Heo1e19ffc2010-06-29 10:07:12 +02001352
Tejun Heo112202d2013-02-13 19:29:12 -08001353 spin_unlock(&pwq->pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001356/**
Zhang Ruic1a220e2008-07-23 21:28:39 -07001357 * queue_work_on - queue work on specific cpu
1358 * @cpu: CPU number to execute work on
1359 * @wq: workqueue to use
1360 * @work: work to queue
1361 *
Tejun Heod4283e92012-08-03 10:30:44 -07001362 * Returns %false if @work was already on a queue, %true otherwise.
Zhang Ruic1a220e2008-07-23 21:28:39 -07001363 *
1364 * We queue the work to a specific CPU, the caller must ensure it
1365 * can't go away.
1366 */
Tejun Heod4283e92012-08-03 10:30:44 -07001367bool queue_work_on(int cpu, struct workqueue_struct *wq,
1368 struct work_struct *work)
Zhang Ruic1a220e2008-07-23 21:28:39 -07001369{
Tejun Heod4283e92012-08-03 10:30:44 -07001370 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001371 unsigned long flags;
1372
1373 local_irq_save(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001374
Tejun Heo22df02b2010-06-29 10:07:10 +02001375 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo4690c4a2010-06-29 10:07:10 +02001376 __queue_work(cpu, wq, work);
Tejun Heod4283e92012-08-03 10:30:44 -07001377 ret = true;
Zhang Ruic1a220e2008-07-23 21:28:39 -07001378 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001379
1380 local_irq_restore(flags);
Zhang Ruic1a220e2008-07-23 21:28:39 -07001381 return ret;
1382}
1383EXPORT_SYMBOL_GPL(queue_work_on);
1384
Tejun Heod8e794d2012-08-03 10:30:45 -07001385void delayed_work_timer_fn(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
David Howells52bad642006-11-22 14:54:01 +00001387 struct delayed_work *dwork = (struct delayed_work *)__data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001389 /* should have been called from irqsafe timer with irq already off */
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001390 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
Konstantin Khlebnikov1438ade52013-01-24 16:36:31 +04001392EXPORT_SYMBOL(delayed_work_timer_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001394static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
1395 struct delayed_work *dwork, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001397 struct timer_list *timer = &dwork->timer;
1398 struct work_struct *work = &dwork->work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001400 WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
1401 timer->data != (unsigned long)dwork);
Tejun Heofc4b5142012-12-04 07:40:39 -08001402 WARN_ON_ONCE(timer_pending(timer));
1403 WARN_ON_ONCE(!list_empty(&work->entry));
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001404
Tejun Heo8852aac2012-12-01 16:23:42 -08001405 /*
1406 * If @delay is 0, queue @dwork->work immediately. This is for
1407 * both optimization and correctness. The earliest @timer can
1408 * expire is on the closest next tick and delayed_work users depend
1409 * on that there's no such delay when @delay is 0.
1410 */
1411 if (!delay) {
1412 __queue_work(cpu, wq, &dwork->work);
1413 return;
1414 }
1415
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001416 timer_stats_timer_set_start_info(&dwork->timer);
1417
Lai Jiangshan60c057b2013-02-06 18:04:53 -08001418 dwork->wq = wq;
Tejun Heo12650572012-08-08 09:38:42 -07001419 dwork->cpu = cpu;
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001420 timer->expires = jiffies + delay;
1421
1422 if (unlikely(cpu != WORK_CPU_UNBOUND))
1423 add_timer_on(timer, cpu);
1424 else
1425 add_timer(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
1427
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001428/**
1429 * queue_delayed_work_on - queue work on specific CPU after delay
1430 * @cpu: CPU number to execute work on
1431 * @wq: workqueue to use
Randy Dunlapaf9997e2006-12-22 01:06:52 -08001432 * @dwork: work to queue
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001433 * @delay: number of jiffies to wait before queueing
1434 *
Tejun Heo715f1302012-08-03 10:30:46 -07001435 * Returns %false if @work was already on a queue, %true otherwise. If
1436 * @delay is zero and @dwork is idle, it will be scheduled for immediate
1437 * execution.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07001438 */
Tejun Heod4283e92012-08-03 10:30:44 -07001439bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
1440 struct delayed_work *dwork, unsigned long delay)
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001441{
David Howells52bad642006-11-22 14:54:01 +00001442 struct work_struct *work = &dwork->work;
Tejun Heod4283e92012-08-03 10:30:44 -07001443 bool ret = false;
Tejun Heo8930cab2012-08-03 10:30:45 -07001444 unsigned long flags;
1445
1446 /* read the comment in __queue_work() */
1447 local_irq_save(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001448
Tejun Heo22df02b2010-06-29 10:07:10 +02001449 if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
Tejun Heo7beb2ed2012-08-03 10:30:46 -07001450 __queue_delayed_work(cpu, wq, dwork, delay);
Tejun Heod4283e92012-08-03 10:30:44 -07001451 ret = true;
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001452 }
Tejun Heo8930cab2012-08-03 10:30:45 -07001453
1454 local_irq_restore(flags);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -07001455 return ret;
1456}
Dave Jonesae90dd52006-06-30 01:40:45 -04001457EXPORT_SYMBOL_GPL(queue_delayed_work_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Tejun Heoc8e55f32010-06-29 10:07:12 +02001459/**
Tejun Heo8376fe22012-08-03 10:30:47 -07001460 * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
1461 * @cpu: CPU number to execute work on
1462 * @wq: workqueue to use
1463 * @dwork: work to queue
1464 * @delay: number of jiffies to wait before queueing
1465 *
1466 * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
1467 * modify @dwork's timer so that it expires after @delay. If @delay is
1468 * zero, @work is guaranteed to be scheduled immediately regardless of its
1469 * current state.
1470 *
1471 * Returns %false if @dwork was idle and queued, %true if @dwork was
1472 * pending and its timer was modified.
1473 *
Tejun Heoe0aecdd2012-08-21 13:18:24 -07001474 * This function is safe to call from any context including IRQ handler.
Tejun Heo8376fe22012-08-03 10:30:47 -07001475 * See try_to_grab_pending() for details.
1476 */
1477bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
1478 struct delayed_work *dwork, unsigned long delay)
1479{
1480 unsigned long flags;
1481 int ret;
1482
1483 do {
1484 ret = try_to_grab_pending(&dwork->work, true, &flags);
1485 } while (unlikely(ret == -EAGAIN));
1486
1487 if (likely(ret >= 0)) {
1488 __queue_delayed_work(cpu, wq, dwork, delay);
1489 local_irq_restore(flags);
1490 }
1491
1492 /* -ENOENT from try_to_grab_pending() becomes %true */
1493 return ret;
1494}
1495EXPORT_SYMBOL_GPL(mod_delayed_work_on);
1496
1497/**
Tejun Heoc8e55f32010-06-29 10:07:12 +02001498 * worker_enter_idle - enter idle state
1499 * @worker: worker which is entering idle state
1500 *
1501 * @worker is entering idle state. Update stats and idle timer if
1502 * necessary.
1503 *
1504 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001505 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001506 */
1507static void worker_enter_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001509 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Tejun Heo6183c002013-03-12 11:29:57 -07001511 if (WARN_ON_ONCE(worker->flags & WORKER_IDLE) ||
1512 WARN_ON_ONCE(!list_empty(&worker->entry) &&
1513 (worker->hentry.next || worker->hentry.pprev)))
1514 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Tejun Heocb444762010-07-02 10:03:50 +02001516 /* can't use worker_set_flags(), also called from start_worker() */
1517 worker->flags |= WORKER_IDLE;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001518 pool->nr_idle++;
Tejun Heoe22bee72010-06-29 10:07:14 +02001519 worker->last_active = jiffies;
Peter Zijlstrad5abe662006-12-06 20:37:26 -08001520
Tejun Heoc8e55f32010-06-29 10:07:12 +02001521 /* idle_list is LIFO */
Tejun Heobd7bdd42012-07-12 14:46:37 -07001522 list_add(&worker->entry, &pool->idle_list);
Tejun Heodb7bccf2010-06-29 10:07:12 +02001523
Tejun Heo628c78e2012-07-17 12:39:27 -07001524 if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1525 mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
Tejun Heocb444762010-07-02 10:03:50 +02001526
Tejun Heo544ecf32012-05-14 15:04:50 -07001527 /*
Tejun Heo706026c2013-01-24 11:01:34 -08001528 * Sanity check nr_running. Because wq_unbind_fn() releases
Tejun Heod565ed62013-01-24 11:01:33 -08001529 * pool->lock between setting %WORKER_UNBOUND and zapping
Tejun Heo628c78e2012-07-17 12:39:27 -07001530 * nr_running, the warning may trigger spuriously. Check iff
1531 * unbind is not in progress.
Tejun Heo544ecf32012-05-14 15:04:50 -07001532 */
Tejun Heo24647572013-01-24 11:01:33 -08001533 WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heobd7bdd42012-07-12 14:46:37 -07001534 pool->nr_workers == pool->nr_idle &&
Tejun Heoe19e3972013-01-24 11:39:44 -08001535 atomic_read(&pool->nr_running));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536}
1537
Tejun Heoc8e55f32010-06-29 10:07:12 +02001538/**
1539 * worker_leave_idle - leave idle state
1540 * @worker: worker which is leaving idle state
1541 *
1542 * @worker is leaving idle state. Update stats.
1543 *
1544 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001545 * spin_lock_irq(pool->lock).
Tejun Heoc8e55f32010-06-29 10:07:12 +02001546 */
1547static void worker_leave_idle(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001549 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Tejun Heo6183c002013-03-12 11:29:57 -07001551 if (WARN_ON_ONCE(!(worker->flags & WORKER_IDLE)))
1552 return;
Tejun Heod302f012010-06-29 10:07:13 +02001553 worker_clr_flags(worker, WORKER_IDLE);
Tejun Heobd7bdd42012-07-12 14:46:37 -07001554 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001555 list_del_init(&worker->entry);
1556}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Tejun Heoe22bee72010-06-29 10:07:14 +02001558/**
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001559 * worker_maybe_bind_and_lock - try to bind %current to worker_pool and lock it
1560 * @pool: target worker_pool
1561 *
1562 * Bind %current to the cpu of @pool if it is associated and lock @pool.
Tejun Heoe22bee72010-06-29 10:07:14 +02001563 *
1564 * Works which are scheduled while the cpu is online must at least be
1565 * scheduled to a worker which is bound to the cpu so that if they are
1566 * flushed from cpu callbacks while cpu is going down, they are
1567 * guaranteed to execute on the cpu.
1568 *
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001569 * This function is to be used by unbound workers and rescuers to bind
Tejun Heoe22bee72010-06-29 10:07:14 +02001570 * themselves to the target cpu and may race with cpu going down or
1571 * coming online. kthread_bind() can't be used because it may put the
1572 * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
Tejun Heo706026c2013-01-24 11:01:34 -08001573 * verbatim as it's best effort and blocking and pool may be
Tejun Heoe22bee72010-06-29 10:07:14 +02001574 * [dis]associated in the meantime.
1575 *
Tejun Heo706026c2013-01-24 11:01:34 -08001576 * This function tries set_cpus_allowed() and locks pool and verifies the
Tejun Heo24647572013-01-24 11:01:33 -08001577 * binding against %POOL_DISASSOCIATED which is set during
Tejun Heof2d5a0e2012-07-17 12:39:26 -07001578 * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1579 * enters idle state or fetches works without dropping lock, it can
1580 * guarantee the scheduling requirement described in the first paragraph.
Tejun Heoe22bee72010-06-29 10:07:14 +02001581 *
1582 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001583 * Might sleep. Called without any lock but returns with pool->lock
Tejun Heoe22bee72010-06-29 10:07:14 +02001584 * held.
1585 *
1586 * RETURNS:
Tejun Heo706026c2013-01-24 11:01:34 -08001587 * %true if the associated pool is online (@worker is successfully
Tejun Heoe22bee72010-06-29 10:07:14 +02001588 * bound), %false if offline.
1589 */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08001590static bool worker_maybe_bind_and_lock(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001591__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001592{
Tejun Heoe22bee72010-06-29 10:07:14 +02001593 while (true) {
1594 /*
1595 * The following call may fail, succeed or succeed
1596 * without actually migrating the task to the cpu if
1597 * it races with cpu hotunplug operation. Verify
Tejun Heo24647572013-01-24 11:01:33 -08001598 * against POOL_DISASSOCIATED.
Tejun Heoe22bee72010-06-29 10:07:14 +02001599 */
Tejun Heo24647572013-01-24 11:01:33 -08001600 if (!(pool->flags & POOL_DISASSOCIATED))
Tejun Heo7a4e3442013-03-12 11:30:00 -07001601 set_cpus_allowed_ptr(current, pool->attrs->cpumask);
Oleg Nesterov85f41862007-05-09 02:34:20 -07001602
Tejun Heod565ed62013-01-24 11:01:33 -08001603 spin_lock_irq(&pool->lock);
Tejun Heo24647572013-01-24 11:01:33 -08001604 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heoe22bee72010-06-29 10:07:14 +02001605 return false;
Lai Jiangshanf5faa072013-02-19 12:17:02 -08001606 if (task_cpu(current) == pool->cpu &&
Tejun Heo7a4e3442013-03-12 11:30:00 -07001607 cpumask_equal(&current->cpus_allowed, pool->attrs->cpumask))
Tejun Heoe22bee72010-06-29 10:07:14 +02001608 return true;
Tejun Heod565ed62013-01-24 11:01:33 -08001609 spin_unlock_irq(&pool->lock);
Oleg Nesterov3af244332007-05-09 02:34:09 -07001610
Tejun Heo5035b202011-04-29 18:08:37 +02001611 /*
1612 * We've raced with CPU hot[un]plug. Give it a breather
1613 * and retry migration. cond_resched() is required here;
1614 * otherwise, we might deadlock against cpu_stop trying to
1615 * bring down the CPU on non-preemptive kernel.
1616 */
Tejun Heoe22bee72010-06-29 10:07:14 +02001617 cpu_relax();
Tejun Heo5035b202011-04-29 18:08:37 +02001618 cond_resched();
Tejun Heoe22bee72010-06-29 10:07:14 +02001619 }
1620}
1621
Tejun Heoc34056a2010-06-29 10:07:11 +02001622static struct worker *alloc_worker(void)
1623{
1624 struct worker *worker;
1625
1626 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001627 if (worker) {
1628 INIT_LIST_HEAD(&worker->entry);
Tejun Heoaffee4b2010-06-29 10:07:12 +02001629 INIT_LIST_HEAD(&worker->scheduled);
Tejun Heoe22bee72010-06-29 10:07:14 +02001630 /* on creation a worker is in !idle && prep state */
1631 worker->flags = WORKER_PREP;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001632 }
Tejun Heoc34056a2010-06-29 10:07:11 +02001633 return worker;
1634}
1635
1636/**
1637 * create_worker - create a new workqueue worker
Tejun Heo63d95a92012-07-12 14:46:37 -07001638 * @pool: pool the new worker will belong to
Tejun Heoc34056a2010-06-29 10:07:11 +02001639 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001640 * Create a new worker which is bound to @pool. The returned worker
Tejun Heoc34056a2010-06-29 10:07:11 +02001641 * can be started by calling start_worker() or destroyed using
1642 * destroy_worker().
1643 *
1644 * CONTEXT:
1645 * Might sleep. Does GFP_KERNEL allocations.
1646 *
1647 * RETURNS:
1648 * Pointer to the newly created worker.
1649 */
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001650static struct worker *create_worker(struct worker_pool *pool)
Tejun Heoc34056a2010-06-29 10:07:11 +02001651{
Tejun Heoc34056a2010-06-29 10:07:11 +02001652 struct worker *worker = NULL;
Tejun Heof3421792010-07-02 10:03:51 +02001653 int id = -1;
Tejun Heoe3c916a2013-04-01 11:23:32 -07001654 char id_buf[16];
Tejun Heoc34056a2010-06-29 10:07:11 +02001655
Tejun Heocd549682013-03-13 19:47:39 -07001656 lockdep_assert_held(&pool->manager_mutex);
1657
Tejun Heo822d8402013-03-19 13:45:21 -07001658 /*
1659 * ID is needed to determine kthread name. Allocate ID first
1660 * without installing the pointer.
1661 */
1662 idr_preload(GFP_KERNEL);
Tejun Heod565ed62013-01-24 11:01:33 -08001663 spin_lock_irq(&pool->lock);
Tejun Heo822d8402013-03-19 13:45:21 -07001664
1665 id = idr_alloc(&pool->worker_idr, NULL, 0, 0, GFP_NOWAIT);
1666
Tejun Heod565ed62013-01-24 11:01:33 -08001667 spin_unlock_irq(&pool->lock);
Tejun Heo822d8402013-03-19 13:45:21 -07001668 idr_preload_end();
1669 if (id < 0)
1670 goto fail;
Tejun Heoc34056a2010-06-29 10:07:11 +02001671
1672 worker = alloc_worker();
1673 if (!worker)
1674 goto fail;
1675
Tejun Heobd7bdd42012-07-12 14:46:37 -07001676 worker->pool = pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001677 worker->id = id;
1678
Tejun Heo29c91e92013-03-12 11:30:03 -07001679 if (pool->cpu >= 0)
Tejun Heoe3c916a2013-04-01 11:23:32 -07001680 snprintf(id_buf, sizeof(id_buf), "%d:%d%s", pool->cpu, id,
1681 pool->attrs->nice < 0 ? "H" : "");
Tejun Heof3421792010-07-02 10:03:51 +02001682 else
Tejun Heoe3c916a2013-04-01 11:23:32 -07001683 snprintf(id_buf, sizeof(id_buf), "u%d:%d", pool->id, id);
1684
Tejun Heof3f90ad2013-04-01 11:23:34 -07001685 worker->task = kthread_create_on_node(worker_thread, worker, pool->node,
Tejun Heoe3c916a2013-04-01 11:23:32 -07001686 "kworker/%s", id_buf);
Tejun Heoc34056a2010-06-29 10:07:11 +02001687 if (IS_ERR(worker->task))
1688 goto fail;
1689
Tejun Heoc5aa87b2013-03-13 16:51:36 -07001690 /*
1691 * set_cpus_allowed_ptr() will fail if the cpumask doesn't have any
1692 * online CPUs. It'll be re-applied when any of the CPUs come up.
1693 */
Tejun Heo7a4e3442013-03-12 11:30:00 -07001694 set_user_nice(worker->task, pool->attrs->nice);
1695 set_cpus_allowed_ptr(worker->task, pool->attrs->cpumask);
Tejun Heo32704762012-07-13 22:16:45 -07001696
Tejun Heo14a40ff2013-03-19 13:45:20 -07001697 /* prevent userland from meddling with cpumask of workqueue workers */
1698 worker->task->flags |= PF_NO_SETAFFINITY;
Tejun Heo7a4e3442013-03-12 11:30:00 -07001699
1700 /*
1701 * The caller is responsible for ensuring %POOL_DISASSOCIATED
1702 * remains stable across this function. See the comments above the
1703 * flag definition for details.
1704 */
1705 if (pool->flags & POOL_DISASSOCIATED)
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001706 worker->flags |= WORKER_UNBOUND;
Oleg Nesterov3af244332007-05-09 02:34:09 -07001707
Tejun Heo822d8402013-03-19 13:45:21 -07001708 /* successful, commit the pointer to idr */
1709 spin_lock_irq(&pool->lock);
1710 idr_replace(&pool->worker_idr, worker, worker->id);
1711 spin_unlock_irq(&pool->lock);
1712
Tejun Heoc34056a2010-06-29 10:07:11 +02001713 return worker;
Tejun Heo822d8402013-03-19 13:45:21 -07001714
Tejun Heoc34056a2010-06-29 10:07:11 +02001715fail:
1716 if (id >= 0) {
Tejun Heod565ed62013-01-24 11:01:33 -08001717 spin_lock_irq(&pool->lock);
Tejun Heo822d8402013-03-19 13:45:21 -07001718 idr_remove(&pool->worker_idr, id);
Tejun Heod565ed62013-01-24 11:01:33 -08001719 spin_unlock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001720 }
1721 kfree(worker);
1722 return NULL;
1723}
1724
1725/**
1726 * start_worker - start a newly created worker
1727 * @worker: worker to start
1728 *
Tejun Heo706026c2013-01-24 11:01:34 -08001729 * Make the pool aware of @worker and start it.
Tejun Heoc34056a2010-06-29 10:07:11 +02001730 *
1731 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001732 * spin_lock_irq(pool->lock).
Tejun Heoc34056a2010-06-29 10:07:11 +02001733 */
1734static void start_worker(struct worker *worker)
1735{
Tejun Heocb444762010-07-02 10:03:50 +02001736 worker->flags |= WORKER_STARTED;
Tejun Heobd7bdd42012-07-12 14:46:37 -07001737 worker->pool->nr_workers++;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001738 worker_enter_idle(worker);
Tejun Heoc34056a2010-06-29 10:07:11 +02001739 wake_up_process(worker->task);
1740}
1741
1742/**
Tejun Heoebf44d12013-03-13 19:47:39 -07001743 * create_and_start_worker - create and start a worker for a pool
1744 * @pool: the target pool
1745 *
Tejun Heocd549682013-03-13 19:47:39 -07001746 * Grab the managership of @pool and create and start a new worker for it.
Tejun Heoebf44d12013-03-13 19:47:39 -07001747 */
1748static int create_and_start_worker(struct worker_pool *pool)
1749{
1750 struct worker *worker;
1751
Tejun Heocd549682013-03-13 19:47:39 -07001752 mutex_lock(&pool->manager_mutex);
1753
Tejun Heoebf44d12013-03-13 19:47:39 -07001754 worker = create_worker(pool);
1755 if (worker) {
1756 spin_lock_irq(&pool->lock);
1757 start_worker(worker);
1758 spin_unlock_irq(&pool->lock);
1759 }
1760
Tejun Heocd549682013-03-13 19:47:39 -07001761 mutex_unlock(&pool->manager_mutex);
1762
Tejun Heoebf44d12013-03-13 19:47:39 -07001763 return worker ? 0 : -ENOMEM;
1764}
1765
1766/**
Tejun Heoc34056a2010-06-29 10:07:11 +02001767 * destroy_worker - destroy a workqueue worker
1768 * @worker: worker to be destroyed
1769 *
Tejun Heo706026c2013-01-24 11:01:34 -08001770 * Destroy @worker and adjust @pool stats accordingly.
Tejun Heoc8e55f32010-06-29 10:07:12 +02001771 *
1772 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001773 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoc34056a2010-06-29 10:07:11 +02001774 */
1775static void destroy_worker(struct worker *worker)
1776{
Tejun Heobd7bdd42012-07-12 14:46:37 -07001777 struct worker_pool *pool = worker->pool;
Tejun Heoc34056a2010-06-29 10:07:11 +02001778
Tejun Heocd549682013-03-13 19:47:39 -07001779 lockdep_assert_held(&pool->manager_mutex);
1780 lockdep_assert_held(&pool->lock);
1781
Tejun Heoc34056a2010-06-29 10:07:11 +02001782 /* sanity check frenzy */
Tejun Heo6183c002013-03-12 11:29:57 -07001783 if (WARN_ON(worker->current_work) ||
1784 WARN_ON(!list_empty(&worker->scheduled)))
1785 return;
Tejun Heoc34056a2010-06-29 10:07:11 +02001786
Tejun Heoc8e55f32010-06-29 10:07:12 +02001787 if (worker->flags & WORKER_STARTED)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001788 pool->nr_workers--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001789 if (worker->flags & WORKER_IDLE)
Tejun Heobd7bdd42012-07-12 14:46:37 -07001790 pool->nr_idle--;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001791
1792 list_del_init(&worker->entry);
Tejun Heocb444762010-07-02 10:03:50 +02001793 worker->flags |= WORKER_DIE;
Tejun Heoc8e55f32010-06-29 10:07:12 +02001794
Tejun Heo822d8402013-03-19 13:45:21 -07001795 idr_remove(&pool->worker_idr, worker->id);
1796
Tejun Heod565ed62013-01-24 11:01:33 -08001797 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02001798
Tejun Heoc34056a2010-06-29 10:07:11 +02001799 kthread_stop(worker->task);
1800 kfree(worker);
1801
Tejun Heod565ed62013-01-24 11:01:33 -08001802 spin_lock_irq(&pool->lock);
Tejun Heoc34056a2010-06-29 10:07:11 +02001803}
1804
Tejun Heo63d95a92012-07-12 14:46:37 -07001805static void idle_worker_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001806{
Tejun Heo63d95a92012-07-12 14:46:37 -07001807 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001808
Tejun Heod565ed62013-01-24 11:01:33 -08001809 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001810
Tejun Heo63d95a92012-07-12 14:46:37 -07001811 if (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001812 struct worker *worker;
1813 unsigned long expires;
1814
1815 /* idle_list is kept in LIFO order, check the last one */
Tejun Heo63d95a92012-07-12 14:46:37 -07001816 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001817 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1818
1819 if (time_before(jiffies, expires))
Tejun Heo63d95a92012-07-12 14:46:37 -07001820 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001821 else {
1822 /* it's been idle for too long, wake up manager */
Tejun Heo11ebea52012-07-12 14:46:37 -07001823 pool->flags |= POOL_MANAGE_WORKERS;
Tejun Heo63d95a92012-07-12 14:46:37 -07001824 wake_up_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001825 }
1826 }
1827
Tejun Heod565ed62013-01-24 11:01:33 -08001828 spin_unlock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001829}
1830
Tejun Heo493a1722013-03-12 11:29:59 -07001831static void send_mayday(struct work_struct *work)
Tejun Heoe22bee72010-06-29 10:07:14 +02001832{
Tejun Heo112202d2013-02-13 19:29:12 -08001833 struct pool_workqueue *pwq = get_work_pwq(work);
1834 struct workqueue_struct *wq = pwq->wq;
Tejun Heo493a1722013-03-12 11:29:59 -07001835
Tejun Heo2e109a22013-03-13 19:47:40 -07001836 lockdep_assert_held(&wq_mayday_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001837
Tejun Heo493008a2013-03-12 11:30:03 -07001838 if (!wq->rescuer)
Tejun Heo493a1722013-03-12 11:29:59 -07001839 return;
Tejun Heoe22bee72010-06-29 10:07:14 +02001840
1841 /* mayday mayday mayday */
Tejun Heo493a1722013-03-12 11:29:59 -07001842 if (list_empty(&pwq->mayday_node)) {
1843 list_add_tail(&pwq->mayday_node, &wq->maydays);
Tejun Heoe22bee72010-06-29 10:07:14 +02001844 wake_up_process(wq->rescuer->task);
Tejun Heo493a1722013-03-12 11:29:59 -07001845 }
Tejun Heoe22bee72010-06-29 10:07:14 +02001846}
1847
Tejun Heo706026c2013-01-24 11:01:34 -08001848static void pool_mayday_timeout(unsigned long __pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001849{
Tejun Heo63d95a92012-07-12 14:46:37 -07001850 struct worker_pool *pool = (void *)__pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001851 struct work_struct *work;
1852
Tejun Heo2e109a22013-03-13 19:47:40 -07001853 spin_lock_irq(&wq_mayday_lock); /* for wq->maydays */
Tejun Heo493a1722013-03-12 11:29:59 -07001854 spin_lock(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001855
Tejun Heo63d95a92012-07-12 14:46:37 -07001856 if (need_to_create_worker(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001857 /*
1858 * We've been trying to create a new worker but
1859 * haven't been successful. We might be hitting an
1860 * allocation deadlock. Send distress signals to
1861 * rescuers.
1862 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001863 list_for_each_entry(work, &pool->worklist, entry)
Tejun Heoe22bee72010-06-29 10:07:14 +02001864 send_mayday(work);
1865 }
1866
Tejun Heo493a1722013-03-12 11:29:59 -07001867 spin_unlock(&pool->lock);
Tejun Heo2e109a22013-03-13 19:47:40 -07001868 spin_unlock_irq(&wq_mayday_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001869
Tejun Heo63d95a92012-07-12 14:46:37 -07001870 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
Tejun Heoe22bee72010-06-29 10:07:14 +02001871}
1872
1873/**
1874 * maybe_create_worker - create a new worker if necessary
Tejun Heo63d95a92012-07-12 14:46:37 -07001875 * @pool: pool to create a new worker for
Tejun Heoe22bee72010-06-29 10:07:14 +02001876 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001877 * Create a new worker for @pool if necessary. @pool is guaranteed to
Tejun Heoe22bee72010-06-29 10:07:14 +02001878 * have at least one idle worker on return from this function. If
1879 * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
Tejun Heo63d95a92012-07-12 14:46:37 -07001880 * sent to all rescuers with works scheduled on @pool to resolve
Tejun Heoe22bee72010-06-29 10:07:14 +02001881 * possible allocation deadlock.
1882 *
Tejun Heoc5aa87b2013-03-13 16:51:36 -07001883 * On return, need_to_create_worker() is guaranteed to be %false and
1884 * may_start_working() %true.
Tejun Heoe22bee72010-06-29 10:07:14 +02001885 *
1886 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001887 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001888 * multiple times. Does GFP_KERNEL allocations. Called only from
1889 * manager.
1890 *
1891 * RETURNS:
Tejun Heoc5aa87b2013-03-13 16:51:36 -07001892 * %false if no action was taken and pool->lock stayed locked, %true
Tejun Heoe22bee72010-06-29 10:07:14 +02001893 * otherwise.
1894 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001895static bool maybe_create_worker(struct worker_pool *pool)
Tejun Heod565ed62013-01-24 11:01:33 -08001896__releases(&pool->lock)
1897__acquires(&pool->lock)
Tejun Heoe22bee72010-06-29 10:07:14 +02001898{
Tejun Heo63d95a92012-07-12 14:46:37 -07001899 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001900 return false;
1901restart:
Tejun Heod565ed62013-01-24 11:01:33 -08001902 spin_unlock_irq(&pool->lock);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001903
Tejun Heoe22bee72010-06-29 10:07:14 +02001904 /* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
Tejun Heo63d95a92012-07-12 14:46:37 -07001905 mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
Tejun Heoe22bee72010-06-29 10:07:14 +02001906
1907 while (true) {
1908 struct worker *worker;
1909
Tejun Heobc2ae0f2012-07-17 12:39:27 -07001910 worker = create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02001911 if (worker) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001912 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001913 spin_lock_irq(&pool->lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02001914 start_worker(worker);
Tejun Heo6183c002013-03-12 11:29:57 -07001915 if (WARN_ON_ONCE(need_to_create_worker(pool)))
1916 goto restart;
Tejun Heoe22bee72010-06-29 10:07:14 +02001917 return true;
1918 }
1919
Tejun Heo63d95a92012-07-12 14:46:37 -07001920 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001921 break;
1922
Tejun Heoe22bee72010-06-29 10:07:14 +02001923 __set_current_state(TASK_INTERRUPTIBLE);
1924 schedule_timeout(CREATE_COOLDOWN);
Tejun Heo9f9c2362010-07-14 11:31:20 +02001925
Tejun Heo63d95a92012-07-12 14:46:37 -07001926 if (!need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001927 break;
1928 }
1929
Tejun Heo63d95a92012-07-12 14:46:37 -07001930 del_timer_sync(&pool->mayday_timer);
Tejun Heod565ed62013-01-24 11:01:33 -08001931 spin_lock_irq(&pool->lock);
Tejun Heo63d95a92012-07-12 14:46:37 -07001932 if (need_to_create_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02001933 goto restart;
1934 return true;
1935}
1936
1937/**
1938 * maybe_destroy_worker - destroy workers which have been idle for a while
Tejun Heo63d95a92012-07-12 14:46:37 -07001939 * @pool: pool to destroy workers for
Tejun Heoe22bee72010-06-29 10:07:14 +02001940 *
Tejun Heo63d95a92012-07-12 14:46:37 -07001941 * Destroy @pool workers which have been idle for longer than
Tejun Heoe22bee72010-06-29 10:07:14 +02001942 * IDLE_WORKER_TIMEOUT.
1943 *
1944 * LOCKING:
Tejun Heod565ed62013-01-24 11:01:33 -08001945 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001946 * multiple times. Called only from manager.
1947 *
1948 * RETURNS:
Tejun Heoc5aa87b2013-03-13 16:51:36 -07001949 * %false if no action was taken and pool->lock stayed locked, %true
Tejun Heoe22bee72010-06-29 10:07:14 +02001950 * otherwise.
1951 */
Tejun Heo63d95a92012-07-12 14:46:37 -07001952static bool maybe_destroy_workers(struct worker_pool *pool)
Tejun Heoe22bee72010-06-29 10:07:14 +02001953{
1954 bool ret = false;
1955
Tejun Heo63d95a92012-07-12 14:46:37 -07001956 while (too_many_workers(pool)) {
Tejun Heoe22bee72010-06-29 10:07:14 +02001957 struct worker *worker;
1958 unsigned long expires;
1959
Tejun Heo63d95a92012-07-12 14:46:37 -07001960 worker = list_entry(pool->idle_list.prev, struct worker, entry);
Tejun Heoe22bee72010-06-29 10:07:14 +02001961 expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1962
1963 if (time_before(jiffies, expires)) {
Tejun Heo63d95a92012-07-12 14:46:37 -07001964 mod_timer(&pool->idle_timer, expires);
Tejun Heoe22bee72010-06-29 10:07:14 +02001965 break;
1966 }
1967
1968 destroy_worker(worker);
1969 ret = true;
1970 }
1971
1972 return ret;
1973}
1974
1975/**
1976 * manage_workers - manage worker pool
1977 * @worker: self
1978 *
Tejun Heo706026c2013-01-24 11:01:34 -08001979 * Assume the manager role and manage the worker pool @worker belongs
Tejun Heoe22bee72010-06-29 10:07:14 +02001980 * to. At any given time, there can be only zero or one manager per
Tejun Heo706026c2013-01-24 11:01:34 -08001981 * pool. The exclusion is handled automatically by this function.
Tejun Heoe22bee72010-06-29 10:07:14 +02001982 *
1983 * The caller can safely start processing works on false return. On
1984 * true return, it's guaranteed that need_to_create_worker() is false
1985 * and may_start_working() is true.
1986 *
1987 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08001988 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoe22bee72010-06-29 10:07:14 +02001989 * multiple times. Does GFP_KERNEL allocations.
1990 *
1991 * RETURNS:
Tejun Heod565ed62013-01-24 11:01:33 -08001992 * spin_lock_irq(pool->lock) which may be released and regrabbed
1993 * multiple times. Does GFP_KERNEL allocations.
Tejun Heoe22bee72010-06-29 10:07:14 +02001994 */
1995static bool manage_workers(struct worker *worker)
1996{
Tejun Heo63d95a92012-07-12 14:46:37 -07001997 struct worker_pool *pool = worker->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02001998 bool ret = false;
1999
Tejun Heobc3a1af2013-03-13 19:47:39 -07002000 /*
2001 * Managership is governed by two mutexes - manager_arb and
2002 * manager_mutex. manager_arb handles arbitration of manager role.
2003 * Anyone who successfully grabs manager_arb wins the arbitration
2004 * and becomes the manager. mutex_trylock() on pool->manager_arb
2005 * failure while holding pool->lock reliably indicates that someone
2006 * else is managing the pool and the worker which failed trylock
2007 * can proceed to executing work items. This means that anyone
2008 * grabbing manager_arb is responsible for actually performing
2009 * manager duties. If manager_arb is grabbed and released without
2010 * actual management, the pool may stall indefinitely.
2011 *
2012 * manager_mutex is used for exclusion of actual management
2013 * operations. The holder of manager_mutex can be sure that none
2014 * of management operations, including creation and destruction of
2015 * workers, won't take place until the mutex is released. Because
2016 * manager_mutex doesn't interfere with manager role arbitration,
2017 * it is guaranteed that the pool's management, while may be
2018 * delayed, won't be disturbed by someone else grabbing
2019 * manager_mutex.
2020 */
Tejun Heo34a06bd2013-03-12 11:30:00 -07002021 if (!mutex_trylock(&pool->manager_arb))
Tejun Heoe22bee72010-06-29 10:07:14 +02002022 return ret;
2023
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002024 /*
Tejun Heobc3a1af2013-03-13 19:47:39 -07002025 * With manager arbitration won, manager_mutex would be free in
2026 * most cases. trylock first without dropping @pool->lock.
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002027 */
Tejun Heobc3a1af2013-03-13 19:47:39 -07002028 if (unlikely(!mutex_trylock(&pool->manager_mutex))) {
Tejun Heod565ed62013-01-24 11:01:33 -08002029 spin_unlock_irq(&pool->lock);
Tejun Heobc3a1af2013-03-13 19:47:39 -07002030 mutex_lock(&pool->manager_mutex);
Lai Jiangshanee378aa2012-09-10 10:03:44 -07002031 ret = true;
2032 }
2033
Tejun Heo11ebea52012-07-12 14:46:37 -07002034 pool->flags &= ~POOL_MANAGE_WORKERS;
Tejun Heoe22bee72010-06-29 10:07:14 +02002035
2036 /*
2037 * Destroy and then create so that may_start_working() is true
2038 * on return.
2039 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002040 ret |= maybe_destroy_workers(pool);
2041 ret |= maybe_create_worker(pool);
Tejun Heoe22bee72010-06-29 10:07:14 +02002042
Tejun Heobc3a1af2013-03-13 19:47:39 -07002043 mutex_unlock(&pool->manager_mutex);
Tejun Heo34a06bd2013-03-12 11:30:00 -07002044 mutex_unlock(&pool->manager_arb);
Tejun Heoe22bee72010-06-29 10:07:14 +02002045 return ret;
2046}
2047
Tejun Heoa62428c2010-06-29 10:07:10 +02002048/**
2049 * process_one_work - process single work
Tejun Heoc34056a2010-06-29 10:07:11 +02002050 * @worker: self
Tejun Heoa62428c2010-06-29 10:07:10 +02002051 * @work: work to process
2052 *
2053 * Process @work. This function contains all the logics necessary to
2054 * process a single work including synchronization against and
2055 * interaction with other workers on the same cpu, queueing and
2056 * flushing. As long as context requirement is met, any worker can
2057 * call this function to process a work.
2058 *
2059 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002060 * spin_lock_irq(pool->lock) which is released and regrabbed.
Tejun Heoa62428c2010-06-29 10:07:10 +02002061 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002062static void process_one_work(struct worker *worker, struct work_struct *work)
Tejun Heod565ed62013-01-24 11:01:33 -08002063__releases(&pool->lock)
2064__acquires(&pool->lock)
Tejun Heoa62428c2010-06-29 10:07:10 +02002065{
Tejun Heo112202d2013-02-13 19:29:12 -08002066 struct pool_workqueue *pwq = get_work_pwq(work);
Tejun Heobd7bdd42012-07-12 14:46:37 -07002067 struct worker_pool *pool = worker->pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002068 bool cpu_intensive = pwq->wq->flags & WQ_CPU_INTENSIVE;
Tejun Heo73f53c42010-06-29 10:07:11 +02002069 int work_color;
Tejun Heo7e116292010-06-29 10:07:13 +02002070 struct worker *collision;
Tejun Heoa62428c2010-06-29 10:07:10 +02002071#ifdef CONFIG_LOCKDEP
2072 /*
2073 * It is permissible to free the struct work_struct from
2074 * inside the function that is called from it, this we need to
2075 * take into account for lockdep too. To avoid bogus "held
2076 * lock freed" warnings as well as problems when looking into
2077 * work->lockdep_map, make a copy and use that here.
2078 */
Peter Zijlstra4d82a1d2012-05-15 08:06:19 -07002079 struct lockdep_map lockdep_map;
2080
2081 lockdep_copy_map(&lockdep_map, &work->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002082#endif
Tejun Heo6fec10a2012-07-22 10:16:34 -07002083 /*
2084 * Ensure we're on the correct CPU. DISASSOCIATED test is
2085 * necessary to avoid spurious warnings from rescuers servicing the
Tejun Heo24647572013-01-24 11:01:33 -08002086 * unbound or a disassociated pool.
Tejun Heo6fec10a2012-07-22 10:16:34 -07002087 */
Lai Jiangshan5f7dabf2012-09-18 09:59:23 -07002088 WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
Tejun Heo24647572013-01-24 11:01:33 -08002089 !(pool->flags & POOL_DISASSOCIATED) &&
Tejun Heoec22ca52013-01-24 11:01:33 -08002090 raw_smp_processor_id() != pool->cpu);
Tejun Heo25511a42012-07-17 12:39:27 -07002091
Tejun Heo7e116292010-06-29 10:07:13 +02002092 /*
2093 * A single work shouldn't be executed concurrently by
2094 * multiple workers on a single cpu. Check whether anyone is
2095 * already processing the work. If so, defer the work to the
2096 * currently executing one.
2097 */
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002098 collision = find_worker_executing_work(pool, work);
Tejun Heo7e116292010-06-29 10:07:13 +02002099 if (unlikely(collision)) {
2100 move_linked_works(work, &collision->scheduled, NULL);
2101 return;
2102 }
2103
Tejun Heo8930cab2012-08-03 10:30:45 -07002104 /* claim and dequeue */
Tejun Heoa62428c2010-06-29 10:07:10 +02002105 debug_work_deactivate(work);
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002106 hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work);
Tejun Heoc34056a2010-06-29 10:07:11 +02002107 worker->current_work = work;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002108 worker->current_func = work->func;
Tejun Heo112202d2013-02-13 19:29:12 -08002109 worker->current_pwq = pwq;
Tejun Heo73f53c42010-06-29 10:07:11 +02002110 work_color = get_work_color(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002111
Tejun Heoa62428c2010-06-29 10:07:10 +02002112 list_del_init(&work->entry);
2113
Tejun Heo649027d2010-06-29 10:07:14 +02002114 /*
Tejun Heofb0e7be2010-06-29 10:07:15 +02002115 * CPU intensive works don't participate in concurrency
2116 * management. They're the scheduler's responsibility.
2117 */
2118 if (unlikely(cpu_intensive))
2119 worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2120
Tejun Heo974271c2012-07-12 14:46:37 -07002121 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002122 * Unbound pool isn't concurrency managed and work items should be
Tejun Heo974271c2012-07-12 14:46:37 -07002123 * executed ASAP. Wake up another worker if necessary.
2124 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002125 if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
2126 wake_up_worker(pool);
Tejun Heo974271c2012-07-12 14:46:37 -07002127
Tejun Heo8930cab2012-08-03 10:30:45 -07002128 /*
Tejun Heo7c3eed52013-01-24 11:01:33 -08002129 * Record the last pool and clear PENDING which should be the last
Tejun Heod565ed62013-01-24 11:01:33 -08002130 * update to @work. Also, do this inside @pool->lock so that
Tejun Heo23657bb2012-08-13 17:08:19 -07002131 * PENDING and queued state changes happen together while IRQ is
2132 * disabled.
Tejun Heo8930cab2012-08-03 10:30:45 -07002133 */
Tejun Heo7c3eed52013-01-24 11:01:33 -08002134 set_work_pool_and_clear_pending(work, pool->id);
Tejun Heoa62428c2010-06-29 10:07:10 +02002135
Tejun Heod565ed62013-01-24 11:01:33 -08002136 spin_unlock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002137
Tejun Heo112202d2013-02-13 19:29:12 -08002138 lock_map_acquire_read(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002139 lock_map_acquire(&lockdep_map);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002140 trace_workqueue_execute_start(work);
Tejun Heoa2c1c572012-12-18 10:35:02 -08002141 worker->current_func(work);
Arjan van de Vene36c8862010-08-21 13:07:26 -07002142 /*
2143 * While we must be careful to not use "work" after this, the trace
2144 * point will only record its address.
2145 */
2146 trace_workqueue_execute_end(work);
Tejun Heoa62428c2010-06-29 10:07:10 +02002147 lock_map_release(&lockdep_map);
Tejun Heo112202d2013-02-13 19:29:12 -08002148 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoa62428c2010-06-29 10:07:10 +02002149
2150 if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
Valentin Ilie044c7822012-08-19 00:52:42 +03002151 pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2152 " last function: %pf\n",
Tejun Heoa2c1c572012-12-18 10:35:02 -08002153 current->comm, preempt_count(), task_pid_nr(current),
2154 worker->current_func);
Tejun Heoa62428c2010-06-29 10:07:10 +02002155 debug_show_held_locks(current);
2156 dump_stack();
2157 }
2158
Tejun Heod565ed62013-01-24 11:01:33 -08002159 spin_lock_irq(&pool->lock);
Tejun Heoa62428c2010-06-29 10:07:10 +02002160
Tejun Heofb0e7be2010-06-29 10:07:15 +02002161 /* clear cpu intensive status */
2162 if (unlikely(cpu_intensive))
2163 worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2164
Tejun Heoa62428c2010-06-29 10:07:10 +02002165 /* we're done with it, release */
Sasha Levin42f85702012-12-17 10:01:23 -05002166 hash_del(&worker->hentry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002167 worker->current_work = NULL;
Tejun Heoa2c1c572012-12-18 10:35:02 -08002168 worker->current_func = NULL;
Tejun Heo112202d2013-02-13 19:29:12 -08002169 worker->current_pwq = NULL;
2170 pwq_dec_nr_in_flight(pwq, work_color);
Tejun Heoa62428c2010-06-29 10:07:10 +02002171}
2172
Tejun Heoaffee4b2010-06-29 10:07:12 +02002173/**
2174 * process_scheduled_works - process scheduled works
2175 * @worker: self
2176 *
2177 * Process all scheduled works. Please note that the scheduled list
2178 * may change while processing a work, so this function repeatedly
2179 * fetches a work from the top and executes it.
2180 *
2181 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002182 * spin_lock_irq(pool->lock) which may be released and regrabbed
Tejun Heoaffee4b2010-06-29 10:07:12 +02002183 * multiple times.
2184 */
2185static void process_scheduled_works(struct worker *worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002187 while (!list_empty(&worker->scheduled)) {
2188 struct work_struct *work = list_first_entry(&worker->scheduled,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 struct work_struct, entry);
Tejun Heoc34056a2010-06-29 10:07:11 +02002190 process_one_work(worker, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
Tejun Heo4690c4a2010-06-29 10:07:10 +02002194/**
2195 * worker_thread - the worker thread function
Tejun Heoc34056a2010-06-29 10:07:11 +02002196 * @__worker: self
Tejun Heo4690c4a2010-06-29 10:07:10 +02002197 *
Tejun Heoc5aa87b2013-03-13 16:51:36 -07002198 * The worker thread function. All workers belong to a worker_pool -
2199 * either a per-cpu one or dynamic unbound one. These workers process all
2200 * work items regardless of their specific target workqueue. The only
2201 * exception is work items which belong to workqueues with a rescuer which
2202 * will be explained in rescuer_thread().
Tejun Heo4690c4a2010-06-29 10:07:10 +02002203 */
Tejun Heoc34056a2010-06-29 10:07:11 +02002204static int worker_thread(void *__worker)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
Tejun Heoc34056a2010-06-29 10:07:11 +02002206 struct worker *worker = __worker;
Tejun Heobd7bdd42012-07-12 14:46:37 -07002207 struct worker_pool *pool = worker->pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Tejun Heoe22bee72010-06-29 10:07:14 +02002209 /* tell the scheduler that this is a workqueue worker */
2210 worker->task->flags |= PF_WQ_WORKER;
Tejun Heoc8e55f32010-06-29 10:07:12 +02002211woke_up:
Tejun Heod565ed62013-01-24 11:01:33 -08002212 spin_lock_irq(&pool->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Tejun Heoa9ab7752013-03-19 13:45:21 -07002214 /* am I supposed to die? */
2215 if (unlikely(worker->flags & WORKER_DIE)) {
Tejun Heod565ed62013-01-24 11:01:33 -08002216 spin_unlock_irq(&pool->lock);
Tejun Heoa9ab7752013-03-19 13:45:21 -07002217 WARN_ON_ONCE(!list_empty(&worker->entry));
2218 worker->task->flags &= ~PF_WQ_WORKER;
2219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 }
2221
Tejun Heoc8e55f32010-06-29 10:07:12 +02002222 worker_leave_idle(worker);
Tejun Heodb7bccf2010-06-29 10:07:12 +02002223recheck:
Tejun Heoe22bee72010-06-29 10:07:14 +02002224 /* no more worker necessary? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002225 if (!need_more_worker(pool))
Tejun Heoe22bee72010-06-29 10:07:14 +02002226 goto sleep;
2227
2228 /* do we need to manage? */
Tejun Heo63d95a92012-07-12 14:46:37 -07002229 if (unlikely(!may_start_working(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002230 goto recheck;
2231
Tejun Heoc8e55f32010-06-29 10:07:12 +02002232 /*
2233 * ->scheduled list can only be filled while a worker is
2234 * preparing to process a work or actually processing it.
2235 * Make sure nobody diddled with it while I was sleeping.
2236 */
Tejun Heo6183c002013-03-12 11:29:57 -07002237 WARN_ON_ONCE(!list_empty(&worker->scheduled));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002238
Tejun Heoe22bee72010-06-29 10:07:14 +02002239 /*
Tejun Heoa9ab7752013-03-19 13:45:21 -07002240 * Finish PREP stage. We're guaranteed to have at least one idle
2241 * worker or that someone else has already assumed the manager
2242 * role. This is where @worker starts participating in concurrency
2243 * management if applicable and concurrency management is restored
2244 * after being rebound. See rebind_workers() for details.
Tejun Heoe22bee72010-06-29 10:07:14 +02002245 */
Tejun Heoa9ab7752013-03-19 13:45:21 -07002246 worker_clr_flags(worker, WORKER_PREP | WORKER_REBOUND);
Tejun Heoe22bee72010-06-29 10:07:14 +02002247
2248 do {
Tejun Heoc8e55f32010-06-29 10:07:12 +02002249 struct work_struct *work =
Tejun Heobd7bdd42012-07-12 14:46:37 -07002250 list_first_entry(&pool->worklist,
Tejun Heoc8e55f32010-06-29 10:07:12 +02002251 struct work_struct, entry);
2252
2253 if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2254 /* optimization path, not strictly necessary */
2255 process_one_work(worker, work);
2256 if (unlikely(!list_empty(&worker->scheduled)))
2257 process_scheduled_works(worker);
2258 } else {
2259 move_linked_works(work, &worker->scheduled, NULL);
2260 process_scheduled_works(worker);
2261 }
Tejun Heo63d95a92012-07-12 14:46:37 -07002262 } while (keep_working(pool));
Tejun Heoc8e55f32010-06-29 10:07:12 +02002263
Tejun Heoe22bee72010-06-29 10:07:14 +02002264 worker_set_flags(worker, WORKER_PREP, false);
Tejun Heod313dd82010-07-02 10:03:51 +02002265sleep:
Tejun Heo63d95a92012-07-12 14:46:37 -07002266 if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
Tejun Heoe22bee72010-06-29 10:07:14 +02002267 goto recheck;
Tejun Heod313dd82010-07-02 10:03:51 +02002268
Tejun Heoc8e55f32010-06-29 10:07:12 +02002269 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002270 * pool->lock is held and there's no work to process and no need to
2271 * manage, sleep. Workers are woken up only while holding
2272 * pool->lock or from local cpu, so setting the current state
2273 * before releasing pool->lock is enough to prevent losing any
2274 * event.
Tejun Heoc8e55f32010-06-29 10:07:12 +02002275 */
2276 worker_enter_idle(worker);
2277 __set_current_state(TASK_INTERRUPTIBLE);
Tejun Heod565ed62013-01-24 11:01:33 -08002278 spin_unlock_irq(&pool->lock);
Tejun Heoc8e55f32010-06-29 10:07:12 +02002279 schedule();
2280 goto woke_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281}
2282
Tejun Heoe22bee72010-06-29 10:07:14 +02002283/**
2284 * rescuer_thread - the rescuer thread function
Tejun Heo111c2252013-01-17 17:16:24 -08002285 * @__rescuer: self
Tejun Heoe22bee72010-06-29 10:07:14 +02002286 *
2287 * Workqueue rescuer thread function. There's one rescuer for each
Tejun Heo493008a2013-03-12 11:30:03 -07002288 * workqueue which has WQ_MEM_RECLAIM set.
Tejun Heoe22bee72010-06-29 10:07:14 +02002289 *
Tejun Heo706026c2013-01-24 11:01:34 -08002290 * Regular work processing on a pool may block trying to create a new
Tejun Heoe22bee72010-06-29 10:07:14 +02002291 * worker which uses GFP_KERNEL allocation which has slight chance of
2292 * developing into deadlock if some works currently on the same queue
2293 * need to be processed to satisfy the GFP_KERNEL allocation. This is
2294 * the problem rescuer solves.
2295 *
Tejun Heo706026c2013-01-24 11:01:34 -08002296 * When such condition is possible, the pool summons rescuers of all
2297 * workqueues which have works queued on the pool and let them process
Tejun Heoe22bee72010-06-29 10:07:14 +02002298 * those works so that forward progress can be guaranteed.
2299 *
2300 * This should happen rarely.
2301 */
Tejun Heo111c2252013-01-17 17:16:24 -08002302static int rescuer_thread(void *__rescuer)
Tejun Heoe22bee72010-06-29 10:07:14 +02002303{
Tejun Heo111c2252013-01-17 17:16:24 -08002304 struct worker *rescuer = __rescuer;
2305 struct workqueue_struct *wq = rescuer->rescue_wq;
Tejun Heoe22bee72010-06-29 10:07:14 +02002306 struct list_head *scheduled = &rescuer->scheduled;
Tejun Heoe22bee72010-06-29 10:07:14 +02002307
2308 set_user_nice(current, RESCUER_NICE_LEVEL);
Tejun Heo111c2252013-01-17 17:16:24 -08002309
2310 /*
2311 * Mark rescuer as worker too. As WORKER_PREP is never cleared, it
2312 * doesn't participate in concurrency management.
2313 */
2314 rescuer->task->flags |= PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002315repeat:
2316 set_current_state(TASK_INTERRUPTIBLE);
2317
Mike Galbraith412d32e2012-11-28 07:17:18 +01002318 if (kthread_should_stop()) {
2319 __set_current_state(TASK_RUNNING);
Tejun Heo111c2252013-01-17 17:16:24 -08002320 rescuer->task->flags &= ~PF_WQ_WORKER;
Tejun Heoe22bee72010-06-29 10:07:14 +02002321 return 0;
Mike Galbraith412d32e2012-11-28 07:17:18 +01002322 }
Tejun Heoe22bee72010-06-29 10:07:14 +02002323
Tejun Heo493a1722013-03-12 11:29:59 -07002324 /* see whether any pwq is asking for help */
Tejun Heo2e109a22013-03-13 19:47:40 -07002325 spin_lock_irq(&wq_mayday_lock);
Tejun Heo493a1722013-03-12 11:29:59 -07002326
2327 while (!list_empty(&wq->maydays)) {
2328 struct pool_workqueue *pwq = list_first_entry(&wq->maydays,
2329 struct pool_workqueue, mayday_node);
Tejun Heo112202d2013-02-13 19:29:12 -08002330 struct worker_pool *pool = pwq->pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002331 struct work_struct *work, *n;
2332
2333 __set_current_state(TASK_RUNNING);
Tejun Heo493a1722013-03-12 11:29:59 -07002334 list_del_init(&pwq->mayday_node);
2335
Tejun Heo2e109a22013-03-13 19:47:40 -07002336 spin_unlock_irq(&wq_mayday_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002337
2338 /* migrate to the target cpu if possible */
Lai Jiangshanf36dc672013-02-19 12:17:02 -08002339 worker_maybe_bind_and_lock(pool);
Lai Jiangshanb3104102013-02-19 12:17:02 -08002340 rescuer->pool = pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02002341
2342 /*
2343 * Slurp in all works issued via this workqueue and
2344 * process'em.
2345 */
Tejun Heo6183c002013-03-12 11:29:57 -07002346 WARN_ON_ONCE(!list_empty(&rescuer->scheduled));
Tejun Heobd7bdd42012-07-12 14:46:37 -07002347 list_for_each_entry_safe(work, n, &pool->worklist, entry)
Tejun Heo112202d2013-02-13 19:29:12 -08002348 if (get_work_pwq(work) == pwq)
Tejun Heoe22bee72010-06-29 10:07:14 +02002349 move_linked_works(work, scheduled, &n);
2350
2351 process_scheduled_works(rescuer);
Tejun Heo75769582011-02-14 14:04:46 +01002352
2353 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002354 * Leave this pool. If keep_working() is %true, notify a
Tejun Heo75769582011-02-14 14:04:46 +01002355 * regular worker; otherwise, we end up with 0 concurrency
2356 * and stalling the execution.
2357 */
Tejun Heo63d95a92012-07-12 14:46:37 -07002358 if (keep_working(pool))
2359 wake_up_worker(pool);
Tejun Heo75769582011-02-14 14:04:46 +01002360
Lai Jiangshanb3104102013-02-19 12:17:02 -08002361 rescuer->pool = NULL;
Tejun Heo493a1722013-03-12 11:29:59 -07002362 spin_unlock(&pool->lock);
Tejun Heo2e109a22013-03-13 19:47:40 -07002363 spin_lock(&wq_mayday_lock);
Tejun Heoe22bee72010-06-29 10:07:14 +02002364 }
2365
Tejun Heo2e109a22013-03-13 19:47:40 -07002366 spin_unlock_irq(&wq_mayday_lock);
Tejun Heo493a1722013-03-12 11:29:59 -07002367
Tejun Heo111c2252013-01-17 17:16:24 -08002368 /* rescuers should never participate in concurrency management */
2369 WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
Tejun Heoe22bee72010-06-29 10:07:14 +02002370 schedule();
2371 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002374struct wq_barrier {
2375 struct work_struct work;
2376 struct completion done;
2377};
2378
2379static void wq_barrier_func(struct work_struct *work)
2380{
2381 struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2382 complete(&barr->done);
2383}
2384
Tejun Heo4690c4a2010-06-29 10:07:10 +02002385/**
2386 * insert_wq_barrier - insert a barrier work
Tejun Heo112202d2013-02-13 19:29:12 -08002387 * @pwq: pwq to insert barrier into
Tejun Heo4690c4a2010-06-29 10:07:10 +02002388 * @barr: wq_barrier to insert
Tejun Heoaffee4b2010-06-29 10:07:12 +02002389 * @target: target work to attach @barr to
2390 * @worker: worker currently executing @target, NULL if @target is not executing
Tejun Heo4690c4a2010-06-29 10:07:10 +02002391 *
Tejun Heoaffee4b2010-06-29 10:07:12 +02002392 * @barr is linked to @target such that @barr is completed only after
2393 * @target finishes execution. Please note that the ordering
2394 * guarantee is observed only with respect to @target and on the local
2395 * cpu.
2396 *
2397 * Currently, a queued barrier can't be canceled. This is because
2398 * try_to_grab_pending() can't determine whether the work to be
2399 * grabbed is at the head of the queue and thus can't clear LINKED
2400 * flag of the previous work while there must be a valid next work
2401 * after a work with LINKED flag set.
2402 *
2403 * Note that when @worker is non-NULL, @target may be modified
Tejun Heo112202d2013-02-13 19:29:12 -08002404 * underneath us, so we can't reliably determine pwq from @target.
Tejun Heo4690c4a2010-06-29 10:07:10 +02002405 *
2406 * CONTEXT:
Tejun Heod565ed62013-01-24 11:01:33 -08002407 * spin_lock_irq(pool->lock).
Tejun Heo4690c4a2010-06-29 10:07:10 +02002408 */
Tejun Heo112202d2013-02-13 19:29:12 -08002409static void insert_wq_barrier(struct pool_workqueue *pwq,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002410 struct wq_barrier *barr,
2411 struct work_struct *target, struct worker *worker)
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002412{
Tejun Heoaffee4b2010-06-29 10:07:12 +02002413 struct list_head *head;
2414 unsigned int linked = 0;
2415
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002416 /*
Tejun Heod565ed62013-01-24 11:01:33 -08002417 * debugobject calls are safe here even with pool->lock locked
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002418 * as we know for sure that this will not trigger any of the
2419 * checks and call back into the fixup functions where we
2420 * might deadlock.
2421 */
Andrew Mortonca1cab32010-10-26 14:22:34 -07002422 INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
Tejun Heo22df02b2010-06-29 10:07:10 +02002423 __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002424 init_completion(&barr->done);
Oleg Nesterov83c22522007-05-09 02:33:54 -07002425
Tejun Heoaffee4b2010-06-29 10:07:12 +02002426 /*
2427 * If @target is currently being executed, schedule the
2428 * barrier to the worker; otherwise, put it after @target.
2429 */
2430 if (worker)
2431 head = worker->scheduled.next;
2432 else {
2433 unsigned long *bits = work_data_bits(target);
2434
2435 head = target->entry.next;
2436 /* there can already be other linked works, inherit and set */
2437 linked = *bits & WORK_STRUCT_LINKED;
2438 __set_bit(WORK_STRUCT_LINKED_BIT, bits);
2439 }
2440
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002441 debug_work_activate(&barr->work);
Tejun Heo112202d2013-02-13 19:29:12 -08002442 insert_work(pwq, &barr->work, head,
Tejun Heoaffee4b2010-06-29 10:07:12 +02002443 work_color_to_flags(WORK_NO_COLOR) | linked);
Oleg Nesterovfc2e4d72007-05-09 02:33:51 -07002444}
2445
Tejun Heo73f53c42010-06-29 10:07:11 +02002446/**
Tejun Heo112202d2013-02-13 19:29:12 -08002447 * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing
Tejun Heo73f53c42010-06-29 10:07:11 +02002448 * @wq: workqueue being flushed
2449 * @flush_color: new flush color, < 0 for no-op
2450 * @work_color: new work color, < 0 for no-op
2451 *
Tejun Heo112202d2013-02-13 19:29:12 -08002452 * Prepare pwqs for workqueue flushing.
Tejun Heo73f53c42010-06-29 10:07:11 +02002453 *
Tejun Heo112202d2013-02-13 19:29:12 -08002454 * If @flush_color is non-negative, flush_color on all pwqs should be
2455 * -1. If no pwq has in-flight commands at the specified color, all
2456 * pwq->flush_color's stay at -1 and %false is returned. If any pwq
2457 * has in flight commands, its pwq->flush_color is set to
2458 * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq
Tejun Heo73f53c42010-06-29 10:07:11 +02002459 * wakeup logic is armed and %true is returned.
2460 *
2461 * The caller should have initialized @wq->first_flusher prior to
2462 * calling this function with non-negative @flush_color. If
2463 * @flush_color is negative, no flush color update is done and %false
2464 * is returned.
2465 *
Tejun Heo112202d2013-02-13 19:29:12 -08002466 * If @work_color is non-negative, all pwqs should have the same
Tejun Heo73f53c42010-06-29 10:07:11 +02002467 * work_color which is previous to @work_color and all will be
2468 * advanced to @work_color.
2469 *
2470 * CONTEXT:
Lai Jiangshan3c25a552013-03-25 16:57:17 -07002471 * mutex_lock(wq->mutex).
Tejun Heo73f53c42010-06-29 10:07:11 +02002472 *
2473 * RETURNS:
2474 * %true if @flush_color >= 0 and there's something to flush. %false
2475 * otherwise.
2476 */
Tejun Heo112202d2013-02-13 19:29:12 -08002477static bool flush_workqueue_prep_pwqs(struct workqueue_struct *wq,
Tejun Heo73f53c42010-06-29 10:07:11 +02002478 int flush_color, int work_color)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Tejun Heo73f53c42010-06-29 10:07:11 +02002480 bool wait = false;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002481 struct pool_workqueue *pwq;
Oleg Nesterov14441962007-05-23 13:57:57 -07002482
Tejun Heo73f53c42010-06-29 10:07:11 +02002483 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002484 WARN_ON_ONCE(atomic_read(&wq->nr_pwqs_to_flush));
Tejun Heo112202d2013-02-13 19:29:12 -08002485 atomic_set(&wq->nr_pwqs_to_flush, 1);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +09002486 }
Oleg Nesterov14441962007-05-23 13:57:57 -07002487
Tejun Heo49e3cf42013-03-12 11:29:58 -07002488 for_each_pwq(pwq, wq) {
Tejun Heo112202d2013-02-13 19:29:12 -08002489 struct worker_pool *pool = pwq->pool;
Tejun Heo73f53c42010-06-29 10:07:11 +02002490
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07002491 spin_lock_irq(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002492
2493 if (flush_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002494 WARN_ON_ONCE(pwq->flush_color != -1);
Tejun Heo73f53c42010-06-29 10:07:11 +02002495
Tejun Heo112202d2013-02-13 19:29:12 -08002496 if (pwq->nr_in_flight[flush_color]) {
2497 pwq->flush_color = flush_color;
2498 atomic_inc(&wq->nr_pwqs_to_flush);
Tejun Heo73f53c42010-06-29 10:07:11 +02002499 wait = true;
2500 }
2501 }
2502
2503 if (work_color >= 0) {
Tejun Heo6183c002013-03-12 11:29:57 -07002504 WARN_ON_ONCE(work_color != work_next_color(pwq->work_color));
Tejun Heo112202d2013-02-13 19:29:12 -08002505 pwq->work_color = work_color;
Tejun Heo73f53c42010-06-29 10:07:11 +02002506 }
2507
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07002508 spin_unlock_irq(&pool->lock);
Tejun Heo73f53c42010-06-29 10:07:11 +02002509 }
2510
Tejun Heo112202d2013-02-13 19:29:12 -08002511 if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_pwqs_to_flush))
Tejun Heo73f53c42010-06-29 10:07:11 +02002512 complete(&wq->first_flusher->done);
2513
2514 return wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515}
2516
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002517/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 * flush_workqueue - ensure that any scheduled work has run to completion.
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002519 * @wq: workqueue to flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 *
Tejun Heoc5aa87b2013-03-13 16:51:36 -07002521 * This function sleeps until all work items which were queued on entry
2522 * have finished execution, but it is not livelocked by new incoming ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002524void flush_workqueue(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
Tejun Heo73f53c42010-06-29 10:07:11 +02002526 struct wq_flusher this_flusher = {
2527 .list = LIST_HEAD_INIT(this_flusher.list),
2528 .flush_color = -1,
2529 .done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
2530 };
2531 int next_color;
Oleg Nesterovb1f4ec12007-05-09 02:34:12 -07002532
Ingo Molnar3295f0e2008-08-11 10:30:30 +02002533 lock_map_acquire(&wq->lockdep_map);
2534 lock_map_release(&wq->lockdep_map);
Tejun Heo73f53c42010-06-29 10:07:11 +02002535
Lai Jiangshan3c25a552013-03-25 16:57:17 -07002536 mutex_lock(&wq->mutex);
Tejun Heo73f53c42010-06-29 10:07:11 +02002537
2538 /*
2539 * Start-to-wait phase
2540 */
2541 next_color = work_next_color(wq->work_color);
2542
2543 if (next_color != wq->flush_color) {
2544 /*
2545 * Color space is not full. The current work_color
2546 * becomes our flush_color and work_color is advanced
2547 * by one.
2548 */
Tejun Heo6183c002013-03-12 11:29:57 -07002549 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow));
Tejun Heo73f53c42010-06-29 10:07:11 +02002550 this_flusher.flush_color = wq->work_color;
2551 wq->work_color = next_color;
2552
2553 if (!wq->first_flusher) {
2554 /* no flush in progress, become the first flusher */
Tejun Heo6183c002013-03-12 11:29:57 -07002555 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002556
2557 wq->first_flusher = &this_flusher;
2558
Tejun Heo112202d2013-02-13 19:29:12 -08002559 if (!flush_workqueue_prep_pwqs(wq, wq->flush_color,
Tejun Heo73f53c42010-06-29 10:07:11 +02002560 wq->work_color)) {
2561 /* nothing to flush, done */
2562 wq->flush_color = next_color;
2563 wq->first_flusher = NULL;
2564 goto out_unlock;
2565 }
2566 } else {
2567 /* wait in queue */
Tejun Heo6183c002013-03-12 11:29:57 -07002568 WARN_ON_ONCE(wq->flush_color == this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002569 list_add_tail(&this_flusher.list, &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002570 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002571 }
2572 } else {
2573 /*
2574 * Oops, color space is full, wait on overflow queue.
2575 * The next flush completion will assign us
2576 * flush_color and transfer to flusher_queue.
2577 */
2578 list_add_tail(&this_flusher.list, &wq->flusher_overflow);
2579 }
2580
Lai Jiangshan3c25a552013-03-25 16:57:17 -07002581 mutex_unlock(&wq->mutex);
Tejun Heo73f53c42010-06-29 10:07:11 +02002582
2583 wait_for_completion(&this_flusher.done);
2584
2585 /*
2586 * Wake-up-and-cascade phase
2587 *
2588 * First flushers are responsible for cascading flushes and
2589 * handling overflow. Non-first flushers can simply return.
2590 */
2591 if (wq->first_flusher != &this_flusher)
2592 return;
2593
Lai Jiangshan3c25a552013-03-25 16:57:17 -07002594 mutex_lock(&wq->mutex);
Tejun Heo73f53c42010-06-29 10:07:11 +02002595
Tejun Heo4ce48b32010-07-02 10:03:51 +02002596 /* we might have raced, check again with mutex held */
2597 if (wq->first_flusher != &this_flusher)
2598 goto out_unlock;
2599
Tejun Heo73f53c42010-06-29 10:07:11 +02002600 wq->first_flusher = NULL;
2601
Tejun Heo6183c002013-03-12 11:29:57 -07002602 WARN_ON_ONCE(!list_empty(&this_flusher.list));
2603 WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002604
2605 while (true) {
2606 struct wq_flusher *next, *tmp;
2607
2608 /* complete all the flushers sharing the current flush color */
2609 list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
2610 if (next->flush_color != wq->flush_color)
2611 break;
2612 list_del_init(&next->list);
2613 complete(&next->done);
2614 }
2615
Tejun Heo6183c002013-03-12 11:29:57 -07002616 WARN_ON_ONCE(!list_empty(&wq->flusher_overflow) &&
2617 wq->flush_color != work_next_color(wq->work_color));
Tejun Heo73f53c42010-06-29 10:07:11 +02002618
2619 /* this flush_color is finished, advance by one */
2620 wq->flush_color = work_next_color(wq->flush_color);
2621
2622 /* one color has been freed, handle overflow queue */
2623 if (!list_empty(&wq->flusher_overflow)) {
2624 /*
2625 * Assign the same color to all overflowed
2626 * flushers, advance work_color and append to
2627 * flusher_queue. This is the start-to-wait
2628 * phase for these overflowed flushers.
2629 */
2630 list_for_each_entry(tmp, &wq->flusher_overflow, list)
2631 tmp->flush_color = wq->work_color;
2632
2633 wq->work_color = work_next_color(wq->work_color);
2634
2635 list_splice_tail_init(&wq->flusher_overflow,
2636 &wq->flusher_queue);
Tejun Heo112202d2013-02-13 19:29:12 -08002637 flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002638 }
2639
2640 if (list_empty(&wq->flusher_queue)) {
Tejun Heo6183c002013-03-12 11:29:57 -07002641 WARN_ON_ONCE(wq->flush_color != wq->work_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002642 break;
2643 }
2644
2645 /*
2646 * Need to flush more colors. Make the next flusher
Tejun Heo112202d2013-02-13 19:29:12 -08002647 * the new first flusher and arm pwqs.
Tejun Heo73f53c42010-06-29 10:07:11 +02002648 */
Tejun Heo6183c002013-03-12 11:29:57 -07002649 WARN_ON_ONCE(wq->flush_color == wq->work_color);
2650 WARN_ON_ONCE(wq->flush_color != next->flush_color);
Tejun Heo73f53c42010-06-29 10:07:11 +02002651
2652 list_del_init(&next->list);
2653 wq->first_flusher = next;
2654
Tejun Heo112202d2013-02-13 19:29:12 -08002655 if (flush_workqueue_prep_pwqs(wq, wq->flush_color, -1))
Tejun Heo73f53c42010-06-29 10:07:11 +02002656 break;
2657
2658 /*
2659 * Meh... this color is already done, clear first
2660 * flusher and repeat cascading.
2661 */
2662 wq->first_flusher = NULL;
2663 }
2664
2665out_unlock:
Lai Jiangshan3c25a552013-03-25 16:57:17 -07002666 mutex_unlock(&wq->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667}
Dave Jonesae90dd52006-06-30 01:40:45 -04002668EXPORT_SYMBOL_GPL(flush_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002670/**
2671 * drain_workqueue - drain a workqueue
2672 * @wq: workqueue to drain
2673 *
2674 * Wait until the workqueue becomes empty. While draining is in progress,
2675 * only chain queueing is allowed. IOW, only currently pending or running
2676 * work items on @wq can queue further work items on it. @wq is flushed
2677 * repeatedly until it becomes empty. The number of flushing is detemined
2678 * by the depth of chaining and should be relatively short. Whine if it
2679 * takes too long.
2680 */
2681void drain_workqueue(struct workqueue_struct *wq)
2682{
2683 unsigned int flush_cnt = 0;
Tejun Heo49e3cf42013-03-12 11:29:58 -07002684 struct pool_workqueue *pwq;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002685
2686 /*
2687 * __queue_work() needs to test whether there are drainers, is much
2688 * hotter than drain_workqueue() and already looks at @wq->flags.
Tejun Heo618b01e2013-03-12 11:30:04 -07002689 * Use __WQ_DRAINING so that queue doesn't have to check nr_drainers.
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002690 */
Lai Jiangshan87fc7412013-03-25 16:57:18 -07002691 mutex_lock(&wq->mutex);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002692 if (!wq->nr_drainers++)
Tejun Heo618b01e2013-03-12 11:30:04 -07002693 wq->flags |= __WQ_DRAINING;
Lai Jiangshan87fc7412013-03-25 16:57:18 -07002694 mutex_unlock(&wq->mutex);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002695reflush:
2696 flush_workqueue(wq);
2697
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07002698 mutex_lock(&wq->mutex);
Tejun Heo76af4d92013-03-12 11:30:00 -07002699
Tejun Heo49e3cf42013-03-12 11:29:58 -07002700 for_each_pwq(pwq, wq) {
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002701 bool drained;
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002702
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07002703 spin_lock_irq(&pwq->pool->lock);
Tejun Heo112202d2013-02-13 19:29:12 -08002704 drained = !pwq->nr_active && list_empty(&pwq->delayed_works);
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07002705 spin_unlock_irq(&pwq->pool->lock);
Thomas Tuttlefa2563e2011-09-14 16:22:28 -07002706
2707 if (drained)
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002708 continue;
2709
2710 if (++flush_cnt == 10 ||
2711 (flush_cnt % 100 == 0 && flush_cnt <= 1000))
Tejun Heoc5aa87b2013-03-13 16:51:36 -07002712 pr_warn("workqueue %s: drain_workqueue() isn't complete after %u tries\n",
Valentin Ilie044c7822012-08-19 00:52:42 +03002713 wq->name, flush_cnt);
Tejun Heo76af4d92013-03-12 11:30:00 -07002714
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07002715 mutex_unlock(&wq->mutex);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002716 goto reflush;
2717 }
2718
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002719 if (!--wq->nr_drainers)
Tejun Heo618b01e2013-03-12 11:30:04 -07002720 wq->flags &= ~__WQ_DRAINING;
Lai Jiangshan87fc7412013-03-25 16:57:18 -07002721 mutex_unlock(&wq->mutex);
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02002722}
2723EXPORT_SYMBOL_GPL(drain_workqueue);
2724
Tejun Heo606a5022012-08-20 14:51:23 -07002725static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
Tejun Heobaf59022010-09-16 10:42:16 +02002726{
2727 struct worker *worker = NULL;
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002728 struct worker_pool *pool;
Tejun Heo112202d2013-02-13 19:29:12 -08002729 struct pool_workqueue *pwq;
Tejun Heobaf59022010-09-16 10:42:16 +02002730
2731 might_sleep();
Tejun Heobaf59022010-09-16 10:42:16 +02002732
Tejun Heofa1b54e2013-03-12 11:30:00 -07002733 local_irq_disable();
2734 pool = get_work_pool(work);
2735 if (!pool) {
2736 local_irq_enable();
2737 return false;
2738 }
2739
2740 spin_lock(&pool->lock);
Lai Jiangshan0b3dae62013-02-06 18:04:53 -08002741 /* see the comment in try_to_grab_pending() with the same code */
Tejun Heo112202d2013-02-13 19:29:12 -08002742 pwq = get_work_pwq(work);
2743 if (pwq) {
2744 if (unlikely(pwq->pool != pool))
Tejun Heobaf59022010-09-16 10:42:16 +02002745 goto already_gone;
Tejun Heo606a5022012-08-20 14:51:23 -07002746 } else {
Tejun Heoc9e7cf22013-01-24 11:01:33 -08002747 worker = find_worker_executing_work(pool, work);
Tejun Heobaf59022010-09-16 10:42:16 +02002748 if (!worker)
2749 goto already_gone;
Tejun Heo112202d2013-02-13 19:29:12 -08002750 pwq = worker->current_pwq;
Tejun Heo606a5022012-08-20 14:51:23 -07002751 }
Tejun Heobaf59022010-09-16 10:42:16 +02002752
Tejun Heo112202d2013-02-13 19:29:12 -08002753 insert_wq_barrier(pwq, barr, work, worker);
Tejun Heod565ed62013-01-24 11:01:33 -08002754 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002755
Tejun Heoe1594892011-01-09 23:32:15 +01002756 /*
2757 * If @max_active is 1 or rescuer is in use, flushing another work
2758 * item on the same workqueue may lead to deadlock. Make sure the
2759 * flusher is not running on the same workqueue by verifying write
2760 * access.
2761 */
Tejun Heo493008a2013-03-12 11:30:03 -07002762 if (pwq->wq->saved_max_active == 1 || pwq->wq->rescuer)
Tejun Heo112202d2013-02-13 19:29:12 -08002763 lock_map_acquire(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002764 else
Tejun Heo112202d2013-02-13 19:29:12 -08002765 lock_map_acquire_read(&pwq->wq->lockdep_map);
2766 lock_map_release(&pwq->wq->lockdep_map);
Tejun Heoe1594892011-01-09 23:32:15 +01002767
Tejun Heobaf59022010-09-16 10:42:16 +02002768 return true;
2769already_gone:
Tejun Heod565ed62013-01-24 11:01:33 -08002770 spin_unlock_irq(&pool->lock);
Tejun Heobaf59022010-09-16 10:42:16 +02002771 return false;
2772}
2773
Oleg Nesterovdb700892008-07-25 01:47:49 -07002774/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002775 * flush_work - wait for a work to finish executing the last queueing instance
2776 * @work: the work to flush
Oleg Nesterovdb700892008-07-25 01:47:49 -07002777 *
Tejun Heo606a5022012-08-20 14:51:23 -07002778 * Wait until @work has finished execution. @work is guaranteed to be idle
2779 * on return if it hasn't been requeued since flush started.
Tejun Heo401a8d02010-09-16 10:36:00 +02002780 *
2781 * RETURNS:
2782 * %true if flush_work() waited for the work to finish execution,
2783 * %false if it was already idle.
Oleg Nesterovdb700892008-07-25 01:47:49 -07002784 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002785bool flush_work(struct work_struct *work)
Oleg Nesterovdb700892008-07-25 01:47:49 -07002786{
Oleg Nesterovdb700892008-07-25 01:47:49 -07002787 struct wq_barrier barr;
2788
Stephen Boyd0976dfc2012-04-20 17:28:50 -07002789 lock_map_acquire(&work->lockdep_map);
2790 lock_map_release(&work->lockdep_map);
2791
Tejun Heo606a5022012-08-20 14:51:23 -07002792 if (start_flush_work(work, &barr)) {
Tejun Heobaf59022010-09-16 10:42:16 +02002793 wait_for_completion(&barr.done);
2794 destroy_work_on_stack(&barr.work);
2795 return true;
Tejun Heo606a5022012-08-20 14:51:23 -07002796 } else {
Tejun Heobaf59022010-09-16 10:42:16 +02002797 return false;
Tejun Heo606a5022012-08-20 14:51:23 -07002798 }
Oleg Nesterovdb700892008-07-25 01:47:49 -07002799}
2800EXPORT_SYMBOL_GPL(flush_work);
2801
Tejun Heo36e227d2012-08-03 10:30:46 -07002802static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
Tejun Heo401a8d02010-09-16 10:36:00 +02002803{
Tejun Heobbb68df2012-08-03 10:30:46 -07002804 unsigned long flags;
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002805 int ret;
2806
2807 do {
Tejun Heobbb68df2012-08-03 10:30:46 -07002808 ret = try_to_grab_pending(work, is_dwork, &flags);
2809 /*
2810 * If someone else is canceling, wait for the same event it
2811 * would be waiting for before retrying.
2812 */
2813 if (unlikely(ret == -ENOENT))
Tejun Heo606a5022012-08-20 14:51:23 -07002814 flush_work(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002815 } while (unlikely(ret < 0));
2816
Tejun Heobbb68df2012-08-03 10:30:46 -07002817 /* tell other tasks trying to grab @work to back off */
2818 mark_work_canceling(work);
2819 local_irq_restore(flags);
2820
Tejun Heo606a5022012-08-20 14:51:23 -07002821 flush_work(work);
Tejun Heo7a22ad72010-06-29 10:07:13 +02002822 clear_work_data(work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002823 return ret;
2824}
2825
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002826/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002827 * cancel_work_sync - cancel a work and wait for it to finish
2828 * @work: the work to cancel
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002829 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002830 * Cancel @work and wait for its execution to finish. This function
2831 * can be used even if the work re-queues itself or migrates to
2832 * another workqueue. On return from this function, @work is
2833 * guaranteed to be not pending or executing on any CPU.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002834 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002835 * cancel_work_sync(&delayed_work->work) must not be used for
2836 * delayed_work's. Use cancel_delayed_work_sync() instead.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002837 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002838 * The caller must ensure that the workqueue on which @work was last
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002839 * queued can't be destroyed before this function returns.
Tejun Heo401a8d02010-09-16 10:36:00 +02002840 *
2841 * RETURNS:
2842 * %true if @work was pending, %false otherwise.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002843 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002844bool cancel_work_sync(struct work_struct *work)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002845{
Tejun Heo36e227d2012-08-03 10:30:46 -07002846 return __cancel_work_timer(work, false);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002847}
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002848EXPORT_SYMBOL_GPL(cancel_work_sync);
Oleg Nesterovb89deed2007-05-09 02:33:52 -07002849
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002850/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002851 * flush_delayed_work - wait for a dwork to finish executing the last queueing
2852 * @dwork: the delayed work to flush
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002853 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002854 * Delayed timer is cancelled and the pending work is queued for
2855 * immediate execution. Like flush_work(), this function only
2856 * considers the last queueing instance of @dwork.
Oleg Nesterov1f1f6422007-07-15 23:41:44 -07002857 *
Tejun Heo401a8d02010-09-16 10:36:00 +02002858 * RETURNS:
2859 * %true if flush_work() waited for the work to finish execution,
2860 * %false if it was already idle.
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002861 */
Tejun Heo401a8d02010-09-16 10:36:00 +02002862bool flush_delayed_work(struct delayed_work *dwork)
2863{
Tejun Heo8930cab2012-08-03 10:30:45 -07002864 local_irq_disable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002865 if (del_timer_sync(&dwork->timer))
Lai Jiangshan60c057b2013-02-06 18:04:53 -08002866 __queue_work(dwork->cpu, dwork->wq, &dwork->work);
Tejun Heo8930cab2012-08-03 10:30:45 -07002867 local_irq_enable();
Tejun Heo401a8d02010-09-16 10:36:00 +02002868 return flush_work(&dwork->work);
2869}
2870EXPORT_SYMBOL(flush_delayed_work);
2871
2872/**
Tejun Heo57b30ae2012-08-21 13:18:24 -07002873 * cancel_delayed_work - cancel a delayed work
2874 * @dwork: delayed_work to cancel
Tejun Heo09383492010-09-16 10:48:29 +02002875 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002876 * Kill off a pending delayed_work. Returns %true if @dwork was pending
2877 * and canceled; %false if wasn't pending. Note that the work callback
2878 * function may still be running on return, unless it returns %true and the
2879 * work doesn't re-arm itself. Explicitly flush or use
2880 * cancel_delayed_work_sync() to wait on it.
Tejun Heo09383492010-09-16 10:48:29 +02002881 *
Tejun Heo57b30ae2012-08-21 13:18:24 -07002882 * This function is safe to call from any context including IRQ handler.
Tejun Heo09383492010-09-16 10:48:29 +02002883 */
Tejun Heo57b30ae2012-08-21 13:18:24 -07002884bool cancel_delayed_work(struct delayed_work *dwork)
Tejun Heo09383492010-09-16 10:48:29 +02002885{
Tejun Heo57b30ae2012-08-21 13:18:24 -07002886 unsigned long flags;
2887 int ret;
2888
2889 do {
2890 ret = try_to_grab_pending(&dwork->work, true, &flags);
2891 } while (unlikely(ret == -EAGAIN));
2892
2893 if (unlikely(ret < 0))
2894 return false;
2895
Tejun Heo7c3eed52013-01-24 11:01:33 -08002896 set_work_pool_and_clear_pending(&dwork->work,
2897 get_work_pool_id(&dwork->work));
Tejun Heo57b30ae2012-08-21 13:18:24 -07002898 local_irq_restore(flags);
Dan Magenheimerc0158ca2012-10-18 16:31:37 -07002899 return ret;
Tejun Heo09383492010-09-16 10:48:29 +02002900}
Tejun Heo57b30ae2012-08-21 13:18:24 -07002901EXPORT_SYMBOL(cancel_delayed_work);
Tejun Heo09383492010-09-16 10:48:29 +02002902
2903/**
Tejun Heo401a8d02010-09-16 10:36:00 +02002904 * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2905 * @dwork: the delayed work cancel
2906 *
2907 * This is cancel_work_sync() for delayed works.
2908 *
2909 * RETURNS:
2910 * %true if @dwork was pending, %false otherwise.
2911 */
2912bool cancel_delayed_work_sync(struct delayed_work *dwork)
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002913{
Tejun Heo36e227d2012-08-03 10:30:46 -07002914 return __cancel_work_timer(&dwork->work, true);
Oleg Nesterov6e84d642007-05-09 02:34:46 -07002915}
Oleg Nesterovf5a421a2007-07-15 23:41:44 -07002916EXPORT_SYMBOL(cancel_delayed_work_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Rolf Eike Beer0fcb78c2006-07-30 03:03:42 -07002918/**
Tejun Heo31ddd872010-10-19 11:14:49 +02002919 * schedule_on_each_cpu - execute a function synchronously on each online CPU
Andrew Mortonb6136772006-06-25 05:47:49 -07002920 * @func: the function to call
Andrew Mortonb6136772006-06-25 05:47:49 -07002921 *
Tejun Heo31ddd872010-10-19 11:14:49 +02002922 * schedule_on_each_cpu() executes @func on each online CPU using the
2923 * system workqueue and blocks until all CPUs have completed.
Andrew Mortonb6136772006-06-25 05:47:49 -07002924 * schedule_on_each_cpu() is very slow.
Tejun Heo31ddd872010-10-19 11:14:49 +02002925 *
2926 * RETURNS:
2927 * 0 on success, -errno on failure.
Andrew Mortonb6136772006-06-25 05:47:49 -07002928 */
David Howells65f27f32006-11-22 14:55:48 +00002929int schedule_on_each_cpu(work_func_t func)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002930{
2931 int cpu;
Namhyung Kim38f51562010-08-08 14:24:09 +02002932 struct work_struct __percpu *works;
Christoph Lameter15316ba2006-01-08 01:00:43 -08002933
Andrew Mortonb6136772006-06-25 05:47:49 -07002934 works = alloc_percpu(struct work_struct);
2935 if (!works)
Christoph Lameter15316ba2006-01-08 01:00:43 -08002936 return -ENOMEM;
Andrew Mortonb6136772006-06-25 05:47:49 -07002937
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002938 get_online_cpus();
Tejun Heo93981802009-11-17 14:06:20 -08002939
Christoph Lameter15316ba2006-01-08 01:00:43 -08002940 for_each_online_cpu(cpu) {
Ingo Molnar9bfb1832006-12-18 20:05:09 +01002941 struct work_struct *work = per_cpu_ptr(works, cpu);
2942
2943 INIT_WORK(work, func);
Tejun Heob71ab8c2010-06-29 10:07:14 +02002944 schedule_work_on(cpu, work);
Andi Kleen65a64462009-10-14 06:22:47 +02002945 }
Tejun Heo93981802009-11-17 14:06:20 -08002946
2947 for_each_online_cpu(cpu)
2948 flush_work(per_cpu_ptr(works, cpu));
2949
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002950 put_online_cpus();
Andrew Mortonb6136772006-06-25 05:47:49 -07002951 free_percpu(works);
Christoph Lameter15316ba2006-01-08 01:00:43 -08002952 return 0;
2953}
2954
Alan Sterneef6a7d2010-02-12 17:39:21 +09002955/**
2956 * flush_scheduled_work - ensure that any scheduled work has run to completion.
2957 *
2958 * Forces execution of the kernel-global workqueue and blocks until its
2959 * completion.
2960 *
2961 * Think twice before calling this function! It's very easy to get into
2962 * trouble if you don't take great care. Either of the following situations
2963 * will lead to deadlock:
2964 *
2965 * One of the work items currently on the workqueue needs to acquire
2966 * a lock held by your code or its caller.
2967 *
2968 * Your code is running in the context of a work routine.
2969 *
2970 * They will be detected by lockdep when they occur, but the first might not
2971 * occur very often. It depends on what work items are on the workqueue and
2972 * what locks they need, which you have no control over.
2973 *
2974 * In most situations flushing the entire workqueue is overkill; you merely
2975 * need to know that a particular work item isn't queued and isn't running.
2976 * In such cases you should use cancel_delayed_work_sync() or
2977 * cancel_work_sync() instead.
2978 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979void flush_scheduled_work(void)
2980{
Tejun Heod320c032010-06-29 10:07:14 +02002981 flush_workqueue(system_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982}
Dave Jonesae90dd52006-06-30 01:40:45 -04002983EXPORT_SYMBOL(flush_scheduled_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985/**
James Bottomley1fa44ec2006-02-23 12:43:43 -06002986 * execute_in_process_context - reliably execute the routine with user context
2987 * @fn: the function to execute
James Bottomley1fa44ec2006-02-23 12:43:43 -06002988 * @ew: guaranteed storage for the execute work structure (must
2989 * be available when the work executes)
2990 *
2991 * Executes the function immediately if process context is available,
2992 * otherwise schedules the function for delayed execution.
2993 *
2994 * Returns: 0 - function was executed
2995 * 1 - function was scheduled for execution
2996 */
David Howells65f27f32006-11-22 14:55:48 +00002997int execute_in_process_context(work_func_t fn, struct execute_work *ew)
James Bottomley1fa44ec2006-02-23 12:43:43 -06002998{
2999 if (!in_interrupt()) {
David Howells65f27f32006-11-22 14:55:48 +00003000 fn(&ew->work);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003001 return 0;
3002 }
3003
David Howells65f27f32006-11-22 14:55:48 +00003004 INIT_WORK(&ew->work, fn);
James Bottomley1fa44ec2006-02-23 12:43:43 -06003005 schedule_work(&ew->work);
3006
3007 return 1;
3008}
3009EXPORT_SYMBOL_GPL(execute_in_process_context);
3010
Tejun Heo226223a2013-03-12 11:30:05 -07003011#ifdef CONFIG_SYSFS
3012/*
3013 * Workqueues with WQ_SYSFS flag set is visible to userland via
3014 * /sys/bus/workqueue/devices/WQ_NAME. All visible workqueues have the
3015 * following attributes.
3016 *
3017 * per_cpu RO bool : whether the workqueue is per-cpu or unbound
3018 * max_active RW int : maximum number of in-flight work items
3019 *
3020 * Unbound workqueues have the following extra attributes.
3021 *
3022 * id RO int : the associated pool ID
3023 * nice RW int : nice value of the workers
3024 * cpumask RW mask : bitmask of allowed CPUs for the workers
3025 */
3026struct wq_device {
3027 struct workqueue_struct *wq;
3028 struct device dev;
3029};
3030
3031static struct workqueue_struct *dev_to_wq(struct device *dev)
3032{
3033 struct wq_device *wq_dev = container_of(dev, struct wq_device, dev);
3034
3035 return wq_dev->wq;
3036}
3037
3038static ssize_t wq_per_cpu_show(struct device *dev,
3039 struct device_attribute *attr, char *buf)
3040{
3041 struct workqueue_struct *wq = dev_to_wq(dev);
3042
3043 return scnprintf(buf, PAGE_SIZE, "%d\n", (bool)!(wq->flags & WQ_UNBOUND));
3044}
3045
3046static ssize_t wq_max_active_show(struct device *dev,
3047 struct device_attribute *attr, char *buf)
3048{
3049 struct workqueue_struct *wq = dev_to_wq(dev);
3050
3051 return scnprintf(buf, PAGE_SIZE, "%d\n", wq->saved_max_active);
3052}
3053
3054static ssize_t wq_max_active_store(struct device *dev,
3055 struct device_attribute *attr,
3056 const char *buf, size_t count)
3057{
3058 struct workqueue_struct *wq = dev_to_wq(dev);
3059 int val;
3060
3061 if (sscanf(buf, "%d", &val) != 1 || val <= 0)
3062 return -EINVAL;
3063
3064 workqueue_set_max_active(wq, val);
3065 return count;
3066}
3067
3068static struct device_attribute wq_sysfs_attrs[] = {
3069 __ATTR(per_cpu, 0444, wq_per_cpu_show, NULL),
3070 __ATTR(max_active, 0644, wq_max_active_show, wq_max_active_store),
3071 __ATTR_NULL,
3072};
3073
3074static ssize_t wq_pool_id_show(struct device *dev,
3075 struct device_attribute *attr, char *buf)
3076{
3077 struct workqueue_struct *wq = dev_to_wq(dev);
3078 struct worker_pool *pool;
3079 int written;
3080
3081 rcu_read_lock_sched();
3082 pool = first_pwq(wq)->pool;
3083 written = scnprintf(buf, PAGE_SIZE, "%d\n", pool->id);
3084 rcu_read_unlock_sched();
3085
3086 return written;
3087}
3088
3089static ssize_t wq_nice_show(struct device *dev, struct device_attribute *attr,
3090 char *buf)
3091{
3092 struct workqueue_struct *wq = dev_to_wq(dev);
3093 int written;
3094
Tejun Heo6029a912013-04-01 11:23:34 -07003095 mutex_lock(&wq->mutex);
3096 written = scnprintf(buf, PAGE_SIZE, "%d\n", wq->unbound_attrs->nice);
3097 mutex_unlock(&wq->mutex);
Tejun Heo226223a2013-03-12 11:30:05 -07003098
3099 return written;
3100}
3101
3102/* prepare workqueue_attrs for sysfs store operations */
3103static struct workqueue_attrs *wq_sysfs_prep_attrs(struct workqueue_struct *wq)
3104{
3105 struct workqueue_attrs *attrs;
3106
3107 attrs = alloc_workqueue_attrs(GFP_KERNEL);
3108 if (!attrs)
3109 return NULL;
3110
Tejun Heo6029a912013-04-01 11:23:34 -07003111 mutex_lock(&wq->mutex);
3112 copy_workqueue_attrs(attrs, wq->unbound_attrs);
3113 mutex_unlock(&wq->mutex);
Tejun Heo226223a2013-03-12 11:30:05 -07003114 return attrs;
3115}
3116
3117static ssize_t wq_nice_store(struct device *dev, struct device_attribute *attr,
3118 const char *buf, size_t count)
3119{
3120 struct workqueue_struct *wq = dev_to_wq(dev);
3121 struct workqueue_attrs *attrs;
3122 int ret;
3123
3124 attrs = wq_sysfs_prep_attrs(wq);
3125 if (!attrs)
3126 return -ENOMEM;
3127
3128 if (sscanf(buf, "%d", &attrs->nice) == 1 &&
3129 attrs->nice >= -20 && attrs->nice <= 19)
3130 ret = apply_workqueue_attrs(wq, attrs);
3131 else
3132 ret = -EINVAL;
3133
3134 free_workqueue_attrs(attrs);
3135 return ret ?: count;
3136}
3137
3138static ssize_t wq_cpumask_show(struct device *dev,
3139 struct device_attribute *attr, char *buf)
3140{
3141 struct workqueue_struct *wq = dev_to_wq(dev);
3142 int written;
3143
Tejun Heo6029a912013-04-01 11:23:34 -07003144 mutex_lock(&wq->mutex);
3145 written = cpumask_scnprintf(buf, PAGE_SIZE, wq->unbound_attrs->cpumask);
3146 mutex_unlock(&wq->mutex);
Tejun Heo226223a2013-03-12 11:30:05 -07003147
3148 written += scnprintf(buf + written, PAGE_SIZE - written, "\n");
3149 return written;
3150}
3151
3152static ssize_t wq_cpumask_store(struct device *dev,
3153 struct device_attribute *attr,
3154 const char *buf, size_t count)
3155{
3156 struct workqueue_struct *wq = dev_to_wq(dev);
3157 struct workqueue_attrs *attrs;
3158 int ret;
3159
3160 attrs = wq_sysfs_prep_attrs(wq);
3161 if (!attrs)
3162 return -ENOMEM;
3163
3164 ret = cpumask_parse(buf, attrs->cpumask);
3165 if (!ret)
3166 ret = apply_workqueue_attrs(wq, attrs);
3167
3168 free_workqueue_attrs(attrs);
3169 return ret ?: count;
3170}
3171
3172static struct device_attribute wq_sysfs_unbound_attrs[] = {
3173 __ATTR(pool_id, 0444, wq_pool_id_show, NULL),
3174 __ATTR(nice, 0644, wq_nice_show, wq_nice_store),
3175 __ATTR(cpumask, 0644, wq_cpumask_show, wq_cpumask_store),
3176 __ATTR_NULL,
3177};
3178
3179static struct bus_type wq_subsys = {
3180 .name = "workqueue",
3181 .dev_attrs = wq_sysfs_attrs,
3182};
3183
3184static int __init wq_sysfs_init(void)
3185{
3186 return subsys_virtual_register(&wq_subsys, NULL);
3187}
3188core_initcall(wq_sysfs_init);
3189
3190static void wq_device_release(struct device *dev)
3191{
3192 struct wq_device *wq_dev = container_of(dev, struct wq_device, dev);
3193
3194 kfree(wq_dev);
3195}
3196
3197/**
3198 * workqueue_sysfs_register - make a workqueue visible in sysfs
3199 * @wq: the workqueue to register
3200 *
3201 * Expose @wq in sysfs under /sys/bus/workqueue/devices.
3202 * alloc_workqueue*() automatically calls this function if WQ_SYSFS is set
3203 * which is the preferred method.
3204 *
3205 * Workqueue user should use this function directly iff it wants to apply
3206 * workqueue_attrs before making the workqueue visible in sysfs; otherwise,
3207 * apply_workqueue_attrs() may race against userland updating the
3208 * attributes.
3209 *
3210 * Returns 0 on success, -errno on failure.
3211 */
3212int workqueue_sysfs_register(struct workqueue_struct *wq)
3213{
3214 struct wq_device *wq_dev;
3215 int ret;
3216
3217 /*
3218 * Adjusting max_active or creating new pwqs by applyting
3219 * attributes breaks ordering guarantee. Disallow exposing ordered
3220 * workqueues.
3221 */
3222 if (WARN_ON(wq->flags & __WQ_ORDERED))
3223 return -EINVAL;
3224
3225 wq->wq_dev = wq_dev = kzalloc(sizeof(*wq_dev), GFP_KERNEL);
3226 if (!wq_dev)
3227 return -ENOMEM;
3228
3229 wq_dev->wq = wq;
3230 wq_dev->dev.bus = &wq_subsys;
3231 wq_dev->dev.init_name = wq->name;
3232 wq_dev->dev.release = wq_device_release;
3233
3234 /*
3235 * unbound_attrs are created separately. Suppress uevent until
3236 * everything is ready.
3237 */
3238 dev_set_uevent_suppress(&wq_dev->dev, true);
3239
3240 ret = device_register(&wq_dev->dev);
3241 if (ret) {
3242 kfree(wq_dev);
3243 wq->wq_dev = NULL;
3244 return ret;
3245 }
3246
3247 if (wq->flags & WQ_UNBOUND) {
3248 struct device_attribute *attr;
3249
3250 for (attr = wq_sysfs_unbound_attrs; attr->attr.name; attr++) {
3251 ret = device_create_file(&wq_dev->dev, attr);
3252 if (ret) {
3253 device_unregister(&wq_dev->dev);
3254 wq->wq_dev = NULL;
3255 return ret;
3256 }
3257 }
3258 }
3259
3260 kobject_uevent(&wq_dev->dev.kobj, KOBJ_ADD);
3261 return 0;
3262}
3263
3264/**
3265 * workqueue_sysfs_unregister - undo workqueue_sysfs_register()
3266 * @wq: the workqueue to unregister
3267 *
3268 * If @wq is registered to sysfs by workqueue_sysfs_register(), unregister.
3269 */
3270static void workqueue_sysfs_unregister(struct workqueue_struct *wq)
3271{
3272 struct wq_device *wq_dev = wq->wq_dev;
3273
3274 if (!wq->wq_dev)
3275 return;
3276
3277 wq->wq_dev = NULL;
3278 device_unregister(&wq_dev->dev);
3279}
3280#else /* CONFIG_SYSFS */
3281static void workqueue_sysfs_unregister(struct workqueue_struct *wq) { }
3282#endif /* CONFIG_SYSFS */
3283
Tejun Heo7a4e3442013-03-12 11:30:00 -07003284/**
3285 * free_workqueue_attrs - free a workqueue_attrs
3286 * @attrs: workqueue_attrs to free
3287 *
3288 * Undo alloc_workqueue_attrs().
3289 */
3290void free_workqueue_attrs(struct workqueue_attrs *attrs)
3291{
3292 if (attrs) {
3293 free_cpumask_var(attrs->cpumask);
3294 kfree(attrs);
3295 }
3296}
3297
3298/**
3299 * alloc_workqueue_attrs - allocate a workqueue_attrs
3300 * @gfp_mask: allocation mask to use
3301 *
3302 * Allocate a new workqueue_attrs, initialize with default settings and
3303 * return it. Returns NULL on failure.
3304 */
3305struct workqueue_attrs *alloc_workqueue_attrs(gfp_t gfp_mask)
3306{
3307 struct workqueue_attrs *attrs;
3308
3309 attrs = kzalloc(sizeof(*attrs), gfp_mask);
3310 if (!attrs)
3311 goto fail;
3312 if (!alloc_cpumask_var(&attrs->cpumask, gfp_mask))
3313 goto fail;
3314
Tejun Heo13e2e552013-04-01 11:23:31 -07003315 cpumask_copy(attrs->cpumask, cpu_possible_mask);
Tejun Heo7a4e3442013-03-12 11:30:00 -07003316 return attrs;
3317fail:
3318 free_workqueue_attrs(attrs);
3319 return NULL;
3320}
3321
Tejun Heo29c91e92013-03-12 11:30:03 -07003322static void copy_workqueue_attrs(struct workqueue_attrs *to,
3323 const struct workqueue_attrs *from)
3324{
3325 to->nice = from->nice;
3326 cpumask_copy(to->cpumask, from->cpumask);
3327}
3328
Tejun Heo29c91e92013-03-12 11:30:03 -07003329/* hash value of the content of @attr */
3330static u32 wqattrs_hash(const struct workqueue_attrs *attrs)
3331{
3332 u32 hash = 0;
3333
3334 hash = jhash_1word(attrs->nice, hash);
Tejun Heo13e2e552013-04-01 11:23:31 -07003335 hash = jhash(cpumask_bits(attrs->cpumask),
3336 BITS_TO_LONGS(nr_cpumask_bits) * sizeof(long), hash);
Tejun Heo29c91e92013-03-12 11:30:03 -07003337 return hash;
3338}
3339
3340/* content equality test */
3341static bool wqattrs_equal(const struct workqueue_attrs *a,
3342 const struct workqueue_attrs *b)
3343{
3344 if (a->nice != b->nice)
3345 return false;
3346 if (!cpumask_equal(a->cpumask, b->cpumask))
3347 return false;
3348 return true;
3349}
3350
Tejun Heo7a4e3442013-03-12 11:30:00 -07003351/**
3352 * init_worker_pool - initialize a newly zalloc'd worker_pool
3353 * @pool: worker_pool to initialize
3354 *
3355 * Initiailize a newly zalloc'd @pool. It also allocates @pool->attrs.
Tejun Heo29c91e92013-03-12 11:30:03 -07003356 * Returns 0 on success, -errno on failure. Even on failure, all fields
3357 * inside @pool proper are initialized and put_unbound_pool() can be called
3358 * on @pool safely to release it.
Tejun Heo7a4e3442013-03-12 11:30:00 -07003359 */
3360static int init_worker_pool(struct worker_pool *pool)
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003361{
3362 spin_lock_init(&pool->lock);
Tejun Heo29c91e92013-03-12 11:30:03 -07003363 pool->id = -1;
3364 pool->cpu = -1;
Tejun Heof3f90ad2013-04-01 11:23:34 -07003365 pool->node = NUMA_NO_NODE;
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003366 pool->flags |= POOL_DISASSOCIATED;
3367 INIT_LIST_HEAD(&pool->worklist);
3368 INIT_LIST_HEAD(&pool->idle_list);
3369 hash_init(pool->busy_hash);
3370
3371 init_timer_deferrable(&pool->idle_timer);
3372 pool->idle_timer.function = idle_worker_timeout;
3373 pool->idle_timer.data = (unsigned long)pool;
3374
3375 setup_timer(&pool->mayday_timer, pool_mayday_timeout,
3376 (unsigned long)pool);
3377
3378 mutex_init(&pool->manager_arb);
Tejun Heobc3a1af2013-03-13 19:47:39 -07003379 mutex_init(&pool->manager_mutex);
Tejun Heo822d8402013-03-19 13:45:21 -07003380 idr_init(&pool->worker_idr);
Tejun Heo7a4e3442013-03-12 11:30:00 -07003381
Tejun Heo29c91e92013-03-12 11:30:03 -07003382 INIT_HLIST_NODE(&pool->hash_node);
3383 pool->refcnt = 1;
3384
3385 /* shouldn't fail above this point */
Tejun Heo7a4e3442013-03-12 11:30:00 -07003386 pool->attrs = alloc_workqueue_attrs(GFP_KERNEL);
3387 if (!pool->attrs)
3388 return -ENOMEM;
3389 return 0;
Tejun Heo4e1a1f92013-03-12 11:30:00 -07003390}
3391
Tejun Heo29c91e92013-03-12 11:30:03 -07003392static void rcu_free_pool(struct rcu_head *rcu)
3393{
3394 struct worker_pool *pool = container_of(rcu, struct worker_pool, rcu);
3395
Tejun Heo822d8402013-03-19 13:45:21 -07003396 idr_destroy(&pool->worker_idr);
Tejun Heo29c91e92013-03-12 11:30:03 -07003397 free_workqueue_attrs(pool->attrs);
3398 kfree(pool);
3399}
3400
3401/**
3402 * put_unbound_pool - put a worker_pool
3403 * @pool: worker_pool to put
3404 *
3405 * Put @pool. If its refcnt reaches zero, it gets destroyed in sched-RCU
Tejun Heoc5aa87b2013-03-13 16:51:36 -07003406 * safe manner. get_unbound_pool() calls this function on its failure path
3407 * and this function should be able to release pools which went through,
3408 * successfully or not, init_worker_pool().
Tejun Heoa892cac2013-04-01 11:23:32 -07003409 *
3410 * Should be called with wq_pool_mutex held.
Tejun Heo29c91e92013-03-12 11:30:03 -07003411 */
3412static void put_unbound_pool(struct worker_pool *pool)
3413{
3414 struct worker *worker;
3415
Tejun Heoa892cac2013-04-01 11:23:32 -07003416 lockdep_assert_held(&wq_pool_mutex);
3417
3418 if (--pool->refcnt)
Tejun Heo29c91e92013-03-12 11:30:03 -07003419 return;
Tejun Heo29c91e92013-03-12 11:30:03 -07003420
3421 /* sanity checks */
3422 if (WARN_ON(!(pool->flags & POOL_DISASSOCIATED)) ||
Tejun Heoa892cac2013-04-01 11:23:32 -07003423 WARN_ON(!list_empty(&pool->worklist)))
Tejun Heo29c91e92013-03-12 11:30:03 -07003424 return;
Tejun Heo29c91e92013-03-12 11:30:03 -07003425
3426 /* release id and unhash */
3427 if (pool->id >= 0)
3428 idr_remove(&worker_pool_idr, pool->id);
3429 hash_del(&pool->hash_node);
3430
Tejun Heoc5aa87b2013-03-13 16:51:36 -07003431 /*
3432 * Become the manager and destroy all workers. Grabbing
3433 * manager_arb prevents @pool's workers from blocking on
3434 * manager_mutex.
3435 */
Tejun Heo29c91e92013-03-12 11:30:03 -07003436 mutex_lock(&pool->manager_arb);
Tejun Heocd549682013-03-13 19:47:39 -07003437 mutex_lock(&pool->manager_mutex);
Tejun Heo29c91e92013-03-12 11:30:03 -07003438 spin_lock_irq(&pool->lock);
3439
3440 while ((worker = first_worker(pool)))
3441 destroy_worker(worker);
3442 WARN_ON(pool->nr_workers || pool->nr_idle);
3443
3444 spin_unlock_irq(&pool->lock);
Tejun Heocd549682013-03-13 19:47:39 -07003445 mutex_unlock(&pool->manager_mutex);
Tejun Heo29c91e92013-03-12 11:30:03 -07003446 mutex_unlock(&pool->manager_arb);
3447
3448 /* shut down the timers */
3449 del_timer_sync(&pool->idle_timer);
3450 del_timer_sync(&pool->mayday_timer);
3451
3452 /* sched-RCU protected to allow dereferences from get_work_pool() */
3453 call_rcu_sched(&pool->rcu, rcu_free_pool);
3454}
3455
3456/**
3457 * get_unbound_pool - get a worker_pool with the specified attributes
3458 * @attrs: the attributes of the worker_pool to get
3459 *
3460 * Obtain a worker_pool which has the same attributes as @attrs, bump the
3461 * reference count and return it. If there already is a matching
3462 * worker_pool, it will be used; otherwise, this function attempts to
3463 * create a new one. On failure, returns NULL.
Tejun Heoa892cac2013-04-01 11:23:32 -07003464 *
3465 * Should be called with wq_pool_mutex held.
Tejun Heo29c91e92013-03-12 11:30:03 -07003466 */
3467static struct worker_pool *get_unbound_pool(const struct workqueue_attrs *attrs)
3468{
Tejun Heo29c91e92013-03-12 11:30:03 -07003469 u32 hash = wqattrs_hash(attrs);
3470 struct worker_pool *pool;
Tejun Heof3f90ad2013-04-01 11:23:34 -07003471 int node;
Tejun Heo29c91e92013-03-12 11:30:03 -07003472
Tejun Heoa892cac2013-04-01 11:23:32 -07003473 lockdep_assert_held(&wq_pool_mutex);
Tejun Heo29c91e92013-03-12 11:30:03 -07003474
3475 /* do we already have a matching pool? */
Tejun Heo29c91e92013-03-12 11:30:03 -07003476 hash_for_each_possible(unbound_pool_hash, pool, hash_node, hash) {
3477 if (wqattrs_equal(pool->attrs, attrs)) {
3478 pool->refcnt++;
3479 goto out_unlock;
3480 }
3481 }
Tejun Heo29c91e92013-03-12 11:30:03 -07003482
3483 /* nope, create a new one */
3484 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
3485 if (!pool || init_worker_pool(pool) < 0)
3486 goto fail;
3487
Lai Jiangshan12ee4fc2013-03-20 03:28:01 +08003488 if (workqueue_freezing)
3489 pool->flags |= POOL_FREEZING;
3490
Tejun Heo8864b4e2013-03-12 11:30:04 -07003491 lockdep_set_subclass(&pool->lock, 1); /* see put_pwq() */
Tejun Heo29c91e92013-03-12 11:30:03 -07003492 copy_workqueue_attrs(pool->attrs, attrs);
3493
Tejun Heof3f90ad2013-04-01 11:23:34 -07003494 /* if cpumask is contained inside a NUMA node, we belong to that node */
3495 if (wq_numa_enabled) {
3496 for_each_node(node) {
3497 if (cpumask_subset(pool->attrs->cpumask,
3498 wq_numa_possible_cpumask[node])) {
3499 pool->node = node;
3500 break;
3501 }
3502 }
3503 }
3504
Tejun Heo29c91e92013-03-12 11:30:03 -07003505 if (worker_pool_assign_id(pool) < 0)
3506 goto fail;
3507
3508 /* create and start the initial worker */
Tejun Heoebf44d12013-03-13 19:47:39 -07003509 if (create_and_start_worker(pool) < 0)
Tejun Heo29c91e92013-03-12 11:30:03 -07003510 goto fail;
3511
Tejun Heo29c91e92013-03-12 11:30:03 -07003512 /* install */
Tejun Heo29c91e92013-03-12 11:30:03 -07003513 hash_add(unbound_pool_hash, &pool->hash_node, hash);
3514out_unlock:
Tejun Heo29c91e92013-03-12 11:30:03 -07003515 return pool;
3516fail:
Tejun Heo29c91e92013-03-12 11:30:03 -07003517 if (pool)
3518 put_unbound_pool(pool);
3519 return NULL;
3520}
3521
Tejun Heo8864b4e2013-03-12 11:30:04 -07003522static void rcu_free_pwq(struct rcu_head *rcu)
3523{
3524 kmem_cache_free(pwq_cache,
3525 container_of(rcu, struct pool_workqueue, rcu));
3526}
3527
3528/*
3529 * Scheduled on system_wq by put_pwq() when an unbound pwq hits zero refcnt
3530 * and needs to be destroyed.
3531 */
3532static void pwq_unbound_release_workfn(struct work_struct *work)
3533{
3534 struct pool_workqueue *pwq = container_of(work, struct pool_workqueue,
3535 unbound_release_work);
3536 struct workqueue_struct *wq = pwq->wq;
3537 struct worker_pool *pool = pwq->pool;
Tejun Heobc0caf02013-04-01 11:23:31 -07003538 bool is_last;
Tejun Heo8864b4e2013-03-12 11:30:04 -07003539
3540 if (WARN_ON_ONCE(!(wq->flags & WQ_UNBOUND)))
3541 return;
3542
Tejun Heo75ccf592013-03-12 11:30:04 -07003543 /*
Lai Jiangshan3c25a552013-03-25 16:57:17 -07003544 * Unlink @pwq. Synchronization against wq->mutex isn't strictly
Tejun Heo75ccf592013-03-12 11:30:04 -07003545 * necessary on release but do it anyway. It's easier to verify
3546 * and consistent with the linking path.
3547 */
Lai Jiangshan3c25a552013-03-25 16:57:17 -07003548 mutex_lock(&wq->mutex);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003549 list_del_rcu(&pwq->pwqs_node);
Tejun Heobc0caf02013-04-01 11:23:31 -07003550 is_last = list_empty(&wq->pwqs);
Lai Jiangshan3c25a552013-03-25 16:57:17 -07003551 mutex_unlock(&wq->mutex);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003552
Tejun Heoa892cac2013-04-01 11:23:32 -07003553 mutex_lock(&wq_pool_mutex);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003554 put_unbound_pool(pool);
Tejun Heoa892cac2013-04-01 11:23:32 -07003555 mutex_unlock(&wq_pool_mutex);
3556
Tejun Heo8864b4e2013-03-12 11:30:04 -07003557 call_rcu_sched(&pwq->rcu, rcu_free_pwq);
3558
3559 /*
3560 * If we're the last pwq going away, @wq is already dead and no one
3561 * is gonna access it anymore. Free it.
3562 */
Tejun Heo6029a912013-04-01 11:23:34 -07003563 if (is_last) {
3564 free_workqueue_attrs(wq->unbound_attrs);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003565 kfree(wq);
Tejun Heo6029a912013-04-01 11:23:34 -07003566 }
Tejun Heo8864b4e2013-03-12 11:30:04 -07003567}
3568
Tejun Heo0fbd95a2013-03-13 16:51:35 -07003569/**
Tejun Heo699ce092013-03-13 16:51:35 -07003570 * pwq_adjust_max_active - update a pwq's max_active to the current setting
Tejun Heo0fbd95a2013-03-13 16:51:35 -07003571 * @pwq: target pool_workqueue
Tejun Heo0fbd95a2013-03-13 16:51:35 -07003572 *
Tejun Heo699ce092013-03-13 16:51:35 -07003573 * If @pwq isn't freezing, set @pwq->max_active to the associated
3574 * workqueue's saved_max_active and activate delayed work items
3575 * accordingly. If @pwq is freezing, clear @pwq->max_active to zero.
Tejun Heo0fbd95a2013-03-13 16:51:35 -07003576 */
Tejun Heo699ce092013-03-13 16:51:35 -07003577static void pwq_adjust_max_active(struct pool_workqueue *pwq)
Tejun Heo0fbd95a2013-03-13 16:51:35 -07003578{
Tejun Heo699ce092013-03-13 16:51:35 -07003579 struct workqueue_struct *wq = pwq->wq;
3580 bool freezable = wq->flags & WQ_FREEZABLE;
Tejun Heo0fbd95a2013-03-13 16:51:35 -07003581
Tejun Heo699ce092013-03-13 16:51:35 -07003582 /* for @wq->saved_max_active */
Lai Jiangshana357fc02013-03-25 16:57:19 -07003583 lockdep_assert_held(&wq->mutex);
Tejun Heo699ce092013-03-13 16:51:35 -07003584
3585 /* fast exit for non-freezable wqs */
3586 if (!freezable && pwq->max_active == wq->saved_max_active)
3587 return;
3588
Lai Jiangshana357fc02013-03-25 16:57:19 -07003589 spin_lock_irq(&pwq->pool->lock);
Tejun Heo699ce092013-03-13 16:51:35 -07003590
3591 if (!freezable || !(pwq->pool->flags & POOL_FREEZING)) {
3592 pwq->max_active = wq->saved_max_active;
3593
3594 while (!list_empty(&pwq->delayed_works) &&
3595 pwq->nr_active < pwq->max_active)
3596 pwq_activate_first_delayed(pwq);
Lai Jiangshan951a0782013-03-20 10:52:30 -07003597
3598 /*
3599 * Need to kick a worker after thawed or an unbound wq's
3600 * max_active is bumped. It's a slow path. Do it always.
3601 */
3602 wake_up_worker(pwq->pool);
Tejun Heo699ce092013-03-13 16:51:35 -07003603 } else {
3604 pwq->max_active = 0;
3605 }
3606
Lai Jiangshana357fc02013-03-25 16:57:19 -07003607 spin_unlock_irq(&pwq->pool->lock);
Tejun Heo0fbd95a2013-03-13 16:51:35 -07003608}
3609
Tejun Heod2c1d402013-03-12 11:30:04 -07003610static void init_and_link_pwq(struct pool_workqueue *pwq,
3611 struct workqueue_struct *wq,
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003612 struct worker_pool *pool,
3613 struct pool_workqueue **p_last_pwq)
Tejun Heod2c1d402013-03-12 11:30:04 -07003614{
3615 BUG_ON((unsigned long)pwq & WORK_STRUCT_FLAG_MASK);
3616
3617 pwq->pool = pool;
3618 pwq->wq = wq;
3619 pwq->flush_color = -1;
Tejun Heo8864b4e2013-03-12 11:30:04 -07003620 pwq->refcnt = 1;
Tejun Heod2c1d402013-03-12 11:30:04 -07003621 INIT_LIST_HEAD(&pwq->delayed_works);
3622 INIT_LIST_HEAD(&pwq->mayday_node);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003623 INIT_WORK(&pwq->unbound_release_work, pwq_unbound_release_workfn);
Tejun Heod2c1d402013-03-12 11:30:04 -07003624
Lai Jiangshan3c25a552013-03-25 16:57:17 -07003625 mutex_lock(&wq->mutex);
Tejun Heo75ccf592013-03-12 11:30:04 -07003626
Tejun Heo983ca252013-03-13 16:51:35 -07003627 /*
3628 * Set the matching work_color. This is synchronized with
Lai Jiangshan3c25a552013-03-25 16:57:17 -07003629 * wq->mutex to avoid confusing flush_workqueue().
Tejun Heo983ca252013-03-13 16:51:35 -07003630 */
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003631 if (p_last_pwq)
3632 *p_last_pwq = first_pwq(wq);
Tejun Heo75ccf592013-03-12 11:30:04 -07003633 pwq->work_color = wq->work_color;
Tejun Heo983ca252013-03-13 16:51:35 -07003634
3635 /* sync max_active to the current setting */
3636 pwq_adjust_max_active(pwq);
3637
3638 /* link in @pwq */
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003639 list_add_rcu(&pwq->pwqs_node, &wq->pwqs);
Lai Jiangshana357fc02013-03-25 16:57:19 -07003640
Tejun Heo6029a912013-04-01 11:23:34 -07003641 if (wq->flags & WQ_UNBOUND)
3642 copy_workqueue_attrs(wq->unbound_attrs, pool->attrs);
3643
Lai Jiangshan3c25a552013-03-25 16:57:17 -07003644 mutex_unlock(&wq->mutex);
Tejun Heod2c1d402013-03-12 11:30:04 -07003645}
3646
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003647/**
3648 * apply_workqueue_attrs - apply new workqueue_attrs to an unbound workqueue
3649 * @wq: the target workqueue
3650 * @attrs: the workqueue_attrs to apply, allocated with alloc_workqueue_attrs()
3651 *
3652 * Apply @attrs to an unbound workqueue @wq. If @attrs doesn't match the
3653 * current attributes, a new pwq is created and made the first pwq which
3654 * will serve all new work items. Older pwqs are released as in-flight
3655 * work items finish. Note that a work item which repeatedly requeues
3656 * itself back-to-back will stay on its current pwq.
3657 *
3658 * Performs GFP_KERNEL allocations. Returns 0 on success and -errno on
3659 * failure.
3660 */
3661int apply_workqueue_attrs(struct workqueue_struct *wq,
3662 const struct workqueue_attrs *attrs)
3663{
Tejun Heo13e2e552013-04-01 11:23:31 -07003664 struct workqueue_attrs *new_attrs;
3665 struct pool_workqueue *pwq = NULL, *last_pwq;
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003666 struct worker_pool *pool;
Tejun Heo48621252013-04-01 11:23:31 -07003667 int ret;
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003668
Tejun Heo8719dce2013-03-12 11:30:04 -07003669 /* only unbound workqueues can change attributes */
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003670 if (WARN_ON(!(wq->flags & WQ_UNBOUND)))
3671 return -EINVAL;
3672
Tejun Heo8719dce2013-03-12 11:30:04 -07003673 /* creating multiple pwqs breaks ordering guarantee */
3674 if (WARN_ON((wq->flags & __WQ_ORDERED) && !list_empty(&wq->pwqs)))
3675 return -EINVAL;
3676
Tejun Heo13e2e552013-04-01 11:23:31 -07003677 /* make a copy of @attrs and sanitize it */
3678 new_attrs = alloc_workqueue_attrs(GFP_KERNEL);
3679 if (!new_attrs)
3680 goto enomem;
3681
3682 copy_workqueue_attrs(new_attrs, attrs);
3683 cpumask_and(new_attrs->cpumask, new_attrs->cpumask, cpu_possible_mask);
3684
Tejun Heoa892cac2013-04-01 11:23:32 -07003685 mutex_lock(&wq_pool_mutex);
3686
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003687 pwq = kmem_cache_zalloc(pwq_cache, GFP_KERNEL);
Tejun Heoa892cac2013-04-01 11:23:32 -07003688 if (!pwq) {
3689 mutex_unlock(&wq_pool_mutex);
Tejun Heo13e2e552013-04-01 11:23:31 -07003690 goto enomem;
Tejun Heoa892cac2013-04-01 11:23:32 -07003691 }
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003692
Tejun Heo13e2e552013-04-01 11:23:31 -07003693 pool = get_unbound_pool(new_attrs);
Tejun Heoa892cac2013-04-01 11:23:32 -07003694 if (!pool) {
3695 mutex_unlock(&wq_pool_mutex);
Tejun Heo13e2e552013-04-01 11:23:31 -07003696 goto enomem;
Tejun Heoa892cac2013-04-01 11:23:32 -07003697 }
3698
3699 mutex_unlock(&wq_pool_mutex);
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003700
3701 init_and_link_pwq(pwq, wq, pool, &last_pwq);
3702 if (last_pwq) {
3703 spin_lock_irq(&last_pwq->pool->lock);
3704 put_pwq(last_pwq);
3705 spin_unlock_irq(&last_pwq->pool->lock);
3706 }
3707
Tejun Heo48621252013-04-01 11:23:31 -07003708 ret = 0;
3709 /* fall through */
3710out_free:
3711 free_workqueue_attrs(new_attrs);
3712 return ret;
Tejun Heo13e2e552013-04-01 11:23:31 -07003713
3714enomem:
3715 kmem_cache_free(pwq_cache, pwq);
Tejun Heo48621252013-04-01 11:23:31 -07003716 ret = -ENOMEM;
3717 goto out_free;
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003718}
3719
Tejun Heo30cdf242013-03-12 11:29:57 -07003720static int alloc_and_link_pwqs(struct workqueue_struct *wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003722 bool highpri = wq->flags & WQ_HIGHPRI;
Tejun Heo30cdf242013-03-12 11:29:57 -07003723 int cpu;
Frederic Weisbeckere1d8aa92009-01-12 23:15:46 +01003724
Tejun Heo30cdf242013-03-12 11:29:57 -07003725 if (!(wq->flags & WQ_UNBOUND)) {
Tejun Heo420c0dd2013-03-12 11:29:59 -07003726 wq->cpu_pwqs = alloc_percpu(struct pool_workqueue);
3727 if (!wq->cpu_pwqs)
Tejun Heo30cdf242013-03-12 11:29:57 -07003728 return -ENOMEM;
3729
3730 for_each_possible_cpu(cpu) {
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003731 struct pool_workqueue *pwq =
3732 per_cpu_ptr(wq->cpu_pwqs, cpu);
Tejun Heo7a62c2c2013-03-12 11:30:03 -07003733 struct worker_pool *cpu_pools =
Tejun Heof02ae732013-03-12 11:30:03 -07003734 per_cpu(cpu_worker_pools, cpu);
Tejun Heo30cdf242013-03-12 11:29:57 -07003735
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003736 init_and_link_pwq(pwq, wq, &cpu_pools[highpri], NULL);
Tejun Heo30cdf242013-03-12 11:29:57 -07003737 }
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003738 return 0;
Tejun Heo30cdf242013-03-12 11:29:57 -07003739 } else {
Tejun Heo9e8cd2f2013-03-12 11:30:04 -07003740 return apply_workqueue_attrs(wq, unbound_std_wq_attrs[highpri]);
Tejun Heo30cdf242013-03-12 11:29:57 -07003741 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003742}
3743
Tejun Heof3421792010-07-02 10:03:51 +02003744static int wq_clamp_max_active(int max_active, unsigned int flags,
3745 const char *name)
Tejun Heob71ab8c2010-06-29 10:07:14 +02003746{
Tejun Heof3421792010-07-02 10:03:51 +02003747 int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3748
3749 if (max_active < 1 || max_active > lim)
Valentin Ilie044c7822012-08-19 00:52:42 +03003750 pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3751 max_active, name, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003752
Tejun Heof3421792010-07-02 10:03:51 +02003753 return clamp_val(max_active, 1, lim);
Tejun Heob71ab8c2010-06-29 10:07:14 +02003754}
3755
Tejun Heob196be82012-01-10 15:11:35 -08003756struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
Tejun Heod320c032010-06-29 10:07:14 +02003757 unsigned int flags,
3758 int max_active,
3759 struct lock_class_key *key,
Tejun Heob196be82012-01-10 15:11:35 -08003760 const char *lock_name, ...)
Oleg Nesterov3af244332007-05-09 02:34:09 -07003761{
Tejun Heoecf68812013-04-01 11:23:34 -07003762 va_list args;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003763 struct workqueue_struct *wq;
Tejun Heo49e3cf42013-03-12 11:29:58 -07003764 struct pool_workqueue *pwq;
Tejun Heob196be82012-01-10 15:11:35 -08003765
Tejun Heoecf68812013-04-01 11:23:34 -07003766 /* allocate wq and format name */
3767 wq = kzalloc(sizeof(*wq), GFP_KERNEL);
Tejun Heob196be82012-01-10 15:11:35 -08003768 if (!wq)
Tejun Heod2c1d402013-03-12 11:30:04 -07003769 return NULL;
Tejun Heob196be82012-01-10 15:11:35 -08003770
Tejun Heo6029a912013-04-01 11:23:34 -07003771 if (flags & WQ_UNBOUND) {
3772 wq->unbound_attrs = alloc_workqueue_attrs(GFP_KERNEL);
3773 if (!wq->unbound_attrs)
3774 goto err_free_wq;
3775 }
3776
Tejun Heoecf68812013-04-01 11:23:34 -07003777 va_start(args, lock_name);
3778 vsnprintf(wq->name, sizeof(wq->name), fmt, args);
Tejun Heob196be82012-01-10 15:11:35 -08003779 va_end(args);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003780
Tejun Heod320c032010-06-29 10:07:14 +02003781 max_active = max_active ?: WQ_DFL_ACTIVE;
Tejun Heob196be82012-01-10 15:11:35 -08003782 max_active = wq_clamp_max_active(max_active, flags, wq->name);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003783
Tejun Heob196be82012-01-10 15:11:35 -08003784 /* init wq */
Tejun Heo97e37d72010-06-29 10:07:10 +02003785 wq->flags = flags;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003786 wq->saved_max_active = max_active;
Lai Jiangshan3c25a552013-03-25 16:57:17 -07003787 mutex_init(&wq->mutex);
Tejun Heo112202d2013-02-13 19:29:12 -08003788 atomic_set(&wq->nr_pwqs_to_flush, 0);
Tejun Heo30cdf242013-03-12 11:29:57 -07003789 INIT_LIST_HEAD(&wq->pwqs);
Tejun Heo73f53c42010-06-29 10:07:11 +02003790 INIT_LIST_HEAD(&wq->flusher_queue);
3791 INIT_LIST_HEAD(&wq->flusher_overflow);
Tejun Heo493a1722013-03-12 11:29:59 -07003792 INIT_LIST_HEAD(&wq->maydays);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003793
Johannes Bergeb13ba82008-01-16 09:51:58 +01003794 lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
Oleg Nesterovcce1a162007-05-09 02:34:13 -07003795 INIT_LIST_HEAD(&wq->list);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003796
Tejun Heo30cdf242013-03-12 11:29:57 -07003797 if (alloc_and_link_pwqs(wq) < 0)
Tejun Heod2c1d402013-03-12 11:30:04 -07003798 goto err_free_wq;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003799
Tejun Heo493008a2013-03-12 11:30:03 -07003800 /*
3801 * Workqueues which may be used during memory reclaim should
3802 * have a rescuer to guarantee forward progress.
3803 */
3804 if (flags & WQ_MEM_RECLAIM) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003805 struct worker *rescuer;
3806
Tejun Heod2c1d402013-03-12 11:30:04 -07003807 rescuer = alloc_worker();
Tejun Heoe22bee72010-06-29 10:07:14 +02003808 if (!rescuer)
Tejun Heod2c1d402013-03-12 11:30:04 -07003809 goto err_destroy;
Tejun Heoe22bee72010-06-29 10:07:14 +02003810
Tejun Heo111c2252013-01-17 17:16:24 -08003811 rescuer->rescue_wq = wq;
3812 rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
Tejun Heob196be82012-01-10 15:11:35 -08003813 wq->name);
Tejun Heod2c1d402013-03-12 11:30:04 -07003814 if (IS_ERR(rescuer->task)) {
3815 kfree(rescuer);
3816 goto err_destroy;
3817 }
Tejun Heoe22bee72010-06-29 10:07:14 +02003818
Tejun Heod2c1d402013-03-12 11:30:04 -07003819 wq->rescuer = rescuer;
Tejun Heo14a40ff2013-03-19 13:45:20 -07003820 rescuer->task->flags |= PF_NO_SETAFFINITY;
Tejun Heoe22bee72010-06-29 10:07:14 +02003821 wake_up_process(rescuer->task);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003822 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003823
Tejun Heo226223a2013-03-12 11:30:05 -07003824 if ((wq->flags & WQ_SYSFS) && workqueue_sysfs_register(wq))
3825 goto err_destroy;
3826
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003827 /*
Lai Jiangshan68e13a62013-03-25 16:57:17 -07003828 * wq_pool_mutex protects global freeze state and workqueues list.
3829 * Grab it, adjust max_active and add the new @wq to workqueues
3830 * list.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003831 */
Lai Jiangshan68e13a62013-03-25 16:57:17 -07003832 mutex_lock(&wq_pool_mutex);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003833
Lai Jiangshana357fc02013-03-25 16:57:19 -07003834 mutex_lock(&wq->mutex);
Tejun Heo699ce092013-03-13 16:51:35 -07003835 for_each_pwq(pwq, wq)
3836 pwq_adjust_max_active(pwq);
Lai Jiangshana357fc02013-03-25 16:57:19 -07003837 mutex_unlock(&wq->mutex);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003838
Tejun Heo15376632010-06-29 10:07:11 +02003839 list_add(&wq->list, &workqueues);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003840
Lai Jiangshan68e13a62013-03-25 16:57:17 -07003841 mutex_unlock(&wq_pool_mutex);
Tejun Heo15376632010-06-29 10:07:11 +02003842
Oleg Nesterov3af244332007-05-09 02:34:09 -07003843 return wq;
Tejun Heod2c1d402013-03-12 11:30:04 -07003844
3845err_free_wq:
Tejun Heo6029a912013-04-01 11:23:34 -07003846 free_workqueue_attrs(wq->unbound_attrs);
Tejun Heod2c1d402013-03-12 11:30:04 -07003847 kfree(wq);
3848 return NULL;
3849err_destroy:
3850 destroy_workqueue(wq);
Tejun Heo4690c4a2010-06-29 10:07:10 +02003851 return NULL;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003852}
Tejun Heod320c032010-06-29 10:07:14 +02003853EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003854
3855/**
3856 * destroy_workqueue - safely terminate a workqueue
3857 * @wq: target workqueue
3858 *
3859 * Safely destroy a workqueue. All work currently pending will be done first.
3860 */
3861void destroy_workqueue(struct workqueue_struct *wq)
3862{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003863 struct pool_workqueue *pwq;
Oleg Nesterov3af244332007-05-09 02:34:09 -07003864
Tejun Heo9c5a2ba2011-04-05 18:01:44 +02003865 /* drain it before proceeding with destruction */
3866 drain_workqueue(wq);
Tejun Heoc8efcc22010-12-20 19:32:04 +01003867
Tejun Heo6183c002013-03-12 11:29:57 -07003868 /* sanity checks */
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07003869 mutex_lock(&wq->mutex);
Tejun Heo49e3cf42013-03-12 11:29:58 -07003870 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07003871 int i;
3872
Tejun Heo76af4d92013-03-12 11:30:00 -07003873 for (i = 0; i < WORK_NR_COLORS; i++) {
3874 if (WARN_ON(pwq->nr_in_flight[i])) {
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07003875 mutex_unlock(&wq->mutex);
Tejun Heo6183c002013-03-12 11:29:57 -07003876 return;
Tejun Heo76af4d92013-03-12 11:30:00 -07003877 }
3878 }
3879
Tejun Heo8864b4e2013-03-12 11:30:04 -07003880 if (WARN_ON(pwq->refcnt > 1) ||
3881 WARN_ON(pwq->nr_active) ||
Tejun Heo76af4d92013-03-12 11:30:00 -07003882 WARN_ON(!list_empty(&pwq->delayed_works))) {
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07003883 mutex_unlock(&wq->mutex);
Tejun Heo6183c002013-03-12 11:29:57 -07003884 return;
Tejun Heo76af4d92013-03-12 11:30:00 -07003885 }
Tejun Heo6183c002013-03-12 11:29:57 -07003886 }
Lai Jiangshanb09f4fd2013-03-25 16:57:18 -07003887 mutex_unlock(&wq->mutex);
Tejun Heo6183c002013-03-12 11:29:57 -07003888
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02003889 /*
3890 * wq list is used to freeze wq, remove from list after
3891 * flushing is complete in case freeze races us.
3892 */
Lai Jiangshan68e13a62013-03-25 16:57:17 -07003893 mutex_lock(&wq_pool_mutex);
Tejun Heod2c1d402013-03-12 11:30:04 -07003894 list_del_init(&wq->list);
Lai Jiangshan68e13a62013-03-25 16:57:17 -07003895 mutex_unlock(&wq_pool_mutex);
Oleg Nesterov3af244332007-05-09 02:34:09 -07003896
Tejun Heo226223a2013-03-12 11:30:05 -07003897 workqueue_sysfs_unregister(wq);
3898
Tejun Heo493008a2013-03-12 11:30:03 -07003899 if (wq->rescuer) {
Tejun Heoe22bee72010-06-29 10:07:14 +02003900 kthread_stop(wq->rescuer->task);
Xiaotian Feng8d9df9f2010-08-16 09:54:28 +02003901 kfree(wq->rescuer);
Tejun Heo493008a2013-03-12 11:30:03 -07003902 wq->rescuer = NULL;
Tejun Heoe22bee72010-06-29 10:07:14 +02003903 }
3904
Tejun Heo8864b4e2013-03-12 11:30:04 -07003905 if (!(wq->flags & WQ_UNBOUND)) {
3906 /*
3907 * The base ref is never dropped on per-cpu pwqs. Directly
3908 * free the pwqs and wq.
3909 */
3910 free_percpu(wq->cpu_pwqs);
3911 kfree(wq);
3912 } else {
3913 /*
3914 * We're the sole accessor of @wq at this point. Directly
3915 * access the first pwq and put the base ref. As both pwqs
3916 * and pools are sched-RCU protected, the lock operations
3917 * are safe. @wq will be freed when the last pwq is
3918 * released.
3919 */
Tejun Heo29c91e92013-03-12 11:30:03 -07003920 pwq = list_first_entry(&wq->pwqs, struct pool_workqueue,
3921 pwqs_node);
Tejun Heo8864b4e2013-03-12 11:30:04 -07003922 spin_lock_irq(&pwq->pool->lock);
3923 put_pwq(pwq);
3924 spin_unlock_irq(&pwq->pool->lock);
Tejun Heo29c91e92013-03-12 11:30:03 -07003925 }
Oleg Nesterov3af244332007-05-09 02:34:09 -07003926}
3927EXPORT_SYMBOL_GPL(destroy_workqueue);
3928
Tejun Heodcd989c2010-06-29 10:07:14 +02003929/**
3930 * workqueue_set_max_active - adjust max_active of a workqueue
3931 * @wq: target workqueue
3932 * @max_active: new max_active value.
3933 *
3934 * Set max_active of @wq to @max_active.
3935 *
3936 * CONTEXT:
3937 * Don't call from IRQ context.
3938 */
3939void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
3940{
Tejun Heo49e3cf42013-03-12 11:29:58 -07003941 struct pool_workqueue *pwq;
Tejun Heodcd989c2010-06-29 10:07:14 +02003942
Tejun Heo8719dce2013-03-12 11:30:04 -07003943 /* disallow meddling with max_active for ordered workqueues */
3944 if (WARN_ON(wq->flags & __WQ_ORDERED))
3945 return;
3946
Tejun Heof3421792010-07-02 10:03:51 +02003947 max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
Tejun Heodcd989c2010-06-29 10:07:14 +02003948
Lai Jiangshana357fc02013-03-25 16:57:19 -07003949 mutex_lock(&wq->mutex);
Tejun Heodcd989c2010-06-29 10:07:14 +02003950
3951 wq->saved_max_active = max_active;
3952
Tejun Heo699ce092013-03-13 16:51:35 -07003953 for_each_pwq(pwq, wq)
3954 pwq_adjust_max_active(pwq);
Tejun Heodcd989c2010-06-29 10:07:14 +02003955
Lai Jiangshana357fc02013-03-25 16:57:19 -07003956 mutex_unlock(&wq->mutex);
Tejun Heodcd989c2010-06-29 10:07:14 +02003957}
3958EXPORT_SYMBOL_GPL(workqueue_set_max_active);
3959
3960/**
Tejun Heoe6267612013-03-12 17:41:37 -07003961 * current_is_workqueue_rescuer - is %current workqueue rescuer?
3962 *
3963 * Determine whether %current is a workqueue rescuer. Can be used from
3964 * work functions to determine whether it's being run off the rescuer task.
3965 */
3966bool current_is_workqueue_rescuer(void)
3967{
3968 struct worker *worker = current_wq_worker();
3969
Lai Jiangshan6a092df2013-03-20 03:28:03 +08003970 return worker && worker->rescue_wq;
Tejun Heoe6267612013-03-12 17:41:37 -07003971}
3972
3973/**
Tejun Heodcd989c2010-06-29 10:07:14 +02003974 * workqueue_congested - test whether a workqueue is congested
3975 * @cpu: CPU in question
3976 * @wq: target workqueue
3977 *
3978 * Test whether @wq's cpu workqueue for @cpu is congested. There is
3979 * no synchronization around this function and the test result is
3980 * unreliable and only useful as advisory hints or for debugging.
3981 *
3982 * RETURNS:
3983 * %true if congested, %false otherwise.
3984 */
Tejun Heod84ff052013-03-12 11:29:59 -07003985bool workqueue_congested(int cpu, struct workqueue_struct *wq)
Tejun Heodcd989c2010-06-29 10:07:14 +02003986{
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003987 struct pool_workqueue *pwq;
Tejun Heo76af4d92013-03-12 11:30:00 -07003988 bool ret;
3989
Lai Jiangshan88109452013-03-20 03:28:10 +08003990 rcu_read_lock_sched();
Tejun Heo7fb98ea2013-03-12 11:30:00 -07003991
3992 if (!(wq->flags & WQ_UNBOUND))
3993 pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
3994 else
3995 pwq = first_pwq(wq);
Tejun Heodcd989c2010-06-29 10:07:14 +02003996
Tejun Heo76af4d92013-03-12 11:30:00 -07003997 ret = !list_empty(&pwq->delayed_works);
Lai Jiangshan88109452013-03-20 03:28:10 +08003998 rcu_read_unlock_sched();
Tejun Heo76af4d92013-03-12 11:30:00 -07003999
4000 return ret;
Tejun Heodcd989c2010-06-29 10:07:14 +02004001}
4002EXPORT_SYMBOL_GPL(workqueue_congested);
4003
4004/**
Tejun Heodcd989c2010-06-29 10:07:14 +02004005 * work_busy - test whether a work is currently pending or running
4006 * @work: the work to be tested
4007 *
4008 * Test whether @work is currently pending or running. There is no
4009 * synchronization around this function and the test result is
4010 * unreliable and only useful as advisory hints or for debugging.
Tejun Heodcd989c2010-06-29 10:07:14 +02004011 *
4012 * RETURNS:
4013 * OR'd bitmask of WORK_BUSY_* bits.
4014 */
4015unsigned int work_busy(struct work_struct *work)
4016{
Tejun Heofa1b54e2013-03-12 11:30:00 -07004017 struct worker_pool *pool;
Tejun Heodcd989c2010-06-29 10:07:14 +02004018 unsigned long flags;
4019 unsigned int ret = 0;
4020
Tejun Heodcd989c2010-06-29 10:07:14 +02004021 if (work_pending(work))
4022 ret |= WORK_BUSY_PENDING;
Tejun Heodcd989c2010-06-29 10:07:14 +02004023
Tejun Heofa1b54e2013-03-12 11:30:00 -07004024 local_irq_save(flags);
4025 pool = get_work_pool(work);
Lai Jiangshan038366c2013-02-06 18:04:53 -08004026 if (pool) {
Tejun Heofa1b54e2013-03-12 11:30:00 -07004027 spin_lock(&pool->lock);
Lai Jiangshan038366c2013-02-06 18:04:53 -08004028 if (find_worker_executing_work(pool, work))
4029 ret |= WORK_BUSY_RUNNING;
Tejun Heofa1b54e2013-03-12 11:30:00 -07004030 spin_unlock(&pool->lock);
Lai Jiangshan038366c2013-02-06 18:04:53 -08004031 }
Tejun Heofa1b54e2013-03-12 11:30:00 -07004032 local_irq_restore(flags);
Tejun Heodcd989c2010-06-29 10:07:14 +02004033
4034 return ret;
4035}
4036EXPORT_SYMBOL_GPL(work_busy);
4037
Tejun Heodb7bccf2010-06-29 10:07:12 +02004038/*
4039 * CPU hotplug.
4040 *
Tejun Heoe22bee72010-06-29 10:07:14 +02004041 * There are two challenges in supporting CPU hotplug. Firstly, there
Tejun Heo112202d2013-02-13 19:29:12 -08004042 * are a lot of assumptions on strong associations among work, pwq and
Tejun Heo706026c2013-01-24 11:01:34 -08004043 * pool which make migrating pending and scheduled works very
Tejun Heoe22bee72010-06-29 10:07:14 +02004044 * difficult to implement without impacting hot paths. Secondly,
Tejun Heo94cf58b2013-01-24 11:01:33 -08004045 * worker pools serve mix of short, long and very long running works making
Tejun Heoe22bee72010-06-29 10:07:14 +02004046 * blocked draining impractical.
4047 *
Tejun Heo24647572013-01-24 11:01:33 -08004048 * This is solved by allowing the pools to be disassociated from the CPU
Tejun Heo628c78e2012-07-17 12:39:27 -07004049 * running as an unbound one and allowing it to be reattached later if the
4050 * cpu comes back online.
Tejun Heodb7bccf2010-06-29 10:07:12 +02004051 */
4052
Tejun Heo706026c2013-01-24 11:01:34 -08004053static void wq_unbind_fn(struct work_struct *work)
Tejun Heodb7bccf2010-06-29 10:07:12 +02004054{
Tejun Heo38db41d2013-01-24 11:01:34 -08004055 int cpu = smp_processor_id();
Tejun Heo4ce62e92012-07-13 22:16:44 -07004056 struct worker_pool *pool;
Tejun Heodb7bccf2010-06-29 10:07:12 +02004057 struct worker *worker;
Tejun Heoa9ab7752013-03-19 13:45:21 -07004058 int wi;
Tejun Heodb7bccf2010-06-29 10:07:12 +02004059
Tejun Heof02ae732013-03-12 11:30:03 -07004060 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo6183c002013-03-12 11:29:57 -07004061 WARN_ON_ONCE(cpu != smp_processor_id());
Tejun Heo94cf58b2013-01-24 11:01:33 -08004062
Tejun Heobc3a1af2013-03-13 19:47:39 -07004063 mutex_lock(&pool->manager_mutex);
Tejun Heo94cf58b2013-01-24 11:01:33 -08004064 spin_lock_irq(&pool->lock);
4065
4066 /*
Tejun Heobc3a1af2013-03-13 19:47:39 -07004067 * We've blocked all manager operations. Make all workers
Tejun Heo94cf58b2013-01-24 11:01:33 -08004068 * unbound and set DISASSOCIATED. Before this, all workers
4069 * except for the ones which are still executing works from
4070 * before the last CPU down must be on the cpu. After
4071 * this, they may become diasporas.
4072 */
Tejun Heoa9ab7752013-03-19 13:45:21 -07004073 for_each_pool_worker(worker, wi, pool)
Tejun Heoc9e7cf22013-01-24 11:01:33 -08004074 worker->flags |= WORKER_UNBOUND;
Tejun Heodb7bccf2010-06-29 10:07:12 +02004075
Tejun Heo24647572013-01-24 11:01:33 -08004076 pool->flags |= POOL_DISASSOCIATED;
Tejun Heof2d5a0e2012-07-17 12:39:26 -07004077
Tejun Heo94cf58b2013-01-24 11:01:33 -08004078 spin_unlock_irq(&pool->lock);
Tejun Heobc3a1af2013-03-13 19:47:39 -07004079 mutex_unlock(&pool->manager_mutex);
Tejun Heo94cf58b2013-01-24 11:01:33 -08004080 }
Tejun Heoe22bee72010-06-29 10:07:14 +02004081
4082 /*
Tejun Heo628c78e2012-07-17 12:39:27 -07004083 * Call schedule() so that we cross rq->lock and thus can guarantee
4084 * sched callbacks see the %WORKER_UNBOUND flag. This is necessary
4085 * as scheduler callbacks may be invoked from other cpus.
4086 */
4087 schedule();
4088
4089 /*
4090 * Sched callbacks are disabled now. Zap nr_running. After this,
4091 * nr_running stays zero and need_more_worker() and keep_working()
Tejun Heo38db41d2013-01-24 11:01:34 -08004092 * are always true as long as the worklist is not empty. Pools on
4093 * @cpu now behave as unbound (in terms of concurrency management)
4094 * pools which are served by workers tied to the CPU.
Tejun Heo628c78e2012-07-17 12:39:27 -07004095 *
4096 * On return from this function, the current worker would trigger
4097 * unbound chain execution of pending work items if other workers
4098 * didn't already.
Tejun Heoe22bee72010-06-29 10:07:14 +02004099 */
Tejun Heof02ae732013-03-12 11:30:03 -07004100 for_each_cpu_worker_pool(pool, cpu)
Tejun Heoe19e3972013-01-24 11:39:44 -08004101 atomic_set(&pool->nr_running, 0);
Tejun Heodb7bccf2010-06-29 10:07:12 +02004102}
4103
Tejun Heobd7c0892013-03-19 13:45:21 -07004104/**
4105 * rebind_workers - rebind all workers of a pool to the associated CPU
4106 * @pool: pool of interest
4107 *
Tejun Heoa9ab7752013-03-19 13:45:21 -07004108 * @pool->cpu is coming online. Rebind all workers to the CPU.
Tejun Heobd7c0892013-03-19 13:45:21 -07004109 */
4110static void rebind_workers(struct worker_pool *pool)
4111{
Tejun Heoa9ab7752013-03-19 13:45:21 -07004112 struct worker *worker;
4113 int wi;
Tejun Heobd7c0892013-03-19 13:45:21 -07004114
4115 lockdep_assert_held(&pool->manager_mutex);
Tejun Heobd7c0892013-03-19 13:45:21 -07004116
Tejun Heoa9ab7752013-03-19 13:45:21 -07004117 /*
4118 * Restore CPU affinity of all workers. As all idle workers should
4119 * be on the run-queue of the associated CPU before any local
4120 * wake-ups for concurrency management happen, restore CPU affinty
4121 * of all workers first and then clear UNBOUND. As we're called
4122 * from CPU_ONLINE, the following shouldn't fail.
4123 */
4124 for_each_pool_worker(worker, wi, pool)
4125 WARN_ON_ONCE(set_cpus_allowed_ptr(worker->task,
4126 pool->attrs->cpumask) < 0);
4127
4128 spin_lock_irq(&pool->lock);
4129
4130 for_each_pool_worker(worker, wi, pool) {
4131 unsigned int worker_flags = worker->flags;
Tejun Heobd7c0892013-03-19 13:45:21 -07004132
4133 /*
Tejun Heoa9ab7752013-03-19 13:45:21 -07004134 * A bound idle worker should actually be on the runqueue
4135 * of the associated CPU for local wake-ups targeting it to
4136 * work. Kick all idle workers so that they migrate to the
4137 * associated CPU. Doing this in the same loop as
4138 * replacing UNBOUND with REBOUND is safe as no worker will
4139 * be bound before @pool->lock is released.
Tejun Heobd7c0892013-03-19 13:45:21 -07004140 */
Tejun Heoa9ab7752013-03-19 13:45:21 -07004141 if (worker_flags & WORKER_IDLE)
4142 wake_up_process(worker->task);
4143
4144 /*
4145 * We want to clear UNBOUND but can't directly call
4146 * worker_clr_flags() or adjust nr_running. Atomically
4147 * replace UNBOUND with another NOT_RUNNING flag REBOUND.
4148 * @worker will clear REBOUND using worker_clr_flags() when
4149 * it initiates the next execution cycle thus restoring
4150 * concurrency management. Note that when or whether
4151 * @worker clears REBOUND doesn't affect correctness.
4152 *
4153 * ACCESS_ONCE() is necessary because @worker->flags may be
4154 * tested without holding any lock in
4155 * wq_worker_waking_up(). Without it, NOT_RUNNING test may
4156 * fail incorrectly leading to premature concurrency
4157 * management operations.
4158 */
4159 WARN_ON_ONCE(!(worker_flags & WORKER_UNBOUND));
4160 worker_flags |= WORKER_REBOUND;
4161 worker_flags &= ~WORKER_UNBOUND;
4162 ACCESS_ONCE(worker->flags) = worker_flags;
Tejun Heobd7c0892013-03-19 13:45:21 -07004163 }
4164
Tejun Heoa9ab7752013-03-19 13:45:21 -07004165 spin_unlock_irq(&pool->lock);
Tejun Heobd7c0892013-03-19 13:45:21 -07004166}
4167
Tejun Heo7dbc7252013-03-19 13:45:21 -07004168/**
4169 * restore_unbound_workers_cpumask - restore cpumask of unbound workers
4170 * @pool: unbound pool of interest
4171 * @cpu: the CPU which is coming up
4172 *
4173 * An unbound pool may end up with a cpumask which doesn't have any online
4174 * CPUs. When a worker of such pool get scheduled, the scheduler resets
4175 * its cpus_allowed. If @cpu is in @pool's cpumask which didn't have any
4176 * online CPU before, cpus_allowed of all its workers should be restored.
4177 */
4178static void restore_unbound_workers_cpumask(struct worker_pool *pool, int cpu)
4179{
4180 static cpumask_t cpumask;
4181 struct worker *worker;
4182 int wi;
4183
4184 lockdep_assert_held(&pool->manager_mutex);
4185
4186 /* is @cpu allowed for @pool? */
4187 if (!cpumask_test_cpu(cpu, pool->attrs->cpumask))
4188 return;
4189
4190 /* is @cpu the only online CPU? */
4191 cpumask_and(&cpumask, pool->attrs->cpumask, cpu_online_mask);
4192 if (cpumask_weight(&cpumask) != 1)
4193 return;
4194
4195 /* as we're called from CPU_ONLINE, the following shouldn't fail */
4196 for_each_pool_worker(worker, wi, pool)
4197 WARN_ON_ONCE(set_cpus_allowed_ptr(worker->task,
4198 pool->attrs->cpumask) < 0);
4199}
4200
Tejun Heo8db25e72012-07-17 12:39:28 -07004201/*
4202 * Workqueues should be brought up before normal priority CPU notifiers.
4203 * This will be registered high priority CPU notifier.
4204 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07004205static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
Tejun Heo8db25e72012-07-17 12:39:28 -07004206 unsigned long action,
4207 void *hcpu)
Oleg Nesterov3af244332007-05-09 02:34:09 -07004208{
Tejun Heod84ff052013-03-12 11:29:59 -07004209 int cpu = (unsigned long)hcpu;
Tejun Heo4ce62e92012-07-13 22:16:44 -07004210 struct worker_pool *pool;
Tejun Heo7dbc7252013-03-19 13:45:21 -07004211 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Tejun Heo8db25e72012-07-17 12:39:28 -07004213 switch (action & ~CPU_TASKS_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 case CPU_UP_PREPARE:
Tejun Heof02ae732013-03-12 11:30:03 -07004215 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo3ce63372012-07-17 12:39:27 -07004216 if (pool->nr_workers)
4217 continue;
Tejun Heoebf44d12013-03-13 19:47:39 -07004218 if (create_and_start_worker(pool) < 0)
Tejun Heo3ce63372012-07-17 12:39:27 -07004219 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 }
Tejun Heodb7bccf2010-06-29 10:07:12 +02004221 break;
Oleg Nesterov00dfcaf2008-04-29 01:00:27 -07004222
Tejun Heo65758202012-07-17 12:39:26 -07004223 case CPU_DOWN_FAILED:
4224 case CPU_ONLINE:
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004225 mutex_lock(&wq_pool_mutex);
Tejun Heo7dbc7252013-03-19 13:45:21 -07004226
4227 for_each_pool(pool, pi) {
Tejun Heobc3a1af2013-03-13 19:47:39 -07004228 mutex_lock(&pool->manager_mutex);
Tejun Heo94cf58b2013-01-24 11:01:33 -08004229
Tejun Heo7dbc7252013-03-19 13:45:21 -07004230 if (pool->cpu == cpu) {
4231 spin_lock_irq(&pool->lock);
4232 pool->flags &= ~POOL_DISASSOCIATED;
4233 spin_unlock_irq(&pool->lock);
Tejun Heoa9ab7752013-03-19 13:45:21 -07004234
Tejun Heo7dbc7252013-03-19 13:45:21 -07004235 rebind_workers(pool);
4236 } else if (pool->cpu < 0) {
4237 restore_unbound_workers_cpumask(pool, cpu);
4238 }
Tejun Heo94cf58b2013-01-24 11:01:33 -08004239
Tejun Heobc3a1af2013-03-13 19:47:39 -07004240 mutex_unlock(&pool->manager_mutex);
Tejun Heo94cf58b2013-01-24 11:01:33 -08004241 }
Tejun Heo7dbc7252013-03-19 13:45:21 -07004242
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004243 mutex_unlock(&wq_pool_mutex);
Tejun Heo8db25e72012-07-17 12:39:28 -07004244 break;
Tejun Heo65758202012-07-17 12:39:26 -07004245 }
4246 return NOTIFY_OK;
4247}
4248
4249/*
4250 * Workqueues should be brought down after normal priority CPU notifiers.
4251 * This will be registered as low priority CPU notifier.
4252 */
Lai Jiangshan9fdf9b72012-09-18 09:59:23 -07004253static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
Tejun Heo65758202012-07-17 12:39:26 -07004254 unsigned long action,
4255 void *hcpu)
4256{
Tejun Heod84ff052013-03-12 11:29:59 -07004257 int cpu = (unsigned long)hcpu;
Tejun Heo8db25e72012-07-17 12:39:28 -07004258 struct work_struct unbind_work;
4259
Tejun Heo65758202012-07-17 12:39:26 -07004260 switch (action & ~CPU_TASKS_FROZEN) {
4261 case CPU_DOWN_PREPARE:
Tejun Heo8db25e72012-07-17 12:39:28 -07004262 /* unbinding should happen on the local CPU */
Tejun Heo706026c2013-01-24 11:01:34 -08004263 INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
Joonsoo Kim7635d2f2012-08-15 23:25:41 +09004264 queue_work_on(cpu, system_highpri_wq, &unbind_work);
Tejun Heo8db25e72012-07-17 12:39:28 -07004265 flush_work(&unbind_work);
4266 break;
Tejun Heo65758202012-07-17 12:39:26 -07004267 }
4268 return NOTIFY_OK;
4269}
4270
Rusty Russell2d3854a2008-11-05 13:39:10 +11004271#ifdef CONFIG_SMP
Rusty Russell8ccad402009-01-16 15:31:15 -08004272
Rusty Russell2d3854a2008-11-05 13:39:10 +11004273struct work_for_cpu {
Tejun Heoed48ece2012-09-18 12:48:43 -07004274 struct work_struct work;
Rusty Russell2d3854a2008-11-05 13:39:10 +11004275 long (*fn)(void *);
4276 void *arg;
4277 long ret;
4278};
4279
Tejun Heoed48ece2012-09-18 12:48:43 -07004280static void work_for_cpu_fn(struct work_struct *work)
Rusty Russell2d3854a2008-11-05 13:39:10 +11004281{
Tejun Heoed48ece2012-09-18 12:48:43 -07004282 struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
4283
Rusty Russell2d3854a2008-11-05 13:39:10 +11004284 wfc->ret = wfc->fn(wfc->arg);
4285}
4286
4287/**
4288 * work_on_cpu - run a function in user context on a particular cpu
4289 * @cpu: the cpu to run on
4290 * @fn: the function to run
4291 * @arg: the function arg
4292 *
Rusty Russell31ad9082009-01-16 15:31:15 -08004293 * This will return the value @fn returns.
4294 * It is up to the caller to ensure that the cpu doesn't go offline.
Andrew Morton6b440032009-04-09 09:50:37 -06004295 * The caller must not hold any locks which would prevent @fn from completing.
Rusty Russell2d3854a2008-11-05 13:39:10 +11004296 */
Tejun Heod84ff052013-03-12 11:29:59 -07004297long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
Rusty Russell2d3854a2008-11-05 13:39:10 +11004298{
Tejun Heoed48ece2012-09-18 12:48:43 -07004299 struct work_for_cpu wfc = { .fn = fn, .arg = arg };
Rusty Russell2d3854a2008-11-05 13:39:10 +11004300
Tejun Heoed48ece2012-09-18 12:48:43 -07004301 INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
4302 schedule_work_on(cpu, &wfc.work);
4303 flush_work(&wfc.work);
Rusty Russell2d3854a2008-11-05 13:39:10 +11004304 return wfc.ret;
4305}
4306EXPORT_SYMBOL_GPL(work_on_cpu);
4307#endif /* CONFIG_SMP */
4308
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004309#ifdef CONFIG_FREEZER
Rusty Russelle7577c52009-01-01 10:12:25 +10304310
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004311/**
4312 * freeze_workqueues_begin - begin freezing workqueues
4313 *
Tejun Heo58a69cb2011-02-16 09:25:31 +01004314 * Start freezing workqueues. After this function returns, all freezable
Tejun Heoc5aa87b2013-03-13 16:51:36 -07004315 * workqueues will queue new works to their delayed_works list instead of
Tejun Heo706026c2013-01-24 11:01:34 -08004316 * pool->worklist.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004317 *
4318 * CONTEXT:
Lai Jiangshana357fc02013-03-25 16:57:19 -07004319 * Grabs and releases wq_pool_mutex, wq->mutex and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004320 */
4321void freeze_workqueues_begin(void)
4322{
Tejun Heo17116962013-03-12 11:29:58 -07004323 struct worker_pool *pool;
Tejun Heo24b8a842013-03-12 11:29:58 -07004324 struct workqueue_struct *wq;
4325 struct pool_workqueue *pwq;
Tejun Heo611c92a2013-03-13 16:51:36 -07004326 int pi;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004327
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004328 mutex_lock(&wq_pool_mutex);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004329
Tejun Heo6183c002013-03-12 11:29:57 -07004330 WARN_ON_ONCE(workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004331 workqueue_freezing = true;
4332
Tejun Heo24b8a842013-03-12 11:29:58 -07004333 /* set FREEZING */
Tejun Heo611c92a2013-03-13 16:51:36 -07004334 for_each_pool(pool, pi) {
Tejun Heo5bcab332013-03-13 19:47:40 -07004335 spin_lock_irq(&pool->lock);
Tejun Heo17116962013-03-12 11:29:58 -07004336 WARN_ON_ONCE(pool->flags & POOL_FREEZING);
4337 pool->flags |= POOL_FREEZING;
Tejun Heo5bcab332013-03-13 19:47:40 -07004338 spin_unlock_irq(&pool->lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004339 }
4340
Tejun Heo24b8a842013-03-12 11:29:58 -07004341 list_for_each_entry(wq, &workqueues, list) {
Lai Jiangshana357fc02013-03-25 16:57:19 -07004342 mutex_lock(&wq->mutex);
Tejun Heo699ce092013-03-13 16:51:35 -07004343 for_each_pwq(pwq, wq)
4344 pwq_adjust_max_active(pwq);
Lai Jiangshana357fc02013-03-25 16:57:19 -07004345 mutex_unlock(&wq->mutex);
Tejun Heo24b8a842013-03-12 11:29:58 -07004346 }
Tejun Heo5bcab332013-03-13 19:47:40 -07004347
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004348 mutex_unlock(&wq_pool_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349}
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004350
4351/**
Tejun Heo58a69cb2011-02-16 09:25:31 +01004352 * freeze_workqueues_busy - are freezable workqueues still busy?
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004353 *
4354 * Check whether freezing is complete. This function must be called
4355 * between freeze_workqueues_begin() and thaw_workqueues().
4356 *
4357 * CONTEXT:
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004358 * Grabs and releases wq_pool_mutex.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004359 *
4360 * RETURNS:
Tejun Heo58a69cb2011-02-16 09:25:31 +01004361 * %true if some freezable workqueues are still busy. %false if freezing
4362 * is complete.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004363 */
4364bool freeze_workqueues_busy(void)
4365{
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004366 bool busy = false;
Tejun Heo24b8a842013-03-12 11:29:58 -07004367 struct workqueue_struct *wq;
4368 struct pool_workqueue *pwq;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004369
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004370 mutex_lock(&wq_pool_mutex);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004371
Tejun Heo6183c002013-03-12 11:29:57 -07004372 WARN_ON_ONCE(!workqueue_freezing);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004373
Tejun Heo24b8a842013-03-12 11:29:58 -07004374 list_for_each_entry(wq, &workqueues, list) {
4375 if (!(wq->flags & WQ_FREEZABLE))
4376 continue;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004377 /*
4378 * nr_active is monotonically decreasing. It's safe
4379 * to peek without lock.
4380 */
Lai Jiangshan88109452013-03-20 03:28:10 +08004381 rcu_read_lock_sched();
Tejun Heo24b8a842013-03-12 11:29:58 -07004382 for_each_pwq(pwq, wq) {
Tejun Heo6183c002013-03-12 11:29:57 -07004383 WARN_ON_ONCE(pwq->nr_active < 0);
Tejun Heo112202d2013-02-13 19:29:12 -08004384 if (pwq->nr_active) {
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004385 busy = true;
Lai Jiangshan88109452013-03-20 03:28:10 +08004386 rcu_read_unlock_sched();
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004387 goto out_unlock;
4388 }
4389 }
Lai Jiangshan88109452013-03-20 03:28:10 +08004390 rcu_read_unlock_sched();
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004391 }
4392out_unlock:
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004393 mutex_unlock(&wq_pool_mutex);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004394 return busy;
4395}
4396
4397/**
4398 * thaw_workqueues - thaw workqueues
4399 *
4400 * Thaw workqueues. Normal queueing is restored and all collected
Tejun Heo706026c2013-01-24 11:01:34 -08004401 * frozen works are transferred to their respective pool worklists.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004402 *
4403 * CONTEXT:
Lai Jiangshana357fc02013-03-25 16:57:19 -07004404 * Grabs and releases wq_pool_mutex, wq->mutex and pool->lock's.
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004405 */
4406void thaw_workqueues(void)
4407{
Tejun Heo24b8a842013-03-12 11:29:58 -07004408 struct workqueue_struct *wq;
4409 struct pool_workqueue *pwq;
4410 struct worker_pool *pool;
Tejun Heo611c92a2013-03-13 16:51:36 -07004411 int pi;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004412
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004413 mutex_lock(&wq_pool_mutex);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004414
4415 if (!workqueue_freezing)
4416 goto out_unlock;
4417
Tejun Heo24b8a842013-03-12 11:29:58 -07004418 /* clear FREEZING */
Tejun Heo611c92a2013-03-13 16:51:36 -07004419 for_each_pool(pool, pi) {
Tejun Heo5bcab332013-03-13 19:47:40 -07004420 spin_lock_irq(&pool->lock);
Tejun Heo24b8a842013-03-12 11:29:58 -07004421 WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
4422 pool->flags &= ~POOL_FREEZING;
Tejun Heo5bcab332013-03-13 19:47:40 -07004423 spin_unlock_irq(&pool->lock);
Tejun Heo24b8a842013-03-12 11:29:58 -07004424 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02004425
Tejun Heo24b8a842013-03-12 11:29:58 -07004426 /* restore max_active and repopulate worklist */
4427 list_for_each_entry(wq, &workqueues, list) {
Lai Jiangshana357fc02013-03-25 16:57:19 -07004428 mutex_lock(&wq->mutex);
Tejun Heo699ce092013-03-13 16:51:35 -07004429 for_each_pwq(pwq, wq)
4430 pwq_adjust_max_active(pwq);
Lai Jiangshana357fc02013-03-25 16:57:19 -07004431 mutex_unlock(&wq->mutex);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004432 }
4433
4434 workqueue_freezing = false;
4435out_unlock:
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004436 mutex_unlock(&wq_pool_mutex);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +02004437}
4438#endif /* CONFIG_FREEZER */
4439
Tejun Heobce90382013-04-01 11:23:32 -07004440static void __init wq_numa_init(void)
4441{
4442 cpumask_var_t *tbl;
4443 int node, cpu;
4444
4445 /* determine NUMA pwq table len - highest node id + 1 */
4446 for_each_node(node)
4447 wq_numa_tbl_len = max(wq_numa_tbl_len, node + 1);
4448
4449 if (num_possible_nodes() <= 1)
4450 return;
4451
4452 /*
4453 * We want masks of possible CPUs of each node which isn't readily
4454 * available. Build one from cpu_to_node() which should have been
4455 * fully initialized by now.
4456 */
4457 tbl = kzalloc(wq_numa_tbl_len * sizeof(tbl[0]), GFP_KERNEL);
4458 BUG_ON(!tbl);
4459
4460 for_each_node(node)
4461 BUG_ON(!alloc_cpumask_var_node(&tbl[node], GFP_KERNEL, node));
4462
4463 for_each_possible_cpu(cpu) {
4464 node = cpu_to_node(cpu);
4465 if (WARN_ON(node == NUMA_NO_NODE)) {
4466 pr_warn("workqueue: NUMA node mapping not available for cpu%d, disabling NUMA support\n", cpu);
4467 /* happens iff arch is bonkers, let's just proceed */
4468 return;
4469 }
4470 cpumask_set_cpu(cpu, tbl[node]);
4471 }
4472
4473 wq_numa_possible_cpumask = tbl;
4474 wq_numa_enabled = true;
4475}
4476
Suresh Siddha6ee05782010-07-30 14:57:37 -07004477static int __init init_workqueues(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478{
Tejun Heo7a4e3442013-03-12 11:30:00 -07004479 int std_nice[NR_STD_WORKER_POOLS] = { 0, HIGHPRI_NICE_LEVEL };
4480 int i, cpu;
Tejun Heoc34056a2010-06-29 10:07:11 +02004481
Tejun Heo7c3eed52013-01-24 11:01:33 -08004482 /* make sure we have enough bits for OFFQ pool ID */
4483 BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) <
Lai Jiangshan6be19582013-02-06 18:04:53 -08004484 WORK_CPU_END * NR_STD_WORKER_POOLS);
Tejun Heob5490072012-08-03 10:30:46 -07004485
Tejun Heoe904e6c2013-03-12 11:29:57 -07004486 WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long));
4487
4488 pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);
4489
Tejun Heo65758202012-07-17 12:39:26 -07004490 cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
Lai Jiangshana5b4e572012-09-18 09:59:23 -07004491 hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
Tejun Heo8b03ae32010-06-29 10:07:12 +02004492
Tejun Heobce90382013-04-01 11:23:32 -07004493 wq_numa_init();
4494
Tejun Heo706026c2013-01-24 11:01:34 -08004495 /* initialize CPU pools */
Tejun Heo29c91e92013-03-12 11:30:03 -07004496 for_each_possible_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07004497 struct worker_pool *pool;
Tejun Heo8b03ae32010-06-29 10:07:12 +02004498
Tejun Heo7a4e3442013-03-12 11:30:00 -07004499 i = 0;
Tejun Heof02ae732013-03-12 11:30:03 -07004500 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo7a4e3442013-03-12 11:30:00 -07004501 BUG_ON(init_worker_pool(pool));
Tejun Heoec22ca52013-01-24 11:01:33 -08004502 pool->cpu = cpu;
Tejun Heo29c91e92013-03-12 11:30:03 -07004503 cpumask_copy(pool->attrs->cpumask, cpumask_of(cpu));
Tejun Heo7a4e3442013-03-12 11:30:00 -07004504 pool->attrs->nice = std_nice[i++];
Tejun Heof3f90ad2013-04-01 11:23:34 -07004505 pool->node = cpu_to_node(cpu);
Tejun Heo7a4e3442013-03-12 11:30:00 -07004506
Tejun Heo9daf9e62013-01-24 11:01:33 -08004507 /* alloc pool ID */
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004508 mutex_lock(&wq_pool_mutex);
Tejun Heo9daf9e62013-01-24 11:01:33 -08004509 BUG_ON(worker_pool_assign_id(pool));
Lai Jiangshan68e13a62013-03-25 16:57:17 -07004510 mutex_unlock(&wq_pool_mutex);
Tejun Heo4ce62e92012-07-13 22:16:44 -07004511 }
Tejun Heo8b03ae32010-06-29 10:07:12 +02004512 }
4513
Tejun Heoe22bee72010-06-29 10:07:14 +02004514 /* create the initial worker */
Tejun Heo29c91e92013-03-12 11:30:03 -07004515 for_each_online_cpu(cpu) {
Tejun Heo4ce62e92012-07-13 22:16:44 -07004516 struct worker_pool *pool;
Tejun Heoe22bee72010-06-29 10:07:14 +02004517
Tejun Heof02ae732013-03-12 11:30:03 -07004518 for_each_cpu_worker_pool(pool, cpu) {
Tejun Heo29c91e92013-03-12 11:30:03 -07004519 pool->flags &= ~POOL_DISASSOCIATED;
Tejun Heoebf44d12013-03-13 19:47:39 -07004520 BUG_ON(create_and_start_worker(pool) < 0);
Tejun Heo4ce62e92012-07-13 22:16:44 -07004521 }
Tejun Heoe22bee72010-06-29 10:07:14 +02004522 }
4523
Tejun Heo29c91e92013-03-12 11:30:03 -07004524 /* create default unbound wq attrs */
4525 for (i = 0; i < NR_STD_WORKER_POOLS; i++) {
4526 struct workqueue_attrs *attrs;
4527
4528 BUG_ON(!(attrs = alloc_workqueue_attrs(GFP_KERNEL)));
Tejun Heo29c91e92013-03-12 11:30:03 -07004529 attrs->nice = std_nice[i];
Tejun Heo29c91e92013-03-12 11:30:03 -07004530 unbound_std_wq_attrs[i] = attrs;
4531 }
4532
Tejun Heod320c032010-06-29 10:07:14 +02004533 system_wq = alloc_workqueue("events", 0, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09004534 system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
Tejun Heod320c032010-06-29 10:07:14 +02004535 system_long_wq = alloc_workqueue("events_long", 0, 0);
Tejun Heof3421792010-07-02 10:03:51 +02004536 system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
4537 WQ_UNBOUND_MAX_ACTIVE);
Tejun Heo24d51ad2011-02-21 09:52:50 +01004538 system_freezable_wq = alloc_workqueue("events_freezable",
4539 WQ_FREEZABLE, 0);
Joonsoo Kim1aabe902012-08-15 23:25:39 +09004540 BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
Tejun Heoae930e02012-08-20 14:51:23 -07004541 !system_unbound_wq || !system_freezable_wq);
Suresh Siddha6ee05782010-07-30 14:57:37 -07004542 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543}
Suresh Siddha6ee05782010-07-30 14:57:37 -07004544early_initcall(init_workqueues);