xref: /linux-6.15/kernel/workqueue.c (revision 0fbd95aa)
11da177e4SLinus Torvalds /*
2c54fce6eSTejun Heo  * kernel/workqueue.c - generic async execution with shared worker pool
31da177e4SLinus Torvalds  *
4c54fce6eSTejun Heo  * Copyright (C) 2002		Ingo Molnar
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *   Derived from the taskqueue/keventd code by:
71da177e4SLinus Torvalds  *     David Woodhouse <[email protected]>
8e1f8e874SFrancois Cami  *     Andrew Morton
91da177e4SLinus Torvalds  *     Kai Petzke <[email protected]>
101da177e4SLinus Torvalds  *     Theodore Ts'o <[email protected]>
1189ada679SChristoph Lameter  *
12cde53535SChristoph Lameter  * Made to use alloc_percpu by Christoph Lameter.
13c54fce6eSTejun Heo  *
14c54fce6eSTejun Heo  * Copyright (C) 2010		SUSE Linux Products GmbH
15c54fce6eSTejun Heo  * Copyright (C) 2010		Tejun Heo <[email protected]>
16c54fce6eSTejun Heo  *
17c54fce6eSTejun Heo  * This is the generic async execution mechanism.  Work items as are
18c54fce6eSTejun Heo  * executed in process context.  The worker pool is shared and
19c54fce6eSTejun Heo  * automatically managed.  There is one worker pool for each CPU and
20c54fce6eSTejun Heo  * one extra for works which are better served by workers which are
21c54fce6eSTejun Heo  * not bound to any specific CPU.
22c54fce6eSTejun Heo  *
23c54fce6eSTejun Heo  * Please read Documentation/workqueue.txt for details.
241da177e4SLinus Torvalds  */
251da177e4SLinus Torvalds 
269984de1aSPaul Gortmaker #include <linux/export.h>
271da177e4SLinus Torvalds #include <linux/kernel.h>
281da177e4SLinus Torvalds #include <linux/sched.h>
291da177e4SLinus Torvalds #include <linux/init.h>
301da177e4SLinus Torvalds #include <linux/signal.h>
311da177e4SLinus Torvalds #include <linux/completion.h>
321da177e4SLinus Torvalds #include <linux/workqueue.h>
331da177e4SLinus Torvalds #include <linux/slab.h>
341da177e4SLinus Torvalds #include <linux/cpu.h>
351da177e4SLinus Torvalds #include <linux/notifier.h>
361da177e4SLinus Torvalds #include <linux/kthread.h>
371fa44ecaSJames Bottomley #include <linux/hardirq.h>
3846934023SChristoph Lameter #include <linux/mempolicy.h>
39341a5958SRafael J. Wysocki #include <linux/freezer.h>
40d5abe669SPeter Zijlstra #include <linux/kallsyms.h>
41d5abe669SPeter Zijlstra #include <linux/debug_locks.h>
424e6045f1SJohannes Berg #include <linux/lockdep.h>
43c34056a3STejun Heo #include <linux/idr.h>
4429c91e99STejun Heo #include <linux/jhash.h>
4542f8570fSSasha Levin #include <linux/hashtable.h>
4676af4d93STejun Heo #include <linux/rculist.h>
47e22bee78STejun Heo 
48ea138446STejun Heo #include "workqueue_internal.h"
491da177e4SLinus Torvalds 
50c8e55f36STejun Heo enum {
51bc2ae0f5STejun Heo 	/*
5224647570STejun Heo 	 * worker_pool flags
53bc2ae0f5STejun Heo 	 *
5424647570STejun Heo 	 * A bound pool is either associated or disassociated with its CPU.
55bc2ae0f5STejun Heo 	 * While associated (!DISASSOCIATED), all workers are bound to the
56bc2ae0f5STejun Heo 	 * CPU and none has %WORKER_UNBOUND set and concurrency management
57bc2ae0f5STejun Heo 	 * is in effect.
58bc2ae0f5STejun Heo 	 *
59bc2ae0f5STejun Heo 	 * While DISASSOCIATED, the cpu may be offline and all workers have
60bc2ae0f5STejun Heo 	 * %WORKER_UNBOUND set and concurrency management disabled, and may
6124647570STejun Heo 	 * be executing on any CPU.  The pool behaves as an unbound one.
62bc2ae0f5STejun Heo 	 *
63bc2ae0f5STejun Heo 	 * Note that DISASSOCIATED can be flipped only while holding
6424647570STejun Heo 	 * assoc_mutex to avoid changing binding state while
6524647570STejun Heo 	 * create_worker() is in progress.
66bc2ae0f5STejun Heo 	 */
6711ebea50STejun Heo 	POOL_MANAGE_WORKERS	= 1 << 0,	/* need to manage workers */
6824647570STejun Heo 	POOL_DISASSOCIATED	= 1 << 2,	/* cpu can't serve workers */
6935b6bb63STejun Heo 	POOL_FREEZING		= 1 << 3,	/* freeze in progress */
70db7bccf4STejun Heo 
71c8e55f36STejun Heo 	/* worker flags */
72c8e55f36STejun Heo 	WORKER_STARTED		= 1 << 0,	/* started */
73c8e55f36STejun Heo 	WORKER_DIE		= 1 << 1,	/* die die die */
74c8e55f36STejun Heo 	WORKER_IDLE		= 1 << 2,	/* is idle */
75e22bee78STejun Heo 	WORKER_PREP		= 1 << 3,	/* preparing to run works */
76fb0e7bebSTejun Heo 	WORKER_CPU_INTENSIVE	= 1 << 6,	/* cpu intensive */
77f3421797STejun Heo 	WORKER_UNBOUND		= 1 << 7,	/* worker is unbound */
78e22bee78STejun Heo 
795f7dabfdSLai Jiangshan 	WORKER_NOT_RUNNING	= WORKER_PREP | WORKER_UNBOUND |
80403c821dSTejun Heo 				  WORKER_CPU_INTENSIVE,
81db7bccf4STejun Heo 
82e34cdddbSTejun Heo 	NR_STD_WORKER_POOLS	= 2,		/* # standard pools per cpu */
834ce62e9eSTejun Heo 
8429c91e99STejun Heo 	UNBOUND_POOL_HASH_ORDER	= 6,		/* hashed by pool->attrs */
85c8e55f36STejun Heo 	BUSY_WORKER_HASH_ORDER	= 6,		/* 64 pointers */
86db7bccf4STejun Heo 
87e22bee78STejun Heo 	MAX_IDLE_WORKERS_RATIO	= 4,		/* 1/4 of busy can be idle */
88e22bee78STejun Heo 	IDLE_WORKER_TIMEOUT	= 300 * HZ,	/* keep idle ones for 5 mins */
89e22bee78STejun Heo 
903233cdbdSTejun Heo 	MAYDAY_INITIAL_TIMEOUT  = HZ / 100 >= 2 ? HZ / 100 : 2,
913233cdbdSTejun Heo 						/* call for help after 10ms
923233cdbdSTejun Heo 						   (min two ticks) */
93e22bee78STejun Heo 	MAYDAY_INTERVAL		= HZ / 10,	/* and then every 100ms */
94e22bee78STejun Heo 	CREATE_COOLDOWN		= HZ,		/* time to breath after fail */
951da177e4SLinus Torvalds 
961da177e4SLinus Torvalds 	/*
97e22bee78STejun Heo 	 * Rescue workers are used only on emergencies and shared by
98e22bee78STejun Heo 	 * all cpus.  Give -20.
99e22bee78STejun Heo 	 */
100e22bee78STejun Heo 	RESCUER_NICE_LEVEL	= -20,
1013270476aSTejun Heo 	HIGHPRI_NICE_LEVEL	= -20,
102c8e55f36STejun Heo };
103c8e55f36STejun Heo 
1041da177e4SLinus Torvalds /*
1054690c4abSTejun Heo  * Structure fields follow one of the following exclusion rules.
1064690c4abSTejun Heo  *
107e41e704bSTejun Heo  * I: Modifiable by initialization/destruction paths and read-only for
108e41e704bSTejun Heo  *    everyone else.
1094690c4abSTejun Heo  *
110e22bee78STejun Heo  * P: Preemption protected.  Disabling preemption is enough and should
111e22bee78STejun Heo  *    only be modified and accessed from the local cpu.
112e22bee78STejun Heo  *
113d565ed63STejun Heo  * L: pool->lock protected.  Access with pool->lock held.
1144690c4abSTejun Heo  *
115d565ed63STejun Heo  * X: During normal operation, modification requires pool->lock and should
116d565ed63STejun Heo  *    be done only from local cpu.  Either disabling preemption on local
117d565ed63STejun Heo  *    cpu or grabbing pool->lock is enough for read access.  If
118d565ed63STejun Heo  *    POOL_DISASSOCIATED is set, it's identical to L.
119e22bee78STejun Heo  *
12073f53c4aSTejun Heo  * F: wq->flush_mutex protected.
12173f53c4aSTejun Heo  *
1224690c4abSTejun Heo  * W: workqueue_lock protected.
12376af4d93STejun Heo  *
12476af4d93STejun Heo  * R: workqueue_lock protected for writes.  Sched-RCU protected for reads.
12575ccf595STejun Heo  *
12675ccf595STejun Heo  * FR: wq->flush_mutex and workqueue_lock protected for writes.  Sched-RCU
12775ccf595STejun Heo  *     protected for reads.
1284690c4abSTejun Heo  */
1294690c4abSTejun Heo 
1302eaebdb3STejun Heo /* struct worker is defined in workqueue_internal.h */
131c34056a3STejun Heo 
132bd7bdd43STejun Heo struct worker_pool {
133d565ed63STejun Heo 	spinlock_t		lock;		/* the pool lock */
134d84ff051STejun Heo 	int			cpu;		/* I: the associated cpu */
1359daf9e67STejun Heo 	int			id;		/* I: pool ID */
13611ebea50STejun Heo 	unsigned int		flags;		/* X: flags */
137bd7bdd43STejun Heo 
138bd7bdd43STejun Heo 	struct list_head	worklist;	/* L: list of pending works */
139bd7bdd43STejun Heo 	int			nr_workers;	/* L: total number of workers */
140ea1abd61SLai Jiangshan 
141ea1abd61SLai Jiangshan 	/* nr_idle includes the ones off idle_list for rebinding */
142bd7bdd43STejun Heo 	int			nr_idle;	/* L: currently idle ones */
143bd7bdd43STejun Heo 
144bd7bdd43STejun Heo 	struct list_head	idle_list;	/* X: list of idle workers */
145bd7bdd43STejun Heo 	struct timer_list	idle_timer;	/* L: worker idle timeout */
146bd7bdd43STejun Heo 	struct timer_list	mayday_timer;	/* L: SOS timer for workers */
147bd7bdd43STejun Heo 
148c9e7cf27STejun Heo 	/* workers are chained either in busy_hash or idle_list */
149c9e7cf27STejun Heo 	DECLARE_HASHTABLE(busy_hash, BUSY_WORKER_HASH_ORDER);
150c9e7cf27STejun Heo 						/* L: hash of busy workers */
151c9e7cf27STejun Heo 
15234a06bd6STejun Heo 	struct mutex		manager_arb;	/* manager arbitration */
15324647570STejun Heo 	struct mutex		assoc_mutex;	/* protect POOL_DISASSOCIATED */
154bd7bdd43STejun Heo 	struct ida		worker_ida;	/* L: for worker IDs */
155e19e397aSTejun Heo 
1567a4e344cSTejun Heo 	struct workqueue_attrs	*attrs;		/* I: worker attributes */
15729c91e99STejun Heo 	struct hlist_node	hash_node;	/* R: unbound_pool_hash node */
15829c91e99STejun Heo 	int			refcnt;		/* refcnt for unbound pools */
1597a4e344cSTejun Heo 
160e19e397aSTejun Heo 	/*
161e19e397aSTejun Heo 	 * The current concurrency level.  As it's likely to be accessed
162e19e397aSTejun Heo 	 * from other CPUs during try_to_wake_up(), put it in a separate
163e19e397aSTejun Heo 	 * cacheline.
164e19e397aSTejun Heo 	 */
165e19e397aSTejun Heo 	atomic_t		nr_running ____cacheline_aligned_in_smp;
16629c91e99STejun Heo 
16729c91e99STejun Heo 	/*
16829c91e99STejun Heo 	 * Destruction of pool is sched-RCU protected to allow dereferences
16929c91e99STejun Heo 	 * from get_work_pool().
17029c91e99STejun Heo 	 */
17129c91e99STejun Heo 	struct rcu_head		rcu;
1728b03ae3cSTejun Heo } ____cacheline_aligned_in_smp;
1738b03ae3cSTejun Heo 
1748b03ae3cSTejun Heo /*
175112202d9STejun Heo  * The per-pool workqueue.  While queued, the lower WORK_STRUCT_FLAG_BITS
176112202d9STejun Heo  * of work_struct->data are used for flags and the remaining high bits
177112202d9STejun Heo  * point to the pwq; thus, pwqs need to be aligned at two's power of the
178112202d9STejun Heo  * number of flag bits.
1791da177e4SLinus Torvalds  */
180112202d9STejun Heo struct pool_workqueue {
181bd7bdd43STejun Heo 	struct worker_pool	*pool;		/* I: the associated pool */
1824690c4abSTejun Heo 	struct workqueue_struct *wq;		/* I: the owning workqueue */
18373f53c4aSTejun Heo 	int			work_color;	/* L: current color */
18473f53c4aSTejun Heo 	int			flush_color;	/* L: flushing color */
1858864b4e5STejun Heo 	int			refcnt;		/* L: reference count */
18673f53c4aSTejun Heo 	int			nr_in_flight[WORK_NR_COLORS];
18773f53c4aSTejun Heo 						/* L: nr of in_flight works */
1881e19ffc6STejun Heo 	int			nr_active;	/* L: nr of active works */
189a0a1a5fdSTejun Heo 	int			max_active;	/* L: max active works */
1901e19ffc6STejun Heo 	struct list_head	delayed_works;	/* L: delayed works */
19175ccf595STejun Heo 	struct list_head	pwqs_node;	/* FR: node on wq->pwqs */
192493a1724STejun Heo 	struct list_head	mayday_node;	/* W: node on wq->maydays */
1938864b4e5STejun Heo 
1948864b4e5STejun Heo 	/*
1958864b4e5STejun Heo 	 * Release of unbound pwq is punted to system_wq.  See put_pwq()
1968864b4e5STejun Heo 	 * and pwq_unbound_release_workfn() for details.  pool_workqueue
1978864b4e5STejun Heo 	 * itself is also sched-RCU protected so that the first pwq can be
1988864b4e5STejun Heo 	 * determined without grabbing workqueue_lock.
1998864b4e5STejun Heo 	 */
2008864b4e5STejun Heo 	struct work_struct	unbound_release_work;
2018864b4e5STejun Heo 	struct rcu_head		rcu;
202e904e6c2STejun Heo } __aligned(1 << WORK_STRUCT_FLAG_BITS);
2031da177e4SLinus Torvalds 
2041da177e4SLinus Torvalds /*
20573f53c4aSTejun Heo  * Structure used to wait for workqueue flush.
20673f53c4aSTejun Heo  */
20773f53c4aSTejun Heo struct wq_flusher {
20873f53c4aSTejun Heo 	struct list_head	list;		/* F: list of flushers */
20973f53c4aSTejun Heo 	int			flush_color;	/* F: flush color waiting for */
21073f53c4aSTejun Heo 	struct completion	done;		/* flush completion */
21173f53c4aSTejun Heo };
2121da177e4SLinus Torvalds 
213226223abSTejun Heo struct wq_device;
214226223abSTejun Heo 
21573f53c4aSTejun Heo /*
2161da177e4SLinus Torvalds  * The externally visible workqueue abstraction is an array of
2171da177e4SLinus Torvalds  * per-CPU workqueues:
2181da177e4SLinus Torvalds  */
2191da177e4SLinus Torvalds struct workqueue_struct {
2209c5a2ba7STejun Heo 	unsigned int		flags;		/* W: WQ_* flags */
221420c0ddbSTejun Heo 	struct pool_workqueue __percpu *cpu_pwqs; /* I: per-cpu pwq's */
22275ccf595STejun Heo 	struct list_head	pwqs;		/* FR: all pwqs of this wq */
2234690c4abSTejun Heo 	struct list_head	list;		/* W: list of all workqueues */
22473f53c4aSTejun Heo 
22573f53c4aSTejun Heo 	struct mutex		flush_mutex;	/* protects wq flushing */
22673f53c4aSTejun Heo 	int			work_color;	/* F: current work color */
22773f53c4aSTejun Heo 	int			flush_color;	/* F: current flush color */
228112202d9STejun Heo 	atomic_t		nr_pwqs_to_flush; /* flush in progress */
22973f53c4aSTejun Heo 	struct wq_flusher	*first_flusher;	/* F: first flusher */
23073f53c4aSTejun Heo 	struct list_head	flusher_queue;	/* F: flush waiters */
23173f53c4aSTejun Heo 	struct list_head	flusher_overflow; /* F: flush overflow list */
23273f53c4aSTejun Heo 
233493a1724STejun Heo 	struct list_head	maydays;	/* W: pwqs requesting rescue */
234e22bee78STejun Heo 	struct worker		*rescuer;	/* I: rescue worker */
235e22bee78STejun Heo 
2369c5a2ba7STejun Heo 	int			nr_drainers;	/* W: drain in progress */
237112202d9STejun Heo 	int			saved_max_active; /* W: saved pwq max_active */
238226223abSTejun Heo 
239226223abSTejun Heo #ifdef CONFIG_SYSFS
240226223abSTejun Heo 	struct wq_device	*wq_dev;	/* I: for sysfs interface */
241226223abSTejun Heo #endif
2424e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
2434e6045f1SJohannes Berg 	struct lockdep_map	lockdep_map;
2444e6045f1SJohannes Berg #endif
245b196be89STejun Heo 	char			name[];		/* I: workqueue name */
2461da177e4SLinus Torvalds };
2471da177e4SLinus Torvalds 
248e904e6c2STejun Heo static struct kmem_cache *pwq_cache;
249e904e6c2STejun Heo 
25029c91e99STejun Heo /* hash of all unbound pools keyed by pool->attrs */
25129c91e99STejun Heo static DEFINE_HASHTABLE(unbound_pool_hash, UNBOUND_POOL_HASH_ORDER);
25229c91e99STejun Heo 
25329c91e99STejun Heo static struct workqueue_attrs *unbound_std_wq_attrs[NR_STD_WORKER_POOLS];
25429c91e99STejun Heo 
255d320c038STejun Heo struct workqueue_struct *system_wq __read_mostly;
256d320c038STejun Heo EXPORT_SYMBOL_GPL(system_wq);
257044c782cSValentin Ilie struct workqueue_struct *system_highpri_wq __read_mostly;
2581aabe902SJoonsoo Kim EXPORT_SYMBOL_GPL(system_highpri_wq);
259044c782cSValentin Ilie struct workqueue_struct *system_long_wq __read_mostly;
260d320c038STejun Heo EXPORT_SYMBOL_GPL(system_long_wq);
261044c782cSValentin Ilie struct workqueue_struct *system_unbound_wq __read_mostly;
262f3421797STejun Heo EXPORT_SYMBOL_GPL(system_unbound_wq);
263044c782cSValentin Ilie struct workqueue_struct *system_freezable_wq __read_mostly;
26424d51addSTejun Heo EXPORT_SYMBOL_GPL(system_freezable_wq);
265d320c038STejun Heo 
26697bd2347STejun Heo #define CREATE_TRACE_POINTS
26797bd2347STejun Heo #include <trace/events/workqueue.h>
26897bd2347STejun Heo 
26976af4d93STejun Heo #define assert_rcu_or_wq_lock()						\
27076af4d93STejun Heo 	rcu_lockdep_assert(rcu_read_lock_sched_held() ||		\
27176af4d93STejun Heo 			   lockdep_is_held(&workqueue_lock),		\
27276af4d93STejun Heo 			   "sched RCU or workqueue lock should be held")
27376af4d93STejun Heo 
274f02ae73aSTejun Heo #define for_each_cpu_worker_pool(pool, cpu)				\
275f02ae73aSTejun Heo 	for ((pool) = &per_cpu(cpu_worker_pools, cpu)[0];		\
276f02ae73aSTejun Heo 	     (pool) < &per_cpu(cpu_worker_pools, cpu)[NR_STD_WORKER_POOLS]; \
2777a62c2c8STejun Heo 	     (pool)++)
2784ce62e9eSTejun Heo 
279b67bfe0dSSasha Levin #define for_each_busy_worker(worker, i, pool)				\
280b67bfe0dSSasha Levin 	hash_for_each(pool->busy_hash, i, worker, hentry)
281db7bccf4STejun Heo 
28249e3cf44STejun Heo /**
28317116969STejun Heo  * for_each_pool - iterate through all worker_pools in the system
28417116969STejun Heo  * @pool: iteration cursor
28517116969STejun Heo  * @id: integer used for iteration
286fa1b54e6STejun Heo  *
287fa1b54e6STejun Heo  * This must be called either with workqueue_lock held or sched RCU read
288fa1b54e6STejun Heo  * locked.  If the pool needs to be used beyond the locking in effect, the
289fa1b54e6STejun Heo  * caller is responsible for guaranteeing that the pool stays online.
290fa1b54e6STejun Heo  *
291fa1b54e6STejun Heo  * The if/else clause exists only for the lockdep assertion and can be
292fa1b54e6STejun Heo  * ignored.
29317116969STejun Heo  */
29417116969STejun Heo #define for_each_pool(pool, id)						\
295fa1b54e6STejun Heo 	idr_for_each_entry(&worker_pool_idr, pool, id)			\
296fa1b54e6STejun Heo 		if (({ assert_rcu_or_wq_lock(); false; })) { }		\
297fa1b54e6STejun Heo 		else
29817116969STejun Heo 
29917116969STejun Heo /**
30049e3cf44STejun Heo  * for_each_pwq - iterate through all pool_workqueues of the specified workqueue
30149e3cf44STejun Heo  * @pwq: iteration cursor
30249e3cf44STejun Heo  * @wq: the target workqueue
30376af4d93STejun Heo  *
30476af4d93STejun Heo  * This must be called either with workqueue_lock held or sched RCU read
30576af4d93STejun Heo  * locked.  If the pwq needs to be used beyond the locking in effect, the
30676af4d93STejun Heo  * caller is responsible for guaranteeing that the pwq stays online.
30776af4d93STejun Heo  *
30876af4d93STejun Heo  * The if/else clause exists only for the lockdep assertion and can be
30976af4d93STejun Heo  * ignored.
31049e3cf44STejun Heo  */
31149e3cf44STejun Heo #define for_each_pwq(pwq, wq)						\
31276af4d93STejun Heo 	list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node)		\
31376af4d93STejun Heo 		if (({ assert_rcu_or_wq_lock(); false; })) { }		\
31476af4d93STejun Heo 		else
315f3421797STejun Heo 
316dc186ad7SThomas Gleixner #ifdef CONFIG_DEBUG_OBJECTS_WORK
317dc186ad7SThomas Gleixner 
318dc186ad7SThomas Gleixner static struct debug_obj_descr work_debug_descr;
319dc186ad7SThomas Gleixner 
32099777288SStanislaw Gruszka static void *work_debug_hint(void *addr)
32199777288SStanislaw Gruszka {
32299777288SStanislaw Gruszka 	return ((struct work_struct *) addr)->func;
32399777288SStanislaw Gruszka }
32499777288SStanislaw Gruszka 
325dc186ad7SThomas Gleixner /*
326dc186ad7SThomas Gleixner  * fixup_init is called when:
327dc186ad7SThomas Gleixner  * - an active object is initialized
328dc186ad7SThomas Gleixner  */
329dc186ad7SThomas Gleixner static int work_fixup_init(void *addr, enum debug_obj_state state)
330dc186ad7SThomas Gleixner {
331dc186ad7SThomas Gleixner 	struct work_struct *work = addr;
332dc186ad7SThomas Gleixner 
333dc186ad7SThomas Gleixner 	switch (state) {
334dc186ad7SThomas Gleixner 	case ODEBUG_STATE_ACTIVE:
335dc186ad7SThomas Gleixner 		cancel_work_sync(work);
336dc186ad7SThomas Gleixner 		debug_object_init(work, &work_debug_descr);
337dc186ad7SThomas Gleixner 		return 1;
338dc186ad7SThomas Gleixner 	default:
339dc186ad7SThomas Gleixner 		return 0;
340dc186ad7SThomas Gleixner 	}
341dc186ad7SThomas Gleixner }
342dc186ad7SThomas Gleixner 
343dc186ad7SThomas Gleixner /*
344dc186ad7SThomas Gleixner  * fixup_activate is called when:
345dc186ad7SThomas Gleixner  * - an active object is activated
346dc186ad7SThomas Gleixner  * - an unknown object is activated (might be a statically initialized object)
347dc186ad7SThomas Gleixner  */
348dc186ad7SThomas Gleixner static int work_fixup_activate(void *addr, enum debug_obj_state state)
349dc186ad7SThomas Gleixner {
350dc186ad7SThomas Gleixner 	struct work_struct *work = addr;
351dc186ad7SThomas Gleixner 
352dc186ad7SThomas Gleixner 	switch (state) {
353dc186ad7SThomas Gleixner 
354dc186ad7SThomas Gleixner 	case ODEBUG_STATE_NOTAVAILABLE:
355dc186ad7SThomas Gleixner 		/*
356dc186ad7SThomas Gleixner 		 * This is not really a fixup. The work struct was
357dc186ad7SThomas Gleixner 		 * statically initialized. We just make sure that it
358dc186ad7SThomas Gleixner 		 * is tracked in the object tracker.
359dc186ad7SThomas Gleixner 		 */
36022df02bbSTejun Heo 		if (test_bit(WORK_STRUCT_STATIC_BIT, work_data_bits(work))) {
361dc186ad7SThomas Gleixner 			debug_object_init(work, &work_debug_descr);
362dc186ad7SThomas Gleixner 			debug_object_activate(work, &work_debug_descr);
363dc186ad7SThomas Gleixner 			return 0;
364dc186ad7SThomas Gleixner 		}
365dc186ad7SThomas Gleixner 		WARN_ON_ONCE(1);
366dc186ad7SThomas Gleixner 		return 0;
367dc186ad7SThomas Gleixner 
368dc186ad7SThomas Gleixner 	case ODEBUG_STATE_ACTIVE:
369dc186ad7SThomas Gleixner 		WARN_ON(1);
370dc186ad7SThomas Gleixner 
371dc186ad7SThomas Gleixner 	default:
372dc186ad7SThomas Gleixner 		return 0;
373dc186ad7SThomas Gleixner 	}
374dc186ad7SThomas Gleixner }
375dc186ad7SThomas Gleixner 
376dc186ad7SThomas Gleixner /*
377dc186ad7SThomas Gleixner  * fixup_free is called when:
378dc186ad7SThomas Gleixner  * - an active object is freed
379dc186ad7SThomas Gleixner  */
380dc186ad7SThomas Gleixner static int work_fixup_free(void *addr, enum debug_obj_state state)
381dc186ad7SThomas Gleixner {
382dc186ad7SThomas Gleixner 	struct work_struct *work = addr;
383dc186ad7SThomas Gleixner 
384dc186ad7SThomas Gleixner 	switch (state) {
385dc186ad7SThomas Gleixner 	case ODEBUG_STATE_ACTIVE:
386dc186ad7SThomas Gleixner 		cancel_work_sync(work);
387dc186ad7SThomas Gleixner 		debug_object_free(work, &work_debug_descr);
388dc186ad7SThomas Gleixner 		return 1;
389dc186ad7SThomas Gleixner 	default:
390dc186ad7SThomas Gleixner 		return 0;
391dc186ad7SThomas Gleixner 	}
392dc186ad7SThomas Gleixner }
393dc186ad7SThomas Gleixner 
394dc186ad7SThomas Gleixner static struct debug_obj_descr work_debug_descr = {
395dc186ad7SThomas Gleixner 	.name		= "work_struct",
39699777288SStanislaw Gruszka 	.debug_hint	= work_debug_hint,
397dc186ad7SThomas Gleixner 	.fixup_init	= work_fixup_init,
398dc186ad7SThomas Gleixner 	.fixup_activate	= work_fixup_activate,
399dc186ad7SThomas Gleixner 	.fixup_free	= work_fixup_free,
400dc186ad7SThomas Gleixner };
401dc186ad7SThomas Gleixner 
402dc186ad7SThomas Gleixner static inline void debug_work_activate(struct work_struct *work)
403dc186ad7SThomas Gleixner {
404dc186ad7SThomas Gleixner 	debug_object_activate(work, &work_debug_descr);
405dc186ad7SThomas Gleixner }
406dc186ad7SThomas Gleixner 
407dc186ad7SThomas Gleixner static inline void debug_work_deactivate(struct work_struct *work)
408dc186ad7SThomas Gleixner {
409dc186ad7SThomas Gleixner 	debug_object_deactivate(work, &work_debug_descr);
410dc186ad7SThomas Gleixner }
411dc186ad7SThomas Gleixner 
412dc186ad7SThomas Gleixner void __init_work(struct work_struct *work, int onstack)
413dc186ad7SThomas Gleixner {
414dc186ad7SThomas Gleixner 	if (onstack)
415dc186ad7SThomas Gleixner 		debug_object_init_on_stack(work, &work_debug_descr);
416dc186ad7SThomas Gleixner 	else
417dc186ad7SThomas Gleixner 		debug_object_init(work, &work_debug_descr);
418dc186ad7SThomas Gleixner }
419dc186ad7SThomas Gleixner EXPORT_SYMBOL_GPL(__init_work);
420dc186ad7SThomas Gleixner 
421dc186ad7SThomas Gleixner void destroy_work_on_stack(struct work_struct *work)
422dc186ad7SThomas Gleixner {
423dc186ad7SThomas Gleixner 	debug_object_free(work, &work_debug_descr);
424dc186ad7SThomas Gleixner }
425dc186ad7SThomas Gleixner EXPORT_SYMBOL_GPL(destroy_work_on_stack);
426dc186ad7SThomas Gleixner 
427dc186ad7SThomas Gleixner #else
428dc186ad7SThomas Gleixner static inline void debug_work_activate(struct work_struct *work) { }
429dc186ad7SThomas Gleixner static inline void debug_work_deactivate(struct work_struct *work) { }
430dc186ad7SThomas Gleixner #endif
431dc186ad7SThomas Gleixner 
43295402b38SGautham R Shenoy /* Serializes the accesses to the list of workqueues. */
43395402b38SGautham R Shenoy static DEFINE_SPINLOCK(workqueue_lock);
4341da177e4SLinus Torvalds static LIST_HEAD(workqueues);
435a0a1a5fdSTejun Heo static bool workqueue_freezing;		/* W: have wqs started freezing? */
4361da177e4SLinus Torvalds 
43714441960SOleg Nesterov /*
438e19e397aSTejun Heo  * The CPU and unbound standard worker pools.  The unbound ones have
439e19e397aSTejun Heo  * POOL_DISASSOCIATED set, and their workers have WORKER_UNBOUND set.
44014441960SOleg Nesterov  */
441e19e397aSTejun Heo static DEFINE_PER_CPU_SHARED_ALIGNED(struct worker_pool [NR_STD_WORKER_POOLS],
442f02ae73aSTejun Heo 				     cpu_worker_pools);
443f3421797STejun Heo 
444fa1b54e6STejun Heo /*
445fa1b54e6STejun Heo  * idr of all pools.  Modifications are protected by workqueue_lock.  Read
446fa1b54e6STejun Heo  * accesses are protected by sched-RCU protected.
447fa1b54e6STejun Heo  */
4489daf9e67STejun Heo static DEFINE_IDR(worker_pool_idr);
4499daf9e67STejun Heo 
450c34056a3STejun Heo static int worker_thread(void *__worker);
451226223abSTejun Heo static void copy_workqueue_attrs(struct workqueue_attrs *to,
452226223abSTejun Heo 				 const struct workqueue_attrs *from);
4531da177e4SLinus Torvalds 
4549daf9e67STejun Heo /* allocate ID and assign it to @pool */
4559daf9e67STejun Heo static int worker_pool_assign_id(struct worker_pool *pool)
4569daf9e67STejun Heo {
4579daf9e67STejun Heo 	int ret;
4589daf9e67STejun Heo 
459fa1b54e6STejun Heo 	do {
460fa1b54e6STejun Heo 		if (!idr_pre_get(&worker_pool_idr, GFP_KERNEL))
461fa1b54e6STejun Heo 			return -ENOMEM;
462fa1b54e6STejun Heo 
463fa1b54e6STejun Heo 		spin_lock_irq(&workqueue_lock);
4649daf9e67STejun Heo 		ret = idr_get_new(&worker_pool_idr, pool, &pool->id);
465fa1b54e6STejun Heo 		spin_unlock_irq(&workqueue_lock);
466fa1b54e6STejun Heo 	} while (ret == -EAGAIN);
4679daf9e67STejun Heo 
4689daf9e67STejun Heo 	return ret;
4699daf9e67STejun Heo }
4709daf9e67STejun Heo 
47176af4d93STejun Heo /**
47276af4d93STejun Heo  * first_pwq - return the first pool_workqueue of the specified workqueue
47376af4d93STejun Heo  * @wq: the target workqueue
47476af4d93STejun Heo  *
47576af4d93STejun Heo  * This must be called either with workqueue_lock held or sched RCU read
47676af4d93STejun Heo  * locked.  If the pwq needs to be used beyond the locking in effect, the
47776af4d93STejun Heo  * caller is responsible for guaranteeing that the pwq stays online.
47876af4d93STejun Heo  */
4797fb98ea7STejun Heo static struct pool_workqueue *first_pwq(struct workqueue_struct *wq)
480a848e3b6SOleg Nesterov {
48176af4d93STejun Heo 	assert_rcu_or_wq_lock();
48276af4d93STejun Heo 	return list_first_or_null_rcu(&wq->pwqs, struct pool_workqueue,
48376af4d93STejun Heo 				      pwqs_node);
484f3421797STejun Heo }
485a848e3b6SOleg Nesterov 
48673f53c4aSTejun Heo static unsigned int work_color_to_flags(int color)
48773f53c4aSTejun Heo {
48873f53c4aSTejun Heo 	return color << WORK_STRUCT_COLOR_SHIFT;
48973f53c4aSTejun Heo }
49073f53c4aSTejun Heo 
49173f53c4aSTejun Heo static int get_work_color(struct work_struct *work)
49273f53c4aSTejun Heo {
49373f53c4aSTejun Heo 	return (*work_data_bits(work) >> WORK_STRUCT_COLOR_SHIFT) &
49473f53c4aSTejun Heo 		((1 << WORK_STRUCT_COLOR_BITS) - 1);
49573f53c4aSTejun Heo }
49673f53c4aSTejun Heo 
49773f53c4aSTejun Heo static int work_next_color(int color)
49873f53c4aSTejun Heo {
49973f53c4aSTejun Heo 	return (color + 1) % WORK_NR_COLORS;
500b1f4ec17SOleg Nesterov }
501b1f4ec17SOleg Nesterov 
5024594bf15SDavid Howells /*
503112202d9STejun Heo  * While queued, %WORK_STRUCT_PWQ is set and non flag bits of a work's data
504112202d9STejun Heo  * contain the pointer to the queued pwq.  Once execution starts, the flag
5057c3eed5cSTejun Heo  * is cleared and the high bits contain OFFQ flags and pool ID.
5067a22ad75STejun Heo  *
507112202d9STejun Heo  * set_work_pwq(), set_work_pool_and_clear_pending(), mark_work_canceling()
508112202d9STejun Heo  * and clear_work_data() can be used to set the pwq, pool or clear
509bbb68dfaSTejun Heo  * work->data.  These functions should only be called while the work is
510bbb68dfaSTejun Heo  * owned - ie. while the PENDING bit is set.
5117a22ad75STejun Heo  *
512112202d9STejun Heo  * get_work_pool() and get_work_pwq() can be used to obtain the pool or pwq
5137c3eed5cSTejun Heo  * corresponding to a work.  Pool is available once the work has been
514112202d9STejun Heo  * queued anywhere after initialization until it is sync canceled.  pwq is
5157c3eed5cSTejun Heo  * available only while the work item is queued.
516bbb68dfaSTejun Heo  *
517bbb68dfaSTejun Heo  * %WORK_OFFQ_CANCELING is used to mark a work item which is being
518bbb68dfaSTejun Heo  * canceled.  While being canceled, a work item may have its PENDING set
519bbb68dfaSTejun Heo  * but stay off timer and worklist for arbitrarily long and nobody should
520bbb68dfaSTejun Heo  * try to steal the PENDING bit.
5214594bf15SDavid Howells  */
5227a22ad75STejun Heo static inline void set_work_data(struct work_struct *work, unsigned long data,
5237a22ad75STejun Heo 				 unsigned long flags)
5247a22ad75STejun Heo {
5256183c009STejun Heo 	WARN_ON_ONCE(!work_pending(work));
5267a22ad75STejun Heo 	atomic_long_set(&work->data, data | flags | work_static(work));
5277a22ad75STejun Heo }
5287a22ad75STejun Heo 
529112202d9STejun Heo static void set_work_pwq(struct work_struct *work, struct pool_workqueue *pwq,
5304690c4abSTejun Heo 			 unsigned long extra_flags)
531365970a1SDavid Howells {
532112202d9STejun Heo 	set_work_data(work, (unsigned long)pwq,
533112202d9STejun Heo 		      WORK_STRUCT_PENDING | WORK_STRUCT_PWQ | extra_flags);
534365970a1SDavid Howells }
535365970a1SDavid Howells 
5364468a00fSLai Jiangshan static void set_work_pool_and_keep_pending(struct work_struct *work,
5374468a00fSLai Jiangshan 					   int pool_id)
5384468a00fSLai Jiangshan {
5394468a00fSLai Jiangshan 	set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT,
5404468a00fSLai Jiangshan 		      WORK_STRUCT_PENDING);
5414468a00fSLai Jiangshan }
5424468a00fSLai Jiangshan 
5437c3eed5cSTejun Heo static void set_work_pool_and_clear_pending(struct work_struct *work,
5447c3eed5cSTejun Heo 					    int pool_id)
5454d707b9fSOleg Nesterov {
54623657bb1STejun Heo 	/*
54723657bb1STejun Heo 	 * The following wmb is paired with the implied mb in
54823657bb1STejun Heo 	 * test_and_set_bit(PENDING) and ensures all updates to @work made
54923657bb1STejun Heo 	 * here are visible to and precede any updates by the next PENDING
55023657bb1STejun Heo 	 * owner.
55123657bb1STejun Heo 	 */
55223657bb1STejun Heo 	smp_wmb();
5537c3eed5cSTejun Heo 	set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0);
5544d707b9fSOleg Nesterov }
5554d707b9fSOleg Nesterov 
5567a22ad75STejun Heo static void clear_work_data(struct work_struct *work)
557365970a1SDavid Howells {
5587c3eed5cSTejun Heo 	smp_wmb();	/* see set_work_pool_and_clear_pending() */
5597c3eed5cSTejun Heo 	set_work_data(work, WORK_STRUCT_NO_POOL, 0);
5607a22ad75STejun Heo }
5617a22ad75STejun Heo 
562112202d9STejun Heo static struct pool_workqueue *get_work_pwq(struct work_struct *work)
5637a22ad75STejun Heo {
564e120153dSTejun Heo 	unsigned long data = atomic_long_read(&work->data);
5657a22ad75STejun Heo 
566112202d9STejun Heo 	if (data & WORK_STRUCT_PWQ)
567e120153dSTejun Heo 		return (void *)(data & WORK_STRUCT_WQ_DATA_MASK);
568e120153dSTejun Heo 	else
569e120153dSTejun Heo 		return NULL;
5707a22ad75STejun Heo }
5717a22ad75STejun Heo 
5727c3eed5cSTejun Heo /**
5737c3eed5cSTejun Heo  * get_work_pool - return the worker_pool a given work was associated with
5747c3eed5cSTejun Heo  * @work: the work item of interest
5757c3eed5cSTejun Heo  *
5767c3eed5cSTejun Heo  * Return the worker_pool @work was last associated with.  %NULL if none.
577fa1b54e6STejun Heo  *
578fa1b54e6STejun Heo  * Pools are created and destroyed under workqueue_lock, and allows read
579fa1b54e6STejun Heo  * access under sched-RCU read lock.  As such, this function should be
580fa1b54e6STejun Heo  * called under workqueue_lock or with preemption disabled.
581fa1b54e6STejun Heo  *
582fa1b54e6STejun Heo  * All fields of the returned pool are accessible as long as the above
583fa1b54e6STejun Heo  * mentioned locking is in effect.  If the returned pool needs to be used
584fa1b54e6STejun Heo  * beyond the critical section, the caller is responsible for ensuring the
585fa1b54e6STejun Heo  * returned pool is and stays online.
5867c3eed5cSTejun Heo  */
5877c3eed5cSTejun Heo static struct worker_pool *get_work_pool(struct work_struct *work)
5887a22ad75STejun Heo {
589e120153dSTejun Heo 	unsigned long data = atomic_long_read(&work->data);
5907c3eed5cSTejun Heo 	int pool_id;
5917a22ad75STejun Heo 
592fa1b54e6STejun Heo 	assert_rcu_or_wq_lock();
593fa1b54e6STejun Heo 
594112202d9STejun Heo 	if (data & WORK_STRUCT_PWQ)
595112202d9STejun Heo 		return ((struct pool_workqueue *)
5967c3eed5cSTejun Heo 			(data & WORK_STRUCT_WQ_DATA_MASK))->pool;
5977a22ad75STejun Heo 
5987c3eed5cSTejun Heo 	pool_id = data >> WORK_OFFQ_POOL_SHIFT;
5997c3eed5cSTejun Heo 	if (pool_id == WORK_OFFQ_POOL_NONE)
6007a22ad75STejun Heo 		return NULL;
6017a22ad75STejun Heo 
602fa1b54e6STejun Heo 	return idr_find(&worker_pool_idr, pool_id);
6037c3eed5cSTejun Heo }
6047c3eed5cSTejun Heo 
6057c3eed5cSTejun Heo /**
6067c3eed5cSTejun Heo  * get_work_pool_id - return the worker pool ID a given work is associated with
6077c3eed5cSTejun Heo  * @work: the work item of interest
6087c3eed5cSTejun Heo  *
6097c3eed5cSTejun Heo  * Return the worker_pool ID @work was last associated with.
6107c3eed5cSTejun Heo  * %WORK_OFFQ_POOL_NONE if none.
6117c3eed5cSTejun Heo  */
6127c3eed5cSTejun Heo static int get_work_pool_id(struct work_struct *work)
6137c3eed5cSTejun Heo {
61454d5b7d0SLai Jiangshan 	unsigned long data = atomic_long_read(&work->data);
6157c3eed5cSTejun Heo 
616112202d9STejun Heo 	if (data & WORK_STRUCT_PWQ)
617112202d9STejun Heo 		return ((struct pool_workqueue *)
61854d5b7d0SLai Jiangshan 			(data & WORK_STRUCT_WQ_DATA_MASK))->pool->id;
61954d5b7d0SLai Jiangshan 
62054d5b7d0SLai Jiangshan 	return data >> WORK_OFFQ_POOL_SHIFT;
6217c3eed5cSTejun Heo }
6227c3eed5cSTejun Heo 
623bbb68dfaSTejun Heo static void mark_work_canceling(struct work_struct *work)
624bbb68dfaSTejun Heo {
6257c3eed5cSTejun Heo 	unsigned long pool_id = get_work_pool_id(work);
626bbb68dfaSTejun Heo 
6277c3eed5cSTejun Heo 	pool_id <<= WORK_OFFQ_POOL_SHIFT;
6287c3eed5cSTejun Heo 	set_work_data(work, pool_id | WORK_OFFQ_CANCELING, WORK_STRUCT_PENDING);
629bbb68dfaSTejun Heo }
630bbb68dfaSTejun Heo 
631bbb68dfaSTejun Heo static bool work_is_canceling(struct work_struct *work)
632bbb68dfaSTejun Heo {
633bbb68dfaSTejun Heo 	unsigned long data = atomic_long_read(&work->data);
634bbb68dfaSTejun Heo 
635112202d9STejun Heo 	return !(data & WORK_STRUCT_PWQ) && (data & WORK_OFFQ_CANCELING);
636bbb68dfaSTejun Heo }
637bbb68dfaSTejun Heo 
638e22bee78STejun Heo /*
6393270476aSTejun Heo  * Policy functions.  These define the policies on how the global worker
6403270476aSTejun Heo  * pools are managed.  Unless noted otherwise, these functions assume that
641d565ed63STejun Heo  * they're being called with pool->lock held.
642e22bee78STejun Heo  */
643e22bee78STejun Heo 
64463d95a91STejun Heo static bool __need_more_worker(struct worker_pool *pool)
645649027d7STejun Heo {
646e19e397aSTejun Heo 	return !atomic_read(&pool->nr_running);
647649027d7STejun Heo }
648649027d7STejun Heo 
649e22bee78STejun Heo /*
650e22bee78STejun Heo  * Need to wake up a worker?  Called from anything but currently
651e22bee78STejun Heo  * running workers.
652974271c4STejun Heo  *
653974271c4STejun Heo  * Note that, because unbound workers never contribute to nr_running, this
654706026c2STejun Heo  * function will always return %true for unbound pools as long as the
655974271c4STejun Heo  * worklist isn't empty.
656e22bee78STejun Heo  */
65763d95a91STejun Heo static bool need_more_worker(struct worker_pool *pool)
658e22bee78STejun Heo {
65963d95a91STejun Heo 	return !list_empty(&pool->worklist) && __need_more_worker(pool);
660e22bee78STejun Heo }
661e22bee78STejun Heo 
662e22bee78STejun Heo /* Can I start working?  Called from busy but !running workers. */
66363d95a91STejun Heo static bool may_start_working(struct worker_pool *pool)
664e22bee78STejun Heo {
66563d95a91STejun Heo 	return pool->nr_idle;
666e22bee78STejun Heo }
667e22bee78STejun Heo 
668e22bee78STejun Heo /* Do I need to keep working?  Called from currently running workers. */
66963d95a91STejun Heo static bool keep_working(struct worker_pool *pool)
670e22bee78STejun Heo {
671e19e397aSTejun Heo 	return !list_empty(&pool->worklist) &&
672e19e397aSTejun Heo 		atomic_read(&pool->nr_running) <= 1;
673e22bee78STejun Heo }
674e22bee78STejun Heo 
675e22bee78STejun Heo /* Do we need a new worker?  Called from manager. */
67663d95a91STejun Heo static bool need_to_create_worker(struct worker_pool *pool)
677e22bee78STejun Heo {
67863d95a91STejun Heo 	return need_more_worker(pool) && !may_start_working(pool);
679e22bee78STejun Heo }
680e22bee78STejun Heo 
681e22bee78STejun Heo /* Do I need to be the manager? */
68263d95a91STejun Heo static bool need_to_manage_workers(struct worker_pool *pool)
683e22bee78STejun Heo {
68463d95a91STejun Heo 	return need_to_create_worker(pool) ||
68511ebea50STejun Heo 		(pool->flags & POOL_MANAGE_WORKERS);
686e22bee78STejun Heo }
687e22bee78STejun Heo 
688e22bee78STejun Heo /* Do we have too many workers and should some go away? */
68963d95a91STejun Heo static bool too_many_workers(struct worker_pool *pool)
690e22bee78STejun Heo {
69134a06bd6STejun Heo 	bool managing = mutex_is_locked(&pool->manager_arb);
69263d95a91STejun Heo 	int nr_idle = pool->nr_idle + managing; /* manager is considered idle */
69363d95a91STejun Heo 	int nr_busy = pool->nr_workers - nr_idle;
694e22bee78STejun Heo 
695ea1abd61SLai Jiangshan 	/*
696ea1abd61SLai Jiangshan 	 * nr_idle and idle_list may disagree if idle rebinding is in
697ea1abd61SLai Jiangshan 	 * progress.  Never return %true if idle_list is empty.
698ea1abd61SLai Jiangshan 	 */
699ea1abd61SLai Jiangshan 	if (list_empty(&pool->idle_list))
700ea1abd61SLai Jiangshan 		return false;
701ea1abd61SLai Jiangshan 
702e22bee78STejun Heo 	return nr_idle > 2 && (nr_idle - 2) * MAX_IDLE_WORKERS_RATIO >= nr_busy;
703e22bee78STejun Heo }
704e22bee78STejun Heo 
705e22bee78STejun Heo /*
706e22bee78STejun Heo  * Wake up functions.
707e22bee78STejun Heo  */
708e22bee78STejun Heo 
7097e11629dSTejun Heo /* Return the first worker.  Safe with preemption disabled */
71063d95a91STejun Heo static struct worker *first_worker(struct worker_pool *pool)
7117e11629dSTejun Heo {
71263d95a91STejun Heo 	if (unlikely(list_empty(&pool->idle_list)))
7137e11629dSTejun Heo 		return NULL;
7147e11629dSTejun Heo 
71563d95a91STejun Heo 	return list_first_entry(&pool->idle_list, struct worker, entry);
7167e11629dSTejun Heo }
7177e11629dSTejun Heo 
7187e11629dSTejun Heo /**
7197e11629dSTejun Heo  * wake_up_worker - wake up an idle worker
72063d95a91STejun Heo  * @pool: worker pool to wake worker from
7217e11629dSTejun Heo  *
72263d95a91STejun Heo  * Wake up the first idle worker of @pool.
7237e11629dSTejun Heo  *
7247e11629dSTejun Heo  * CONTEXT:
725d565ed63STejun Heo  * spin_lock_irq(pool->lock).
7267e11629dSTejun Heo  */
72763d95a91STejun Heo static void wake_up_worker(struct worker_pool *pool)
7287e11629dSTejun Heo {
72963d95a91STejun Heo 	struct worker *worker = first_worker(pool);
7307e11629dSTejun Heo 
7317e11629dSTejun Heo 	if (likely(worker))
7327e11629dSTejun Heo 		wake_up_process(worker->task);
7337e11629dSTejun Heo }
7347e11629dSTejun Heo 
7354690c4abSTejun Heo /**
736e22bee78STejun Heo  * wq_worker_waking_up - a worker is waking up
737e22bee78STejun Heo  * @task: task waking up
738e22bee78STejun Heo  * @cpu: CPU @task is waking up to
739e22bee78STejun Heo  *
740e22bee78STejun Heo  * This function is called during try_to_wake_up() when a worker is
741e22bee78STejun Heo  * being awoken.
742e22bee78STejun Heo  *
743e22bee78STejun Heo  * CONTEXT:
744e22bee78STejun Heo  * spin_lock_irq(rq->lock)
745e22bee78STejun Heo  */
746d84ff051STejun Heo void wq_worker_waking_up(struct task_struct *task, int cpu)
747e22bee78STejun Heo {
748e22bee78STejun Heo 	struct worker *worker = kthread_data(task);
749e22bee78STejun Heo 
75036576000SJoonsoo Kim 	if (!(worker->flags & WORKER_NOT_RUNNING)) {
751ec22ca5eSTejun Heo 		WARN_ON_ONCE(worker->pool->cpu != cpu);
752e19e397aSTejun Heo 		atomic_inc(&worker->pool->nr_running);
753e22bee78STejun Heo 	}
75436576000SJoonsoo Kim }
755e22bee78STejun Heo 
756e22bee78STejun Heo /**
757e22bee78STejun Heo  * wq_worker_sleeping - a worker is going to sleep
758e22bee78STejun Heo  * @task: task going to sleep
759e22bee78STejun Heo  * @cpu: CPU in question, must be the current CPU number
760e22bee78STejun Heo  *
761e22bee78STejun Heo  * This function is called during schedule() when a busy worker is
762e22bee78STejun Heo  * going to sleep.  Worker on the same cpu can be woken up by
763e22bee78STejun Heo  * returning pointer to its task.
764e22bee78STejun Heo  *
765e22bee78STejun Heo  * CONTEXT:
766e22bee78STejun Heo  * spin_lock_irq(rq->lock)
767e22bee78STejun Heo  *
768e22bee78STejun Heo  * RETURNS:
769e22bee78STejun Heo  * Worker task on @cpu to wake up, %NULL if none.
770e22bee78STejun Heo  */
771d84ff051STejun Heo struct task_struct *wq_worker_sleeping(struct task_struct *task, int cpu)
772e22bee78STejun Heo {
773e22bee78STejun Heo 	struct worker *worker = kthread_data(task), *to_wakeup = NULL;
774111c225aSTejun Heo 	struct worker_pool *pool;
775e22bee78STejun Heo 
776111c225aSTejun Heo 	/*
777111c225aSTejun Heo 	 * Rescuers, which may not have all the fields set up like normal
778111c225aSTejun Heo 	 * workers, also reach here, let's not access anything before
779111c225aSTejun Heo 	 * checking NOT_RUNNING.
780111c225aSTejun Heo 	 */
7812d64672eSSteven Rostedt 	if (worker->flags & WORKER_NOT_RUNNING)
782e22bee78STejun Heo 		return NULL;
783e22bee78STejun Heo 
784111c225aSTejun Heo 	pool = worker->pool;
785111c225aSTejun Heo 
786e22bee78STejun Heo 	/* this can only happen on the local cpu */
7876183c009STejun Heo 	if (WARN_ON_ONCE(cpu != raw_smp_processor_id()))
7886183c009STejun Heo 		return NULL;
789e22bee78STejun Heo 
790e22bee78STejun Heo 	/*
791e22bee78STejun Heo 	 * The counterpart of the following dec_and_test, implied mb,
792e22bee78STejun Heo 	 * worklist not empty test sequence is in insert_work().
793e22bee78STejun Heo 	 * Please read comment there.
794e22bee78STejun Heo 	 *
795628c78e7STejun Heo 	 * NOT_RUNNING is clear.  This means that we're bound to and
796628c78e7STejun Heo 	 * running on the local cpu w/ rq lock held and preemption
797628c78e7STejun Heo 	 * disabled, which in turn means that none else could be
798d565ed63STejun Heo 	 * manipulating idle_list, so dereferencing idle_list without pool
799628c78e7STejun Heo 	 * lock is safe.
800e22bee78STejun Heo 	 */
801e19e397aSTejun Heo 	if (atomic_dec_and_test(&pool->nr_running) &&
802e19e397aSTejun Heo 	    !list_empty(&pool->worklist))
80363d95a91STejun Heo 		to_wakeup = first_worker(pool);
804e22bee78STejun Heo 	return to_wakeup ? to_wakeup->task : NULL;
805e22bee78STejun Heo }
806e22bee78STejun Heo 
807e22bee78STejun Heo /**
808e22bee78STejun Heo  * worker_set_flags - set worker flags and adjust nr_running accordingly
809cb444766STejun Heo  * @worker: self
810d302f017STejun Heo  * @flags: flags to set
811d302f017STejun Heo  * @wakeup: wakeup an idle worker if necessary
812d302f017STejun Heo  *
813e22bee78STejun Heo  * Set @flags in @worker->flags and adjust nr_running accordingly.  If
814e22bee78STejun Heo  * nr_running becomes zero and @wakeup is %true, an idle worker is
815e22bee78STejun Heo  * woken up.
816d302f017STejun Heo  *
817cb444766STejun Heo  * CONTEXT:
818d565ed63STejun Heo  * spin_lock_irq(pool->lock)
819d302f017STejun Heo  */
820d302f017STejun Heo static inline void worker_set_flags(struct worker *worker, unsigned int flags,
821d302f017STejun Heo 				    bool wakeup)
822d302f017STejun Heo {
823bd7bdd43STejun Heo 	struct worker_pool *pool = worker->pool;
824e22bee78STejun Heo 
825cb444766STejun Heo 	WARN_ON_ONCE(worker->task != current);
826cb444766STejun Heo 
827e22bee78STejun Heo 	/*
828e22bee78STejun Heo 	 * If transitioning into NOT_RUNNING, adjust nr_running and
829e22bee78STejun Heo 	 * wake up an idle worker as necessary if requested by
830e22bee78STejun Heo 	 * @wakeup.
831e22bee78STejun Heo 	 */
832e22bee78STejun Heo 	if ((flags & WORKER_NOT_RUNNING) &&
833e22bee78STejun Heo 	    !(worker->flags & WORKER_NOT_RUNNING)) {
834e22bee78STejun Heo 		if (wakeup) {
835e19e397aSTejun Heo 			if (atomic_dec_and_test(&pool->nr_running) &&
836bd7bdd43STejun Heo 			    !list_empty(&pool->worklist))
83763d95a91STejun Heo 				wake_up_worker(pool);
838e22bee78STejun Heo 		} else
839e19e397aSTejun Heo 			atomic_dec(&pool->nr_running);
840e22bee78STejun Heo 	}
841e22bee78STejun Heo 
842d302f017STejun Heo 	worker->flags |= flags;
843d302f017STejun Heo }
844d302f017STejun Heo 
845d302f017STejun Heo /**
846e22bee78STejun Heo  * worker_clr_flags - clear worker flags and adjust nr_running accordingly
847cb444766STejun Heo  * @worker: self
848d302f017STejun Heo  * @flags: flags to clear
849d302f017STejun Heo  *
850e22bee78STejun Heo  * Clear @flags in @worker->flags and adjust nr_running accordingly.
851d302f017STejun Heo  *
852cb444766STejun Heo  * CONTEXT:
853d565ed63STejun Heo  * spin_lock_irq(pool->lock)
854d302f017STejun Heo  */
855d302f017STejun Heo static inline void worker_clr_flags(struct worker *worker, unsigned int flags)
856d302f017STejun Heo {
85763d95a91STejun Heo 	struct worker_pool *pool = worker->pool;
858e22bee78STejun Heo 	unsigned int oflags = worker->flags;
859e22bee78STejun Heo 
860cb444766STejun Heo 	WARN_ON_ONCE(worker->task != current);
861cb444766STejun Heo 
862d302f017STejun Heo 	worker->flags &= ~flags;
863e22bee78STejun Heo 
86442c025f3STejun Heo 	/*
86542c025f3STejun Heo 	 * If transitioning out of NOT_RUNNING, increment nr_running.  Note
86642c025f3STejun Heo 	 * that the nested NOT_RUNNING is not a noop.  NOT_RUNNING is mask
86742c025f3STejun Heo 	 * of multiple flags, not a single flag.
86842c025f3STejun Heo 	 */
869e22bee78STejun Heo 	if ((flags & WORKER_NOT_RUNNING) && (oflags & WORKER_NOT_RUNNING))
870e22bee78STejun Heo 		if (!(worker->flags & WORKER_NOT_RUNNING))
871e19e397aSTejun Heo 			atomic_inc(&pool->nr_running);
872d302f017STejun Heo }
873d302f017STejun Heo 
874d302f017STejun Heo /**
8758cca0eeaSTejun Heo  * find_worker_executing_work - find worker which is executing a work
876c9e7cf27STejun Heo  * @pool: pool of interest
8778cca0eeaSTejun Heo  * @work: work to find worker for
8788cca0eeaSTejun Heo  *
879c9e7cf27STejun Heo  * Find a worker which is executing @work on @pool by searching
880c9e7cf27STejun Heo  * @pool->busy_hash which is keyed by the address of @work.  For a worker
881a2c1c57bSTejun Heo  * to match, its current execution should match the address of @work and
882a2c1c57bSTejun Heo  * its work function.  This is to avoid unwanted dependency between
883a2c1c57bSTejun Heo  * unrelated work executions through a work item being recycled while still
884a2c1c57bSTejun Heo  * being executed.
885a2c1c57bSTejun Heo  *
886a2c1c57bSTejun Heo  * This is a bit tricky.  A work item may be freed once its execution
887a2c1c57bSTejun Heo  * starts and nothing prevents the freed area from being recycled for
888a2c1c57bSTejun Heo  * another work item.  If the same work item address ends up being reused
889a2c1c57bSTejun Heo  * before the original execution finishes, workqueue will identify the
890a2c1c57bSTejun Heo  * recycled work item as currently executing and make it wait until the
891a2c1c57bSTejun Heo  * current execution finishes, introducing an unwanted dependency.
892a2c1c57bSTejun Heo  *
893a2c1c57bSTejun Heo  * This function checks the work item address, work function and workqueue
894a2c1c57bSTejun Heo  * to avoid false positives.  Note that this isn't complete as one may
895a2c1c57bSTejun Heo  * construct a work function which can introduce dependency onto itself
896a2c1c57bSTejun Heo  * through a recycled work item.  Well, if somebody wants to shoot oneself
897a2c1c57bSTejun Heo  * in the foot that badly, there's only so much we can do, and if such
898a2c1c57bSTejun Heo  * deadlock actually occurs, it should be easy to locate the culprit work
899a2c1c57bSTejun Heo  * function.
9008cca0eeaSTejun Heo  *
9018cca0eeaSTejun Heo  * CONTEXT:
902d565ed63STejun Heo  * spin_lock_irq(pool->lock).
9038cca0eeaSTejun Heo  *
9048cca0eeaSTejun Heo  * RETURNS:
9058cca0eeaSTejun Heo  * Pointer to worker which is executing @work if found, NULL
9068cca0eeaSTejun Heo  * otherwise.
9078cca0eeaSTejun Heo  */
908c9e7cf27STejun Heo static struct worker *find_worker_executing_work(struct worker_pool *pool,
9098cca0eeaSTejun Heo 						 struct work_struct *work)
9108cca0eeaSTejun Heo {
91142f8570fSSasha Levin 	struct worker *worker;
91242f8570fSSasha Levin 
913b67bfe0dSSasha Levin 	hash_for_each_possible(pool->busy_hash, worker, hentry,
914a2c1c57bSTejun Heo 			       (unsigned long)work)
915a2c1c57bSTejun Heo 		if (worker->current_work == work &&
916a2c1c57bSTejun Heo 		    worker->current_func == work->func)
91742f8570fSSasha Levin 			return worker;
91842f8570fSSasha Levin 
91942f8570fSSasha Levin 	return NULL;
9208cca0eeaSTejun Heo }
9218cca0eeaSTejun Heo 
9228cca0eeaSTejun Heo /**
923bf4ede01STejun Heo  * move_linked_works - move linked works to a list
924bf4ede01STejun Heo  * @work: start of series of works to be scheduled
925bf4ede01STejun Heo  * @head: target list to append @work to
926bf4ede01STejun Heo  * @nextp: out paramter for nested worklist walking
927bf4ede01STejun Heo  *
928bf4ede01STejun Heo  * Schedule linked works starting from @work to @head.  Work series to
929bf4ede01STejun Heo  * be scheduled starts at @work and includes any consecutive work with
930bf4ede01STejun Heo  * WORK_STRUCT_LINKED set in its predecessor.
931bf4ede01STejun Heo  *
932bf4ede01STejun Heo  * If @nextp is not NULL, it's updated to point to the next work of
933bf4ede01STejun Heo  * the last scheduled work.  This allows move_linked_works() to be
934bf4ede01STejun Heo  * nested inside outer list_for_each_entry_safe().
935bf4ede01STejun Heo  *
936bf4ede01STejun Heo  * CONTEXT:
937d565ed63STejun Heo  * spin_lock_irq(pool->lock).
938bf4ede01STejun Heo  */
939bf4ede01STejun Heo static void move_linked_works(struct work_struct *work, struct list_head *head,
940bf4ede01STejun Heo 			      struct work_struct **nextp)
941bf4ede01STejun Heo {
942bf4ede01STejun Heo 	struct work_struct *n;
943bf4ede01STejun Heo 
944bf4ede01STejun Heo 	/*
945bf4ede01STejun Heo 	 * Linked worklist will always end before the end of the list,
946bf4ede01STejun Heo 	 * use NULL for list head.
947bf4ede01STejun Heo 	 */
948bf4ede01STejun Heo 	list_for_each_entry_safe_from(work, n, NULL, entry) {
949bf4ede01STejun Heo 		list_move_tail(&work->entry, head);
950bf4ede01STejun Heo 		if (!(*work_data_bits(work) & WORK_STRUCT_LINKED))
951bf4ede01STejun Heo 			break;
952bf4ede01STejun Heo 	}
953bf4ede01STejun Heo 
954bf4ede01STejun Heo 	/*
955bf4ede01STejun Heo 	 * If we're already inside safe list traversal and have moved
956bf4ede01STejun Heo 	 * multiple works to the scheduled queue, the next position
957bf4ede01STejun Heo 	 * needs to be updated.
958bf4ede01STejun Heo 	 */
959bf4ede01STejun Heo 	if (nextp)
960bf4ede01STejun Heo 		*nextp = n;
961bf4ede01STejun Heo }
962bf4ede01STejun Heo 
9638864b4e5STejun Heo /**
9648864b4e5STejun Heo  * get_pwq - get an extra reference on the specified pool_workqueue
9658864b4e5STejun Heo  * @pwq: pool_workqueue to get
9668864b4e5STejun Heo  *
9678864b4e5STejun Heo  * Obtain an extra reference on @pwq.  The caller should guarantee that
9688864b4e5STejun Heo  * @pwq has positive refcnt and be holding the matching pool->lock.
9698864b4e5STejun Heo  */
9708864b4e5STejun Heo static void get_pwq(struct pool_workqueue *pwq)
9718864b4e5STejun Heo {
9728864b4e5STejun Heo 	lockdep_assert_held(&pwq->pool->lock);
9738864b4e5STejun Heo 	WARN_ON_ONCE(pwq->refcnt <= 0);
9748864b4e5STejun Heo 	pwq->refcnt++;
9758864b4e5STejun Heo }
9768864b4e5STejun Heo 
9778864b4e5STejun Heo /**
9788864b4e5STejun Heo  * put_pwq - put a pool_workqueue reference
9798864b4e5STejun Heo  * @pwq: pool_workqueue to put
9808864b4e5STejun Heo  *
9818864b4e5STejun Heo  * Drop a reference of @pwq.  If its refcnt reaches zero, schedule its
9828864b4e5STejun Heo  * destruction.  The caller should be holding the matching pool->lock.
9838864b4e5STejun Heo  */
9848864b4e5STejun Heo static void put_pwq(struct pool_workqueue *pwq)
9858864b4e5STejun Heo {
9868864b4e5STejun Heo 	lockdep_assert_held(&pwq->pool->lock);
9878864b4e5STejun Heo 	if (likely(--pwq->refcnt))
9888864b4e5STejun Heo 		return;
9898864b4e5STejun Heo 	if (WARN_ON_ONCE(!(pwq->wq->flags & WQ_UNBOUND)))
9908864b4e5STejun Heo 		return;
9918864b4e5STejun Heo 	/*
9928864b4e5STejun Heo 	 * @pwq can't be released under pool->lock, bounce to
9938864b4e5STejun Heo 	 * pwq_unbound_release_workfn().  This never recurses on the same
9948864b4e5STejun Heo 	 * pool->lock as this path is taken only for unbound workqueues and
9958864b4e5STejun Heo 	 * the release work item is scheduled on a per-cpu workqueue.  To
9968864b4e5STejun Heo 	 * avoid lockdep warning, unbound pool->locks are given lockdep
9978864b4e5STejun Heo 	 * subclass of 1 in get_unbound_pool().
9988864b4e5STejun Heo 	 */
9998864b4e5STejun Heo 	schedule_work(&pwq->unbound_release_work);
10008864b4e5STejun Heo }
10018864b4e5STejun Heo 
1002112202d9STejun Heo static void pwq_activate_delayed_work(struct work_struct *work)
1003bf4ede01STejun Heo {
1004112202d9STejun Heo 	struct pool_workqueue *pwq = get_work_pwq(work);
1005bf4ede01STejun Heo 
1006bf4ede01STejun Heo 	trace_workqueue_activate_work(work);
1007112202d9STejun Heo 	move_linked_works(work, &pwq->pool->worklist, NULL);
1008bf4ede01STejun Heo 	__clear_bit(WORK_STRUCT_DELAYED_BIT, work_data_bits(work));
1009112202d9STejun Heo 	pwq->nr_active++;
1010bf4ede01STejun Heo }
1011bf4ede01STejun Heo 
1012112202d9STejun Heo static void pwq_activate_first_delayed(struct pool_workqueue *pwq)
10133aa62497SLai Jiangshan {
1014112202d9STejun Heo 	struct work_struct *work = list_first_entry(&pwq->delayed_works,
10153aa62497SLai Jiangshan 						    struct work_struct, entry);
10163aa62497SLai Jiangshan 
1017112202d9STejun Heo 	pwq_activate_delayed_work(work);
10183aa62497SLai Jiangshan }
10193aa62497SLai Jiangshan 
1020bf4ede01STejun Heo /**
1021112202d9STejun Heo  * pwq_dec_nr_in_flight - decrement pwq's nr_in_flight
1022112202d9STejun Heo  * @pwq: pwq of interest
1023bf4ede01STejun Heo  * @color: color of work which left the queue
1024bf4ede01STejun Heo  *
1025bf4ede01STejun Heo  * A work either has completed or is removed from pending queue,
1026112202d9STejun Heo  * decrement nr_in_flight of its pwq and handle workqueue flushing.
1027bf4ede01STejun Heo  *
1028bf4ede01STejun Heo  * CONTEXT:
1029d565ed63STejun Heo  * spin_lock_irq(pool->lock).
1030bf4ede01STejun Heo  */
1031112202d9STejun Heo static void pwq_dec_nr_in_flight(struct pool_workqueue *pwq, int color)
1032bf4ede01STejun Heo {
10338864b4e5STejun Heo 	/* uncolored work items don't participate in flushing or nr_active */
1034bf4ede01STejun Heo 	if (color == WORK_NO_COLOR)
10358864b4e5STejun Heo 		goto out_put;
1036bf4ede01STejun Heo 
1037112202d9STejun Heo 	pwq->nr_in_flight[color]--;
1038bf4ede01STejun Heo 
1039112202d9STejun Heo 	pwq->nr_active--;
1040112202d9STejun Heo 	if (!list_empty(&pwq->delayed_works)) {
1041bf4ede01STejun Heo 		/* one down, submit a delayed one */
1042112202d9STejun Heo 		if (pwq->nr_active < pwq->max_active)
1043112202d9STejun Heo 			pwq_activate_first_delayed(pwq);
1044bf4ede01STejun Heo 	}
1045bf4ede01STejun Heo 
1046bf4ede01STejun Heo 	/* is flush in progress and are we at the flushing tip? */
1047112202d9STejun Heo 	if (likely(pwq->flush_color != color))
10488864b4e5STejun Heo 		goto out_put;
1049bf4ede01STejun Heo 
1050bf4ede01STejun Heo 	/* are there still in-flight works? */
1051112202d9STejun Heo 	if (pwq->nr_in_flight[color])
10528864b4e5STejun Heo 		goto out_put;
1053bf4ede01STejun Heo 
1054112202d9STejun Heo 	/* this pwq is done, clear flush_color */
1055112202d9STejun Heo 	pwq->flush_color = -1;
1056bf4ede01STejun Heo 
1057bf4ede01STejun Heo 	/*
1058112202d9STejun Heo 	 * If this was the last pwq, wake up the first flusher.  It
1059bf4ede01STejun Heo 	 * will handle the rest.
1060bf4ede01STejun Heo 	 */
1061112202d9STejun Heo 	if (atomic_dec_and_test(&pwq->wq->nr_pwqs_to_flush))
1062112202d9STejun Heo 		complete(&pwq->wq->first_flusher->done);
10638864b4e5STejun Heo out_put:
10648864b4e5STejun Heo 	put_pwq(pwq);
1065bf4ede01STejun Heo }
1066bf4ede01STejun Heo 
106736e227d2STejun Heo /**
1068bbb68dfaSTejun Heo  * try_to_grab_pending - steal work item from worklist and disable irq
106936e227d2STejun Heo  * @work: work item to steal
107036e227d2STejun Heo  * @is_dwork: @work is a delayed_work
1071bbb68dfaSTejun Heo  * @flags: place to store irq state
107236e227d2STejun Heo  *
107336e227d2STejun Heo  * Try to grab PENDING bit of @work.  This function can handle @work in any
107436e227d2STejun Heo  * stable state - idle, on timer or on worklist.  Return values are
107536e227d2STejun Heo  *
107636e227d2STejun Heo  *  1		if @work was pending and we successfully stole PENDING
107736e227d2STejun Heo  *  0		if @work was idle and we claimed PENDING
107836e227d2STejun Heo  *  -EAGAIN	if PENDING couldn't be grabbed at the moment, safe to busy-retry
1079bbb68dfaSTejun Heo  *  -ENOENT	if someone else is canceling @work, this state may persist
1080bbb68dfaSTejun Heo  *		for arbitrarily long
108136e227d2STejun Heo  *
1082bbb68dfaSTejun Heo  * On >= 0 return, the caller owns @work's PENDING bit.  To avoid getting
1083e0aecdd8STejun Heo  * interrupted while holding PENDING and @work off queue, irq must be
1084e0aecdd8STejun Heo  * disabled on entry.  This, combined with delayed_work->timer being
1085e0aecdd8STejun Heo  * irqsafe, ensures that we return -EAGAIN for finite short period of time.
1086bbb68dfaSTejun Heo  *
1087bbb68dfaSTejun Heo  * On successful return, >= 0, irq is disabled and the caller is
1088bbb68dfaSTejun Heo  * responsible for releasing it using local_irq_restore(*@flags).
1089bbb68dfaSTejun Heo  *
1090e0aecdd8STejun Heo  * This function is safe to call from any context including IRQ handler.
1091bf4ede01STejun Heo  */
1092bbb68dfaSTejun Heo static int try_to_grab_pending(struct work_struct *work, bool is_dwork,
1093bbb68dfaSTejun Heo 			       unsigned long *flags)
1094bf4ede01STejun Heo {
1095d565ed63STejun Heo 	struct worker_pool *pool;
1096112202d9STejun Heo 	struct pool_workqueue *pwq;
1097bf4ede01STejun Heo 
1098bbb68dfaSTejun Heo 	local_irq_save(*flags);
1099bbb68dfaSTejun Heo 
110036e227d2STejun Heo 	/* try to steal the timer if it exists */
110136e227d2STejun Heo 	if (is_dwork) {
110236e227d2STejun Heo 		struct delayed_work *dwork = to_delayed_work(work);
110336e227d2STejun Heo 
1104e0aecdd8STejun Heo 		/*
1105e0aecdd8STejun Heo 		 * dwork->timer is irqsafe.  If del_timer() fails, it's
1106e0aecdd8STejun Heo 		 * guaranteed that the timer is not queued anywhere and not
1107e0aecdd8STejun Heo 		 * running on the local CPU.
1108e0aecdd8STejun Heo 		 */
110936e227d2STejun Heo 		if (likely(del_timer(&dwork->timer)))
111036e227d2STejun Heo 			return 1;
111136e227d2STejun Heo 	}
111236e227d2STejun Heo 
111336e227d2STejun Heo 	/* try to claim PENDING the normal way */
1114bf4ede01STejun Heo 	if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
1115bf4ede01STejun Heo 		return 0;
1116bf4ede01STejun Heo 
1117bf4ede01STejun Heo 	/*
1118bf4ede01STejun Heo 	 * The queueing is in progress, or it is already queued. Try to
1119bf4ede01STejun Heo 	 * steal it from ->worklist without clearing WORK_STRUCT_PENDING.
1120bf4ede01STejun Heo 	 */
1121d565ed63STejun Heo 	pool = get_work_pool(work);
1122d565ed63STejun Heo 	if (!pool)
1123bbb68dfaSTejun Heo 		goto fail;
1124bf4ede01STejun Heo 
1125d565ed63STejun Heo 	spin_lock(&pool->lock);
1126bf4ede01STejun Heo 	/*
1127112202d9STejun Heo 	 * work->data is guaranteed to point to pwq only while the work
1128112202d9STejun Heo 	 * item is queued on pwq->wq, and both updating work->data to point
1129112202d9STejun Heo 	 * to pwq on queueing and to pool on dequeueing are done under
1130112202d9STejun Heo 	 * pwq->pool->lock.  This in turn guarantees that, if work->data
1131112202d9STejun Heo 	 * points to pwq which is associated with a locked pool, the work
11320b3dae68SLai Jiangshan 	 * item is currently queued on that pool.
1133bf4ede01STejun Heo 	 */
1134112202d9STejun Heo 	pwq = get_work_pwq(work);
1135112202d9STejun Heo 	if (pwq && pwq->pool == pool) {
1136bf4ede01STejun Heo 		debug_work_deactivate(work);
11373aa62497SLai Jiangshan 
11383aa62497SLai Jiangshan 		/*
113916062836STejun Heo 		 * A delayed work item cannot be grabbed directly because
114016062836STejun Heo 		 * it might have linked NO_COLOR work items which, if left
1141112202d9STejun Heo 		 * on the delayed_list, will confuse pwq->nr_active
114216062836STejun Heo 		 * management later on and cause stall.  Make sure the work
114316062836STejun Heo 		 * item is activated before grabbing.
11443aa62497SLai Jiangshan 		 */
11453aa62497SLai Jiangshan 		if (*work_data_bits(work) & WORK_STRUCT_DELAYED)
1146112202d9STejun Heo 			pwq_activate_delayed_work(work);
11473aa62497SLai Jiangshan 
1148bf4ede01STejun Heo 		list_del_init(&work->entry);
1149112202d9STejun Heo 		pwq_dec_nr_in_flight(get_work_pwq(work), get_work_color(work));
115036e227d2STejun Heo 
1151112202d9STejun Heo 		/* work->data points to pwq iff queued, point to pool */
11524468a00fSLai Jiangshan 		set_work_pool_and_keep_pending(work, pool->id);
11534468a00fSLai Jiangshan 
1154d565ed63STejun Heo 		spin_unlock(&pool->lock);
115536e227d2STejun Heo 		return 1;
1156bf4ede01STejun Heo 	}
1157d565ed63STejun Heo 	spin_unlock(&pool->lock);
1158bbb68dfaSTejun Heo fail:
1159bbb68dfaSTejun Heo 	local_irq_restore(*flags);
1160bbb68dfaSTejun Heo 	if (work_is_canceling(work))
1161bbb68dfaSTejun Heo 		return -ENOENT;
1162bbb68dfaSTejun Heo 	cpu_relax();
116336e227d2STejun Heo 	return -EAGAIN;
1164bf4ede01STejun Heo }
1165bf4ede01STejun Heo 
1166bf4ede01STejun Heo /**
1167706026c2STejun Heo  * insert_work - insert a work into a pool
1168112202d9STejun Heo  * @pwq: pwq @work belongs to
11694690c4abSTejun Heo  * @work: work to insert
11704690c4abSTejun Heo  * @head: insertion point
11714690c4abSTejun Heo  * @extra_flags: extra WORK_STRUCT_* flags to set
11724690c4abSTejun Heo  *
1173112202d9STejun Heo  * Insert @work which belongs to @pwq after @head.  @extra_flags is or'd to
1174706026c2STejun Heo  * work_struct flags.
11754690c4abSTejun Heo  *
11764690c4abSTejun Heo  * CONTEXT:
1177d565ed63STejun Heo  * spin_lock_irq(pool->lock).
1178365970a1SDavid Howells  */
1179112202d9STejun Heo static void insert_work(struct pool_workqueue *pwq, struct work_struct *work,
1180112202d9STejun Heo 			struct list_head *head, unsigned int extra_flags)
1181b89deed3SOleg Nesterov {
1182112202d9STejun Heo 	struct worker_pool *pool = pwq->pool;
1183e1d8aa9fSFrederic Weisbecker 
11844690c4abSTejun Heo 	/* we own @work, set data and link */
1185112202d9STejun Heo 	set_work_pwq(work, pwq, extra_flags);
11861a4d9b0aSOleg Nesterov 	list_add_tail(&work->entry, head);
11878864b4e5STejun Heo 	get_pwq(pwq);
1188e22bee78STejun Heo 
1189e22bee78STejun Heo 	/*
1190e22bee78STejun Heo 	 * Ensure either worker_sched_deactivated() sees the above
1191e22bee78STejun Heo 	 * list_add_tail() or we see zero nr_running to avoid workers
1192e22bee78STejun Heo 	 * lying around lazily while there are works to be processed.
1193e22bee78STejun Heo 	 */
1194e22bee78STejun Heo 	smp_mb();
1195e22bee78STejun Heo 
119663d95a91STejun Heo 	if (__need_more_worker(pool))
119763d95a91STejun Heo 		wake_up_worker(pool);
1198b89deed3SOleg Nesterov }
1199b89deed3SOleg Nesterov 
1200c8efcc25STejun Heo /*
1201c8efcc25STejun Heo  * Test whether @work is being queued from another work executing on the
12028d03ecfeSTejun Heo  * same workqueue.
1203c8efcc25STejun Heo  */
1204c8efcc25STejun Heo static bool is_chained_work(struct workqueue_struct *wq)
1205c8efcc25STejun Heo {
1206c8efcc25STejun Heo 	struct worker *worker;
1207c8efcc25STejun Heo 
12088d03ecfeSTejun Heo 	worker = current_wq_worker();
1209c8efcc25STejun Heo 	/*
12108d03ecfeSTejun Heo 	 * Return %true iff I'm a worker execuing a work item on @wq.  If
12118d03ecfeSTejun Heo 	 * I'm @worker, it's safe to dereference it without locking.
1212c8efcc25STejun Heo 	 */
1213112202d9STejun Heo 	return worker && worker->current_pwq->wq == wq;
1214c8efcc25STejun Heo }
1215c8efcc25STejun Heo 
1216d84ff051STejun Heo static void __queue_work(int cpu, struct workqueue_struct *wq,
12171da177e4SLinus Torvalds 			 struct work_struct *work)
12181da177e4SLinus Torvalds {
1219112202d9STejun Heo 	struct pool_workqueue *pwq;
1220c9178087STejun Heo 	struct worker_pool *last_pool;
12211e19ffc6STejun Heo 	struct list_head *worklist;
12228a2e8e5dSTejun Heo 	unsigned int work_flags;
1223b75cac93SJoonsoo Kim 	unsigned int req_cpu = cpu;
12248930cabaSTejun Heo 
12258930cabaSTejun Heo 	/*
12268930cabaSTejun Heo 	 * While a work item is PENDING && off queue, a task trying to
12278930cabaSTejun Heo 	 * steal the PENDING will busy-loop waiting for it to either get
12288930cabaSTejun Heo 	 * queued or lose PENDING.  Grabbing PENDING and queueing should
12298930cabaSTejun Heo 	 * happen with IRQ disabled.
12308930cabaSTejun Heo 	 */
12318930cabaSTejun Heo 	WARN_ON_ONCE(!irqs_disabled());
12321da177e4SLinus Torvalds 
1233dc186ad7SThomas Gleixner 	debug_work_activate(work);
12341e19ffc6STejun Heo 
1235c8efcc25STejun Heo 	/* if dying, only works from the same workqueue are allowed */
1236618b01ebSTejun Heo 	if (unlikely(wq->flags & __WQ_DRAINING) &&
1237c8efcc25STejun Heo 	    WARN_ON_ONCE(!is_chained_work(wq)))
1238e41e704bSTejun Heo 		return;
12399e8cd2f5STejun Heo retry:
1240c9178087STejun Heo 	/* pwq which will be used unless @work is executing elsewhere */
1241c7fc77f7STejun Heo 	if (!(wq->flags & WQ_UNBOUND)) {
124257469821STejun Heo 		if (cpu == WORK_CPU_UNBOUND)
1243f3421797STejun Heo 			cpu = raw_smp_processor_id();
1244c9178087STejun Heo 		pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
1245c9178087STejun Heo 	} else {
1246c9178087STejun Heo 		pwq = first_pwq(wq);
1247c9178087STejun Heo 	}
1248f3421797STejun Heo 
124918aa9effSTejun Heo 	/*
1250c9178087STejun Heo 	 * If @work was previously on a different pool, it might still be
1251c9178087STejun Heo 	 * running there, in which case the work needs to be queued on that
1252c9178087STejun Heo 	 * pool to guarantee non-reentrancy.
125318aa9effSTejun Heo 	 */
1254c9e7cf27STejun Heo 	last_pool = get_work_pool(work);
1255112202d9STejun Heo 	if (last_pool && last_pool != pwq->pool) {
125618aa9effSTejun Heo 		struct worker *worker;
125718aa9effSTejun Heo 
1258d565ed63STejun Heo 		spin_lock(&last_pool->lock);
125918aa9effSTejun Heo 
1260c9e7cf27STejun Heo 		worker = find_worker_executing_work(last_pool, work);
126118aa9effSTejun Heo 
1262112202d9STejun Heo 		if (worker && worker->current_pwq->wq == wq) {
1263c9178087STejun Heo 			pwq = worker->current_pwq;
12648594fadeSLai Jiangshan 		} else {
126518aa9effSTejun Heo 			/* meh... not running there, queue here */
1266d565ed63STejun Heo 			spin_unlock(&last_pool->lock);
1267112202d9STejun Heo 			spin_lock(&pwq->pool->lock);
126818aa9effSTejun Heo 		}
12698930cabaSTejun Heo 	} else {
1270112202d9STejun Heo 		spin_lock(&pwq->pool->lock);
12718930cabaSTejun Heo 	}
1272502ca9d8STejun Heo 
12739e8cd2f5STejun Heo 	/*
12749e8cd2f5STejun Heo 	 * pwq is determined and locked.  For unbound pools, we could have
12759e8cd2f5STejun Heo 	 * raced with pwq release and it could already be dead.  If its
12769e8cd2f5STejun Heo 	 * refcnt is zero, repeat pwq selection.  Note that pwqs never die
12779e8cd2f5STejun Heo 	 * without another pwq replacing it as the first pwq or while a
12789e8cd2f5STejun Heo 	 * work item is executing on it, so the retying is guaranteed to
12799e8cd2f5STejun Heo 	 * make forward-progress.
12809e8cd2f5STejun Heo 	 */
12819e8cd2f5STejun Heo 	if (unlikely(!pwq->refcnt)) {
12829e8cd2f5STejun Heo 		if (wq->flags & WQ_UNBOUND) {
12839e8cd2f5STejun Heo 			spin_unlock(&pwq->pool->lock);
12849e8cd2f5STejun Heo 			cpu_relax();
12859e8cd2f5STejun Heo 			goto retry;
12869e8cd2f5STejun Heo 		}
12879e8cd2f5STejun Heo 		/* oops */
12889e8cd2f5STejun Heo 		WARN_ONCE(true, "workqueue: per-cpu pwq for %s on cpu%d has 0 refcnt",
12899e8cd2f5STejun Heo 			  wq->name, cpu);
12909e8cd2f5STejun Heo 	}
12919e8cd2f5STejun Heo 
1292112202d9STejun Heo 	/* pwq determined, queue */
1293112202d9STejun Heo 	trace_workqueue_queue_work(req_cpu, pwq, work);
1294502ca9d8STejun Heo 
1295f5b2552bSDan Carpenter 	if (WARN_ON(!list_empty(&work->entry))) {
1296112202d9STejun Heo 		spin_unlock(&pwq->pool->lock);
1297f5b2552bSDan Carpenter 		return;
1298f5b2552bSDan Carpenter 	}
12991e19ffc6STejun Heo 
1300112202d9STejun Heo 	pwq->nr_in_flight[pwq->work_color]++;
1301112202d9STejun Heo 	work_flags = work_color_to_flags(pwq->work_color);
13021e19ffc6STejun Heo 
1303112202d9STejun Heo 	if (likely(pwq->nr_active < pwq->max_active)) {
1304cdadf009STejun Heo 		trace_workqueue_activate_work(work);
1305112202d9STejun Heo 		pwq->nr_active++;
1306112202d9STejun Heo 		worklist = &pwq->pool->worklist;
13078a2e8e5dSTejun Heo 	} else {
13088a2e8e5dSTejun Heo 		work_flags |= WORK_STRUCT_DELAYED;
1309112202d9STejun Heo 		worklist = &pwq->delayed_works;
13108a2e8e5dSTejun Heo 	}
13111e19ffc6STejun Heo 
1312112202d9STejun Heo 	insert_work(pwq, work, worklist, work_flags);
13131e19ffc6STejun Heo 
1314112202d9STejun Heo 	spin_unlock(&pwq->pool->lock);
13151da177e4SLinus Torvalds }
13161da177e4SLinus Torvalds 
13170fcb78c2SRolf Eike Beer /**
1318c1a220e7SZhang Rui  * queue_work_on - queue work on specific cpu
1319c1a220e7SZhang Rui  * @cpu: CPU number to execute work on
1320c1a220e7SZhang Rui  * @wq: workqueue to use
1321c1a220e7SZhang Rui  * @work: work to queue
1322c1a220e7SZhang Rui  *
1323d4283e93STejun Heo  * Returns %false if @work was already on a queue, %true otherwise.
1324c1a220e7SZhang Rui  *
1325c1a220e7SZhang Rui  * We queue the work to a specific CPU, the caller must ensure it
1326c1a220e7SZhang Rui  * can't go away.
1327c1a220e7SZhang Rui  */
1328d4283e93STejun Heo bool queue_work_on(int cpu, struct workqueue_struct *wq,
1329d4283e93STejun Heo 		   struct work_struct *work)
1330c1a220e7SZhang Rui {
1331d4283e93STejun Heo 	bool ret = false;
13328930cabaSTejun Heo 	unsigned long flags;
13338930cabaSTejun Heo 
13348930cabaSTejun Heo 	local_irq_save(flags);
1335c1a220e7SZhang Rui 
133622df02bbSTejun Heo 	if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
13374690c4abSTejun Heo 		__queue_work(cpu, wq, work);
1338d4283e93STejun Heo 		ret = true;
1339c1a220e7SZhang Rui 	}
13408930cabaSTejun Heo 
13418930cabaSTejun Heo 	local_irq_restore(flags);
1342c1a220e7SZhang Rui 	return ret;
1343c1a220e7SZhang Rui }
1344c1a220e7SZhang Rui EXPORT_SYMBOL_GPL(queue_work_on);
1345c1a220e7SZhang Rui 
13460a13c00eSTejun Heo /**
13470a13c00eSTejun Heo  * queue_work - queue work on a workqueue
13480a13c00eSTejun Heo  * @wq: workqueue to use
13490a13c00eSTejun Heo  * @work: work to queue
13500a13c00eSTejun Heo  *
1351d4283e93STejun Heo  * Returns %false if @work was already on a queue, %true otherwise.
13520a13c00eSTejun Heo  *
13530a13c00eSTejun Heo  * We queue the work to the CPU on which it was submitted, but if the CPU dies
13540a13c00eSTejun Heo  * it can be processed by another CPU.
13550a13c00eSTejun Heo  */
1356d4283e93STejun Heo bool queue_work(struct workqueue_struct *wq, struct work_struct *work)
13570a13c00eSTejun Heo {
135857469821STejun Heo 	return queue_work_on(WORK_CPU_UNBOUND, wq, work);
13590a13c00eSTejun Heo }
13600a13c00eSTejun Heo EXPORT_SYMBOL_GPL(queue_work);
13610a13c00eSTejun Heo 
1362d8e794dfSTejun Heo void delayed_work_timer_fn(unsigned long __data)
13631da177e4SLinus Torvalds {
136452bad64dSDavid Howells 	struct delayed_work *dwork = (struct delayed_work *)__data;
13651da177e4SLinus Torvalds 
1366e0aecdd8STejun Heo 	/* should have been called from irqsafe timer with irq already off */
136760c057bcSLai Jiangshan 	__queue_work(dwork->cpu, dwork->wq, &dwork->work);
13681da177e4SLinus Torvalds }
13691438ade5SKonstantin Khlebnikov EXPORT_SYMBOL(delayed_work_timer_fn);
13701da177e4SLinus Torvalds 
13717beb2edfSTejun Heo static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
137252bad64dSDavid Howells 				struct delayed_work *dwork, unsigned long delay)
13731da177e4SLinus Torvalds {
13747beb2edfSTejun Heo 	struct timer_list *timer = &dwork->timer;
13757beb2edfSTejun Heo 	struct work_struct *work = &dwork->work;
13761da177e4SLinus Torvalds 
13777beb2edfSTejun Heo 	WARN_ON_ONCE(timer->function != delayed_work_timer_fn ||
13787beb2edfSTejun Heo 		     timer->data != (unsigned long)dwork);
1379fc4b514fSTejun Heo 	WARN_ON_ONCE(timer_pending(timer));
1380fc4b514fSTejun Heo 	WARN_ON_ONCE(!list_empty(&work->entry));
13817beb2edfSTejun Heo 
13828852aac2STejun Heo 	/*
13838852aac2STejun Heo 	 * If @delay is 0, queue @dwork->work immediately.  This is for
13848852aac2STejun Heo 	 * both optimization and correctness.  The earliest @timer can
13858852aac2STejun Heo 	 * expire is on the closest next tick and delayed_work users depend
13868852aac2STejun Heo 	 * on that there's no such delay when @delay is 0.
13878852aac2STejun Heo 	 */
13888852aac2STejun Heo 	if (!delay) {
13898852aac2STejun Heo 		__queue_work(cpu, wq, &dwork->work);
13908852aac2STejun Heo 		return;
13918852aac2STejun Heo 	}
13928852aac2STejun Heo 
13937beb2edfSTejun Heo 	timer_stats_timer_set_start_info(&dwork->timer);
13947beb2edfSTejun Heo 
139560c057bcSLai Jiangshan 	dwork->wq = wq;
13961265057fSTejun Heo 	dwork->cpu = cpu;
13977beb2edfSTejun Heo 	timer->expires = jiffies + delay;
13987beb2edfSTejun Heo 
13997beb2edfSTejun Heo 	if (unlikely(cpu != WORK_CPU_UNBOUND))
14007beb2edfSTejun Heo 		add_timer_on(timer, cpu);
14017beb2edfSTejun Heo 	else
14027beb2edfSTejun Heo 		add_timer(timer);
14037beb2edfSTejun Heo }
14041da177e4SLinus Torvalds 
14050fcb78c2SRolf Eike Beer /**
14060fcb78c2SRolf Eike Beer  * queue_delayed_work_on - queue work on specific CPU after delay
14070fcb78c2SRolf Eike Beer  * @cpu: CPU number to execute work on
14080fcb78c2SRolf Eike Beer  * @wq: workqueue to use
1409af9997e4SRandy Dunlap  * @dwork: work to queue
14100fcb78c2SRolf Eike Beer  * @delay: number of jiffies to wait before queueing
14110fcb78c2SRolf Eike Beer  *
1412715f1300STejun Heo  * Returns %false if @work was already on a queue, %true otherwise.  If
1413715f1300STejun Heo  * @delay is zero and @dwork is idle, it will be scheduled for immediate
1414715f1300STejun Heo  * execution.
14150fcb78c2SRolf Eike Beer  */
1416d4283e93STejun Heo bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
141752bad64dSDavid Howells 			   struct delayed_work *dwork, unsigned long delay)
14187a6bc1cdSVenkatesh Pallipadi {
141952bad64dSDavid Howells 	struct work_struct *work = &dwork->work;
1420d4283e93STejun Heo 	bool ret = false;
14218930cabaSTejun Heo 	unsigned long flags;
14228930cabaSTejun Heo 
14238930cabaSTejun Heo 	/* read the comment in __queue_work() */
14248930cabaSTejun Heo 	local_irq_save(flags);
14257a6bc1cdSVenkatesh Pallipadi 
142622df02bbSTejun Heo 	if (!test_and_set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))) {
14277beb2edfSTejun Heo 		__queue_delayed_work(cpu, wq, dwork, delay);
1428d4283e93STejun Heo 		ret = true;
14297a6bc1cdSVenkatesh Pallipadi 	}
14308930cabaSTejun Heo 
14318930cabaSTejun Heo 	local_irq_restore(flags);
14327a6bc1cdSVenkatesh Pallipadi 	return ret;
14337a6bc1cdSVenkatesh Pallipadi }
1434ae90dd5dSDave Jones EXPORT_SYMBOL_GPL(queue_delayed_work_on);
14351da177e4SLinus Torvalds 
1436c8e55f36STejun Heo /**
14370a13c00eSTejun Heo  * queue_delayed_work - queue work on a workqueue after delay
14380a13c00eSTejun Heo  * @wq: workqueue to use
14390a13c00eSTejun Heo  * @dwork: delayable work to queue
14400a13c00eSTejun Heo  * @delay: number of jiffies to wait before queueing
14410a13c00eSTejun Heo  *
1442715f1300STejun Heo  * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
14430a13c00eSTejun Heo  */
1444d4283e93STejun Heo bool queue_delayed_work(struct workqueue_struct *wq,
14450a13c00eSTejun Heo 			struct delayed_work *dwork, unsigned long delay)
14460a13c00eSTejun Heo {
144757469821STejun Heo 	return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
14480a13c00eSTejun Heo }
14490a13c00eSTejun Heo EXPORT_SYMBOL_GPL(queue_delayed_work);
14500a13c00eSTejun Heo 
14510a13c00eSTejun Heo /**
14528376fe22STejun Heo  * mod_delayed_work_on - modify delay of or queue a delayed work on specific CPU
14538376fe22STejun Heo  * @cpu: CPU number to execute work on
14548376fe22STejun Heo  * @wq: workqueue to use
14558376fe22STejun Heo  * @dwork: work to queue
14568376fe22STejun Heo  * @delay: number of jiffies to wait before queueing
14578376fe22STejun Heo  *
14588376fe22STejun Heo  * If @dwork is idle, equivalent to queue_delayed_work_on(); otherwise,
14598376fe22STejun Heo  * modify @dwork's timer so that it expires after @delay.  If @delay is
14608376fe22STejun Heo  * zero, @work is guaranteed to be scheduled immediately regardless of its
14618376fe22STejun Heo  * current state.
14628376fe22STejun Heo  *
14638376fe22STejun Heo  * Returns %false if @dwork was idle and queued, %true if @dwork was
14648376fe22STejun Heo  * pending and its timer was modified.
14658376fe22STejun Heo  *
1466e0aecdd8STejun Heo  * This function is safe to call from any context including IRQ handler.
14678376fe22STejun Heo  * See try_to_grab_pending() for details.
14688376fe22STejun Heo  */
14698376fe22STejun Heo bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
14708376fe22STejun Heo 			 struct delayed_work *dwork, unsigned long delay)
14718376fe22STejun Heo {
14728376fe22STejun Heo 	unsigned long flags;
14738376fe22STejun Heo 	int ret;
14748376fe22STejun Heo 
14758376fe22STejun Heo 	do {
14768376fe22STejun Heo 		ret = try_to_grab_pending(&dwork->work, true, &flags);
14778376fe22STejun Heo 	} while (unlikely(ret == -EAGAIN));
14788376fe22STejun Heo 
14798376fe22STejun Heo 	if (likely(ret >= 0)) {
14808376fe22STejun Heo 		__queue_delayed_work(cpu, wq, dwork, delay);
14818376fe22STejun Heo 		local_irq_restore(flags);
14828376fe22STejun Heo 	}
14838376fe22STejun Heo 
14848376fe22STejun Heo 	/* -ENOENT from try_to_grab_pending() becomes %true */
14858376fe22STejun Heo 	return ret;
14868376fe22STejun Heo }
14878376fe22STejun Heo EXPORT_SYMBOL_GPL(mod_delayed_work_on);
14888376fe22STejun Heo 
14898376fe22STejun Heo /**
14908376fe22STejun Heo  * mod_delayed_work - modify delay of or queue a delayed work
14918376fe22STejun Heo  * @wq: workqueue to use
14928376fe22STejun Heo  * @dwork: work to queue
14938376fe22STejun Heo  * @delay: number of jiffies to wait before queueing
14948376fe22STejun Heo  *
14958376fe22STejun Heo  * mod_delayed_work_on() on local CPU.
14968376fe22STejun Heo  */
14978376fe22STejun Heo bool mod_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork,
14988376fe22STejun Heo 		      unsigned long delay)
14998376fe22STejun Heo {
15008376fe22STejun Heo 	return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
15018376fe22STejun Heo }
15028376fe22STejun Heo EXPORT_SYMBOL_GPL(mod_delayed_work);
15038376fe22STejun Heo 
15048376fe22STejun Heo /**
1505c8e55f36STejun Heo  * worker_enter_idle - enter idle state
1506c8e55f36STejun Heo  * @worker: worker which is entering idle state
1507c8e55f36STejun Heo  *
1508c8e55f36STejun Heo  * @worker is entering idle state.  Update stats and idle timer if
1509c8e55f36STejun Heo  * necessary.
1510c8e55f36STejun Heo  *
1511c8e55f36STejun Heo  * LOCKING:
1512d565ed63STejun Heo  * spin_lock_irq(pool->lock).
1513c8e55f36STejun Heo  */
1514c8e55f36STejun Heo static void worker_enter_idle(struct worker *worker)
15151da177e4SLinus Torvalds {
1516bd7bdd43STejun Heo 	struct worker_pool *pool = worker->pool;
1517c8e55f36STejun Heo 
15186183c009STejun Heo 	if (WARN_ON_ONCE(worker->flags & WORKER_IDLE) ||
15196183c009STejun Heo 	    WARN_ON_ONCE(!list_empty(&worker->entry) &&
15206183c009STejun Heo 			 (worker->hentry.next || worker->hentry.pprev)))
15216183c009STejun Heo 		return;
1522c8e55f36STejun Heo 
1523cb444766STejun Heo 	/* can't use worker_set_flags(), also called from start_worker() */
1524cb444766STejun Heo 	worker->flags |= WORKER_IDLE;
1525bd7bdd43STejun Heo 	pool->nr_idle++;
1526e22bee78STejun Heo 	worker->last_active = jiffies;
1527c8e55f36STejun Heo 
1528c8e55f36STejun Heo 	/* idle_list is LIFO */
1529bd7bdd43STejun Heo 	list_add(&worker->entry, &pool->idle_list);
1530db7bccf4STejun Heo 
153163d95a91STejun Heo 	if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
1532628c78e7STejun Heo 		mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
1533cb444766STejun Heo 
1534544ecf31STejun Heo 	/*
1535706026c2STejun Heo 	 * Sanity check nr_running.  Because wq_unbind_fn() releases
1536d565ed63STejun Heo 	 * pool->lock between setting %WORKER_UNBOUND and zapping
1537628c78e7STejun Heo 	 * nr_running, the warning may trigger spuriously.  Check iff
1538628c78e7STejun Heo 	 * unbind is not in progress.
1539544ecf31STejun Heo 	 */
154024647570STejun Heo 	WARN_ON_ONCE(!(pool->flags & POOL_DISASSOCIATED) &&
1541bd7bdd43STejun Heo 		     pool->nr_workers == pool->nr_idle &&
1542e19e397aSTejun Heo 		     atomic_read(&pool->nr_running));
1543c8e55f36STejun Heo }
1544c8e55f36STejun Heo 
1545c8e55f36STejun Heo /**
1546c8e55f36STejun Heo  * worker_leave_idle - leave idle state
1547c8e55f36STejun Heo  * @worker: worker which is leaving idle state
1548c8e55f36STejun Heo  *
1549c8e55f36STejun Heo  * @worker is leaving idle state.  Update stats.
1550c8e55f36STejun Heo  *
1551c8e55f36STejun Heo  * LOCKING:
1552d565ed63STejun Heo  * spin_lock_irq(pool->lock).
1553c8e55f36STejun Heo  */
1554c8e55f36STejun Heo static void worker_leave_idle(struct worker *worker)
1555c8e55f36STejun Heo {
1556bd7bdd43STejun Heo 	struct worker_pool *pool = worker->pool;
1557c8e55f36STejun Heo 
15586183c009STejun Heo 	if (WARN_ON_ONCE(!(worker->flags & WORKER_IDLE)))
15596183c009STejun Heo 		return;
1560d302f017STejun Heo 	worker_clr_flags(worker, WORKER_IDLE);
1561bd7bdd43STejun Heo 	pool->nr_idle--;
1562c8e55f36STejun Heo 	list_del_init(&worker->entry);
1563c8e55f36STejun Heo }
1564c8e55f36STejun Heo 
1565e22bee78STejun Heo /**
1566f36dc67bSLai Jiangshan  * worker_maybe_bind_and_lock - try to bind %current to worker_pool and lock it
1567f36dc67bSLai Jiangshan  * @pool: target worker_pool
1568f36dc67bSLai Jiangshan  *
1569f36dc67bSLai Jiangshan  * Bind %current to the cpu of @pool if it is associated and lock @pool.
1570e22bee78STejun Heo  *
1571e22bee78STejun Heo  * Works which are scheduled while the cpu is online must at least be
1572e22bee78STejun Heo  * scheduled to a worker which is bound to the cpu so that if they are
1573e22bee78STejun Heo  * flushed from cpu callbacks while cpu is going down, they are
1574e22bee78STejun Heo  * guaranteed to execute on the cpu.
1575e22bee78STejun Heo  *
1576f5faa077SLai Jiangshan  * This function is to be used by unbound workers and rescuers to bind
1577e22bee78STejun Heo  * themselves to the target cpu and may race with cpu going down or
1578e22bee78STejun Heo  * coming online.  kthread_bind() can't be used because it may put the
1579e22bee78STejun Heo  * worker to already dead cpu and set_cpus_allowed_ptr() can't be used
1580706026c2STejun Heo  * verbatim as it's best effort and blocking and pool may be
1581e22bee78STejun Heo  * [dis]associated in the meantime.
1582e22bee78STejun Heo  *
1583706026c2STejun Heo  * This function tries set_cpus_allowed() and locks pool and verifies the
158424647570STejun Heo  * binding against %POOL_DISASSOCIATED which is set during
1585f2d5a0eeSTejun Heo  * %CPU_DOWN_PREPARE and cleared during %CPU_ONLINE, so if the worker
1586f2d5a0eeSTejun Heo  * enters idle state or fetches works without dropping lock, it can
1587f2d5a0eeSTejun Heo  * guarantee the scheduling requirement described in the first paragraph.
1588e22bee78STejun Heo  *
1589e22bee78STejun Heo  * CONTEXT:
1590d565ed63STejun Heo  * Might sleep.  Called without any lock but returns with pool->lock
1591e22bee78STejun Heo  * held.
1592e22bee78STejun Heo  *
1593e22bee78STejun Heo  * RETURNS:
1594706026c2STejun Heo  * %true if the associated pool is online (@worker is successfully
1595e22bee78STejun Heo  * bound), %false if offline.
1596e22bee78STejun Heo  */
1597f36dc67bSLai Jiangshan static bool worker_maybe_bind_and_lock(struct worker_pool *pool)
1598d565ed63STejun Heo __acquires(&pool->lock)
1599e22bee78STejun Heo {
1600e22bee78STejun Heo 	while (true) {
1601e22bee78STejun Heo 		/*
1602e22bee78STejun Heo 		 * The following call may fail, succeed or succeed
1603e22bee78STejun Heo 		 * without actually migrating the task to the cpu if
1604e22bee78STejun Heo 		 * it races with cpu hotunplug operation.  Verify
160524647570STejun Heo 		 * against POOL_DISASSOCIATED.
1606e22bee78STejun Heo 		 */
160724647570STejun Heo 		if (!(pool->flags & POOL_DISASSOCIATED))
16087a4e344cSTejun Heo 			set_cpus_allowed_ptr(current, pool->attrs->cpumask);
1609e22bee78STejun Heo 
1610d565ed63STejun Heo 		spin_lock_irq(&pool->lock);
161124647570STejun Heo 		if (pool->flags & POOL_DISASSOCIATED)
1612e22bee78STejun Heo 			return false;
1613f5faa077SLai Jiangshan 		if (task_cpu(current) == pool->cpu &&
16147a4e344cSTejun Heo 		    cpumask_equal(&current->cpus_allowed, pool->attrs->cpumask))
1615e22bee78STejun Heo 			return true;
1616d565ed63STejun Heo 		spin_unlock_irq(&pool->lock);
1617e22bee78STejun Heo 
16185035b20fSTejun Heo 		/*
16195035b20fSTejun Heo 		 * We've raced with CPU hot[un]plug.  Give it a breather
16205035b20fSTejun Heo 		 * and retry migration.  cond_resched() is required here;
16215035b20fSTejun Heo 		 * otherwise, we might deadlock against cpu_stop trying to
16225035b20fSTejun Heo 		 * bring down the CPU on non-preemptive kernel.
16235035b20fSTejun Heo 		 */
1624e22bee78STejun Heo 		cpu_relax();
16255035b20fSTejun Heo 		cond_resched();
1626e22bee78STejun Heo 	}
1627e22bee78STejun Heo }
1628e22bee78STejun Heo 
1629e22bee78STejun Heo /*
1630ea1abd61SLai Jiangshan  * Rebind an idle @worker to its CPU.  worker_thread() will test
16315f7dabfdSLai Jiangshan  * list_empty(@worker->entry) before leaving idle and call this function.
163225511a47STejun Heo  */
163325511a47STejun Heo static void idle_worker_rebind(struct worker *worker)
163425511a47STejun Heo {
16355f7dabfdSLai Jiangshan 	/* CPU may go down again inbetween, clear UNBOUND only on success */
1636f36dc67bSLai Jiangshan 	if (worker_maybe_bind_and_lock(worker->pool))
16375f7dabfdSLai Jiangshan 		worker_clr_flags(worker, WORKER_UNBOUND);
163825511a47STejun Heo 
1639ea1abd61SLai Jiangshan 	/* rebind complete, become available again */
1640ea1abd61SLai Jiangshan 	list_add(&worker->entry, &worker->pool->idle_list);
1641d565ed63STejun Heo 	spin_unlock_irq(&worker->pool->lock);
164225511a47STejun Heo }
164325511a47STejun Heo 
164425511a47STejun Heo /*
164525511a47STejun Heo  * Function for @worker->rebind.work used to rebind unbound busy workers to
1646403c821dSTejun Heo  * the associated cpu which is coming back online.  This is scheduled by
1647403c821dSTejun Heo  * cpu up but can race with other cpu hotplug operations and may be
1648403c821dSTejun Heo  * executed twice without intervening cpu down.
1649e22bee78STejun Heo  */
165025511a47STejun Heo static void busy_worker_rebind_fn(struct work_struct *work)
1651e22bee78STejun Heo {
1652e22bee78STejun Heo 	struct worker *worker = container_of(work, struct worker, rebind_work);
1653e22bee78STejun Heo 
1654f36dc67bSLai Jiangshan 	if (worker_maybe_bind_and_lock(worker->pool))
1655eab6d828SLai Jiangshan 		worker_clr_flags(worker, WORKER_UNBOUND);
1656e22bee78STejun Heo 
1657d565ed63STejun Heo 	spin_unlock_irq(&worker->pool->lock);
1658e22bee78STejun Heo }
1659e22bee78STejun Heo 
166025511a47STejun Heo /**
166194cf58bbSTejun Heo  * rebind_workers - rebind all workers of a pool to the associated CPU
166294cf58bbSTejun Heo  * @pool: pool of interest
166325511a47STejun Heo  *
166494cf58bbSTejun Heo  * @pool->cpu is coming online.  Rebind all workers to the CPU.  Rebinding
166525511a47STejun Heo  * is different for idle and busy ones.
166625511a47STejun Heo  *
1667ea1abd61SLai Jiangshan  * Idle ones will be removed from the idle_list and woken up.  They will
1668ea1abd61SLai Jiangshan  * add themselves back after completing rebind.  This ensures that the
1669ea1abd61SLai Jiangshan  * idle_list doesn't contain any unbound workers when re-bound busy workers
1670ea1abd61SLai Jiangshan  * try to perform local wake-ups for concurrency management.
167125511a47STejun Heo  *
1672ea1abd61SLai Jiangshan  * Busy workers can rebind after they finish their current work items.
1673ea1abd61SLai Jiangshan  * Queueing the rebind work item at the head of the scheduled list is
1674ea1abd61SLai Jiangshan  * enough.  Note that nr_running will be properly bumped as busy workers
1675ea1abd61SLai Jiangshan  * rebind.
167625511a47STejun Heo  *
1677ea1abd61SLai Jiangshan  * On return, all non-manager workers are scheduled for rebind - see
1678ea1abd61SLai Jiangshan  * manage_workers() for the manager special case.  Any idle worker
1679ea1abd61SLai Jiangshan  * including the manager will not appear on @idle_list until rebind is
1680ea1abd61SLai Jiangshan  * complete, making local wake-ups safe.
168125511a47STejun Heo  */
168294cf58bbSTejun Heo static void rebind_workers(struct worker_pool *pool)
168325511a47STejun Heo {
1684ea1abd61SLai Jiangshan 	struct worker *worker, *n;
168525511a47STejun Heo 	int i;
168625511a47STejun Heo 
1687b2eb83d1SLai Jiangshan 	lockdep_assert_held(&pool->assoc_mutex);
1688d565ed63STejun Heo 	lockdep_assert_held(&pool->lock);
168925511a47STejun Heo 
16905f7dabfdSLai Jiangshan 	/* dequeue and kick idle ones */
1691ea1abd61SLai Jiangshan 	list_for_each_entry_safe(worker, n, &pool->idle_list, entry) {
1692ea1abd61SLai Jiangshan 		/*
169394cf58bbSTejun Heo 		 * idle workers should be off @pool->idle_list until rebind
169494cf58bbSTejun Heo 		 * is complete to avoid receiving premature local wake-ups.
1695ea1abd61SLai Jiangshan 		 */
1696ea1abd61SLai Jiangshan 		list_del_init(&worker->entry);
169725511a47STejun Heo 
169825511a47STejun Heo 		/*
169994cf58bbSTejun Heo 		 * worker_thread() will see the above dequeuing and call
170094cf58bbSTejun Heo 		 * idle_worker_rebind().
170125511a47STejun Heo 		 */
170225511a47STejun Heo 		wake_up_process(worker->task);
170325511a47STejun Heo 	}
170425511a47STejun Heo 
1705ea1abd61SLai Jiangshan 	/* rebind busy workers */
1706b67bfe0dSSasha Levin 	for_each_busy_worker(worker, i, pool) {
170725511a47STejun Heo 		struct work_struct *rebind_work = &worker->rebind_work;
1708e2b6a6d5SJoonsoo Kim 		struct workqueue_struct *wq;
170925511a47STejun Heo 
171025511a47STejun Heo 		if (test_and_set_bit(WORK_STRUCT_PENDING_BIT,
171125511a47STejun Heo 				     work_data_bits(rebind_work)))
171225511a47STejun Heo 			continue;
171325511a47STejun Heo 
171425511a47STejun Heo 		debug_work_activate(rebind_work);
171590beca5dSTejun Heo 
171690beca5dSTejun Heo 		/*
171794cf58bbSTejun Heo 		 * wq doesn't really matter but let's keep @worker->pool
1718112202d9STejun Heo 		 * and @pwq->pool consistent for sanity.
171990beca5dSTejun Heo 		 */
17207a4e344cSTejun Heo 		if (worker->pool->attrs->nice < 0)
1721e2b6a6d5SJoonsoo Kim 			wq = system_highpri_wq;
1722e2b6a6d5SJoonsoo Kim 		else
1723e2b6a6d5SJoonsoo Kim 			wq = system_wq;
1724ec58815aSTejun Heo 
17257fb98ea7STejun Heo 		insert_work(per_cpu_ptr(wq->cpu_pwqs, pool->cpu), rebind_work,
172625511a47STejun Heo 			    worker->scheduled.next,
172725511a47STejun Heo 			    work_color_to_flags(WORK_NO_COLOR));
1728ec58815aSTejun Heo 	}
172925511a47STejun Heo }
173025511a47STejun Heo 
1731c34056a3STejun Heo static struct worker *alloc_worker(void)
1732c34056a3STejun Heo {
1733c34056a3STejun Heo 	struct worker *worker;
1734c34056a3STejun Heo 
1735c34056a3STejun Heo 	worker = kzalloc(sizeof(*worker), GFP_KERNEL);
1736c8e55f36STejun Heo 	if (worker) {
1737c8e55f36STejun Heo 		INIT_LIST_HEAD(&worker->entry);
1738affee4b2STejun Heo 		INIT_LIST_HEAD(&worker->scheduled);
173925511a47STejun Heo 		INIT_WORK(&worker->rebind_work, busy_worker_rebind_fn);
1740e22bee78STejun Heo 		/* on creation a worker is in !idle && prep state */
1741e22bee78STejun Heo 		worker->flags = WORKER_PREP;
1742c8e55f36STejun Heo 	}
1743c34056a3STejun Heo 	return worker;
1744c34056a3STejun Heo }
1745c34056a3STejun Heo 
1746c34056a3STejun Heo /**
1747c34056a3STejun Heo  * create_worker - create a new workqueue worker
174863d95a91STejun Heo  * @pool: pool the new worker will belong to
1749c34056a3STejun Heo  *
175063d95a91STejun Heo  * Create a new worker which is bound to @pool.  The returned worker
1751c34056a3STejun Heo  * can be started by calling start_worker() or destroyed using
1752c34056a3STejun Heo  * destroy_worker().
1753c34056a3STejun Heo  *
1754c34056a3STejun Heo  * CONTEXT:
1755c34056a3STejun Heo  * Might sleep.  Does GFP_KERNEL allocations.
1756c34056a3STejun Heo  *
1757c34056a3STejun Heo  * RETURNS:
1758c34056a3STejun Heo  * Pointer to the newly created worker.
1759c34056a3STejun Heo  */
1760bc2ae0f5STejun Heo static struct worker *create_worker(struct worker_pool *pool)
1761c34056a3STejun Heo {
17627a4e344cSTejun Heo 	const char *pri = pool->attrs->nice < 0  ? "H" : "";
1763c34056a3STejun Heo 	struct worker *worker = NULL;
1764f3421797STejun Heo 	int id = -1;
1765c34056a3STejun Heo 
1766d565ed63STejun Heo 	spin_lock_irq(&pool->lock);
1767bd7bdd43STejun Heo 	while (ida_get_new(&pool->worker_ida, &id)) {
1768d565ed63STejun Heo 		spin_unlock_irq(&pool->lock);
1769bd7bdd43STejun Heo 		if (!ida_pre_get(&pool->worker_ida, GFP_KERNEL))
1770c34056a3STejun Heo 			goto fail;
1771d565ed63STejun Heo 		spin_lock_irq(&pool->lock);
1772c34056a3STejun Heo 	}
1773d565ed63STejun Heo 	spin_unlock_irq(&pool->lock);
1774c34056a3STejun Heo 
1775c34056a3STejun Heo 	worker = alloc_worker();
1776c34056a3STejun Heo 	if (!worker)
1777c34056a3STejun Heo 		goto fail;
1778c34056a3STejun Heo 
1779bd7bdd43STejun Heo 	worker->pool = pool;
1780c34056a3STejun Heo 	worker->id = id;
1781c34056a3STejun Heo 
178229c91e99STejun Heo 	if (pool->cpu >= 0)
178394dcf29aSEric Dumazet 		worker->task = kthread_create_on_node(worker_thread,
1784ec22ca5eSTejun Heo 					worker, cpu_to_node(pool->cpu),
1785d84ff051STejun Heo 					"kworker/%d:%d%s", pool->cpu, id, pri);
1786f3421797STejun Heo 	else
1787f3421797STejun Heo 		worker->task = kthread_create(worker_thread, worker,
1788ac6104cdSTejun Heo 					      "kworker/u%d:%d%s",
1789ac6104cdSTejun Heo 					      pool->id, id, pri);
1790c34056a3STejun Heo 	if (IS_ERR(worker->task))
1791c34056a3STejun Heo 		goto fail;
1792c34056a3STejun Heo 
17937a4e344cSTejun Heo 	set_user_nice(worker->task, pool->attrs->nice);
17947a4e344cSTejun Heo 	set_cpus_allowed_ptr(worker->task, pool->attrs->cpumask);
17953270476aSTejun Heo 
1796db7bccf4STejun Heo 	/*
17977a4e344cSTejun Heo 	 * %PF_THREAD_BOUND is used to prevent userland from meddling with
17987a4e344cSTejun Heo 	 * cpumask of workqueue workers.  This is an abuse.  We need
17997a4e344cSTejun Heo 	 * %PF_NO_SETAFFINITY.
1800db7bccf4STejun Heo 	 */
1801db7bccf4STejun Heo 	worker->task->flags |= PF_THREAD_BOUND;
18027a4e344cSTejun Heo 
18037a4e344cSTejun Heo 	/*
18047a4e344cSTejun Heo 	 * The caller is responsible for ensuring %POOL_DISASSOCIATED
18057a4e344cSTejun Heo 	 * remains stable across this function.  See the comments above the
18067a4e344cSTejun Heo 	 * flag definition for details.
18077a4e344cSTejun Heo 	 */
18087a4e344cSTejun Heo 	if (pool->flags & POOL_DISASSOCIATED)
1809f3421797STejun Heo 		worker->flags |= WORKER_UNBOUND;
1810c34056a3STejun Heo 
1811c34056a3STejun Heo 	return worker;
1812c34056a3STejun Heo fail:
1813c34056a3STejun Heo 	if (id >= 0) {
1814d565ed63STejun Heo 		spin_lock_irq(&pool->lock);
1815bd7bdd43STejun Heo 		ida_remove(&pool->worker_ida, id);
1816d565ed63STejun Heo 		spin_unlock_irq(&pool->lock);
1817c34056a3STejun Heo 	}
1818c34056a3STejun Heo 	kfree(worker);
1819c34056a3STejun Heo 	return NULL;
1820c34056a3STejun Heo }
1821c34056a3STejun Heo 
1822c34056a3STejun Heo /**
1823c34056a3STejun Heo  * start_worker - start a newly created worker
1824c34056a3STejun Heo  * @worker: worker to start
1825c34056a3STejun Heo  *
1826706026c2STejun Heo  * Make the pool aware of @worker and start it.
1827c34056a3STejun Heo  *
1828c34056a3STejun Heo  * CONTEXT:
1829d565ed63STejun Heo  * spin_lock_irq(pool->lock).
1830c34056a3STejun Heo  */
1831c34056a3STejun Heo static void start_worker(struct worker *worker)
1832c34056a3STejun Heo {
1833cb444766STejun Heo 	worker->flags |= WORKER_STARTED;
1834bd7bdd43STejun Heo 	worker->pool->nr_workers++;
1835c8e55f36STejun Heo 	worker_enter_idle(worker);
1836c34056a3STejun Heo 	wake_up_process(worker->task);
1837c34056a3STejun Heo }
1838c34056a3STejun Heo 
1839c34056a3STejun Heo /**
1840c34056a3STejun Heo  * destroy_worker - destroy a workqueue worker
1841c34056a3STejun Heo  * @worker: worker to be destroyed
1842c34056a3STejun Heo  *
1843706026c2STejun Heo  * Destroy @worker and adjust @pool stats accordingly.
1844c8e55f36STejun Heo  *
1845c8e55f36STejun Heo  * CONTEXT:
1846d565ed63STejun Heo  * spin_lock_irq(pool->lock) which is released and regrabbed.
1847c34056a3STejun Heo  */
1848c34056a3STejun Heo static void destroy_worker(struct worker *worker)
1849c34056a3STejun Heo {
1850bd7bdd43STejun Heo 	struct worker_pool *pool = worker->pool;
1851c34056a3STejun Heo 	int id = worker->id;
1852c34056a3STejun Heo 
1853c34056a3STejun Heo 	/* sanity check frenzy */
18546183c009STejun Heo 	if (WARN_ON(worker->current_work) ||
18556183c009STejun Heo 	    WARN_ON(!list_empty(&worker->scheduled)))
18566183c009STejun Heo 		return;
1857c34056a3STejun Heo 
1858c8e55f36STejun Heo 	if (worker->flags & WORKER_STARTED)
1859bd7bdd43STejun Heo 		pool->nr_workers--;
1860c8e55f36STejun Heo 	if (worker->flags & WORKER_IDLE)
1861bd7bdd43STejun Heo 		pool->nr_idle--;
1862c8e55f36STejun Heo 
1863c8e55f36STejun Heo 	list_del_init(&worker->entry);
1864cb444766STejun Heo 	worker->flags |= WORKER_DIE;
1865c8e55f36STejun Heo 
1866d565ed63STejun Heo 	spin_unlock_irq(&pool->lock);
1867c8e55f36STejun Heo 
1868c34056a3STejun Heo 	kthread_stop(worker->task);
1869c34056a3STejun Heo 	kfree(worker);
1870c34056a3STejun Heo 
1871d565ed63STejun Heo 	spin_lock_irq(&pool->lock);
1872bd7bdd43STejun Heo 	ida_remove(&pool->worker_ida, id);
1873c34056a3STejun Heo }
1874c34056a3STejun Heo 
187563d95a91STejun Heo static void idle_worker_timeout(unsigned long __pool)
1876e22bee78STejun Heo {
187763d95a91STejun Heo 	struct worker_pool *pool = (void *)__pool;
1878e22bee78STejun Heo 
1879d565ed63STejun Heo 	spin_lock_irq(&pool->lock);
1880e22bee78STejun Heo 
188163d95a91STejun Heo 	if (too_many_workers(pool)) {
1882e22bee78STejun Heo 		struct worker *worker;
1883e22bee78STejun Heo 		unsigned long expires;
1884e22bee78STejun Heo 
1885e22bee78STejun Heo 		/* idle_list is kept in LIFO order, check the last one */
188663d95a91STejun Heo 		worker = list_entry(pool->idle_list.prev, struct worker, entry);
1887e22bee78STejun Heo 		expires = worker->last_active + IDLE_WORKER_TIMEOUT;
1888e22bee78STejun Heo 
1889e22bee78STejun Heo 		if (time_before(jiffies, expires))
189063d95a91STejun Heo 			mod_timer(&pool->idle_timer, expires);
1891e22bee78STejun Heo 		else {
1892e22bee78STejun Heo 			/* it's been idle for too long, wake up manager */
189311ebea50STejun Heo 			pool->flags |= POOL_MANAGE_WORKERS;
189463d95a91STejun Heo 			wake_up_worker(pool);
1895e22bee78STejun Heo 		}
1896e22bee78STejun Heo 	}
1897e22bee78STejun Heo 
1898d565ed63STejun Heo 	spin_unlock_irq(&pool->lock);
1899e22bee78STejun Heo }
1900e22bee78STejun Heo 
1901493a1724STejun Heo static void send_mayday(struct work_struct *work)
1902e22bee78STejun Heo {
1903112202d9STejun Heo 	struct pool_workqueue *pwq = get_work_pwq(work);
1904112202d9STejun Heo 	struct workqueue_struct *wq = pwq->wq;
1905493a1724STejun Heo 
1906493a1724STejun Heo 	lockdep_assert_held(&workqueue_lock);
1907e22bee78STejun Heo 
1908493008a8STejun Heo 	if (!wq->rescuer)
1909493a1724STejun Heo 		return;
1910e22bee78STejun Heo 
1911e22bee78STejun Heo 	/* mayday mayday mayday */
1912493a1724STejun Heo 	if (list_empty(&pwq->mayday_node)) {
1913493a1724STejun Heo 		list_add_tail(&pwq->mayday_node, &wq->maydays);
1914e22bee78STejun Heo 		wake_up_process(wq->rescuer->task);
1915493a1724STejun Heo 	}
1916e22bee78STejun Heo }
1917e22bee78STejun Heo 
1918706026c2STejun Heo static void pool_mayday_timeout(unsigned long __pool)
1919e22bee78STejun Heo {
192063d95a91STejun Heo 	struct worker_pool *pool = (void *)__pool;
1921e22bee78STejun Heo 	struct work_struct *work;
1922e22bee78STejun Heo 
1923493a1724STejun Heo 	spin_lock_irq(&workqueue_lock);		/* for wq->maydays */
1924493a1724STejun Heo 	spin_lock(&pool->lock);
1925e22bee78STejun Heo 
192663d95a91STejun Heo 	if (need_to_create_worker(pool)) {
1927e22bee78STejun Heo 		/*
1928e22bee78STejun Heo 		 * We've been trying to create a new worker but
1929e22bee78STejun Heo 		 * haven't been successful.  We might be hitting an
1930e22bee78STejun Heo 		 * allocation deadlock.  Send distress signals to
1931e22bee78STejun Heo 		 * rescuers.
1932e22bee78STejun Heo 		 */
193363d95a91STejun Heo 		list_for_each_entry(work, &pool->worklist, entry)
1934e22bee78STejun Heo 			send_mayday(work);
1935e22bee78STejun Heo 	}
1936e22bee78STejun Heo 
1937493a1724STejun Heo 	spin_unlock(&pool->lock);
1938493a1724STejun Heo 	spin_unlock_irq(&workqueue_lock);
1939e22bee78STejun Heo 
194063d95a91STejun Heo 	mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INTERVAL);
1941e22bee78STejun Heo }
1942e22bee78STejun Heo 
1943e22bee78STejun Heo /**
1944e22bee78STejun Heo  * maybe_create_worker - create a new worker if necessary
194563d95a91STejun Heo  * @pool: pool to create a new worker for
1946e22bee78STejun Heo  *
194763d95a91STejun Heo  * Create a new worker for @pool if necessary.  @pool is guaranteed to
1948e22bee78STejun Heo  * have at least one idle worker on return from this function.  If
1949e22bee78STejun Heo  * creating a new worker takes longer than MAYDAY_INTERVAL, mayday is
195063d95a91STejun Heo  * sent to all rescuers with works scheduled on @pool to resolve
1951e22bee78STejun Heo  * possible allocation deadlock.
1952e22bee78STejun Heo  *
1953e22bee78STejun Heo  * On return, need_to_create_worker() is guaranteed to be false and
1954e22bee78STejun Heo  * may_start_working() true.
1955e22bee78STejun Heo  *
1956e22bee78STejun Heo  * LOCKING:
1957d565ed63STejun Heo  * spin_lock_irq(pool->lock) which may be released and regrabbed
1958e22bee78STejun Heo  * multiple times.  Does GFP_KERNEL allocations.  Called only from
1959e22bee78STejun Heo  * manager.
1960e22bee78STejun Heo  *
1961e22bee78STejun Heo  * RETURNS:
1962d565ed63STejun Heo  * false if no action was taken and pool->lock stayed locked, true
1963e22bee78STejun Heo  * otherwise.
1964e22bee78STejun Heo  */
196563d95a91STejun Heo static bool maybe_create_worker(struct worker_pool *pool)
1966d565ed63STejun Heo __releases(&pool->lock)
1967d565ed63STejun Heo __acquires(&pool->lock)
1968e22bee78STejun Heo {
196963d95a91STejun Heo 	if (!need_to_create_worker(pool))
1970e22bee78STejun Heo 		return false;
1971e22bee78STejun Heo restart:
1972d565ed63STejun Heo 	spin_unlock_irq(&pool->lock);
19739f9c2364STejun Heo 
1974e22bee78STejun Heo 	/* if we don't make progress in MAYDAY_INITIAL_TIMEOUT, call for help */
197563d95a91STejun Heo 	mod_timer(&pool->mayday_timer, jiffies + MAYDAY_INITIAL_TIMEOUT);
1976e22bee78STejun Heo 
1977e22bee78STejun Heo 	while (true) {
1978e22bee78STejun Heo 		struct worker *worker;
1979e22bee78STejun Heo 
1980bc2ae0f5STejun Heo 		worker = create_worker(pool);
1981e22bee78STejun Heo 		if (worker) {
198263d95a91STejun Heo 			del_timer_sync(&pool->mayday_timer);
1983d565ed63STejun Heo 			spin_lock_irq(&pool->lock);
1984e22bee78STejun Heo 			start_worker(worker);
19856183c009STejun Heo 			if (WARN_ON_ONCE(need_to_create_worker(pool)))
19866183c009STejun Heo 				goto restart;
1987e22bee78STejun Heo 			return true;
1988e22bee78STejun Heo 		}
1989e22bee78STejun Heo 
199063d95a91STejun Heo 		if (!need_to_create_worker(pool))
1991e22bee78STejun Heo 			break;
1992e22bee78STejun Heo 
1993e22bee78STejun Heo 		__set_current_state(TASK_INTERRUPTIBLE);
1994e22bee78STejun Heo 		schedule_timeout(CREATE_COOLDOWN);
19959f9c2364STejun Heo 
199663d95a91STejun Heo 		if (!need_to_create_worker(pool))
1997e22bee78STejun Heo 			break;
1998e22bee78STejun Heo 	}
1999e22bee78STejun Heo 
200063d95a91STejun Heo 	del_timer_sync(&pool->mayday_timer);
2001d565ed63STejun Heo 	spin_lock_irq(&pool->lock);
200263d95a91STejun Heo 	if (need_to_create_worker(pool))
2003e22bee78STejun Heo 		goto restart;
2004e22bee78STejun Heo 	return true;
2005e22bee78STejun Heo }
2006e22bee78STejun Heo 
2007e22bee78STejun Heo /**
2008e22bee78STejun Heo  * maybe_destroy_worker - destroy workers which have been idle for a while
200963d95a91STejun Heo  * @pool: pool to destroy workers for
2010e22bee78STejun Heo  *
201163d95a91STejun Heo  * Destroy @pool workers which have been idle for longer than
2012e22bee78STejun Heo  * IDLE_WORKER_TIMEOUT.
2013e22bee78STejun Heo  *
2014e22bee78STejun Heo  * LOCKING:
2015d565ed63STejun Heo  * spin_lock_irq(pool->lock) which may be released and regrabbed
2016e22bee78STejun Heo  * multiple times.  Called only from manager.
2017e22bee78STejun Heo  *
2018e22bee78STejun Heo  * RETURNS:
2019d565ed63STejun Heo  * false if no action was taken and pool->lock stayed locked, true
2020e22bee78STejun Heo  * otherwise.
2021e22bee78STejun Heo  */
202263d95a91STejun Heo static bool maybe_destroy_workers(struct worker_pool *pool)
2023e22bee78STejun Heo {
2024e22bee78STejun Heo 	bool ret = false;
2025e22bee78STejun Heo 
202663d95a91STejun Heo 	while (too_many_workers(pool)) {
2027e22bee78STejun Heo 		struct worker *worker;
2028e22bee78STejun Heo 		unsigned long expires;
2029e22bee78STejun Heo 
203063d95a91STejun Heo 		worker = list_entry(pool->idle_list.prev, struct worker, entry);
2031e22bee78STejun Heo 		expires = worker->last_active + IDLE_WORKER_TIMEOUT;
2032e22bee78STejun Heo 
2033e22bee78STejun Heo 		if (time_before(jiffies, expires)) {
203463d95a91STejun Heo 			mod_timer(&pool->idle_timer, expires);
2035e22bee78STejun Heo 			break;
2036e22bee78STejun Heo 		}
2037e22bee78STejun Heo 
2038e22bee78STejun Heo 		destroy_worker(worker);
2039e22bee78STejun Heo 		ret = true;
2040e22bee78STejun Heo 	}
2041e22bee78STejun Heo 
2042e22bee78STejun Heo 	return ret;
2043e22bee78STejun Heo }
2044e22bee78STejun Heo 
2045e22bee78STejun Heo /**
2046e22bee78STejun Heo  * manage_workers - manage worker pool
2047e22bee78STejun Heo  * @worker: self
2048e22bee78STejun Heo  *
2049706026c2STejun Heo  * Assume the manager role and manage the worker pool @worker belongs
2050e22bee78STejun Heo  * to.  At any given time, there can be only zero or one manager per
2051706026c2STejun Heo  * pool.  The exclusion is handled automatically by this function.
2052e22bee78STejun Heo  *
2053e22bee78STejun Heo  * The caller can safely start processing works on false return.  On
2054e22bee78STejun Heo  * true return, it's guaranteed that need_to_create_worker() is false
2055e22bee78STejun Heo  * and may_start_working() is true.
2056e22bee78STejun Heo  *
2057e22bee78STejun Heo  * CONTEXT:
2058d565ed63STejun Heo  * spin_lock_irq(pool->lock) which may be released and regrabbed
2059e22bee78STejun Heo  * multiple times.  Does GFP_KERNEL allocations.
2060e22bee78STejun Heo  *
2061e22bee78STejun Heo  * RETURNS:
2062d565ed63STejun Heo  * spin_lock_irq(pool->lock) which may be released and regrabbed
2063d565ed63STejun Heo  * multiple times.  Does GFP_KERNEL allocations.
2064e22bee78STejun Heo  */
2065e22bee78STejun Heo static bool manage_workers(struct worker *worker)
2066e22bee78STejun Heo {
206763d95a91STejun Heo 	struct worker_pool *pool = worker->pool;
2068e22bee78STejun Heo 	bool ret = false;
2069e22bee78STejun Heo 
207034a06bd6STejun Heo 	if (!mutex_trylock(&pool->manager_arb))
2071e22bee78STejun Heo 		return ret;
2072e22bee78STejun Heo 
2073ee378aa4SLai Jiangshan 	/*
2074ee378aa4SLai Jiangshan 	 * To simplify both worker management and CPU hotplug, hold off
2075ee378aa4SLai Jiangshan 	 * management while hotplug is in progress.  CPU hotplug path can't
207634a06bd6STejun Heo 	 * grab @pool->manager_arb to achieve this because that can lead to
207734a06bd6STejun Heo 	 * idle worker depletion (all become busy thinking someone else is
207834a06bd6STejun Heo 	 * managing) which in turn can result in deadlock under extreme
207934a06bd6STejun Heo 	 * circumstances.  Use @pool->assoc_mutex to synchronize manager
208034a06bd6STejun Heo 	 * against CPU hotplug.
2081ee378aa4SLai Jiangshan 	 *
2082b2eb83d1SLai Jiangshan 	 * assoc_mutex would always be free unless CPU hotplug is in
2083d565ed63STejun Heo 	 * progress.  trylock first without dropping @pool->lock.
2084ee378aa4SLai Jiangshan 	 */
2085b2eb83d1SLai Jiangshan 	if (unlikely(!mutex_trylock(&pool->assoc_mutex))) {
2086d565ed63STejun Heo 		spin_unlock_irq(&pool->lock);
2087b2eb83d1SLai Jiangshan 		mutex_lock(&pool->assoc_mutex);
2088ee378aa4SLai Jiangshan 		/*
2089ee378aa4SLai Jiangshan 		 * CPU hotplug could have happened while we were waiting
2090b2eb83d1SLai Jiangshan 		 * for assoc_mutex.  Hotplug itself can't handle us
2091ee378aa4SLai Jiangshan 		 * because manager isn't either on idle or busy list, and
2092706026c2STejun Heo 		 * @pool's state and ours could have deviated.
2093ee378aa4SLai Jiangshan 		 *
2094b2eb83d1SLai Jiangshan 		 * As hotplug is now excluded via assoc_mutex, we can
2095ee378aa4SLai Jiangshan 		 * simply try to bind.  It will succeed or fail depending
2096706026c2STejun Heo 		 * on @pool's current state.  Try it and adjust
2097ee378aa4SLai Jiangshan 		 * %WORKER_UNBOUND accordingly.
2098ee378aa4SLai Jiangshan 		 */
2099f36dc67bSLai Jiangshan 		if (worker_maybe_bind_and_lock(pool))
2100ee378aa4SLai Jiangshan 			worker->flags &= ~WORKER_UNBOUND;
2101ee378aa4SLai Jiangshan 		else
2102ee378aa4SLai Jiangshan 			worker->flags |= WORKER_UNBOUND;
2103ee378aa4SLai Jiangshan 
2104ee378aa4SLai Jiangshan 		ret = true;
2105ee378aa4SLai Jiangshan 	}
2106ee378aa4SLai Jiangshan 
210711ebea50STejun Heo 	pool->flags &= ~POOL_MANAGE_WORKERS;
2108e22bee78STejun Heo 
2109e22bee78STejun Heo 	/*
2110e22bee78STejun Heo 	 * Destroy and then create so that may_start_working() is true
2111e22bee78STejun Heo 	 * on return.
2112e22bee78STejun Heo 	 */
211363d95a91STejun Heo 	ret |= maybe_destroy_workers(pool);
211463d95a91STejun Heo 	ret |= maybe_create_worker(pool);
2115e22bee78STejun Heo 
2116b2eb83d1SLai Jiangshan 	mutex_unlock(&pool->assoc_mutex);
211734a06bd6STejun Heo 	mutex_unlock(&pool->manager_arb);
2118e22bee78STejun Heo 	return ret;
2119e22bee78STejun Heo }
2120e22bee78STejun Heo 
2121a62428c0STejun Heo /**
2122a62428c0STejun Heo  * process_one_work - process single work
2123c34056a3STejun Heo  * @worker: self
2124a62428c0STejun Heo  * @work: work to process
2125a62428c0STejun Heo  *
2126a62428c0STejun Heo  * Process @work.  This function contains all the logics necessary to
2127a62428c0STejun Heo  * process a single work including synchronization against and
2128a62428c0STejun Heo  * interaction with other workers on the same cpu, queueing and
2129a62428c0STejun Heo  * flushing.  As long as context requirement is met, any worker can
2130a62428c0STejun Heo  * call this function to process a work.
2131a62428c0STejun Heo  *
2132a62428c0STejun Heo  * CONTEXT:
2133d565ed63STejun Heo  * spin_lock_irq(pool->lock) which is released and regrabbed.
2134a62428c0STejun Heo  */
2135c34056a3STejun Heo static void process_one_work(struct worker *worker, struct work_struct *work)
2136d565ed63STejun Heo __releases(&pool->lock)
2137d565ed63STejun Heo __acquires(&pool->lock)
21381da177e4SLinus Torvalds {
2139112202d9STejun Heo 	struct pool_workqueue *pwq = get_work_pwq(work);
2140bd7bdd43STejun Heo 	struct worker_pool *pool = worker->pool;
2141112202d9STejun Heo 	bool cpu_intensive = pwq->wq->flags & WQ_CPU_INTENSIVE;
214273f53c4aSTejun Heo 	int work_color;
21437e11629dSTejun Heo 	struct worker *collision;
21444e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
21454e6045f1SJohannes Berg 	/*
2146a62428c0STejun Heo 	 * It is permissible to free the struct work_struct from
2147a62428c0STejun Heo 	 * inside the function that is called from it, this we need to
2148a62428c0STejun Heo 	 * take into account for lockdep too.  To avoid bogus "held
2149a62428c0STejun Heo 	 * lock freed" warnings as well as problems when looking into
2150a62428c0STejun Heo 	 * work->lockdep_map, make a copy and use that here.
21514e6045f1SJohannes Berg 	 */
21524d82a1deSPeter Zijlstra 	struct lockdep_map lockdep_map;
21534d82a1deSPeter Zijlstra 
21544d82a1deSPeter Zijlstra 	lockdep_copy_map(&lockdep_map, &work->lockdep_map);
21554e6045f1SJohannes Berg #endif
21566fec10a1STejun Heo 	/*
21576fec10a1STejun Heo 	 * Ensure we're on the correct CPU.  DISASSOCIATED test is
21586fec10a1STejun Heo 	 * necessary to avoid spurious warnings from rescuers servicing the
215924647570STejun Heo 	 * unbound or a disassociated pool.
21606fec10a1STejun Heo 	 */
21615f7dabfdSLai Jiangshan 	WARN_ON_ONCE(!(worker->flags & WORKER_UNBOUND) &&
216224647570STejun Heo 		     !(pool->flags & POOL_DISASSOCIATED) &&
2163ec22ca5eSTejun Heo 		     raw_smp_processor_id() != pool->cpu);
216425511a47STejun Heo 
21657e11629dSTejun Heo 	/*
21667e11629dSTejun Heo 	 * A single work shouldn't be executed concurrently by
21677e11629dSTejun Heo 	 * multiple workers on a single cpu.  Check whether anyone is
21687e11629dSTejun Heo 	 * already processing the work.  If so, defer the work to the
21697e11629dSTejun Heo 	 * currently executing one.
21707e11629dSTejun Heo 	 */
2171c9e7cf27STejun Heo 	collision = find_worker_executing_work(pool, work);
21727e11629dSTejun Heo 	if (unlikely(collision)) {
21737e11629dSTejun Heo 		move_linked_works(work, &collision->scheduled, NULL);
21747e11629dSTejun Heo 		return;
21757e11629dSTejun Heo 	}
21761da177e4SLinus Torvalds 
21778930cabaSTejun Heo 	/* claim and dequeue */
21781da177e4SLinus Torvalds 	debug_work_deactivate(work);
2179c9e7cf27STejun Heo 	hash_add(pool->busy_hash, &worker->hentry, (unsigned long)work);
2180c34056a3STejun Heo 	worker->current_work = work;
2181a2c1c57bSTejun Heo 	worker->current_func = work->func;
2182112202d9STejun Heo 	worker->current_pwq = pwq;
218373f53c4aSTejun Heo 	work_color = get_work_color(work);
21847a22ad75STejun Heo 
2185a62428c0STejun Heo 	list_del_init(&work->entry);
2186a62428c0STejun Heo 
2187649027d7STejun Heo 	/*
2188fb0e7bebSTejun Heo 	 * CPU intensive works don't participate in concurrency
2189fb0e7bebSTejun Heo 	 * management.  They're the scheduler's responsibility.
2190fb0e7bebSTejun Heo 	 */
2191fb0e7bebSTejun Heo 	if (unlikely(cpu_intensive))
2192fb0e7bebSTejun Heo 		worker_set_flags(worker, WORKER_CPU_INTENSIVE, true);
2193fb0e7bebSTejun Heo 
2194974271c4STejun Heo 	/*
2195d565ed63STejun Heo 	 * Unbound pool isn't concurrency managed and work items should be
2196974271c4STejun Heo 	 * executed ASAP.  Wake up another worker if necessary.
2197974271c4STejun Heo 	 */
219863d95a91STejun Heo 	if ((worker->flags & WORKER_UNBOUND) && need_more_worker(pool))
219963d95a91STejun Heo 		wake_up_worker(pool);
2200974271c4STejun Heo 
22018930cabaSTejun Heo 	/*
22027c3eed5cSTejun Heo 	 * Record the last pool and clear PENDING which should be the last
2203d565ed63STejun Heo 	 * update to @work.  Also, do this inside @pool->lock so that
220423657bb1STejun Heo 	 * PENDING and queued state changes happen together while IRQ is
220523657bb1STejun Heo 	 * disabled.
22068930cabaSTejun Heo 	 */
22077c3eed5cSTejun Heo 	set_work_pool_and_clear_pending(work, pool->id);
22081da177e4SLinus Torvalds 
2209d565ed63STejun Heo 	spin_unlock_irq(&pool->lock);
2210365970a1SDavid Howells 
2211112202d9STejun Heo 	lock_map_acquire_read(&pwq->wq->lockdep_map);
22123295f0efSIngo Molnar 	lock_map_acquire(&lockdep_map);
2213e36c886aSArjan van de Ven 	trace_workqueue_execute_start(work);
2214a2c1c57bSTejun Heo 	worker->current_func(work);
2215e36c886aSArjan van de Ven 	/*
2216e36c886aSArjan van de Ven 	 * While we must be careful to not use "work" after this, the trace
2217e36c886aSArjan van de Ven 	 * point will only record its address.
2218e36c886aSArjan van de Ven 	 */
2219e36c886aSArjan van de Ven 	trace_workqueue_execute_end(work);
22203295f0efSIngo Molnar 	lock_map_release(&lockdep_map);
2221112202d9STejun Heo 	lock_map_release(&pwq->wq->lockdep_map);
22221da177e4SLinus Torvalds 
2223d5abe669SPeter Zijlstra 	if (unlikely(in_atomic() || lockdep_depth(current) > 0)) {
2224044c782cSValentin Ilie 		pr_err("BUG: workqueue leaked lock or atomic: %s/0x%08x/%d\n"
2225044c782cSValentin Ilie 		       "     last function: %pf\n",
2226a2c1c57bSTejun Heo 		       current->comm, preempt_count(), task_pid_nr(current),
2227a2c1c57bSTejun Heo 		       worker->current_func);
2228d5abe669SPeter Zijlstra 		debug_show_held_locks(current);
2229d5abe669SPeter Zijlstra 		dump_stack();
2230d5abe669SPeter Zijlstra 	}
2231d5abe669SPeter Zijlstra 
2232d565ed63STejun Heo 	spin_lock_irq(&pool->lock);
2233a62428c0STejun Heo 
2234fb0e7bebSTejun Heo 	/* clear cpu intensive status */
2235fb0e7bebSTejun Heo 	if (unlikely(cpu_intensive))
2236fb0e7bebSTejun Heo 		worker_clr_flags(worker, WORKER_CPU_INTENSIVE);
2237fb0e7bebSTejun Heo 
2238a62428c0STejun Heo 	/* we're done with it, release */
223942f8570fSSasha Levin 	hash_del(&worker->hentry);
2240c34056a3STejun Heo 	worker->current_work = NULL;
2241a2c1c57bSTejun Heo 	worker->current_func = NULL;
2242112202d9STejun Heo 	worker->current_pwq = NULL;
2243112202d9STejun Heo 	pwq_dec_nr_in_flight(pwq, work_color);
22441da177e4SLinus Torvalds }
22451da177e4SLinus Torvalds 
2246affee4b2STejun Heo /**
2247affee4b2STejun Heo  * process_scheduled_works - process scheduled works
2248affee4b2STejun Heo  * @worker: self
2249affee4b2STejun Heo  *
2250affee4b2STejun Heo  * Process all scheduled works.  Please note that the scheduled list
2251affee4b2STejun Heo  * may change while processing a work, so this function repeatedly
2252affee4b2STejun Heo  * fetches a work from the top and executes it.
2253affee4b2STejun Heo  *
2254affee4b2STejun Heo  * CONTEXT:
2255d565ed63STejun Heo  * spin_lock_irq(pool->lock) which may be released and regrabbed
2256affee4b2STejun Heo  * multiple times.
2257affee4b2STejun Heo  */
2258affee4b2STejun Heo static void process_scheduled_works(struct worker *worker)
22591da177e4SLinus Torvalds {
2260affee4b2STejun Heo 	while (!list_empty(&worker->scheduled)) {
2261affee4b2STejun Heo 		struct work_struct *work = list_first_entry(&worker->scheduled,
2262a62428c0STejun Heo 						struct work_struct, entry);
2263c34056a3STejun Heo 		process_one_work(worker, work);
2264a62428c0STejun Heo 	}
22651da177e4SLinus Torvalds }
22661da177e4SLinus Torvalds 
22674690c4abSTejun Heo /**
22684690c4abSTejun Heo  * worker_thread - the worker thread function
2269c34056a3STejun Heo  * @__worker: self
22704690c4abSTejun Heo  *
2271706026c2STejun Heo  * The worker thread function.  There are NR_CPU_WORKER_POOLS dynamic pools
2272706026c2STejun Heo  * of these per each cpu.  These workers process all works regardless of
2273e22bee78STejun Heo  * their specific target workqueue.  The only exception is works which
2274e22bee78STejun Heo  * belong to workqueues with a rescuer which will be explained in
2275e22bee78STejun Heo  * rescuer_thread().
22764690c4abSTejun Heo  */
2277c34056a3STejun Heo static int worker_thread(void *__worker)
22781da177e4SLinus Torvalds {
2279c34056a3STejun Heo 	struct worker *worker = __worker;
2280bd7bdd43STejun Heo 	struct worker_pool *pool = worker->pool;
22811da177e4SLinus Torvalds 
2282e22bee78STejun Heo 	/* tell the scheduler that this is a workqueue worker */
2283e22bee78STejun Heo 	worker->task->flags |= PF_WQ_WORKER;
2284c8e55f36STejun Heo woke_up:
2285d565ed63STejun Heo 	spin_lock_irq(&pool->lock);
2286affee4b2STejun Heo 
22875f7dabfdSLai Jiangshan 	/* we are off idle list if destruction or rebind is requested */
22885f7dabfdSLai Jiangshan 	if (unlikely(list_empty(&worker->entry))) {
2289d565ed63STejun Heo 		spin_unlock_irq(&pool->lock);
229025511a47STejun Heo 
22915f7dabfdSLai Jiangshan 		/* if DIE is set, destruction is requested */
229225511a47STejun Heo 		if (worker->flags & WORKER_DIE) {
2293e22bee78STejun Heo 			worker->task->flags &= ~PF_WQ_WORKER;
2294c8e55f36STejun Heo 			return 0;
2295c8e55f36STejun Heo 		}
2296c8e55f36STejun Heo 
22975f7dabfdSLai Jiangshan 		/* otherwise, rebind */
229825511a47STejun Heo 		idle_worker_rebind(worker);
229925511a47STejun Heo 		goto woke_up;
230025511a47STejun Heo 	}
230125511a47STejun Heo 
2302c8e55f36STejun Heo 	worker_leave_idle(worker);
2303db7bccf4STejun Heo recheck:
2304e22bee78STejun Heo 	/* no more worker necessary? */
230563d95a91STejun Heo 	if (!need_more_worker(pool))
2306e22bee78STejun Heo 		goto sleep;
2307e22bee78STejun Heo 
2308e22bee78STejun Heo 	/* do we need to manage? */
230963d95a91STejun Heo 	if (unlikely(!may_start_working(pool)) && manage_workers(worker))
2310e22bee78STejun Heo 		goto recheck;
2311e22bee78STejun Heo 
2312c8e55f36STejun Heo 	/*
2313c8e55f36STejun Heo 	 * ->scheduled list can only be filled while a worker is
2314c8e55f36STejun Heo 	 * preparing to process a work or actually processing it.
2315c8e55f36STejun Heo 	 * Make sure nobody diddled with it while I was sleeping.
2316c8e55f36STejun Heo 	 */
23176183c009STejun Heo 	WARN_ON_ONCE(!list_empty(&worker->scheduled));
2318c8e55f36STejun Heo 
2319e22bee78STejun Heo 	/*
2320e22bee78STejun Heo 	 * When control reaches this point, we're guaranteed to have
2321e22bee78STejun Heo 	 * at least one idle worker or that someone else has already
2322e22bee78STejun Heo 	 * assumed the manager role.
2323e22bee78STejun Heo 	 */
2324e22bee78STejun Heo 	worker_clr_flags(worker, WORKER_PREP);
2325e22bee78STejun Heo 
2326e22bee78STejun Heo 	do {
2327affee4b2STejun Heo 		struct work_struct *work =
2328bd7bdd43STejun Heo 			list_first_entry(&pool->worklist,
2329affee4b2STejun Heo 					 struct work_struct, entry);
2330affee4b2STejun Heo 
2331c8e55f36STejun Heo 		if (likely(!(*work_data_bits(work) & WORK_STRUCT_LINKED))) {
2332affee4b2STejun Heo 			/* optimization path, not strictly necessary */
2333affee4b2STejun Heo 			process_one_work(worker, work);
2334affee4b2STejun Heo 			if (unlikely(!list_empty(&worker->scheduled)))
2335affee4b2STejun Heo 				process_scheduled_works(worker);
2336affee4b2STejun Heo 		} else {
2337c8e55f36STejun Heo 			move_linked_works(work, &worker->scheduled, NULL);
2338affee4b2STejun Heo 			process_scheduled_works(worker);
2339affee4b2STejun Heo 		}
234063d95a91STejun Heo 	} while (keep_working(pool));
2341affee4b2STejun Heo 
2342e22bee78STejun Heo 	worker_set_flags(worker, WORKER_PREP, false);
2343d313dd85STejun Heo sleep:
234463d95a91STejun Heo 	if (unlikely(need_to_manage_workers(pool)) && manage_workers(worker))
2345e22bee78STejun Heo 		goto recheck;
2346d313dd85STejun Heo 
2347c8e55f36STejun Heo 	/*
2348d565ed63STejun Heo 	 * pool->lock is held and there's no work to process and no need to
2349d565ed63STejun Heo 	 * manage, sleep.  Workers are woken up only while holding
2350d565ed63STejun Heo 	 * pool->lock or from local cpu, so setting the current state
2351d565ed63STejun Heo 	 * before releasing pool->lock is enough to prevent losing any
2352d565ed63STejun Heo 	 * event.
2353c8e55f36STejun Heo 	 */
2354c8e55f36STejun Heo 	worker_enter_idle(worker);
2355c8e55f36STejun Heo 	__set_current_state(TASK_INTERRUPTIBLE);
2356d565ed63STejun Heo 	spin_unlock_irq(&pool->lock);
23571da177e4SLinus Torvalds 	schedule();
2358c8e55f36STejun Heo 	goto woke_up;
23591da177e4SLinus Torvalds }
23601da177e4SLinus Torvalds 
2361e22bee78STejun Heo /**
2362e22bee78STejun Heo  * rescuer_thread - the rescuer thread function
2363111c225aSTejun Heo  * @__rescuer: self
2364e22bee78STejun Heo  *
2365e22bee78STejun Heo  * Workqueue rescuer thread function.  There's one rescuer for each
2366493008a8STejun Heo  * workqueue which has WQ_MEM_RECLAIM set.
2367e22bee78STejun Heo  *
2368706026c2STejun Heo  * Regular work processing on a pool may block trying to create a new
2369e22bee78STejun Heo  * worker which uses GFP_KERNEL allocation which has slight chance of
2370e22bee78STejun Heo  * developing into deadlock if some works currently on the same queue
2371e22bee78STejun Heo  * need to be processed to satisfy the GFP_KERNEL allocation.  This is
2372e22bee78STejun Heo  * the problem rescuer solves.
2373e22bee78STejun Heo  *
2374706026c2STejun Heo  * When such condition is possible, the pool summons rescuers of all
2375706026c2STejun Heo  * workqueues which have works queued on the pool and let them process
2376e22bee78STejun Heo  * those works so that forward progress can be guaranteed.
2377e22bee78STejun Heo  *
2378e22bee78STejun Heo  * This should happen rarely.
2379e22bee78STejun Heo  */
2380111c225aSTejun Heo static int rescuer_thread(void *__rescuer)
2381e22bee78STejun Heo {
2382111c225aSTejun Heo 	struct worker *rescuer = __rescuer;
2383111c225aSTejun Heo 	struct workqueue_struct *wq = rescuer->rescue_wq;
2384e22bee78STejun Heo 	struct list_head *scheduled = &rescuer->scheduled;
2385e22bee78STejun Heo 
2386e22bee78STejun Heo 	set_user_nice(current, RESCUER_NICE_LEVEL);
2387111c225aSTejun Heo 
2388111c225aSTejun Heo 	/*
2389111c225aSTejun Heo 	 * Mark rescuer as worker too.  As WORKER_PREP is never cleared, it
2390111c225aSTejun Heo 	 * doesn't participate in concurrency management.
2391111c225aSTejun Heo 	 */
2392111c225aSTejun Heo 	rescuer->task->flags |= PF_WQ_WORKER;
2393e22bee78STejun Heo repeat:
2394e22bee78STejun Heo 	set_current_state(TASK_INTERRUPTIBLE);
23951da177e4SLinus Torvalds 
2396412d32e6SMike Galbraith 	if (kthread_should_stop()) {
2397412d32e6SMike Galbraith 		__set_current_state(TASK_RUNNING);
2398111c225aSTejun Heo 		rescuer->task->flags &= ~PF_WQ_WORKER;
2399e22bee78STejun Heo 		return 0;
2400412d32e6SMike Galbraith 	}
24011da177e4SLinus Torvalds 
2402493a1724STejun Heo 	/* see whether any pwq is asking for help */
2403493a1724STejun Heo 	spin_lock_irq(&workqueue_lock);
2404493a1724STejun Heo 
2405493a1724STejun Heo 	while (!list_empty(&wq->maydays)) {
2406493a1724STejun Heo 		struct pool_workqueue *pwq = list_first_entry(&wq->maydays,
2407493a1724STejun Heo 					struct pool_workqueue, mayday_node);
2408112202d9STejun Heo 		struct worker_pool *pool = pwq->pool;
2409e22bee78STejun Heo 		struct work_struct *work, *n;
2410e22bee78STejun Heo 
2411e22bee78STejun Heo 		__set_current_state(TASK_RUNNING);
2412493a1724STejun Heo 		list_del_init(&pwq->mayday_node);
2413493a1724STejun Heo 
2414493a1724STejun Heo 		spin_unlock_irq(&workqueue_lock);
2415e22bee78STejun Heo 
2416e22bee78STejun Heo 		/* migrate to the target cpu if possible */
2417f36dc67bSLai Jiangshan 		worker_maybe_bind_and_lock(pool);
2418b3104104SLai Jiangshan 		rescuer->pool = pool;
2419e22bee78STejun Heo 
2420e22bee78STejun Heo 		/*
2421e22bee78STejun Heo 		 * Slurp in all works issued via this workqueue and
2422e22bee78STejun Heo 		 * process'em.
2423e22bee78STejun Heo 		 */
24246183c009STejun Heo 		WARN_ON_ONCE(!list_empty(&rescuer->scheduled));
2425bd7bdd43STejun Heo 		list_for_each_entry_safe(work, n, &pool->worklist, entry)
2426112202d9STejun Heo 			if (get_work_pwq(work) == pwq)
2427e22bee78STejun Heo 				move_linked_works(work, scheduled, &n);
2428e22bee78STejun Heo 
2429e22bee78STejun Heo 		process_scheduled_works(rescuer);
24307576958aSTejun Heo 
24317576958aSTejun Heo 		/*
2432d565ed63STejun Heo 		 * Leave this pool.  If keep_working() is %true, notify a
24337576958aSTejun Heo 		 * regular worker; otherwise, we end up with 0 concurrency
24347576958aSTejun Heo 		 * and stalling the execution.
24357576958aSTejun Heo 		 */
243663d95a91STejun Heo 		if (keep_working(pool))
243763d95a91STejun Heo 			wake_up_worker(pool);
24387576958aSTejun Heo 
2439b3104104SLai Jiangshan 		rescuer->pool = NULL;
2440493a1724STejun Heo 		spin_unlock(&pool->lock);
2441493a1724STejun Heo 		spin_lock(&workqueue_lock);
24421da177e4SLinus Torvalds 	}
24431da177e4SLinus Torvalds 
2444493a1724STejun Heo 	spin_unlock_irq(&workqueue_lock);
2445493a1724STejun Heo 
2446111c225aSTejun Heo 	/* rescuers should never participate in concurrency management */
2447111c225aSTejun Heo 	WARN_ON_ONCE(!(rescuer->flags & WORKER_NOT_RUNNING));
2448e22bee78STejun Heo 	schedule();
2449e22bee78STejun Heo 	goto repeat;
24501da177e4SLinus Torvalds }
24511da177e4SLinus Torvalds 
2452fc2e4d70SOleg Nesterov struct wq_barrier {
2453fc2e4d70SOleg Nesterov 	struct work_struct	work;
2454fc2e4d70SOleg Nesterov 	struct completion	done;
2455fc2e4d70SOleg Nesterov };
2456fc2e4d70SOleg Nesterov 
2457fc2e4d70SOleg Nesterov static void wq_barrier_func(struct work_struct *work)
2458fc2e4d70SOleg Nesterov {
2459fc2e4d70SOleg Nesterov 	struct wq_barrier *barr = container_of(work, struct wq_barrier, work);
2460fc2e4d70SOleg Nesterov 	complete(&barr->done);
2461fc2e4d70SOleg Nesterov }
2462fc2e4d70SOleg Nesterov 
24634690c4abSTejun Heo /**
24644690c4abSTejun Heo  * insert_wq_barrier - insert a barrier work
2465112202d9STejun Heo  * @pwq: pwq to insert barrier into
24664690c4abSTejun Heo  * @barr: wq_barrier to insert
2467affee4b2STejun Heo  * @target: target work to attach @barr to
2468affee4b2STejun Heo  * @worker: worker currently executing @target, NULL if @target is not executing
24694690c4abSTejun Heo  *
2470affee4b2STejun Heo  * @barr is linked to @target such that @barr is completed only after
2471affee4b2STejun Heo  * @target finishes execution.  Please note that the ordering
2472affee4b2STejun Heo  * guarantee is observed only with respect to @target and on the local
2473affee4b2STejun Heo  * cpu.
2474affee4b2STejun Heo  *
2475affee4b2STejun Heo  * Currently, a queued barrier can't be canceled.  This is because
2476affee4b2STejun Heo  * try_to_grab_pending() can't determine whether the work to be
2477affee4b2STejun Heo  * grabbed is at the head of the queue and thus can't clear LINKED
2478affee4b2STejun Heo  * flag of the previous work while there must be a valid next work
2479affee4b2STejun Heo  * after a work with LINKED flag set.
2480affee4b2STejun Heo  *
2481affee4b2STejun Heo  * Note that when @worker is non-NULL, @target may be modified
2482112202d9STejun Heo  * underneath us, so we can't reliably determine pwq from @target.
24834690c4abSTejun Heo  *
24844690c4abSTejun Heo  * CONTEXT:
2485d565ed63STejun Heo  * spin_lock_irq(pool->lock).
24864690c4abSTejun Heo  */
2487112202d9STejun Heo static void insert_wq_barrier(struct pool_workqueue *pwq,
2488affee4b2STejun Heo 			      struct wq_barrier *barr,
2489affee4b2STejun Heo 			      struct work_struct *target, struct worker *worker)
2490fc2e4d70SOleg Nesterov {
2491affee4b2STejun Heo 	struct list_head *head;
2492affee4b2STejun Heo 	unsigned int linked = 0;
2493affee4b2STejun Heo 
2494dc186ad7SThomas Gleixner 	/*
2495d565ed63STejun Heo 	 * debugobject calls are safe here even with pool->lock locked
2496dc186ad7SThomas Gleixner 	 * as we know for sure that this will not trigger any of the
2497dc186ad7SThomas Gleixner 	 * checks and call back into the fixup functions where we
2498dc186ad7SThomas Gleixner 	 * might deadlock.
2499dc186ad7SThomas Gleixner 	 */
2500ca1cab37SAndrew Morton 	INIT_WORK_ONSTACK(&barr->work, wq_barrier_func);
250122df02bbSTejun Heo 	__set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work));
2502fc2e4d70SOleg Nesterov 	init_completion(&barr->done);
250383c22520SOleg Nesterov 
2504affee4b2STejun Heo 	/*
2505affee4b2STejun Heo 	 * If @target is currently being executed, schedule the
2506affee4b2STejun Heo 	 * barrier to the worker; otherwise, put it after @target.
2507affee4b2STejun Heo 	 */
2508affee4b2STejun Heo 	if (worker)
2509affee4b2STejun Heo 		head = worker->scheduled.next;
2510affee4b2STejun Heo 	else {
2511affee4b2STejun Heo 		unsigned long *bits = work_data_bits(target);
2512affee4b2STejun Heo 
2513affee4b2STejun Heo 		head = target->entry.next;
2514affee4b2STejun Heo 		/* there can already be other linked works, inherit and set */
2515affee4b2STejun Heo 		linked = *bits & WORK_STRUCT_LINKED;
2516affee4b2STejun Heo 		__set_bit(WORK_STRUCT_LINKED_BIT, bits);
2517affee4b2STejun Heo 	}
2518affee4b2STejun Heo 
2519dc186ad7SThomas Gleixner 	debug_work_activate(&barr->work);
2520112202d9STejun Heo 	insert_work(pwq, &barr->work, head,
2521affee4b2STejun Heo 		    work_color_to_flags(WORK_NO_COLOR) | linked);
2522fc2e4d70SOleg Nesterov }
2523fc2e4d70SOleg Nesterov 
252473f53c4aSTejun Heo /**
2525112202d9STejun Heo  * flush_workqueue_prep_pwqs - prepare pwqs for workqueue flushing
252673f53c4aSTejun Heo  * @wq: workqueue being flushed
252773f53c4aSTejun Heo  * @flush_color: new flush color, < 0 for no-op
252873f53c4aSTejun Heo  * @work_color: new work color, < 0 for no-op
252973f53c4aSTejun Heo  *
2530112202d9STejun Heo  * Prepare pwqs for workqueue flushing.
253173f53c4aSTejun Heo  *
2532112202d9STejun Heo  * If @flush_color is non-negative, flush_color on all pwqs should be
2533112202d9STejun Heo  * -1.  If no pwq has in-flight commands at the specified color, all
2534112202d9STejun Heo  * pwq->flush_color's stay at -1 and %false is returned.  If any pwq
2535112202d9STejun Heo  * has in flight commands, its pwq->flush_color is set to
2536112202d9STejun Heo  * @flush_color, @wq->nr_pwqs_to_flush is updated accordingly, pwq
253773f53c4aSTejun Heo  * wakeup logic is armed and %true is returned.
253873f53c4aSTejun Heo  *
253973f53c4aSTejun Heo  * The caller should have initialized @wq->first_flusher prior to
254073f53c4aSTejun Heo  * calling this function with non-negative @flush_color.  If
254173f53c4aSTejun Heo  * @flush_color is negative, no flush color update is done and %false
254273f53c4aSTejun Heo  * is returned.
254373f53c4aSTejun Heo  *
2544112202d9STejun Heo  * If @work_color is non-negative, all pwqs should have the same
254573f53c4aSTejun Heo  * work_color which is previous to @work_color and all will be
254673f53c4aSTejun Heo  * advanced to @work_color.
254773f53c4aSTejun Heo  *
254873f53c4aSTejun Heo  * CONTEXT:
254973f53c4aSTejun Heo  * mutex_lock(wq->flush_mutex).
255073f53c4aSTejun Heo  *
255173f53c4aSTejun Heo  * RETURNS:
255273f53c4aSTejun Heo  * %true if @flush_color >= 0 and there's something to flush.  %false
255373f53c4aSTejun Heo  * otherwise.
255473f53c4aSTejun Heo  */
2555112202d9STejun Heo static bool flush_workqueue_prep_pwqs(struct workqueue_struct *wq,
255673f53c4aSTejun Heo 				      int flush_color, int work_color)
25571da177e4SLinus Torvalds {
255873f53c4aSTejun Heo 	bool wait = false;
255949e3cf44STejun Heo 	struct pool_workqueue *pwq;
25601da177e4SLinus Torvalds 
256173f53c4aSTejun Heo 	if (flush_color >= 0) {
25626183c009STejun Heo 		WARN_ON_ONCE(atomic_read(&wq->nr_pwqs_to_flush));
2563112202d9STejun Heo 		atomic_set(&wq->nr_pwqs_to_flush, 1);
2564dc186ad7SThomas Gleixner 	}
256514441960SOleg Nesterov 
256676af4d93STejun Heo 	local_irq_disable();
256776af4d93STejun Heo 
256849e3cf44STejun Heo 	for_each_pwq(pwq, wq) {
2569112202d9STejun Heo 		struct worker_pool *pool = pwq->pool;
25701da177e4SLinus Torvalds 
257176af4d93STejun Heo 		spin_lock(&pool->lock);
257273f53c4aSTejun Heo 
257373f53c4aSTejun Heo 		if (flush_color >= 0) {
25746183c009STejun Heo 			WARN_ON_ONCE(pwq->flush_color != -1);
257573f53c4aSTejun Heo 
2576112202d9STejun Heo 			if (pwq->nr_in_flight[flush_color]) {
2577112202d9STejun Heo 				pwq->flush_color = flush_color;
2578112202d9STejun Heo 				atomic_inc(&wq->nr_pwqs_to_flush);
257973f53c4aSTejun Heo 				wait = true;
25801da177e4SLinus Torvalds 			}
258173f53c4aSTejun Heo 		}
258273f53c4aSTejun Heo 
258373f53c4aSTejun Heo 		if (work_color >= 0) {
25846183c009STejun Heo 			WARN_ON_ONCE(work_color != work_next_color(pwq->work_color));
2585112202d9STejun Heo 			pwq->work_color = work_color;
258673f53c4aSTejun Heo 		}
258773f53c4aSTejun Heo 
258876af4d93STejun Heo 		spin_unlock(&pool->lock);
25891da177e4SLinus Torvalds 	}
25901da177e4SLinus Torvalds 
259176af4d93STejun Heo 	local_irq_enable();
259276af4d93STejun Heo 
2593112202d9STejun Heo 	if (flush_color >= 0 && atomic_dec_and_test(&wq->nr_pwqs_to_flush))
259473f53c4aSTejun Heo 		complete(&wq->first_flusher->done);
259573f53c4aSTejun Heo 
259673f53c4aSTejun Heo 	return wait;
259783c22520SOleg Nesterov }
25981da177e4SLinus Torvalds 
25990fcb78c2SRolf Eike Beer /**
26001da177e4SLinus Torvalds  * flush_workqueue - ensure that any scheduled work has run to completion.
26010fcb78c2SRolf Eike Beer  * @wq: workqueue to flush
26021da177e4SLinus Torvalds  *
26031da177e4SLinus Torvalds  * Forces execution of the workqueue and blocks until its completion.
26041da177e4SLinus Torvalds  * This is typically used in driver shutdown handlers.
26051da177e4SLinus Torvalds  *
2606fc2e4d70SOleg Nesterov  * We sleep until all works which were queued on entry have been handled,
2607fc2e4d70SOleg Nesterov  * but we are not livelocked by new incoming ones.
26081da177e4SLinus Torvalds  */
26097ad5b3a5SHarvey Harrison void flush_workqueue(struct workqueue_struct *wq)
26101da177e4SLinus Torvalds {
261173f53c4aSTejun Heo 	struct wq_flusher this_flusher = {
261273f53c4aSTejun Heo 		.list = LIST_HEAD_INIT(this_flusher.list),
261373f53c4aSTejun Heo 		.flush_color = -1,
261473f53c4aSTejun Heo 		.done = COMPLETION_INITIALIZER_ONSTACK(this_flusher.done),
261573f53c4aSTejun Heo 	};
261673f53c4aSTejun Heo 	int next_color;
2617b1f4ec17SOleg Nesterov 
26183295f0efSIngo Molnar 	lock_map_acquire(&wq->lockdep_map);
26193295f0efSIngo Molnar 	lock_map_release(&wq->lockdep_map);
262073f53c4aSTejun Heo 
262173f53c4aSTejun Heo 	mutex_lock(&wq->flush_mutex);
262273f53c4aSTejun Heo 
262373f53c4aSTejun Heo 	/*
262473f53c4aSTejun Heo 	 * Start-to-wait phase
262573f53c4aSTejun Heo 	 */
262673f53c4aSTejun Heo 	next_color = work_next_color(wq->work_color);
262773f53c4aSTejun Heo 
262873f53c4aSTejun Heo 	if (next_color != wq->flush_color) {
262973f53c4aSTejun Heo 		/*
263073f53c4aSTejun Heo 		 * Color space is not full.  The current work_color
263173f53c4aSTejun Heo 		 * becomes our flush_color and work_color is advanced
263273f53c4aSTejun Heo 		 * by one.
263373f53c4aSTejun Heo 		 */
26346183c009STejun Heo 		WARN_ON_ONCE(!list_empty(&wq->flusher_overflow));
263573f53c4aSTejun Heo 		this_flusher.flush_color = wq->work_color;
263673f53c4aSTejun Heo 		wq->work_color = next_color;
263773f53c4aSTejun Heo 
263873f53c4aSTejun Heo 		if (!wq->first_flusher) {
263973f53c4aSTejun Heo 			/* no flush in progress, become the first flusher */
26406183c009STejun Heo 			WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
264173f53c4aSTejun Heo 
264273f53c4aSTejun Heo 			wq->first_flusher = &this_flusher;
264373f53c4aSTejun Heo 
2644112202d9STejun Heo 			if (!flush_workqueue_prep_pwqs(wq, wq->flush_color,
264573f53c4aSTejun Heo 						       wq->work_color)) {
264673f53c4aSTejun Heo 				/* nothing to flush, done */
264773f53c4aSTejun Heo 				wq->flush_color = next_color;
264873f53c4aSTejun Heo 				wq->first_flusher = NULL;
264973f53c4aSTejun Heo 				goto out_unlock;
265073f53c4aSTejun Heo 			}
265173f53c4aSTejun Heo 		} else {
265273f53c4aSTejun Heo 			/* wait in queue */
26536183c009STejun Heo 			WARN_ON_ONCE(wq->flush_color == this_flusher.flush_color);
265473f53c4aSTejun Heo 			list_add_tail(&this_flusher.list, &wq->flusher_queue);
2655112202d9STejun Heo 			flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
265673f53c4aSTejun Heo 		}
265773f53c4aSTejun Heo 	} else {
265873f53c4aSTejun Heo 		/*
265973f53c4aSTejun Heo 		 * Oops, color space is full, wait on overflow queue.
266073f53c4aSTejun Heo 		 * The next flush completion will assign us
266173f53c4aSTejun Heo 		 * flush_color and transfer to flusher_queue.
266273f53c4aSTejun Heo 		 */
266373f53c4aSTejun Heo 		list_add_tail(&this_flusher.list, &wq->flusher_overflow);
266473f53c4aSTejun Heo 	}
266573f53c4aSTejun Heo 
266673f53c4aSTejun Heo 	mutex_unlock(&wq->flush_mutex);
266773f53c4aSTejun Heo 
266873f53c4aSTejun Heo 	wait_for_completion(&this_flusher.done);
266973f53c4aSTejun Heo 
267073f53c4aSTejun Heo 	/*
267173f53c4aSTejun Heo 	 * Wake-up-and-cascade phase
267273f53c4aSTejun Heo 	 *
267373f53c4aSTejun Heo 	 * First flushers are responsible for cascading flushes and
267473f53c4aSTejun Heo 	 * handling overflow.  Non-first flushers can simply return.
267573f53c4aSTejun Heo 	 */
267673f53c4aSTejun Heo 	if (wq->first_flusher != &this_flusher)
267773f53c4aSTejun Heo 		return;
267873f53c4aSTejun Heo 
267973f53c4aSTejun Heo 	mutex_lock(&wq->flush_mutex);
268073f53c4aSTejun Heo 
26814ce48b37STejun Heo 	/* we might have raced, check again with mutex held */
26824ce48b37STejun Heo 	if (wq->first_flusher != &this_flusher)
26834ce48b37STejun Heo 		goto out_unlock;
26844ce48b37STejun Heo 
268573f53c4aSTejun Heo 	wq->first_flusher = NULL;
268673f53c4aSTejun Heo 
26876183c009STejun Heo 	WARN_ON_ONCE(!list_empty(&this_flusher.list));
26886183c009STejun Heo 	WARN_ON_ONCE(wq->flush_color != this_flusher.flush_color);
268973f53c4aSTejun Heo 
269073f53c4aSTejun Heo 	while (true) {
269173f53c4aSTejun Heo 		struct wq_flusher *next, *tmp;
269273f53c4aSTejun Heo 
269373f53c4aSTejun Heo 		/* complete all the flushers sharing the current flush color */
269473f53c4aSTejun Heo 		list_for_each_entry_safe(next, tmp, &wq->flusher_queue, list) {
269573f53c4aSTejun Heo 			if (next->flush_color != wq->flush_color)
269673f53c4aSTejun Heo 				break;
269773f53c4aSTejun Heo 			list_del_init(&next->list);
269873f53c4aSTejun Heo 			complete(&next->done);
269973f53c4aSTejun Heo 		}
270073f53c4aSTejun Heo 
27016183c009STejun Heo 		WARN_ON_ONCE(!list_empty(&wq->flusher_overflow) &&
270273f53c4aSTejun Heo 			     wq->flush_color != work_next_color(wq->work_color));
270373f53c4aSTejun Heo 
270473f53c4aSTejun Heo 		/* this flush_color is finished, advance by one */
270573f53c4aSTejun Heo 		wq->flush_color = work_next_color(wq->flush_color);
270673f53c4aSTejun Heo 
270773f53c4aSTejun Heo 		/* one color has been freed, handle overflow queue */
270873f53c4aSTejun Heo 		if (!list_empty(&wq->flusher_overflow)) {
270973f53c4aSTejun Heo 			/*
271073f53c4aSTejun Heo 			 * Assign the same color to all overflowed
271173f53c4aSTejun Heo 			 * flushers, advance work_color and append to
271273f53c4aSTejun Heo 			 * flusher_queue.  This is the start-to-wait
271373f53c4aSTejun Heo 			 * phase for these overflowed flushers.
271473f53c4aSTejun Heo 			 */
271573f53c4aSTejun Heo 			list_for_each_entry(tmp, &wq->flusher_overflow, list)
271673f53c4aSTejun Heo 				tmp->flush_color = wq->work_color;
271773f53c4aSTejun Heo 
271873f53c4aSTejun Heo 			wq->work_color = work_next_color(wq->work_color);
271973f53c4aSTejun Heo 
272073f53c4aSTejun Heo 			list_splice_tail_init(&wq->flusher_overflow,
272173f53c4aSTejun Heo 					      &wq->flusher_queue);
2722112202d9STejun Heo 			flush_workqueue_prep_pwqs(wq, -1, wq->work_color);
272373f53c4aSTejun Heo 		}
272473f53c4aSTejun Heo 
272573f53c4aSTejun Heo 		if (list_empty(&wq->flusher_queue)) {
27266183c009STejun Heo 			WARN_ON_ONCE(wq->flush_color != wq->work_color);
272773f53c4aSTejun Heo 			break;
272873f53c4aSTejun Heo 		}
272973f53c4aSTejun Heo 
273073f53c4aSTejun Heo 		/*
273173f53c4aSTejun Heo 		 * Need to flush more colors.  Make the next flusher
2732112202d9STejun Heo 		 * the new first flusher and arm pwqs.
273373f53c4aSTejun Heo 		 */
27346183c009STejun Heo 		WARN_ON_ONCE(wq->flush_color == wq->work_color);
27356183c009STejun Heo 		WARN_ON_ONCE(wq->flush_color != next->flush_color);
273673f53c4aSTejun Heo 
273773f53c4aSTejun Heo 		list_del_init(&next->list);
273873f53c4aSTejun Heo 		wq->first_flusher = next;
273973f53c4aSTejun Heo 
2740112202d9STejun Heo 		if (flush_workqueue_prep_pwqs(wq, wq->flush_color, -1))
274173f53c4aSTejun Heo 			break;
274273f53c4aSTejun Heo 
274373f53c4aSTejun Heo 		/*
274473f53c4aSTejun Heo 		 * Meh... this color is already done, clear first
274573f53c4aSTejun Heo 		 * flusher and repeat cascading.
274673f53c4aSTejun Heo 		 */
274773f53c4aSTejun Heo 		wq->first_flusher = NULL;
274873f53c4aSTejun Heo 	}
274973f53c4aSTejun Heo 
275073f53c4aSTejun Heo out_unlock:
275173f53c4aSTejun Heo 	mutex_unlock(&wq->flush_mutex);
27521da177e4SLinus Torvalds }
2753ae90dd5dSDave Jones EXPORT_SYMBOL_GPL(flush_workqueue);
27541da177e4SLinus Torvalds 
27559c5a2ba7STejun Heo /**
27569c5a2ba7STejun Heo  * drain_workqueue - drain a workqueue
27579c5a2ba7STejun Heo  * @wq: workqueue to drain
27589c5a2ba7STejun Heo  *
27599c5a2ba7STejun Heo  * Wait until the workqueue becomes empty.  While draining is in progress,
27609c5a2ba7STejun Heo  * only chain queueing is allowed.  IOW, only currently pending or running
27619c5a2ba7STejun Heo  * work items on @wq can queue further work items on it.  @wq is flushed
27629c5a2ba7STejun Heo  * repeatedly until it becomes empty.  The number of flushing is detemined
27639c5a2ba7STejun Heo  * by the depth of chaining and should be relatively short.  Whine if it
27649c5a2ba7STejun Heo  * takes too long.
27659c5a2ba7STejun Heo  */
27669c5a2ba7STejun Heo void drain_workqueue(struct workqueue_struct *wq)
27679c5a2ba7STejun Heo {
27689c5a2ba7STejun Heo 	unsigned int flush_cnt = 0;
276949e3cf44STejun Heo 	struct pool_workqueue *pwq;
27709c5a2ba7STejun Heo 
27719c5a2ba7STejun Heo 	/*
27729c5a2ba7STejun Heo 	 * __queue_work() needs to test whether there are drainers, is much
27739c5a2ba7STejun Heo 	 * hotter than drain_workqueue() and already looks at @wq->flags.
2774618b01ebSTejun Heo 	 * Use __WQ_DRAINING so that queue doesn't have to check nr_drainers.
27759c5a2ba7STejun Heo 	 */
2776e98d5b16STejun Heo 	spin_lock_irq(&workqueue_lock);
27779c5a2ba7STejun Heo 	if (!wq->nr_drainers++)
2778618b01ebSTejun Heo 		wq->flags |= __WQ_DRAINING;
2779e98d5b16STejun Heo 	spin_unlock_irq(&workqueue_lock);
27809c5a2ba7STejun Heo reflush:
27819c5a2ba7STejun Heo 	flush_workqueue(wq);
27829c5a2ba7STejun Heo 
278376af4d93STejun Heo 	local_irq_disable();
278476af4d93STejun Heo 
278549e3cf44STejun Heo 	for_each_pwq(pwq, wq) {
2786fa2563e4SThomas Tuttle 		bool drained;
27879c5a2ba7STejun Heo 
278876af4d93STejun Heo 		spin_lock(&pwq->pool->lock);
2789112202d9STejun Heo 		drained = !pwq->nr_active && list_empty(&pwq->delayed_works);
279076af4d93STejun Heo 		spin_unlock(&pwq->pool->lock);
2791fa2563e4SThomas Tuttle 
2792fa2563e4SThomas Tuttle 		if (drained)
27939c5a2ba7STejun Heo 			continue;
27949c5a2ba7STejun Heo 
27959c5a2ba7STejun Heo 		if (++flush_cnt == 10 ||
27969c5a2ba7STejun Heo 		    (flush_cnt % 100 == 0 && flush_cnt <= 1000))
2797044c782cSValentin Ilie 			pr_warn("workqueue %s: flush on destruction isn't complete after %u tries\n",
27989c5a2ba7STejun Heo 				wq->name, flush_cnt);
279976af4d93STejun Heo 
280076af4d93STejun Heo 		local_irq_enable();
28019c5a2ba7STejun Heo 		goto reflush;
28029c5a2ba7STejun Heo 	}
28039c5a2ba7STejun Heo 
280476af4d93STejun Heo 	spin_lock(&workqueue_lock);
28059c5a2ba7STejun Heo 	if (!--wq->nr_drainers)
2806618b01ebSTejun Heo 		wq->flags &= ~__WQ_DRAINING;
280776af4d93STejun Heo 	spin_unlock(&workqueue_lock);
280876af4d93STejun Heo 
280976af4d93STejun Heo 	local_irq_enable();
28109c5a2ba7STejun Heo }
28119c5a2ba7STejun Heo EXPORT_SYMBOL_GPL(drain_workqueue);
28129c5a2ba7STejun Heo 
2813606a5020STejun Heo static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
2814baf59022STejun Heo {
2815baf59022STejun Heo 	struct worker *worker = NULL;
2816c9e7cf27STejun Heo 	struct worker_pool *pool;
2817112202d9STejun Heo 	struct pool_workqueue *pwq;
2818baf59022STejun Heo 
2819baf59022STejun Heo 	might_sleep();
2820baf59022STejun Heo 
2821fa1b54e6STejun Heo 	local_irq_disable();
2822fa1b54e6STejun Heo 	pool = get_work_pool(work);
2823fa1b54e6STejun Heo 	if (!pool) {
2824fa1b54e6STejun Heo 		local_irq_enable();
2825fa1b54e6STejun Heo 		return false;
2826fa1b54e6STejun Heo 	}
2827fa1b54e6STejun Heo 
2828fa1b54e6STejun Heo 	spin_lock(&pool->lock);
28290b3dae68SLai Jiangshan 	/* see the comment in try_to_grab_pending() with the same code */
2830112202d9STejun Heo 	pwq = get_work_pwq(work);
2831112202d9STejun Heo 	if (pwq) {
2832112202d9STejun Heo 		if (unlikely(pwq->pool != pool))
2833baf59022STejun Heo 			goto already_gone;
2834606a5020STejun Heo 	} else {
2835c9e7cf27STejun Heo 		worker = find_worker_executing_work(pool, work);
2836baf59022STejun Heo 		if (!worker)
2837baf59022STejun Heo 			goto already_gone;
2838112202d9STejun Heo 		pwq = worker->current_pwq;
2839606a5020STejun Heo 	}
2840baf59022STejun Heo 
2841112202d9STejun Heo 	insert_wq_barrier(pwq, barr, work, worker);
2842d565ed63STejun Heo 	spin_unlock_irq(&pool->lock);
2843baf59022STejun Heo 
2844e159489bSTejun Heo 	/*
2845e159489bSTejun Heo 	 * If @max_active is 1 or rescuer is in use, flushing another work
2846e159489bSTejun Heo 	 * item on the same workqueue may lead to deadlock.  Make sure the
2847e159489bSTejun Heo 	 * flusher is not running on the same workqueue by verifying write
2848e159489bSTejun Heo 	 * access.
2849e159489bSTejun Heo 	 */
2850493008a8STejun Heo 	if (pwq->wq->saved_max_active == 1 || pwq->wq->rescuer)
2851112202d9STejun Heo 		lock_map_acquire(&pwq->wq->lockdep_map);
2852e159489bSTejun Heo 	else
2853112202d9STejun Heo 		lock_map_acquire_read(&pwq->wq->lockdep_map);
2854112202d9STejun Heo 	lock_map_release(&pwq->wq->lockdep_map);
2855e159489bSTejun Heo 
2856baf59022STejun Heo 	return true;
2857baf59022STejun Heo already_gone:
2858d565ed63STejun Heo 	spin_unlock_irq(&pool->lock);
2859baf59022STejun Heo 	return false;
2860baf59022STejun Heo }
2861baf59022STejun Heo 
2862db700897SOleg Nesterov /**
2863401a8d04STejun Heo  * flush_work - wait for a work to finish executing the last queueing instance
2864401a8d04STejun Heo  * @work: the work to flush
2865db700897SOleg Nesterov  *
2866606a5020STejun Heo  * Wait until @work has finished execution.  @work is guaranteed to be idle
2867606a5020STejun Heo  * on return if it hasn't been requeued since flush started.
2868401a8d04STejun Heo  *
2869401a8d04STejun Heo  * RETURNS:
2870401a8d04STejun Heo  * %true if flush_work() waited for the work to finish execution,
2871401a8d04STejun Heo  * %false if it was already idle.
2872db700897SOleg Nesterov  */
2873401a8d04STejun Heo bool flush_work(struct work_struct *work)
2874db700897SOleg Nesterov {
2875db700897SOleg Nesterov 	struct wq_barrier barr;
2876db700897SOleg Nesterov 
28770976dfc1SStephen Boyd 	lock_map_acquire(&work->lockdep_map);
28780976dfc1SStephen Boyd 	lock_map_release(&work->lockdep_map);
28790976dfc1SStephen Boyd 
2880606a5020STejun Heo 	if (start_flush_work(work, &barr)) {
2881db700897SOleg Nesterov 		wait_for_completion(&barr.done);
2882dc186ad7SThomas Gleixner 		destroy_work_on_stack(&barr.work);
2883401a8d04STejun Heo 		return true;
2884606a5020STejun Heo 	} else {
2885401a8d04STejun Heo 		return false;
2886db700897SOleg Nesterov 	}
2887606a5020STejun Heo }
2888db700897SOleg Nesterov EXPORT_SYMBOL_GPL(flush_work);
2889db700897SOleg Nesterov 
289036e227d2STejun Heo static bool __cancel_work_timer(struct work_struct *work, bool is_dwork)
2891401a8d04STejun Heo {
2892bbb68dfaSTejun Heo 	unsigned long flags;
28931f1f642eSOleg Nesterov 	int ret;
28941f1f642eSOleg Nesterov 
28951f1f642eSOleg Nesterov 	do {
2896bbb68dfaSTejun Heo 		ret = try_to_grab_pending(work, is_dwork, &flags);
2897bbb68dfaSTejun Heo 		/*
2898bbb68dfaSTejun Heo 		 * If someone else is canceling, wait for the same event it
2899bbb68dfaSTejun Heo 		 * would be waiting for before retrying.
2900bbb68dfaSTejun Heo 		 */
2901bbb68dfaSTejun Heo 		if (unlikely(ret == -ENOENT))
2902606a5020STejun Heo 			flush_work(work);
29031f1f642eSOleg Nesterov 	} while (unlikely(ret < 0));
29041f1f642eSOleg Nesterov 
2905bbb68dfaSTejun Heo 	/* tell other tasks trying to grab @work to back off */
2906bbb68dfaSTejun Heo 	mark_work_canceling(work);
2907bbb68dfaSTejun Heo 	local_irq_restore(flags);
2908bbb68dfaSTejun Heo 
2909606a5020STejun Heo 	flush_work(work);
29107a22ad75STejun Heo 	clear_work_data(work);
29111f1f642eSOleg Nesterov 	return ret;
29121f1f642eSOleg Nesterov }
29131f1f642eSOleg Nesterov 
29146e84d644SOleg Nesterov /**
2915401a8d04STejun Heo  * cancel_work_sync - cancel a work and wait for it to finish
2916401a8d04STejun Heo  * @work: the work to cancel
29176e84d644SOleg Nesterov  *
2918401a8d04STejun Heo  * Cancel @work and wait for its execution to finish.  This function
2919401a8d04STejun Heo  * can be used even if the work re-queues itself or migrates to
2920401a8d04STejun Heo  * another workqueue.  On return from this function, @work is
2921401a8d04STejun Heo  * guaranteed to be not pending or executing on any CPU.
29221f1f642eSOleg Nesterov  *
2923401a8d04STejun Heo  * cancel_work_sync(&delayed_work->work) must not be used for
2924401a8d04STejun Heo  * delayed_work's.  Use cancel_delayed_work_sync() instead.
29256e84d644SOleg Nesterov  *
2926401a8d04STejun Heo  * The caller must ensure that the workqueue on which @work was last
29276e84d644SOleg Nesterov  * queued can't be destroyed before this function returns.
2928401a8d04STejun Heo  *
2929401a8d04STejun Heo  * RETURNS:
2930401a8d04STejun Heo  * %true if @work was pending, %false otherwise.
29316e84d644SOleg Nesterov  */
2932401a8d04STejun Heo bool cancel_work_sync(struct work_struct *work)
29336e84d644SOleg Nesterov {
293436e227d2STejun Heo 	return __cancel_work_timer(work, false);
2935b89deed3SOleg Nesterov }
293628e53bddSOleg Nesterov EXPORT_SYMBOL_GPL(cancel_work_sync);
2937b89deed3SOleg Nesterov 
29386e84d644SOleg Nesterov /**
2939401a8d04STejun Heo  * flush_delayed_work - wait for a dwork to finish executing the last queueing
2940401a8d04STejun Heo  * @dwork: the delayed work to flush
29416e84d644SOleg Nesterov  *
2942401a8d04STejun Heo  * Delayed timer is cancelled and the pending work is queued for
2943401a8d04STejun Heo  * immediate execution.  Like flush_work(), this function only
2944401a8d04STejun Heo  * considers the last queueing instance of @dwork.
29451f1f642eSOleg Nesterov  *
2946401a8d04STejun Heo  * RETURNS:
2947401a8d04STejun Heo  * %true if flush_work() waited for the work to finish execution,
2948401a8d04STejun Heo  * %false if it was already idle.
29496e84d644SOleg Nesterov  */
2950401a8d04STejun Heo bool flush_delayed_work(struct delayed_work *dwork)
2951401a8d04STejun Heo {
29528930cabaSTejun Heo 	local_irq_disable();
2953401a8d04STejun Heo 	if (del_timer_sync(&dwork->timer))
295460c057bcSLai Jiangshan 		__queue_work(dwork->cpu, dwork->wq, &dwork->work);
29558930cabaSTejun Heo 	local_irq_enable();
2956401a8d04STejun Heo 	return flush_work(&dwork->work);
2957401a8d04STejun Heo }
2958401a8d04STejun Heo EXPORT_SYMBOL(flush_delayed_work);
2959401a8d04STejun Heo 
2960401a8d04STejun Heo /**
296157b30ae7STejun Heo  * cancel_delayed_work - cancel a delayed work
296257b30ae7STejun Heo  * @dwork: delayed_work to cancel
296309383498STejun Heo  *
296457b30ae7STejun Heo  * Kill off a pending delayed_work.  Returns %true if @dwork was pending
296557b30ae7STejun Heo  * and canceled; %false if wasn't pending.  Note that the work callback
296657b30ae7STejun Heo  * function may still be running on return, unless it returns %true and the
296757b30ae7STejun Heo  * work doesn't re-arm itself.  Explicitly flush or use
296857b30ae7STejun Heo  * cancel_delayed_work_sync() to wait on it.
296909383498STejun Heo  *
297057b30ae7STejun Heo  * This function is safe to call from any context including IRQ handler.
297109383498STejun Heo  */
297257b30ae7STejun Heo bool cancel_delayed_work(struct delayed_work *dwork)
297309383498STejun Heo {
297457b30ae7STejun Heo 	unsigned long flags;
297557b30ae7STejun Heo 	int ret;
297657b30ae7STejun Heo 
297757b30ae7STejun Heo 	do {
297857b30ae7STejun Heo 		ret = try_to_grab_pending(&dwork->work, true, &flags);
297957b30ae7STejun Heo 	} while (unlikely(ret == -EAGAIN));
298057b30ae7STejun Heo 
298157b30ae7STejun Heo 	if (unlikely(ret < 0))
298257b30ae7STejun Heo 		return false;
298357b30ae7STejun Heo 
29847c3eed5cSTejun Heo 	set_work_pool_and_clear_pending(&dwork->work,
29857c3eed5cSTejun Heo 					get_work_pool_id(&dwork->work));
298657b30ae7STejun Heo 	local_irq_restore(flags);
2987c0158ca6SDan Magenheimer 	return ret;
298809383498STejun Heo }
298957b30ae7STejun Heo EXPORT_SYMBOL(cancel_delayed_work);
299009383498STejun Heo 
299109383498STejun Heo /**
2992401a8d04STejun Heo  * cancel_delayed_work_sync - cancel a delayed work and wait for it to finish
2993401a8d04STejun Heo  * @dwork: the delayed work cancel
2994401a8d04STejun Heo  *
2995401a8d04STejun Heo  * This is cancel_work_sync() for delayed works.
2996401a8d04STejun Heo  *
2997401a8d04STejun Heo  * RETURNS:
2998401a8d04STejun Heo  * %true if @dwork was pending, %false otherwise.
2999401a8d04STejun Heo  */
3000401a8d04STejun Heo bool cancel_delayed_work_sync(struct delayed_work *dwork)
30016e84d644SOleg Nesterov {
300236e227d2STejun Heo 	return __cancel_work_timer(&dwork->work, true);
30036e84d644SOleg Nesterov }
3004f5a421a4SOleg Nesterov EXPORT_SYMBOL(cancel_delayed_work_sync);
30051da177e4SLinus Torvalds 
30060fcb78c2SRolf Eike Beer /**
3007c1a220e7SZhang Rui  * schedule_work_on - put work task on a specific cpu
3008c1a220e7SZhang Rui  * @cpu: cpu to put the work task on
3009c1a220e7SZhang Rui  * @work: job to be done
3010c1a220e7SZhang Rui  *
3011c1a220e7SZhang Rui  * This puts a job on a specific cpu
3012c1a220e7SZhang Rui  */
3013d4283e93STejun Heo bool schedule_work_on(int cpu, struct work_struct *work)
3014c1a220e7SZhang Rui {
3015d320c038STejun Heo 	return queue_work_on(cpu, system_wq, work);
3016c1a220e7SZhang Rui }
3017c1a220e7SZhang Rui EXPORT_SYMBOL(schedule_work_on);
3018c1a220e7SZhang Rui 
30190fcb78c2SRolf Eike Beer /**
3020ae90dd5dSDave Jones  * schedule_work - put work task in global workqueue
30211da177e4SLinus Torvalds  * @work: job to be done
30221da177e4SLinus Torvalds  *
3023d4283e93STejun Heo  * Returns %false if @work was already on the kernel-global workqueue and
3024d4283e93STejun Heo  * %true otherwise.
302552bad64dSDavid Howells  *
30260fcb78c2SRolf Eike Beer  * This puts a job in the kernel-global workqueue if it was not already
30270fcb78c2SRolf Eike Beer  * queued and leaves it in the same position on the kernel-global
30280fcb78c2SRolf Eike Beer  * workqueue otherwise.
30291da177e4SLinus Torvalds  */
3030d4283e93STejun Heo bool schedule_work(struct work_struct *work)
30311da177e4SLinus Torvalds {
30320fcb78c2SRolf Eike Beer 	return queue_work(system_wq, work);
30331da177e4SLinus Torvalds }
30340fcb78c2SRolf Eike Beer EXPORT_SYMBOL(schedule_work);
30351da177e4SLinus Torvalds 
30360fcb78c2SRolf Eike Beer /**
30370fcb78c2SRolf Eike Beer  * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
30380fcb78c2SRolf Eike Beer  * @cpu: cpu to use
30390fcb78c2SRolf Eike Beer  * @dwork: job to be done
30400fcb78c2SRolf Eike Beer  * @delay: number of jiffies to wait
30410fcb78c2SRolf Eike Beer  *
30420fcb78c2SRolf Eike Beer  * After waiting for a given time this puts a job in the kernel-global
30430fcb78c2SRolf Eike Beer  * workqueue on the specified CPU.
30440fcb78c2SRolf Eike Beer  */
3045d4283e93STejun Heo bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3046d4283e93STejun Heo 			      unsigned long delay)
30471da177e4SLinus Torvalds {
3048d320c038STejun Heo 	return queue_delayed_work_on(cpu, system_wq, dwork, delay);
30491da177e4SLinus Torvalds }
3050ae90dd5dSDave Jones EXPORT_SYMBOL(schedule_delayed_work_on);
30511da177e4SLinus Torvalds 
3052b6136773SAndrew Morton /**
30530a13c00eSTejun Heo  * schedule_delayed_work - put work task in global workqueue after delay
30540a13c00eSTejun Heo  * @dwork: job to be done
30550a13c00eSTejun Heo  * @delay: number of jiffies to wait or 0 for immediate execution
30560a13c00eSTejun Heo  *
30570a13c00eSTejun Heo  * After waiting for a given time this puts a job in the kernel-global
30580a13c00eSTejun Heo  * workqueue.
30590a13c00eSTejun Heo  */
3060d4283e93STejun Heo bool schedule_delayed_work(struct delayed_work *dwork, unsigned long delay)
30610a13c00eSTejun Heo {
30620a13c00eSTejun Heo 	return queue_delayed_work(system_wq, dwork, delay);
30630a13c00eSTejun Heo }
30640a13c00eSTejun Heo EXPORT_SYMBOL(schedule_delayed_work);
30650a13c00eSTejun Heo 
30660a13c00eSTejun Heo /**
306731ddd871STejun Heo  * schedule_on_each_cpu - execute a function synchronously on each online CPU
3068b6136773SAndrew Morton  * @func: the function to call
3069b6136773SAndrew Morton  *
307031ddd871STejun Heo  * schedule_on_each_cpu() executes @func on each online CPU using the
307131ddd871STejun Heo  * system workqueue and blocks until all CPUs have completed.
3072b6136773SAndrew Morton  * schedule_on_each_cpu() is very slow.
307331ddd871STejun Heo  *
307431ddd871STejun Heo  * RETURNS:
307531ddd871STejun Heo  * 0 on success, -errno on failure.
3076b6136773SAndrew Morton  */
307765f27f38SDavid Howells int schedule_on_each_cpu(work_func_t func)
307815316ba8SChristoph Lameter {
307915316ba8SChristoph Lameter 	int cpu;
308038f51568SNamhyung Kim 	struct work_struct __percpu *works;
308115316ba8SChristoph Lameter 
3082b6136773SAndrew Morton 	works = alloc_percpu(struct work_struct);
3083b6136773SAndrew Morton 	if (!works)
308415316ba8SChristoph Lameter 		return -ENOMEM;
3085b6136773SAndrew Morton 
308695402b38SGautham R Shenoy 	get_online_cpus();
308793981800STejun Heo 
308815316ba8SChristoph Lameter 	for_each_online_cpu(cpu) {
30899bfb1839SIngo Molnar 		struct work_struct *work = per_cpu_ptr(works, cpu);
30909bfb1839SIngo Molnar 
30919bfb1839SIngo Molnar 		INIT_WORK(work, func);
30928de6d308SOleg Nesterov 		schedule_work_on(cpu, work);
309315316ba8SChristoph Lameter 	}
309493981800STejun Heo 
309593981800STejun Heo 	for_each_online_cpu(cpu)
30968616a89aSOleg Nesterov 		flush_work(per_cpu_ptr(works, cpu));
309793981800STejun Heo 
309895402b38SGautham R Shenoy 	put_online_cpus();
3099b6136773SAndrew Morton 	free_percpu(works);
310015316ba8SChristoph Lameter 	return 0;
310115316ba8SChristoph Lameter }
310215316ba8SChristoph Lameter 
3103eef6a7d5SAlan Stern /**
3104eef6a7d5SAlan Stern  * flush_scheduled_work - ensure that any scheduled work has run to completion.
3105eef6a7d5SAlan Stern  *
3106eef6a7d5SAlan Stern  * Forces execution of the kernel-global workqueue and blocks until its
3107eef6a7d5SAlan Stern  * completion.
3108eef6a7d5SAlan Stern  *
3109eef6a7d5SAlan Stern  * Think twice before calling this function!  It's very easy to get into
3110eef6a7d5SAlan Stern  * trouble if you don't take great care.  Either of the following situations
3111eef6a7d5SAlan Stern  * will lead to deadlock:
3112eef6a7d5SAlan Stern  *
3113eef6a7d5SAlan Stern  *	One of the work items currently on the workqueue needs to acquire
3114eef6a7d5SAlan Stern  *	a lock held by your code or its caller.
3115eef6a7d5SAlan Stern  *
3116eef6a7d5SAlan Stern  *	Your code is running in the context of a work routine.
3117eef6a7d5SAlan Stern  *
3118eef6a7d5SAlan Stern  * They will be detected by lockdep when they occur, but the first might not
3119eef6a7d5SAlan Stern  * occur very often.  It depends on what work items are on the workqueue and
3120eef6a7d5SAlan Stern  * what locks they need, which you have no control over.
3121eef6a7d5SAlan Stern  *
3122eef6a7d5SAlan Stern  * In most situations flushing the entire workqueue is overkill; you merely
3123eef6a7d5SAlan Stern  * need to know that a particular work item isn't queued and isn't running.
3124eef6a7d5SAlan Stern  * In such cases you should use cancel_delayed_work_sync() or
3125eef6a7d5SAlan Stern  * cancel_work_sync() instead.
3126eef6a7d5SAlan Stern  */
31271da177e4SLinus Torvalds void flush_scheduled_work(void)
31281da177e4SLinus Torvalds {
3129d320c038STejun Heo 	flush_workqueue(system_wq);
31301da177e4SLinus Torvalds }
3131ae90dd5dSDave Jones EXPORT_SYMBOL(flush_scheduled_work);
31321da177e4SLinus Torvalds 
31331da177e4SLinus Torvalds /**
31341fa44ecaSJames Bottomley  * execute_in_process_context - reliably execute the routine with user context
31351fa44ecaSJames Bottomley  * @fn:		the function to execute
31361fa44ecaSJames Bottomley  * @ew:		guaranteed storage for the execute work structure (must
31371fa44ecaSJames Bottomley  *		be available when the work executes)
31381fa44ecaSJames Bottomley  *
31391fa44ecaSJames Bottomley  * Executes the function immediately if process context is available,
31401fa44ecaSJames Bottomley  * otherwise schedules the function for delayed execution.
31411fa44ecaSJames Bottomley  *
31421fa44ecaSJames Bottomley  * Returns:	0 - function was executed
31431fa44ecaSJames Bottomley  *		1 - function was scheduled for execution
31441fa44ecaSJames Bottomley  */
314565f27f38SDavid Howells int execute_in_process_context(work_func_t fn, struct execute_work *ew)
31461fa44ecaSJames Bottomley {
31471fa44ecaSJames Bottomley 	if (!in_interrupt()) {
314865f27f38SDavid Howells 		fn(&ew->work);
31491fa44ecaSJames Bottomley 		return 0;
31501fa44ecaSJames Bottomley 	}
31511fa44ecaSJames Bottomley 
315265f27f38SDavid Howells 	INIT_WORK(&ew->work, fn);
31531fa44ecaSJames Bottomley 	schedule_work(&ew->work);
31541fa44ecaSJames Bottomley 
31551fa44ecaSJames Bottomley 	return 1;
31561fa44ecaSJames Bottomley }
31571fa44ecaSJames Bottomley EXPORT_SYMBOL_GPL(execute_in_process_context);
31581fa44ecaSJames Bottomley 
31591da177e4SLinus Torvalds int keventd_up(void)
31601da177e4SLinus Torvalds {
3161d320c038STejun Heo 	return system_wq != NULL;
31621da177e4SLinus Torvalds }
31631da177e4SLinus Torvalds 
3164226223abSTejun Heo #ifdef CONFIG_SYSFS
3165226223abSTejun Heo /*
3166226223abSTejun Heo  * Workqueues with WQ_SYSFS flag set is visible to userland via
3167226223abSTejun Heo  * /sys/bus/workqueue/devices/WQ_NAME.  All visible workqueues have the
3168226223abSTejun Heo  * following attributes.
3169226223abSTejun Heo  *
3170226223abSTejun Heo  *  per_cpu	RO bool	: whether the workqueue is per-cpu or unbound
3171226223abSTejun Heo  *  max_active	RW int	: maximum number of in-flight work items
3172226223abSTejun Heo  *
3173226223abSTejun Heo  * Unbound workqueues have the following extra attributes.
3174226223abSTejun Heo  *
3175226223abSTejun Heo  *  id		RO int	: the associated pool ID
3176226223abSTejun Heo  *  nice	RW int	: nice value of the workers
3177226223abSTejun Heo  *  cpumask	RW mask	: bitmask of allowed CPUs for the workers
3178226223abSTejun Heo  */
3179226223abSTejun Heo struct wq_device {
3180226223abSTejun Heo 	struct workqueue_struct		*wq;
3181226223abSTejun Heo 	struct device			dev;
3182226223abSTejun Heo };
3183226223abSTejun Heo 
3184226223abSTejun Heo static struct workqueue_struct *dev_to_wq(struct device *dev)
3185226223abSTejun Heo {
3186226223abSTejun Heo 	struct wq_device *wq_dev = container_of(dev, struct wq_device, dev);
3187226223abSTejun Heo 
3188226223abSTejun Heo 	return wq_dev->wq;
3189226223abSTejun Heo }
3190226223abSTejun Heo 
3191226223abSTejun Heo static ssize_t wq_per_cpu_show(struct device *dev,
3192226223abSTejun Heo 			       struct device_attribute *attr, char *buf)
3193226223abSTejun Heo {
3194226223abSTejun Heo 	struct workqueue_struct *wq = dev_to_wq(dev);
3195226223abSTejun Heo 
3196226223abSTejun Heo 	return scnprintf(buf, PAGE_SIZE, "%d\n", (bool)!(wq->flags & WQ_UNBOUND));
3197226223abSTejun Heo }
3198226223abSTejun Heo 
3199226223abSTejun Heo static ssize_t wq_max_active_show(struct device *dev,
3200226223abSTejun Heo 				  struct device_attribute *attr, char *buf)
3201226223abSTejun Heo {
3202226223abSTejun Heo 	struct workqueue_struct *wq = dev_to_wq(dev);
3203226223abSTejun Heo 
3204226223abSTejun Heo 	return scnprintf(buf, PAGE_SIZE, "%d\n", wq->saved_max_active);
3205226223abSTejun Heo }
3206226223abSTejun Heo 
3207226223abSTejun Heo static ssize_t wq_max_active_store(struct device *dev,
3208226223abSTejun Heo 				   struct device_attribute *attr,
3209226223abSTejun Heo 				   const char *buf, size_t count)
3210226223abSTejun Heo {
3211226223abSTejun Heo 	struct workqueue_struct *wq = dev_to_wq(dev);
3212226223abSTejun Heo 	int val;
3213226223abSTejun Heo 
3214226223abSTejun Heo 	if (sscanf(buf, "%d", &val) != 1 || val <= 0)
3215226223abSTejun Heo 		return -EINVAL;
3216226223abSTejun Heo 
3217226223abSTejun Heo 	workqueue_set_max_active(wq, val);
3218226223abSTejun Heo 	return count;
3219226223abSTejun Heo }
3220226223abSTejun Heo 
3221226223abSTejun Heo static struct device_attribute wq_sysfs_attrs[] = {
3222226223abSTejun Heo 	__ATTR(per_cpu, 0444, wq_per_cpu_show, NULL),
3223226223abSTejun Heo 	__ATTR(max_active, 0644, wq_max_active_show, wq_max_active_store),
3224226223abSTejun Heo 	__ATTR_NULL,
3225226223abSTejun Heo };
3226226223abSTejun Heo 
3227226223abSTejun Heo static ssize_t wq_pool_id_show(struct device *dev,
3228226223abSTejun Heo 			       struct device_attribute *attr, char *buf)
3229226223abSTejun Heo {
3230226223abSTejun Heo 	struct workqueue_struct *wq = dev_to_wq(dev);
3231226223abSTejun Heo 	struct worker_pool *pool;
3232226223abSTejun Heo 	int written;
3233226223abSTejun Heo 
3234226223abSTejun Heo 	rcu_read_lock_sched();
3235226223abSTejun Heo 	pool = first_pwq(wq)->pool;
3236226223abSTejun Heo 	written = scnprintf(buf, PAGE_SIZE, "%d\n", pool->id);
3237226223abSTejun Heo 	rcu_read_unlock_sched();
3238226223abSTejun Heo 
3239226223abSTejun Heo 	return written;
3240226223abSTejun Heo }
3241226223abSTejun Heo 
3242226223abSTejun Heo static ssize_t wq_nice_show(struct device *dev, struct device_attribute *attr,
3243226223abSTejun Heo 			    char *buf)
3244226223abSTejun Heo {
3245226223abSTejun Heo 	struct workqueue_struct *wq = dev_to_wq(dev);
3246226223abSTejun Heo 	int written;
3247226223abSTejun Heo 
3248226223abSTejun Heo 	rcu_read_lock_sched();
3249226223abSTejun Heo 	written = scnprintf(buf, PAGE_SIZE, "%d\n",
3250226223abSTejun Heo 			    first_pwq(wq)->pool->attrs->nice);
3251226223abSTejun Heo 	rcu_read_unlock_sched();
3252226223abSTejun Heo 
3253226223abSTejun Heo 	return written;
3254226223abSTejun Heo }
3255226223abSTejun Heo 
3256226223abSTejun Heo /* prepare workqueue_attrs for sysfs store operations */
3257226223abSTejun Heo static struct workqueue_attrs *wq_sysfs_prep_attrs(struct workqueue_struct *wq)
3258226223abSTejun Heo {
3259226223abSTejun Heo 	struct workqueue_attrs *attrs;
3260226223abSTejun Heo 
3261226223abSTejun Heo 	attrs = alloc_workqueue_attrs(GFP_KERNEL);
3262226223abSTejun Heo 	if (!attrs)
3263226223abSTejun Heo 		return NULL;
3264226223abSTejun Heo 
3265226223abSTejun Heo 	rcu_read_lock_sched();
3266226223abSTejun Heo 	copy_workqueue_attrs(attrs, first_pwq(wq)->pool->attrs);
3267226223abSTejun Heo 	rcu_read_unlock_sched();
3268226223abSTejun Heo 	return attrs;
3269226223abSTejun Heo }
3270226223abSTejun Heo 
3271226223abSTejun Heo static ssize_t wq_nice_store(struct device *dev, struct device_attribute *attr,
3272226223abSTejun Heo 			     const char *buf, size_t count)
3273226223abSTejun Heo {
3274226223abSTejun Heo 	struct workqueue_struct *wq = dev_to_wq(dev);
3275226223abSTejun Heo 	struct workqueue_attrs *attrs;
3276226223abSTejun Heo 	int ret;
3277226223abSTejun Heo 
3278226223abSTejun Heo 	attrs = wq_sysfs_prep_attrs(wq);
3279226223abSTejun Heo 	if (!attrs)
3280226223abSTejun Heo 		return -ENOMEM;
3281226223abSTejun Heo 
3282226223abSTejun Heo 	if (sscanf(buf, "%d", &attrs->nice) == 1 &&
3283226223abSTejun Heo 	    attrs->nice >= -20 && attrs->nice <= 19)
3284226223abSTejun Heo 		ret = apply_workqueue_attrs(wq, attrs);
3285226223abSTejun Heo 	else
3286226223abSTejun Heo 		ret = -EINVAL;
3287226223abSTejun Heo 
3288226223abSTejun Heo 	free_workqueue_attrs(attrs);
3289226223abSTejun Heo 	return ret ?: count;
3290226223abSTejun Heo }
3291226223abSTejun Heo 
3292226223abSTejun Heo static ssize_t wq_cpumask_show(struct device *dev,
3293226223abSTejun Heo 			       struct device_attribute *attr, char *buf)
3294226223abSTejun Heo {
3295226223abSTejun Heo 	struct workqueue_struct *wq = dev_to_wq(dev);
3296226223abSTejun Heo 	int written;
3297226223abSTejun Heo 
3298226223abSTejun Heo 	rcu_read_lock_sched();
3299226223abSTejun Heo 	written = cpumask_scnprintf(buf, PAGE_SIZE,
3300226223abSTejun Heo 				    first_pwq(wq)->pool->attrs->cpumask);
3301226223abSTejun Heo 	rcu_read_unlock_sched();
3302226223abSTejun Heo 
3303226223abSTejun Heo 	written += scnprintf(buf + written, PAGE_SIZE - written, "\n");
3304226223abSTejun Heo 	return written;
3305226223abSTejun Heo }
3306226223abSTejun Heo 
3307226223abSTejun Heo static ssize_t wq_cpumask_store(struct device *dev,
3308226223abSTejun Heo 				struct device_attribute *attr,
3309226223abSTejun Heo 				const char *buf, size_t count)
3310226223abSTejun Heo {
3311226223abSTejun Heo 	struct workqueue_struct *wq = dev_to_wq(dev);
3312226223abSTejun Heo 	struct workqueue_attrs *attrs;
3313226223abSTejun Heo 	int ret;
3314226223abSTejun Heo 
3315226223abSTejun Heo 	attrs = wq_sysfs_prep_attrs(wq);
3316226223abSTejun Heo 	if (!attrs)
3317226223abSTejun Heo 		return -ENOMEM;
3318226223abSTejun Heo 
3319226223abSTejun Heo 	ret = cpumask_parse(buf, attrs->cpumask);
3320226223abSTejun Heo 	if (!ret)
3321226223abSTejun Heo 		ret = apply_workqueue_attrs(wq, attrs);
3322226223abSTejun Heo 
3323226223abSTejun Heo 	free_workqueue_attrs(attrs);
3324226223abSTejun Heo 	return ret ?: count;
3325226223abSTejun Heo }
3326226223abSTejun Heo 
3327226223abSTejun Heo static struct device_attribute wq_sysfs_unbound_attrs[] = {
3328226223abSTejun Heo 	__ATTR(pool_id, 0444, wq_pool_id_show, NULL),
3329226223abSTejun Heo 	__ATTR(nice, 0644, wq_nice_show, wq_nice_store),
3330226223abSTejun Heo 	__ATTR(cpumask, 0644, wq_cpumask_show, wq_cpumask_store),
3331226223abSTejun Heo 	__ATTR_NULL,
3332226223abSTejun Heo };
3333226223abSTejun Heo 
3334226223abSTejun Heo static struct bus_type wq_subsys = {
3335226223abSTejun Heo 	.name				= "workqueue",
3336226223abSTejun Heo 	.dev_attrs			= wq_sysfs_attrs,
3337226223abSTejun Heo };
3338226223abSTejun Heo 
3339226223abSTejun Heo static int __init wq_sysfs_init(void)
3340226223abSTejun Heo {
3341226223abSTejun Heo 	return subsys_virtual_register(&wq_subsys, NULL);
3342226223abSTejun Heo }
3343226223abSTejun Heo core_initcall(wq_sysfs_init);
3344226223abSTejun Heo 
3345226223abSTejun Heo static void wq_device_release(struct device *dev)
3346226223abSTejun Heo {
3347226223abSTejun Heo 	struct wq_device *wq_dev = container_of(dev, struct wq_device, dev);
3348226223abSTejun Heo 
3349226223abSTejun Heo 	kfree(wq_dev);
3350226223abSTejun Heo }
3351226223abSTejun Heo 
3352226223abSTejun Heo /**
3353226223abSTejun Heo  * workqueue_sysfs_register - make a workqueue visible in sysfs
3354226223abSTejun Heo  * @wq: the workqueue to register
3355226223abSTejun Heo  *
3356226223abSTejun Heo  * Expose @wq in sysfs under /sys/bus/workqueue/devices.
3357226223abSTejun Heo  * alloc_workqueue*() automatically calls this function if WQ_SYSFS is set
3358226223abSTejun Heo  * which is the preferred method.
3359226223abSTejun Heo  *
3360226223abSTejun Heo  * Workqueue user should use this function directly iff it wants to apply
3361226223abSTejun Heo  * workqueue_attrs before making the workqueue visible in sysfs; otherwise,
3362226223abSTejun Heo  * apply_workqueue_attrs() may race against userland updating the
3363226223abSTejun Heo  * attributes.
3364226223abSTejun Heo  *
3365226223abSTejun Heo  * Returns 0 on success, -errno on failure.
3366226223abSTejun Heo  */
3367226223abSTejun Heo int workqueue_sysfs_register(struct workqueue_struct *wq)
3368226223abSTejun Heo {
3369226223abSTejun Heo 	struct wq_device *wq_dev;
3370226223abSTejun Heo 	int ret;
3371226223abSTejun Heo 
3372226223abSTejun Heo 	/*
3373226223abSTejun Heo 	 * Adjusting max_active or creating new pwqs by applyting
3374226223abSTejun Heo 	 * attributes breaks ordering guarantee.  Disallow exposing ordered
3375226223abSTejun Heo 	 * workqueues.
3376226223abSTejun Heo 	 */
3377226223abSTejun Heo 	if (WARN_ON(wq->flags & __WQ_ORDERED))
3378226223abSTejun Heo 		return -EINVAL;
3379226223abSTejun Heo 
3380226223abSTejun Heo 	wq->wq_dev = wq_dev = kzalloc(sizeof(*wq_dev), GFP_KERNEL);
3381226223abSTejun Heo 	if (!wq_dev)
3382226223abSTejun Heo 		return -ENOMEM;
3383226223abSTejun Heo 
3384226223abSTejun Heo 	wq_dev->wq = wq;
3385226223abSTejun Heo 	wq_dev->dev.bus = &wq_subsys;
3386226223abSTejun Heo 	wq_dev->dev.init_name = wq->name;
3387226223abSTejun Heo 	wq_dev->dev.release = wq_device_release;
3388226223abSTejun Heo 
3389226223abSTejun Heo 	/*
3390226223abSTejun Heo 	 * unbound_attrs are created separately.  Suppress uevent until
3391226223abSTejun Heo 	 * everything is ready.
3392226223abSTejun Heo 	 */
3393226223abSTejun Heo 	dev_set_uevent_suppress(&wq_dev->dev, true);
3394226223abSTejun Heo 
3395226223abSTejun Heo 	ret = device_register(&wq_dev->dev);
3396226223abSTejun Heo 	if (ret) {
3397226223abSTejun Heo 		kfree(wq_dev);
3398226223abSTejun Heo 		wq->wq_dev = NULL;
3399226223abSTejun Heo 		return ret;
3400226223abSTejun Heo 	}
3401226223abSTejun Heo 
3402226223abSTejun Heo 	if (wq->flags & WQ_UNBOUND) {
3403226223abSTejun Heo 		struct device_attribute *attr;
3404226223abSTejun Heo 
3405226223abSTejun Heo 		for (attr = wq_sysfs_unbound_attrs; attr->attr.name; attr++) {
3406226223abSTejun Heo 			ret = device_create_file(&wq_dev->dev, attr);
3407226223abSTejun Heo 			if (ret) {
3408226223abSTejun Heo 				device_unregister(&wq_dev->dev);
3409226223abSTejun Heo 				wq->wq_dev = NULL;
3410226223abSTejun Heo 				return ret;
3411226223abSTejun Heo 			}
3412226223abSTejun Heo 		}
3413226223abSTejun Heo 	}
3414226223abSTejun Heo 
3415226223abSTejun Heo 	kobject_uevent(&wq_dev->dev.kobj, KOBJ_ADD);
3416226223abSTejun Heo 	return 0;
3417226223abSTejun Heo }
3418226223abSTejun Heo 
3419226223abSTejun Heo /**
3420226223abSTejun Heo  * workqueue_sysfs_unregister - undo workqueue_sysfs_register()
3421226223abSTejun Heo  * @wq: the workqueue to unregister
3422226223abSTejun Heo  *
3423226223abSTejun Heo  * If @wq is registered to sysfs by workqueue_sysfs_register(), unregister.
3424226223abSTejun Heo  */
3425226223abSTejun Heo static void workqueue_sysfs_unregister(struct workqueue_struct *wq)
3426226223abSTejun Heo {
3427226223abSTejun Heo 	struct wq_device *wq_dev = wq->wq_dev;
3428226223abSTejun Heo 
3429226223abSTejun Heo 	if (!wq->wq_dev)
3430226223abSTejun Heo 		return;
3431226223abSTejun Heo 
3432226223abSTejun Heo 	wq->wq_dev = NULL;
3433226223abSTejun Heo 	device_unregister(&wq_dev->dev);
3434226223abSTejun Heo }
3435226223abSTejun Heo #else	/* CONFIG_SYSFS */
3436226223abSTejun Heo static void workqueue_sysfs_unregister(struct workqueue_struct *wq)	{ }
3437226223abSTejun Heo #endif	/* CONFIG_SYSFS */
3438226223abSTejun Heo 
34397a4e344cSTejun Heo /**
34407a4e344cSTejun Heo  * free_workqueue_attrs - free a workqueue_attrs
34417a4e344cSTejun Heo  * @attrs: workqueue_attrs to free
34427a4e344cSTejun Heo  *
34437a4e344cSTejun Heo  * Undo alloc_workqueue_attrs().
34447a4e344cSTejun Heo  */
34457a4e344cSTejun Heo void free_workqueue_attrs(struct workqueue_attrs *attrs)
34467a4e344cSTejun Heo {
34477a4e344cSTejun Heo 	if (attrs) {
34487a4e344cSTejun Heo 		free_cpumask_var(attrs->cpumask);
34497a4e344cSTejun Heo 		kfree(attrs);
34507a4e344cSTejun Heo 	}
34517a4e344cSTejun Heo }
34527a4e344cSTejun Heo 
34537a4e344cSTejun Heo /**
34547a4e344cSTejun Heo  * alloc_workqueue_attrs - allocate a workqueue_attrs
34557a4e344cSTejun Heo  * @gfp_mask: allocation mask to use
34567a4e344cSTejun Heo  *
34577a4e344cSTejun Heo  * Allocate a new workqueue_attrs, initialize with default settings and
34587a4e344cSTejun Heo  * return it.  Returns NULL on failure.
34597a4e344cSTejun Heo  */
34607a4e344cSTejun Heo struct workqueue_attrs *alloc_workqueue_attrs(gfp_t gfp_mask)
34617a4e344cSTejun Heo {
34627a4e344cSTejun Heo 	struct workqueue_attrs *attrs;
34637a4e344cSTejun Heo 
34647a4e344cSTejun Heo 	attrs = kzalloc(sizeof(*attrs), gfp_mask);
34657a4e344cSTejun Heo 	if (!attrs)
34667a4e344cSTejun Heo 		goto fail;
34677a4e344cSTejun Heo 	if (!alloc_cpumask_var(&attrs->cpumask, gfp_mask))
34687a4e344cSTejun Heo 		goto fail;
34697a4e344cSTejun Heo 
34707a4e344cSTejun Heo 	cpumask_setall(attrs->cpumask);
34717a4e344cSTejun Heo 	return attrs;
34727a4e344cSTejun Heo fail:
34737a4e344cSTejun Heo 	free_workqueue_attrs(attrs);
34747a4e344cSTejun Heo 	return NULL;
34757a4e344cSTejun Heo }
34767a4e344cSTejun Heo 
347729c91e99STejun Heo static void copy_workqueue_attrs(struct workqueue_attrs *to,
347829c91e99STejun Heo 				 const struct workqueue_attrs *from)
347929c91e99STejun Heo {
348029c91e99STejun Heo 	to->nice = from->nice;
348129c91e99STejun Heo 	cpumask_copy(to->cpumask, from->cpumask);
348229c91e99STejun Heo }
348329c91e99STejun Heo 
348429c91e99STejun Heo /*
348529c91e99STejun Heo  * Hacky implementation of jhash of bitmaps which only considers the
348629c91e99STejun Heo  * specified number of bits.  We probably want a proper implementation in
348729c91e99STejun Heo  * include/linux/jhash.h.
348829c91e99STejun Heo  */
348929c91e99STejun Heo static u32 jhash_bitmap(const unsigned long *bitmap, int bits, u32 hash)
349029c91e99STejun Heo {
349129c91e99STejun Heo 	int nr_longs = bits / BITS_PER_LONG;
349229c91e99STejun Heo 	int nr_leftover = bits % BITS_PER_LONG;
349329c91e99STejun Heo 	unsigned long leftover = 0;
349429c91e99STejun Heo 
349529c91e99STejun Heo 	if (nr_longs)
349629c91e99STejun Heo 		hash = jhash(bitmap, nr_longs * sizeof(long), hash);
349729c91e99STejun Heo 	if (nr_leftover) {
349829c91e99STejun Heo 		bitmap_copy(&leftover, bitmap + nr_longs, nr_leftover);
349929c91e99STejun Heo 		hash = jhash(&leftover, sizeof(long), hash);
350029c91e99STejun Heo 	}
350129c91e99STejun Heo 	return hash;
350229c91e99STejun Heo }
350329c91e99STejun Heo 
350429c91e99STejun Heo /* hash value of the content of @attr */
350529c91e99STejun Heo static u32 wqattrs_hash(const struct workqueue_attrs *attrs)
350629c91e99STejun Heo {
350729c91e99STejun Heo 	u32 hash = 0;
350829c91e99STejun Heo 
350929c91e99STejun Heo 	hash = jhash_1word(attrs->nice, hash);
351029c91e99STejun Heo 	hash = jhash_bitmap(cpumask_bits(attrs->cpumask), nr_cpu_ids, hash);
351129c91e99STejun Heo 	return hash;
351229c91e99STejun Heo }
351329c91e99STejun Heo 
351429c91e99STejun Heo /* content equality test */
351529c91e99STejun Heo static bool wqattrs_equal(const struct workqueue_attrs *a,
351629c91e99STejun Heo 			  const struct workqueue_attrs *b)
351729c91e99STejun Heo {
351829c91e99STejun Heo 	if (a->nice != b->nice)
351929c91e99STejun Heo 		return false;
352029c91e99STejun Heo 	if (!cpumask_equal(a->cpumask, b->cpumask))
352129c91e99STejun Heo 		return false;
352229c91e99STejun Heo 	return true;
352329c91e99STejun Heo }
352429c91e99STejun Heo 
35257a4e344cSTejun Heo /**
35267a4e344cSTejun Heo  * init_worker_pool - initialize a newly zalloc'd worker_pool
35277a4e344cSTejun Heo  * @pool: worker_pool to initialize
35287a4e344cSTejun Heo  *
35297a4e344cSTejun Heo  * Initiailize a newly zalloc'd @pool.  It also allocates @pool->attrs.
353029c91e99STejun Heo  * Returns 0 on success, -errno on failure.  Even on failure, all fields
353129c91e99STejun Heo  * inside @pool proper are initialized and put_unbound_pool() can be called
353229c91e99STejun Heo  * on @pool safely to release it.
35337a4e344cSTejun Heo  */
35347a4e344cSTejun Heo static int init_worker_pool(struct worker_pool *pool)
35354e1a1f9aSTejun Heo {
35364e1a1f9aSTejun Heo 	spin_lock_init(&pool->lock);
353729c91e99STejun Heo 	pool->id = -1;
353829c91e99STejun Heo 	pool->cpu = -1;
35394e1a1f9aSTejun Heo 	pool->flags |= POOL_DISASSOCIATED;
35404e1a1f9aSTejun Heo 	INIT_LIST_HEAD(&pool->worklist);
35414e1a1f9aSTejun Heo 	INIT_LIST_HEAD(&pool->idle_list);
35424e1a1f9aSTejun Heo 	hash_init(pool->busy_hash);
35434e1a1f9aSTejun Heo 
35444e1a1f9aSTejun Heo 	init_timer_deferrable(&pool->idle_timer);
35454e1a1f9aSTejun Heo 	pool->idle_timer.function = idle_worker_timeout;
35464e1a1f9aSTejun Heo 	pool->idle_timer.data = (unsigned long)pool;
35474e1a1f9aSTejun Heo 
35484e1a1f9aSTejun Heo 	setup_timer(&pool->mayday_timer, pool_mayday_timeout,
35494e1a1f9aSTejun Heo 		    (unsigned long)pool);
35504e1a1f9aSTejun Heo 
35514e1a1f9aSTejun Heo 	mutex_init(&pool->manager_arb);
35524e1a1f9aSTejun Heo 	mutex_init(&pool->assoc_mutex);
35534e1a1f9aSTejun Heo 	ida_init(&pool->worker_ida);
35547a4e344cSTejun Heo 
355529c91e99STejun Heo 	INIT_HLIST_NODE(&pool->hash_node);
355629c91e99STejun Heo 	pool->refcnt = 1;
355729c91e99STejun Heo 
355829c91e99STejun Heo 	/* shouldn't fail above this point */
35597a4e344cSTejun Heo 	pool->attrs = alloc_workqueue_attrs(GFP_KERNEL);
35607a4e344cSTejun Heo 	if (!pool->attrs)
35617a4e344cSTejun Heo 		return -ENOMEM;
35627a4e344cSTejun Heo 	return 0;
35634e1a1f9aSTejun Heo }
35644e1a1f9aSTejun Heo 
356529c91e99STejun Heo static void rcu_free_pool(struct rcu_head *rcu)
356629c91e99STejun Heo {
356729c91e99STejun Heo 	struct worker_pool *pool = container_of(rcu, struct worker_pool, rcu);
356829c91e99STejun Heo 
356929c91e99STejun Heo 	ida_destroy(&pool->worker_ida);
357029c91e99STejun Heo 	free_workqueue_attrs(pool->attrs);
357129c91e99STejun Heo 	kfree(pool);
357229c91e99STejun Heo }
357329c91e99STejun Heo 
357429c91e99STejun Heo /**
357529c91e99STejun Heo  * put_unbound_pool - put a worker_pool
357629c91e99STejun Heo  * @pool: worker_pool to put
357729c91e99STejun Heo  *
357829c91e99STejun Heo  * Put @pool.  If its refcnt reaches zero, it gets destroyed in sched-RCU
357929c91e99STejun Heo  * safe manner.
358029c91e99STejun Heo  */
358129c91e99STejun Heo static void put_unbound_pool(struct worker_pool *pool)
358229c91e99STejun Heo {
358329c91e99STejun Heo 	struct worker *worker;
358429c91e99STejun Heo 
358529c91e99STejun Heo 	spin_lock_irq(&workqueue_lock);
358629c91e99STejun Heo 	if (--pool->refcnt) {
358729c91e99STejun Heo 		spin_unlock_irq(&workqueue_lock);
358829c91e99STejun Heo 		return;
358929c91e99STejun Heo 	}
359029c91e99STejun Heo 
359129c91e99STejun Heo 	/* sanity checks */
359229c91e99STejun Heo 	if (WARN_ON(!(pool->flags & POOL_DISASSOCIATED)) ||
359329c91e99STejun Heo 	    WARN_ON(!list_empty(&pool->worklist))) {
359429c91e99STejun Heo 		spin_unlock_irq(&workqueue_lock);
359529c91e99STejun Heo 		return;
359629c91e99STejun Heo 	}
359729c91e99STejun Heo 
359829c91e99STejun Heo 	/* release id and unhash */
359929c91e99STejun Heo 	if (pool->id >= 0)
360029c91e99STejun Heo 		idr_remove(&worker_pool_idr, pool->id);
360129c91e99STejun Heo 	hash_del(&pool->hash_node);
360229c91e99STejun Heo 
360329c91e99STejun Heo 	spin_unlock_irq(&workqueue_lock);
360429c91e99STejun Heo 
360529c91e99STejun Heo 	/* lock out manager and destroy all workers */
360629c91e99STejun Heo 	mutex_lock(&pool->manager_arb);
360729c91e99STejun Heo 	spin_lock_irq(&pool->lock);
360829c91e99STejun Heo 
360929c91e99STejun Heo 	while ((worker = first_worker(pool)))
361029c91e99STejun Heo 		destroy_worker(worker);
361129c91e99STejun Heo 	WARN_ON(pool->nr_workers || pool->nr_idle);
361229c91e99STejun Heo 
361329c91e99STejun Heo 	spin_unlock_irq(&pool->lock);
361429c91e99STejun Heo 	mutex_unlock(&pool->manager_arb);
361529c91e99STejun Heo 
361629c91e99STejun Heo 	/* shut down the timers */
361729c91e99STejun Heo 	del_timer_sync(&pool->idle_timer);
361829c91e99STejun Heo 	del_timer_sync(&pool->mayday_timer);
361929c91e99STejun Heo 
362029c91e99STejun Heo 	/* sched-RCU protected to allow dereferences from get_work_pool() */
362129c91e99STejun Heo 	call_rcu_sched(&pool->rcu, rcu_free_pool);
362229c91e99STejun Heo }
362329c91e99STejun Heo 
362429c91e99STejun Heo /**
362529c91e99STejun Heo  * get_unbound_pool - get a worker_pool with the specified attributes
362629c91e99STejun Heo  * @attrs: the attributes of the worker_pool to get
362729c91e99STejun Heo  *
362829c91e99STejun Heo  * Obtain a worker_pool which has the same attributes as @attrs, bump the
362929c91e99STejun Heo  * reference count and return it.  If there already is a matching
363029c91e99STejun Heo  * worker_pool, it will be used; otherwise, this function attempts to
363129c91e99STejun Heo  * create a new one.  On failure, returns NULL.
363229c91e99STejun Heo  */
363329c91e99STejun Heo static struct worker_pool *get_unbound_pool(const struct workqueue_attrs *attrs)
363429c91e99STejun Heo {
363529c91e99STejun Heo 	static DEFINE_MUTEX(create_mutex);
363629c91e99STejun Heo 	u32 hash = wqattrs_hash(attrs);
363729c91e99STejun Heo 	struct worker_pool *pool;
363829c91e99STejun Heo 	struct worker *worker;
363929c91e99STejun Heo 
364029c91e99STejun Heo 	mutex_lock(&create_mutex);
364129c91e99STejun Heo 
364229c91e99STejun Heo 	/* do we already have a matching pool? */
364329c91e99STejun Heo 	spin_lock_irq(&workqueue_lock);
364429c91e99STejun Heo 	hash_for_each_possible(unbound_pool_hash, pool, hash_node, hash) {
364529c91e99STejun Heo 		if (wqattrs_equal(pool->attrs, attrs)) {
364629c91e99STejun Heo 			pool->refcnt++;
364729c91e99STejun Heo 			goto out_unlock;
364829c91e99STejun Heo 		}
364929c91e99STejun Heo 	}
365029c91e99STejun Heo 	spin_unlock_irq(&workqueue_lock);
365129c91e99STejun Heo 
365229c91e99STejun Heo 	/* nope, create a new one */
365329c91e99STejun Heo 	pool = kzalloc(sizeof(*pool), GFP_KERNEL);
365429c91e99STejun Heo 	if (!pool || init_worker_pool(pool) < 0)
365529c91e99STejun Heo 		goto fail;
365629c91e99STejun Heo 
36578864b4e5STejun Heo 	lockdep_set_subclass(&pool->lock, 1);	/* see put_pwq() */
365829c91e99STejun Heo 	copy_workqueue_attrs(pool->attrs, attrs);
365929c91e99STejun Heo 
366029c91e99STejun Heo 	if (worker_pool_assign_id(pool) < 0)
366129c91e99STejun Heo 		goto fail;
366229c91e99STejun Heo 
366329c91e99STejun Heo 	/* create and start the initial worker */
366429c91e99STejun Heo 	worker = create_worker(pool);
366529c91e99STejun Heo 	if (!worker)
366629c91e99STejun Heo 		goto fail;
366729c91e99STejun Heo 
366829c91e99STejun Heo 	spin_lock_irq(&pool->lock);
366929c91e99STejun Heo 	start_worker(worker);
367029c91e99STejun Heo 	spin_unlock_irq(&pool->lock);
367129c91e99STejun Heo 
367229c91e99STejun Heo 	/* install */
367329c91e99STejun Heo 	spin_lock_irq(&workqueue_lock);
367429c91e99STejun Heo 	hash_add(unbound_pool_hash, &pool->hash_node, hash);
367529c91e99STejun Heo out_unlock:
367629c91e99STejun Heo 	spin_unlock_irq(&workqueue_lock);
367729c91e99STejun Heo 	mutex_unlock(&create_mutex);
367829c91e99STejun Heo 	return pool;
367929c91e99STejun Heo fail:
368029c91e99STejun Heo 	mutex_unlock(&create_mutex);
368129c91e99STejun Heo 	if (pool)
368229c91e99STejun Heo 		put_unbound_pool(pool);
368329c91e99STejun Heo 	return NULL;
368429c91e99STejun Heo }
368529c91e99STejun Heo 
36868864b4e5STejun Heo static void rcu_free_pwq(struct rcu_head *rcu)
36878864b4e5STejun Heo {
36888864b4e5STejun Heo 	kmem_cache_free(pwq_cache,
36898864b4e5STejun Heo 			container_of(rcu, struct pool_workqueue, rcu));
36908864b4e5STejun Heo }
36918864b4e5STejun Heo 
36928864b4e5STejun Heo /*
36938864b4e5STejun Heo  * Scheduled on system_wq by put_pwq() when an unbound pwq hits zero refcnt
36948864b4e5STejun Heo  * and needs to be destroyed.
36958864b4e5STejun Heo  */
36968864b4e5STejun Heo static void pwq_unbound_release_workfn(struct work_struct *work)
36978864b4e5STejun Heo {
36988864b4e5STejun Heo 	struct pool_workqueue *pwq = container_of(work, struct pool_workqueue,
36998864b4e5STejun Heo 						  unbound_release_work);
37008864b4e5STejun Heo 	struct workqueue_struct *wq = pwq->wq;
37018864b4e5STejun Heo 	struct worker_pool *pool = pwq->pool;
37028864b4e5STejun Heo 
37038864b4e5STejun Heo 	if (WARN_ON_ONCE(!(wq->flags & WQ_UNBOUND)))
37048864b4e5STejun Heo 		return;
37058864b4e5STejun Heo 
370675ccf595STejun Heo 	/*
370775ccf595STejun Heo 	 * Unlink @pwq.  Synchronization against flush_mutex isn't strictly
370875ccf595STejun Heo 	 * necessary on release but do it anyway.  It's easier to verify
370975ccf595STejun Heo 	 * and consistent with the linking path.
371075ccf595STejun Heo 	 */
371175ccf595STejun Heo 	mutex_lock(&wq->flush_mutex);
37128864b4e5STejun Heo 	spin_lock_irq(&workqueue_lock);
37138864b4e5STejun Heo 	list_del_rcu(&pwq->pwqs_node);
37148864b4e5STejun Heo 	spin_unlock_irq(&workqueue_lock);
371575ccf595STejun Heo 	mutex_unlock(&wq->flush_mutex);
37168864b4e5STejun Heo 
37178864b4e5STejun Heo 	put_unbound_pool(pool);
37188864b4e5STejun Heo 	call_rcu_sched(&pwq->rcu, rcu_free_pwq);
37198864b4e5STejun Heo 
37208864b4e5STejun Heo 	/*
37218864b4e5STejun Heo 	 * If we're the last pwq going away, @wq is already dead and no one
37228864b4e5STejun Heo 	 * is gonna access it anymore.  Free it.
37238864b4e5STejun Heo 	 */
37248864b4e5STejun Heo 	if (list_empty(&wq->pwqs))
37258864b4e5STejun Heo 		kfree(wq);
37268864b4e5STejun Heo }
37278864b4e5STejun Heo 
3728*0fbd95aaSTejun Heo /**
3729*0fbd95aaSTejun Heo  * pwq_set_max_active - adjust max_active of a pwq
3730*0fbd95aaSTejun Heo  * @pwq: target pool_workqueue
3731*0fbd95aaSTejun Heo  * @max_active: new max_active value.
3732*0fbd95aaSTejun Heo  *
3733*0fbd95aaSTejun Heo  * Set @pwq->max_active to @max_active and activate delayed works if
3734*0fbd95aaSTejun Heo  * increased.
3735*0fbd95aaSTejun Heo  *
3736*0fbd95aaSTejun Heo  * CONTEXT:
3737*0fbd95aaSTejun Heo  * spin_lock_irq(pool->lock).
3738*0fbd95aaSTejun Heo  */
3739*0fbd95aaSTejun Heo static void pwq_set_max_active(struct pool_workqueue *pwq, int max_active)
3740*0fbd95aaSTejun Heo {
3741*0fbd95aaSTejun Heo 	pwq->max_active = max_active;
3742*0fbd95aaSTejun Heo 
3743*0fbd95aaSTejun Heo 	while (!list_empty(&pwq->delayed_works) &&
3744*0fbd95aaSTejun Heo 	       pwq->nr_active < pwq->max_active)
3745*0fbd95aaSTejun Heo 		pwq_activate_first_delayed(pwq);
3746*0fbd95aaSTejun Heo }
3747*0fbd95aaSTejun Heo 
3748d2c1d404STejun Heo static void init_and_link_pwq(struct pool_workqueue *pwq,
3749d2c1d404STejun Heo 			      struct workqueue_struct *wq,
37509e8cd2f5STejun Heo 			      struct worker_pool *pool,
37519e8cd2f5STejun Heo 			      struct pool_workqueue **p_last_pwq)
3752d2c1d404STejun Heo {
3753d2c1d404STejun Heo 	BUG_ON((unsigned long)pwq & WORK_STRUCT_FLAG_MASK);
3754d2c1d404STejun Heo 
3755d2c1d404STejun Heo 	pwq->pool = pool;
3756d2c1d404STejun Heo 	pwq->wq = wq;
3757d2c1d404STejun Heo 	pwq->flush_color = -1;
37588864b4e5STejun Heo 	pwq->refcnt = 1;
3759d2c1d404STejun Heo 	pwq->max_active = wq->saved_max_active;
3760d2c1d404STejun Heo 	INIT_LIST_HEAD(&pwq->delayed_works);
3761d2c1d404STejun Heo 	INIT_LIST_HEAD(&pwq->mayday_node);
37628864b4e5STejun Heo 	INIT_WORK(&pwq->unbound_release_work, pwq_unbound_release_workfn);
3763d2c1d404STejun Heo 
376475ccf595STejun Heo 	/*
376575ccf595STejun Heo 	 * Link @pwq and set the matching work_color.  This is synchronized
376675ccf595STejun Heo 	 * with flush_mutex to avoid confusing flush_workqueue().
376775ccf595STejun Heo 	 */
376875ccf595STejun Heo 	mutex_lock(&wq->flush_mutex);
376975ccf595STejun Heo 	spin_lock_irq(&workqueue_lock);
377075ccf595STejun Heo 
37719e8cd2f5STejun Heo 	if (p_last_pwq)
37729e8cd2f5STejun Heo 		*p_last_pwq = first_pwq(wq);
377375ccf595STejun Heo 	pwq->work_color = wq->work_color;
37749e8cd2f5STejun Heo 	list_add_rcu(&pwq->pwqs_node, &wq->pwqs);
377575ccf595STejun Heo 
377675ccf595STejun Heo 	spin_unlock_irq(&workqueue_lock);
377775ccf595STejun Heo 	mutex_unlock(&wq->flush_mutex);
3778d2c1d404STejun Heo }
3779d2c1d404STejun Heo 
37809e8cd2f5STejun Heo /**
37819e8cd2f5STejun Heo  * apply_workqueue_attrs - apply new workqueue_attrs to an unbound workqueue
37829e8cd2f5STejun Heo  * @wq: the target workqueue
37839e8cd2f5STejun Heo  * @attrs: the workqueue_attrs to apply, allocated with alloc_workqueue_attrs()
37849e8cd2f5STejun Heo  *
37859e8cd2f5STejun Heo  * Apply @attrs to an unbound workqueue @wq.  If @attrs doesn't match the
37869e8cd2f5STejun Heo  * current attributes, a new pwq is created and made the first pwq which
37879e8cd2f5STejun Heo  * will serve all new work items.  Older pwqs are released as in-flight
37889e8cd2f5STejun Heo  * work items finish.  Note that a work item which repeatedly requeues
37899e8cd2f5STejun Heo  * itself back-to-back will stay on its current pwq.
37909e8cd2f5STejun Heo  *
37919e8cd2f5STejun Heo  * Performs GFP_KERNEL allocations.  Returns 0 on success and -errno on
37929e8cd2f5STejun Heo  * failure.
37939e8cd2f5STejun Heo  */
37949e8cd2f5STejun Heo int apply_workqueue_attrs(struct workqueue_struct *wq,
37959e8cd2f5STejun Heo 			  const struct workqueue_attrs *attrs)
37969e8cd2f5STejun Heo {
37979e8cd2f5STejun Heo 	struct pool_workqueue *pwq, *last_pwq;
37989e8cd2f5STejun Heo 	struct worker_pool *pool;
37999e8cd2f5STejun Heo 
38008719dceaSTejun Heo 	/* only unbound workqueues can change attributes */
38019e8cd2f5STejun Heo 	if (WARN_ON(!(wq->flags & WQ_UNBOUND)))
38029e8cd2f5STejun Heo 		return -EINVAL;
38039e8cd2f5STejun Heo 
38048719dceaSTejun Heo 	/* creating multiple pwqs breaks ordering guarantee */
38058719dceaSTejun Heo 	if (WARN_ON((wq->flags & __WQ_ORDERED) && !list_empty(&wq->pwqs)))
38068719dceaSTejun Heo 		return -EINVAL;
38078719dceaSTejun Heo 
38089e8cd2f5STejun Heo 	pwq = kmem_cache_zalloc(pwq_cache, GFP_KERNEL);
38099e8cd2f5STejun Heo 	if (!pwq)
38109e8cd2f5STejun Heo 		return -ENOMEM;
38119e8cd2f5STejun Heo 
38129e8cd2f5STejun Heo 	pool = get_unbound_pool(attrs);
38139e8cd2f5STejun Heo 	if (!pool) {
38149e8cd2f5STejun Heo 		kmem_cache_free(pwq_cache, pwq);
38159e8cd2f5STejun Heo 		return -ENOMEM;
38169e8cd2f5STejun Heo 	}
38179e8cd2f5STejun Heo 
38189e8cd2f5STejun Heo 	init_and_link_pwq(pwq, wq, pool, &last_pwq);
38199e8cd2f5STejun Heo 	if (last_pwq) {
38209e8cd2f5STejun Heo 		spin_lock_irq(&last_pwq->pool->lock);
38219e8cd2f5STejun Heo 		put_pwq(last_pwq);
38229e8cd2f5STejun Heo 		spin_unlock_irq(&last_pwq->pool->lock);
38239e8cd2f5STejun Heo 	}
38249e8cd2f5STejun Heo 
38259e8cd2f5STejun Heo 	return 0;
38269e8cd2f5STejun Heo }
38279e8cd2f5STejun Heo 
382830cdf249STejun Heo static int alloc_and_link_pwqs(struct workqueue_struct *wq)
38291da177e4SLinus Torvalds {
383049e3cf44STejun Heo 	bool highpri = wq->flags & WQ_HIGHPRI;
383130cdf249STejun Heo 	int cpu;
3832e1d8aa9fSFrederic Weisbecker 
383330cdf249STejun Heo 	if (!(wq->flags & WQ_UNBOUND)) {
3834420c0ddbSTejun Heo 		wq->cpu_pwqs = alloc_percpu(struct pool_workqueue);
3835420c0ddbSTejun Heo 		if (!wq->cpu_pwqs)
383630cdf249STejun Heo 			return -ENOMEM;
383730cdf249STejun Heo 
383830cdf249STejun Heo 		for_each_possible_cpu(cpu) {
38397fb98ea7STejun Heo 			struct pool_workqueue *pwq =
38407fb98ea7STejun Heo 				per_cpu_ptr(wq->cpu_pwqs, cpu);
38417a62c2c8STejun Heo 			struct worker_pool *cpu_pools =
3842f02ae73aSTejun Heo 				per_cpu(cpu_worker_pools, cpu);
384330cdf249STejun Heo 
38449e8cd2f5STejun Heo 			init_and_link_pwq(pwq, wq, &cpu_pools[highpri], NULL);
384530cdf249STejun Heo 		}
384630cdf249STejun Heo 		return 0;
38479e8cd2f5STejun Heo 	} else {
38489e8cd2f5STejun Heo 		return apply_workqueue_attrs(wq, unbound_std_wq_attrs[highpri]);
38499e8cd2f5STejun Heo 	}
38500f900049STejun Heo }
38510f900049STejun Heo 
3852f3421797STejun Heo static int wq_clamp_max_active(int max_active, unsigned int flags,
3853f3421797STejun Heo 			       const char *name)
3854b71ab8c2STejun Heo {
3855f3421797STejun Heo 	int lim = flags & WQ_UNBOUND ? WQ_UNBOUND_MAX_ACTIVE : WQ_MAX_ACTIVE;
3856f3421797STejun Heo 
3857f3421797STejun Heo 	if (max_active < 1 || max_active > lim)
3858044c782cSValentin Ilie 		pr_warn("workqueue: max_active %d requested for %s is out of range, clamping between %d and %d\n",
3859f3421797STejun Heo 			max_active, name, 1, lim);
3860b71ab8c2STejun Heo 
3861f3421797STejun Heo 	return clamp_val(max_active, 1, lim);
3862b71ab8c2STejun Heo }
3863b71ab8c2STejun Heo 
3864b196be89STejun Heo struct workqueue_struct *__alloc_workqueue_key(const char *fmt,
386597e37d7bSTejun Heo 					       unsigned int flags,
38661e19ffc6STejun Heo 					       int max_active,
3867eb13ba87SJohannes Berg 					       struct lock_class_key *key,
3868b196be89STejun Heo 					       const char *lock_name, ...)
38693af24433SOleg Nesterov {
3870b196be89STejun Heo 	va_list args, args1;
38713af24433SOleg Nesterov 	struct workqueue_struct *wq;
387249e3cf44STejun Heo 	struct pool_workqueue *pwq;
3873b196be89STejun Heo 	size_t namelen;
3874b196be89STejun Heo 
3875b196be89STejun Heo 	/* determine namelen, allocate wq and format name */
3876b196be89STejun Heo 	va_start(args, lock_name);
3877b196be89STejun Heo 	va_copy(args1, args);
3878b196be89STejun Heo 	namelen = vsnprintf(NULL, 0, fmt, args) + 1;
3879b196be89STejun Heo 
3880b196be89STejun Heo 	wq = kzalloc(sizeof(*wq) + namelen, GFP_KERNEL);
3881b196be89STejun Heo 	if (!wq)
3882d2c1d404STejun Heo 		return NULL;
3883b196be89STejun Heo 
3884b196be89STejun Heo 	vsnprintf(wq->name, namelen, fmt, args1);
3885b196be89STejun Heo 	va_end(args);
3886b196be89STejun Heo 	va_end(args1);
38873af24433SOleg Nesterov 
3888d320c038STejun Heo 	max_active = max_active ?: WQ_DFL_ACTIVE;
3889b196be89STejun Heo 	max_active = wq_clamp_max_active(max_active, flags, wq->name);
38903af24433SOleg Nesterov 
3891b196be89STejun Heo 	/* init wq */
389297e37d7bSTejun Heo 	wq->flags = flags;
3893a0a1a5fdSTejun Heo 	wq->saved_max_active = max_active;
389473f53c4aSTejun Heo 	mutex_init(&wq->flush_mutex);
3895112202d9STejun Heo 	atomic_set(&wq->nr_pwqs_to_flush, 0);
389630cdf249STejun Heo 	INIT_LIST_HEAD(&wq->pwqs);
389773f53c4aSTejun Heo 	INIT_LIST_HEAD(&wq->flusher_queue);
389873f53c4aSTejun Heo 	INIT_LIST_HEAD(&wq->flusher_overflow);
3899493a1724STejun Heo 	INIT_LIST_HEAD(&wq->maydays);
39003af24433SOleg Nesterov 
3901eb13ba87SJohannes Berg 	lockdep_init_map(&wq->lockdep_map, lock_name, key, 0);
3902cce1a165SOleg Nesterov 	INIT_LIST_HEAD(&wq->list);
39033af24433SOleg Nesterov 
390430cdf249STejun Heo 	if (alloc_and_link_pwqs(wq) < 0)
3905d2c1d404STejun Heo 		goto err_free_wq;
39061537663fSTejun Heo 
3907493008a8STejun Heo 	/*
3908493008a8STejun Heo 	 * Workqueues which may be used during memory reclaim should
3909493008a8STejun Heo 	 * have a rescuer to guarantee forward progress.
3910493008a8STejun Heo 	 */
3911493008a8STejun Heo 	if (flags & WQ_MEM_RECLAIM) {
3912e22bee78STejun Heo 		struct worker *rescuer;
3913e22bee78STejun Heo 
3914d2c1d404STejun Heo 		rescuer = alloc_worker();
3915e22bee78STejun Heo 		if (!rescuer)
3916d2c1d404STejun Heo 			goto err_destroy;
3917e22bee78STejun Heo 
3918111c225aSTejun Heo 		rescuer->rescue_wq = wq;
3919111c225aSTejun Heo 		rescuer->task = kthread_create(rescuer_thread, rescuer, "%s",
3920b196be89STejun Heo 					       wq->name);
3921d2c1d404STejun Heo 		if (IS_ERR(rescuer->task)) {
3922d2c1d404STejun Heo 			kfree(rescuer);
3923d2c1d404STejun Heo 			goto err_destroy;
3924d2c1d404STejun Heo 		}
3925e22bee78STejun Heo 
3926d2c1d404STejun Heo 		wq->rescuer = rescuer;
3927e22bee78STejun Heo 		rescuer->task->flags |= PF_THREAD_BOUND;
3928e22bee78STejun Heo 		wake_up_process(rescuer->task);
39293af24433SOleg Nesterov 	}
39301537663fSTejun Heo 
3931226223abSTejun Heo 	if ((wq->flags & WQ_SYSFS) && workqueue_sysfs_register(wq))
3932226223abSTejun Heo 		goto err_destroy;
3933226223abSTejun Heo 
39343af24433SOleg Nesterov 	/*
3935a0a1a5fdSTejun Heo 	 * workqueue_lock protects global freeze state and workqueues
3936a0a1a5fdSTejun Heo 	 * list.  Grab it, set max_active accordingly and add the new
3937a0a1a5fdSTejun Heo 	 * workqueue to workqueues list.
39383af24433SOleg Nesterov 	 */
3939e98d5b16STejun Heo 	spin_lock_irq(&workqueue_lock);
3940a0a1a5fdSTejun Heo 
394158a69cb4STejun Heo 	if (workqueue_freezing && wq->flags & WQ_FREEZABLE)
394249e3cf44STejun Heo 		for_each_pwq(pwq, wq)
394349e3cf44STejun Heo 			pwq->max_active = 0;
3944a0a1a5fdSTejun Heo 
39453af24433SOleg Nesterov 	list_add(&wq->list, &workqueues);
3946a0a1a5fdSTejun Heo 
3947e98d5b16STejun Heo 	spin_unlock_irq(&workqueue_lock);
39483af24433SOleg Nesterov 
39493af24433SOleg Nesterov 	return wq;
3950d2c1d404STejun Heo 
3951d2c1d404STejun Heo err_free_wq:
39524690c4abSTejun Heo 	kfree(wq);
3953d2c1d404STejun Heo 	return NULL;
3954d2c1d404STejun Heo err_destroy:
3955d2c1d404STejun Heo 	destroy_workqueue(wq);
39564690c4abSTejun Heo 	return NULL;
39571da177e4SLinus Torvalds }
3958d320c038STejun Heo EXPORT_SYMBOL_GPL(__alloc_workqueue_key);
39591da177e4SLinus Torvalds 
39603af24433SOleg Nesterov /**
39613af24433SOleg Nesterov  * destroy_workqueue - safely terminate a workqueue
39623af24433SOleg Nesterov  * @wq: target workqueue
39633af24433SOleg Nesterov  *
39643af24433SOleg Nesterov  * Safely destroy a workqueue. All work currently pending will be done first.
39653af24433SOleg Nesterov  */
39663af24433SOleg Nesterov void destroy_workqueue(struct workqueue_struct *wq)
39673af24433SOleg Nesterov {
396849e3cf44STejun Heo 	struct pool_workqueue *pwq;
39693af24433SOleg Nesterov 
39709c5a2ba7STejun Heo 	/* drain it before proceeding with destruction */
39719c5a2ba7STejun Heo 	drain_workqueue(wq);
3972c8efcc25STejun Heo 
397376af4d93STejun Heo 	spin_lock_irq(&workqueue_lock);
397476af4d93STejun Heo 
39756183c009STejun Heo 	/* sanity checks */
397649e3cf44STejun Heo 	for_each_pwq(pwq, wq) {
39776183c009STejun Heo 		int i;
39786183c009STejun Heo 
397976af4d93STejun Heo 		for (i = 0; i < WORK_NR_COLORS; i++) {
398076af4d93STejun Heo 			if (WARN_ON(pwq->nr_in_flight[i])) {
398176af4d93STejun Heo 				spin_unlock_irq(&workqueue_lock);
39826183c009STejun Heo 				return;
398376af4d93STejun Heo 			}
398476af4d93STejun Heo 		}
398576af4d93STejun Heo 
39868864b4e5STejun Heo 		if (WARN_ON(pwq->refcnt > 1) ||
39878864b4e5STejun Heo 		    WARN_ON(pwq->nr_active) ||
398876af4d93STejun Heo 		    WARN_ON(!list_empty(&pwq->delayed_works))) {
398976af4d93STejun Heo 			spin_unlock_irq(&workqueue_lock);
39906183c009STejun Heo 			return;
39916183c009STejun Heo 		}
399276af4d93STejun Heo 	}
39936183c009STejun Heo 
3994a0a1a5fdSTejun Heo 	/*
3995a0a1a5fdSTejun Heo 	 * wq list is used to freeze wq, remove from list after
3996a0a1a5fdSTejun Heo 	 * flushing is complete in case freeze races us.
3997a0a1a5fdSTejun Heo 	 */
3998d2c1d404STejun Heo 	list_del_init(&wq->list);
399976af4d93STejun Heo 
4000e98d5b16STejun Heo 	spin_unlock_irq(&workqueue_lock);
40013af24433SOleg Nesterov 
4002226223abSTejun Heo 	workqueue_sysfs_unregister(wq);
4003226223abSTejun Heo 
4004493008a8STejun Heo 	if (wq->rescuer) {
4005e22bee78STejun Heo 		kthread_stop(wq->rescuer->task);
40068d9df9f0SXiaotian Feng 		kfree(wq->rescuer);
4007493008a8STejun Heo 		wq->rescuer = NULL;
4008e22bee78STejun Heo 	}
4009e22bee78STejun Heo 
40108864b4e5STejun Heo 	if (!(wq->flags & WQ_UNBOUND)) {
401129c91e99STejun Heo 		/*
40128864b4e5STejun Heo 		 * The base ref is never dropped on per-cpu pwqs.  Directly
40138864b4e5STejun Heo 		 * free the pwqs and wq.
401429c91e99STejun Heo 		 */
40158864b4e5STejun Heo 		free_percpu(wq->cpu_pwqs);
40168864b4e5STejun Heo 		kfree(wq);
40178864b4e5STejun Heo 	} else {
40188864b4e5STejun Heo 		/*
40198864b4e5STejun Heo 		 * We're the sole accessor of @wq at this point.  Directly
40208864b4e5STejun Heo 		 * access the first pwq and put the base ref.  As both pwqs
40218864b4e5STejun Heo 		 * and pools are sched-RCU protected, the lock operations
40228864b4e5STejun Heo 		 * are safe.  @wq will be freed when the last pwq is
40238864b4e5STejun Heo 		 * released.
40248864b4e5STejun Heo 		 */
402529c91e99STejun Heo 		pwq = list_first_entry(&wq->pwqs, struct pool_workqueue,
402629c91e99STejun Heo 				       pwqs_node);
40278864b4e5STejun Heo 		spin_lock_irq(&pwq->pool->lock);
40288864b4e5STejun Heo 		put_pwq(pwq);
40298864b4e5STejun Heo 		spin_unlock_irq(&pwq->pool->lock);
403029c91e99STejun Heo 	}
40313af24433SOleg Nesterov }
40323af24433SOleg Nesterov EXPORT_SYMBOL_GPL(destroy_workqueue);
40333af24433SOleg Nesterov 
4034dcd989cbSTejun Heo /**
4035dcd989cbSTejun Heo  * workqueue_set_max_active - adjust max_active of a workqueue
4036dcd989cbSTejun Heo  * @wq: target workqueue
4037dcd989cbSTejun Heo  * @max_active: new max_active value.
4038dcd989cbSTejun Heo  *
4039dcd989cbSTejun Heo  * Set max_active of @wq to @max_active.
4040dcd989cbSTejun Heo  *
4041dcd989cbSTejun Heo  * CONTEXT:
4042dcd989cbSTejun Heo  * Don't call from IRQ context.
4043dcd989cbSTejun Heo  */
4044dcd989cbSTejun Heo void workqueue_set_max_active(struct workqueue_struct *wq, int max_active)
4045dcd989cbSTejun Heo {
404649e3cf44STejun Heo 	struct pool_workqueue *pwq;
4047dcd989cbSTejun Heo 
40488719dceaSTejun Heo 	/* disallow meddling with max_active for ordered workqueues */
40498719dceaSTejun Heo 	if (WARN_ON(wq->flags & __WQ_ORDERED))
40508719dceaSTejun Heo 		return;
40518719dceaSTejun Heo 
4052f3421797STejun Heo 	max_active = wq_clamp_max_active(max_active, wq->flags, wq->name);
4053dcd989cbSTejun Heo 
4054e98d5b16STejun Heo 	spin_lock_irq(&workqueue_lock);
4055dcd989cbSTejun Heo 
4056dcd989cbSTejun Heo 	wq->saved_max_active = max_active;
4057dcd989cbSTejun Heo 
405849e3cf44STejun Heo 	for_each_pwq(pwq, wq) {
4059112202d9STejun Heo 		struct worker_pool *pool = pwq->pool;
4060dcd989cbSTejun Heo 
4061e98d5b16STejun Heo 		spin_lock(&pool->lock);
4062dcd989cbSTejun Heo 
406358a69cb4STejun Heo 		if (!(wq->flags & WQ_FREEZABLE) ||
406435b6bb63STejun Heo 		    !(pool->flags & POOL_FREEZING))
4065112202d9STejun Heo 			pwq_set_max_active(pwq, max_active);
4066dcd989cbSTejun Heo 
4067e98d5b16STejun Heo 		spin_unlock(&pool->lock);
4068dcd989cbSTejun Heo 	}
4069dcd989cbSTejun Heo 
4070e98d5b16STejun Heo 	spin_unlock_irq(&workqueue_lock);
4071dcd989cbSTejun Heo }
4072dcd989cbSTejun Heo EXPORT_SYMBOL_GPL(workqueue_set_max_active);
4073dcd989cbSTejun Heo 
4074dcd989cbSTejun Heo /**
4075e6267616STejun Heo  * current_is_workqueue_rescuer - is %current workqueue rescuer?
4076e6267616STejun Heo  *
4077e6267616STejun Heo  * Determine whether %current is a workqueue rescuer.  Can be used from
4078e6267616STejun Heo  * work functions to determine whether it's being run off the rescuer task.
4079e6267616STejun Heo  */
4080e6267616STejun Heo bool current_is_workqueue_rescuer(void)
4081e6267616STejun Heo {
4082e6267616STejun Heo 	struct worker *worker = current_wq_worker();
4083e6267616STejun Heo 
4084e6267616STejun Heo 	return worker && worker == worker->current_pwq->wq->rescuer;
4085e6267616STejun Heo }
4086e6267616STejun Heo 
4087e6267616STejun Heo /**
4088dcd989cbSTejun Heo  * workqueue_congested - test whether a workqueue is congested
4089dcd989cbSTejun Heo  * @cpu: CPU in question
4090dcd989cbSTejun Heo  * @wq: target workqueue
4091dcd989cbSTejun Heo  *
4092dcd989cbSTejun Heo  * Test whether @wq's cpu workqueue for @cpu is congested.  There is
4093dcd989cbSTejun Heo  * no synchronization around this function and the test result is
4094dcd989cbSTejun Heo  * unreliable and only useful as advisory hints or for debugging.
4095dcd989cbSTejun Heo  *
4096dcd989cbSTejun Heo  * RETURNS:
4097dcd989cbSTejun Heo  * %true if congested, %false otherwise.
4098dcd989cbSTejun Heo  */
4099d84ff051STejun Heo bool workqueue_congested(int cpu, struct workqueue_struct *wq)
4100dcd989cbSTejun Heo {
41017fb98ea7STejun Heo 	struct pool_workqueue *pwq;
410276af4d93STejun Heo 	bool ret;
410376af4d93STejun Heo 
410476af4d93STejun Heo 	preempt_disable();
41057fb98ea7STejun Heo 
41067fb98ea7STejun Heo 	if (!(wq->flags & WQ_UNBOUND))
41077fb98ea7STejun Heo 		pwq = per_cpu_ptr(wq->cpu_pwqs, cpu);
41087fb98ea7STejun Heo 	else
41097fb98ea7STejun Heo 		pwq = first_pwq(wq);
4110dcd989cbSTejun Heo 
411176af4d93STejun Heo 	ret = !list_empty(&pwq->delayed_works);
411276af4d93STejun Heo 	preempt_enable();
411376af4d93STejun Heo 
411476af4d93STejun Heo 	return ret;
4115dcd989cbSTejun Heo }
4116dcd989cbSTejun Heo EXPORT_SYMBOL_GPL(workqueue_congested);
4117dcd989cbSTejun Heo 
4118dcd989cbSTejun Heo /**
4119dcd989cbSTejun Heo  * work_busy - test whether a work is currently pending or running
4120dcd989cbSTejun Heo  * @work: the work to be tested
4121dcd989cbSTejun Heo  *
4122dcd989cbSTejun Heo  * Test whether @work is currently pending or running.  There is no
4123dcd989cbSTejun Heo  * synchronization around this function and the test result is
4124dcd989cbSTejun Heo  * unreliable and only useful as advisory hints or for debugging.
4125dcd989cbSTejun Heo  *
4126dcd989cbSTejun Heo  * RETURNS:
4127dcd989cbSTejun Heo  * OR'd bitmask of WORK_BUSY_* bits.
4128dcd989cbSTejun Heo  */
4129dcd989cbSTejun Heo unsigned int work_busy(struct work_struct *work)
4130dcd989cbSTejun Heo {
4131fa1b54e6STejun Heo 	struct worker_pool *pool;
4132dcd989cbSTejun Heo 	unsigned long flags;
4133dcd989cbSTejun Heo 	unsigned int ret = 0;
4134dcd989cbSTejun Heo 
4135dcd989cbSTejun Heo 	if (work_pending(work))
4136dcd989cbSTejun Heo 		ret |= WORK_BUSY_PENDING;
4137038366c5SLai Jiangshan 
4138fa1b54e6STejun Heo 	local_irq_save(flags);
4139fa1b54e6STejun Heo 	pool = get_work_pool(work);
4140038366c5SLai Jiangshan 	if (pool) {
4141fa1b54e6STejun Heo 		spin_lock(&pool->lock);
4142c9e7cf27STejun Heo 		if (find_worker_executing_work(pool, work))
4143dcd989cbSTejun Heo 			ret |= WORK_BUSY_RUNNING;
4144fa1b54e6STejun Heo 		spin_unlock(&pool->lock);
4145038366c5SLai Jiangshan 	}
4146fa1b54e6STejun Heo 	local_irq_restore(flags);
4147dcd989cbSTejun Heo 
4148dcd989cbSTejun Heo 	return ret;
4149dcd989cbSTejun Heo }
4150dcd989cbSTejun Heo EXPORT_SYMBOL_GPL(work_busy);
4151dcd989cbSTejun Heo 
4152db7bccf4STejun Heo /*
4153db7bccf4STejun Heo  * CPU hotplug.
4154db7bccf4STejun Heo  *
4155e22bee78STejun Heo  * There are two challenges in supporting CPU hotplug.  Firstly, there
4156112202d9STejun Heo  * are a lot of assumptions on strong associations among work, pwq and
4157706026c2STejun Heo  * pool which make migrating pending and scheduled works very
4158e22bee78STejun Heo  * difficult to implement without impacting hot paths.  Secondly,
415994cf58bbSTejun Heo  * worker pools serve mix of short, long and very long running works making
4160e22bee78STejun Heo  * blocked draining impractical.
4161e22bee78STejun Heo  *
416224647570STejun Heo  * This is solved by allowing the pools to be disassociated from the CPU
4163628c78e7STejun Heo  * running as an unbound one and allowing it to be reattached later if the
4164628c78e7STejun Heo  * cpu comes back online.
4165db7bccf4STejun Heo  */
4166db7bccf4STejun Heo 
4167706026c2STejun Heo static void wq_unbind_fn(struct work_struct *work)
4168db7bccf4STejun Heo {
416938db41d9STejun Heo 	int cpu = smp_processor_id();
41704ce62e9eSTejun Heo 	struct worker_pool *pool;
4171db7bccf4STejun Heo 	struct worker *worker;
4172db7bccf4STejun Heo 	int i;
4173db7bccf4STejun Heo 
4174f02ae73aSTejun Heo 	for_each_cpu_worker_pool(pool, cpu) {
41756183c009STejun Heo 		WARN_ON_ONCE(cpu != smp_processor_id());
4176db7bccf4STejun Heo 
417794cf58bbSTejun Heo 		mutex_lock(&pool->assoc_mutex);
417894cf58bbSTejun Heo 		spin_lock_irq(&pool->lock);
4179e22bee78STejun Heo 
4180f2d5a0eeSTejun Heo 		/*
418194cf58bbSTejun Heo 		 * We've claimed all manager positions.  Make all workers
418294cf58bbSTejun Heo 		 * unbound and set DISASSOCIATED.  Before this, all workers
418394cf58bbSTejun Heo 		 * except for the ones which are still executing works from
418494cf58bbSTejun Heo 		 * before the last CPU down must be on the cpu.  After
418594cf58bbSTejun Heo 		 * this, they may become diasporas.
4186f2d5a0eeSTejun Heo 		 */
41874ce62e9eSTejun Heo 		list_for_each_entry(worker, &pool->idle_list, entry)
4188403c821dSTejun Heo 			worker->flags |= WORKER_UNBOUND;
4189db7bccf4STejun Heo 
4190b67bfe0dSSasha Levin 		for_each_busy_worker(worker, i, pool)
4191403c821dSTejun Heo 			worker->flags |= WORKER_UNBOUND;
4192db7bccf4STejun Heo 
419324647570STejun Heo 		pool->flags |= POOL_DISASSOCIATED;
4194f2d5a0eeSTejun Heo 
419594cf58bbSTejun Heo 		spin_unlock_irq(&pool->lock);
419694cf58bbSTejun Heo 		mutex_unlock(&pool->assoc_mutex);
419794cf58bbSTejun Heo 	}
4198e22bee78STejun Heo 
4199e22bee78STejun Heo 	/*
4200628c78e7STejun Heo 	 * Call schedule() so that we cross rq->lock and thus can guarantee
4201628c78e7STejun Heo 	 * sched callbacks see the %WORKER_UNBOUND flag.  This is necessary
4202628c78e7STejun Heo 	 * as scheduler callbacks may be invoked from other cpus.
4203628c78e7STejun Heo 	 */
4204628c78e7STejun Heo 	schedule();
4205628c78e7STejun Heo 
4206628c78e7STejun Heo 	/*
4207628c78e7STejun Heo 	 * Sched callbacks are disabled now.  Zap nr_running.  After this,
4208628c78e7STejun Heo 	 * nr_running stays zero and need_more_worker() and keep_working()
420938db41d9STejun Heo 	 * are always true as long as the worklist is not empty.  Pools on
421038db41d9STejun Heo 	 * @cpu now behave as unbound (in terms of concurrency management)
421138db41d9STejun Heo 	 * pools which are served by workers tied to the CPU.
4212628c78e7STejun Heo 	 *
4213628c78e7STejun Heo 	 * On return from this function, the current worker would trigger
4214628c78e7STejun Heo 	 * unbound chain execution of pending work items if other workers
4215628c78e7STejun Heo 	 * didn't already.
4216e22bee78STejun Heo 	 */
4217f02ae73aSTejun Heo 	for_each_cpu_worker_pool(pool, cpu)
4218e19e397aSTejun Heo 		atomic_set(&pool->nr_running, 0);
4219db7bccf4STejun Heo }
4220db7bccf4STejun Heo 
42218db25e78STejun Heo /*
42228db25e78STejun Heo  * Workqueues should be brought up before normal priority CPU notifiers.
42238db25e78STejun Heo  * This will be registered high priority CPU notifier.
42248db25e78STejun Heo  */
42259fdf9b73SLai Jiangshan static int __cpuinit workqueue_cpu_up_callback(struct notifier_block *nfb,
42261da177e4SLinus Torvalds 					       unsigned long action,
42271da177e4SLinus Torvalds 					       void *hcpu)
42281da177e4SLinus Torvalds {
4229d84ff051STejun Heo 	int cpu = (unsigned long)hcpu;
42304ce62e9eSTejun Heo 	struct worker_pool *pool;
42311da177e4SLinus Torvalds 
42328db25e78STejun Heo 	switch (action & ~CPU_TASKS_FROZEN) {
42333af24433SOleg Nesterov 	case CPU_UP_PREPARE:
4234f02ae73aSTejun Heo 		for_each_cpu_worker_pool(pool, cpu) {
42353ce63377STejun Heo 			struct worker *worker;
42363ce63377STejun Heo 
42373ce63377STejun Heo 			if (pool->nr_workers)
42383ce63377STejun Heo 				continue;
42393ce63377STejun Heo 
42403ce63377STejun Heo 			worker = create_worker(pool);
42413ce63377STejun Heo 			if (!worker)
42423ce63377STejun Heo 				return NOTIFY_BAD;
42433ce63377STejun Heo 
4244d565ed63STejun Heo 			spin_lock_irq(&pool->lock);
42453ce63377STejun Heo 			start_worker(worker);
4246d565ed63STejun Heo 			spin_unlock_irq(&pool->lock);
42473af24433SOleg Nesterov 		}
42481da177e4SLinus Torvalds 		break;
42491da177e4SLinus Torvalds 
425065758202STejun Heo 	case CPU_DOWN_FAILED:
425165758202STejun Heo 	case CPU_ONLINE:
4252f02ae73aSTejun Heo 		for_each_cpu_worker_pool(pool, cpu) {
425394cf58bbSTejun Heo 			mutex_lock(&pool->assoc_mutex);
425494cf58bbSTejun Heo 			spin_lock_irq(&pool->lock);
425594cf58bbSTejun Heo 
425624647570STejun Heo 			pool->flags &= ~POOL_DISASSOCIATED;
425794cf58bbSTejun Heo 			rebind_workers(pool);
425894cf58bbSTejun Heo 
425994cf58bbSTejun Heo 			spin_unlock_irq(&pool->lock);
426094cf58bbSTejun Heo 			mutex_unlock(&pool->assoc_mutex);
426194cf58bbSTejun Heo 		}
42628db25e78STejun Heo 		break;
426365758202STejun Heo 	}
426465758202STejun Heo 	return NOTIFY_OK;
426565758202STejun Heo }
426665758202STejun Heo 
426765758202STejun Heo /*
426865758202STejun Heo  * Workqueues should be brought down after normal priority CPU notifiers.
426965758202STejun Heo  * This will be registered as low priority CPU notifier.
427065758202STejun Heo  */
42719fdf9b73SLai Jiangshan static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
427265758202STejun Heo 						 unsigned long action,
427365758202STejun Heo 						 void *hcpu)
427465758202STejun Heo {
4275d84ff051STejun Heo 	int cpu = (unsigned long)hcpu;
42768db25e78STejun Heo 	struct work_struct unbind_work;
42778db25e78STejun Heo 
427865758202STejun Heo 	switch (action & ~CPU_TASKS_FROZEN) {
427965758202STejun Heo 	case CPU_DOWN_PREPARE:
42808db25e78STejun Heo 		/* unbinding should happen on the local CPU */
4281706026c2STejun Heo 		INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
42827635d2fdSJoonsoo Kim 		queue_work_on(cpu, system_highpri_wq, &unbind_work);
42838db25e78STejun Heo 		flush_work(&unbind_work);
42848db25e78STejun Heo 		break;
428565758202STejun Heo 	}
428665758202STejun Heo 	return NOTIFY_OK;
428765758202STejun Heo }
428865758202STejun Heo 
42892d3854a3SRusty Russell #ifdef CONFIG_SMP
42908ccad40dSRusty Russell 
42912d3854a3SRusty Russell struct work_for_cpu {
4292ed48ece2STejun Heo 	struct work_struct work;
42932d3854a3SRusty Russell 	long (*fn)(void *);
42942d3854a3SRusty Russell 	void *arg;
42952d3854a3SRusty Russell 	long ret;
42962d3854a3SRusty Russell };
42972d3854a3SRusty Russell 
4298ed48ece2STejun Heo static void work_for_cpu_fn(struct work_struct *work)
42992d3854a3SRusty Russell {
4300ed48ece2STejun Heo 	struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
4301ed48ece2STejun Heo 
43022d3854a3SRusty Russell 	wfc->ret = wfc->fn(wfc->arg);
43032d3854a3SRusty Russell }
43042d3854a3SRusty Russell 
43052d3854a3SRusty Russell /**
43062d3854a3SRusty Russell  * work_on_cpu - run a function in user context on a particular cpu
43072d3854a3SRusty Russell  * @cpu: the cpu to run on
43082d3854a3SRusty Russell  * @fn: the function to run
43092d3854a3SRusty Russell  * @arg: the function arg
43102d3854a3SRusty Russell  *
431131ad9081SRusty Russell  * This will return the value @fn returns.
431231ad9081SRusty Russell  * It is up to the caller to ensure that the cpu doesn't go offline.
43136b44003eSAndrew Morton  * The caller must not hold any locks which would prevent @fn from completing.
43142d3854a3SRusty Russell  */
4315d84ff051STejun Heo long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
43162d3854a3SRusty Russell {
4317ed48ece2STejun Heo 	struct work_for_cpu wfc = { .fn = fn, .arg = arg };
43182d3854a3SRusty Russell 
4319ed48ece2STejun Heo 	INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
4320ed48ece2STejun Heo 	schedule_work_on(cpu, &wfc.work);
4321ed48ece2STejun Heo 	flush_work(&wfc.work);
43222d3854a3SRusty Russell 	return wfc.ret;
43232d3854a3SRusty Russell }
43242d3854a3SRusty Russell EXPORT_SYMBOL_GPL(work_on_cpu);
43252d3854a3SRusty Russell #endif /* CONFIG_SMP */
43262d3854a3SRusty Russell 
4327a0a1a5fdSTejun Heo #ifdef CONFIG_FREEZER
4328e7577c50SRusty Russell 
4329a0a1a5fdSTejun Heo /**
4330a0a1a5fdSTejun Heo  * freeze_workqueues_begin - begin freezing workqueues
4331a0a1a5fdSTejun Heo  *
433258a69cb4STejun Heo  * Start freezing workqueues.  After this function returns, all freezable
433358a69cb4STejun Heo  * workqueues will queue new works to their frozen_works list instead of
4334706026c2STejun Heo  * pool->worklist.
4335a0a1a5fdSTejun Heo  *
4336a0a1a5fdSTejun Heo  * CONTEXT:
4337d565ed63STejun Heo  * Grabs and releases workqueue_lock and pool->lock's.
4338a0a1a5fdSTejun Heo  */
4339a0a1a5fdSTejun Heo void freeze_workqueues_begin(void)
4340a0a1a5fdSTejun Heo {
434117116969STejun Heo 	struct worker_pool *pool;
434224b8a847STejun Heo 	struct workqueue_struct *wq;
434324b8a847STejun Heo 	struct pool_workqueue *pwq;
434417116969STejun Heo 	int id;
4345a0a1a5fdSTejun Heo 
4346e98d5b16STejun Heo 	spin_lock_irq(&workqueue_lock);
4347a0a1a5fdSTejun Heo 
43486183c009STejun Heo 	WARN_ON_ONCE(workqueue_freezing);
4349a0a1a5fdSTejun Heo 	workqueue_freezing = true;
4350a0a1a5fdSTejun Heo 
435124b8a847STejun Heo 	/* set FREEZING */
435217116969STejun Heo 	for_each_pool(pool, id) {
4353e98d5b16STejun Heo 		spin_lock(&pool->lock);
435435b6bb63STejun Heo 		WARN_ON_ONCE(pool->flags & POOL_FREEZING);
435535b6bb63STejun Heo 		pool->flags |= POOL_FREEZING;
435624b8a847STejun Heo 		spin_unlock(&pool->lock);
43571da177e4SLinus Torvalds 	}
43588b03ae3cSTejun Heo 
435924b8a847STejun Heo 	/* suppress further executions by setting max_active to zero */
436024b8a847STejun Heo 	list_for_each_entry(wq, &workqueues, list) {
436124b8a847STejun Heo 		if (!(wq->flags & WQ_FREEZABLE))
436224b8a847STejun Heo 			continue;
436324b8a847STejun Heo 
436424b8a847STejun Heo 		for_each_pwq(pwq, wq) {
436524b8a847STejun Heo 			spin_lock(&pwq->pool->lock);
436624b8a847STejun Heo 			pwq->max_active = 0;
436724b8a847STejun Heo 			spin_unlock(&pwq->pool->lock);
436824b8a847STejun Heo 		}
4369a1056305STejun Heo 	}
4370a0a1a5fdSTejun Heo 
4371e98d5b16STejun Heo 	spin_unlock_irq(&workqueue_lock);
4372a0a1a5fdSTejun Heo }
4373a0a1a5fdSTejun Heo 
4374a0a1a5fdSTejun Heo /**
437558a69cb4STejun Heo  * freeze_workqueues_busy - are freezable workqueues still busy?
4376a0a1a5fdSTejun Heo  *
4377a0a1a5fdSTejun Heo  * Check whether freezing is complete.  This function must be called
4378a0a1a5fdSTejun Heo  * between freeze_workqueues_begin() and thaw_workqueues().
4379a0a1a5fdSTejun Heo  *
4380a0a1a5fdSTejun Heo  * CONTEXT:
4381a0a1a5fdSTejun Heo  * Grabs and releases workqueue_lock.
4382a0a1a5fdSTejun Heo  *
4383a0a1a5fdSTejun Heo  * RETURNS:
438458a69cb4STejun Heo  * %true if some freezable workqueues are still busy.  %false if freezing
438558a69cb4STejun Heo  * is complete.
4386a0a1a5fdSTejun Heo  */
4387a0a1a5fdSTejun Heo bool freeze_workqueues_busy(void)
4388a0a1a5fdSTejun Heo {
4389a0a1a5fdSTejun Heo 	bool busy = false;
439024b8a847STejun Heo 	struct workqueue_struct *wq;
439124b8a847STejun Heo 	struct pool_workqueue *pwq;
4392a0a1a5fdSTejun Heo 
4393e98d5b16STejun Heo 	spin_lock_irq(&workqueue_lock);
4394a0a1a5fdSTejun Heo 
43956183c009STejun Heo 	WARN_ON_ONCE(!workqueue_freezing);
4396a0a1a5fdSTejun Heo 
439724b8a847STejun Heo 	list_for_each_entry(wq, &workqueues, list) {
439824b8a847STejun Heo 		if (!(wq->flags & WQ_FREEZABLE))
439924b8a847STejun Heo 			continue;
4400a0a1a5fdSTejun Heo 		/*
4401a0a1a5fdSTejun Heo 		 * nr_active is monotonically decreasing.  It's safe
4402a0a1a5fdSTejun Heo 		 * to peek without lock.
4403a0a1a5fdSTejun Heo 		 */
440424b8a847STejun Heo 		for_each_pwq(pwq, wq) {
44056183c009STejun Heo 			WARN_ON_ONCE(pwq->nr_active < 0);
4406112202d9STejun Heo 			if (pwq->nr_active) {
4407a0a1a5fdSTejun Heo 				busy = true;
4408a0a1a5fdSTejun Heo 				goto out_unlock;
4409a0a1a5fdSTejun Heo 			}
4410a0a1a5fdSTejun Heo 		}
4411a0a1a5fdSTejun Heo 	}
4412a0a1a5fdSTejun Heo out_unlock:
4413e98d5b16STejun Heo 	spin_unlock_irq(&workqueue_lock);
4414a0a1a5fdSTejun Heo 	return busy;
4415a0a1a5fdSTejun Heo }
4416a0a1a5fdSTejun Heo 
4417a0a1a5fdSTejun Heo /**
4418a0a1a5fdSTejun Heo  * thaw_workqueues - thaw workqueues
4419a0a1a5fdSTejun Heo  *
4420a0a1a5fdSTejun Heo  * Thaw workqueues.  Normal queueing is restored and all collected
4421706026c2STejun Heo  * frozen works are transferred to their respective pool worklists.
4422a0a1a5fdSTejun Heo  *
4423a0a1a5fdSTejun Heo  * CONTEXT:
4424d565ed63STejun Heo  * Grabs and releases workqueue_lock and pool->lock's.
4425a0a1a5fdSTejun Heo  */
4426a0a1a5fdSTejun Heo void thaw_workqueues(void)
4427a0a1a5fdSTejun Heo {
442824b8a847STejun Heo 	struct workqueue_struct *wq;
442924b8a847STejun Heo 	struct pool_workqueue *pwq;
443024b8a847STejun Heo 	struct worker_pool *pool;
443124b8a847STejun Heo 	int id;
4432a0a1a5fdSTejun Heo 
4433e98d5b16STejun Heo 	spin_lock_irq(&workqueue_lock);
4434a0a1a5fdSTejun Heo 
4435a0a1a5fdSTejun Heo 	if (!workqueue_freezing)
4436a0a1a5fdSTejun Heo 		goto out_unlock;
4437a0a1a5fdSTejun Heo 
443824b8a847STejun Heo 	/* clear FREEZING */
443924b8a847STejun Heo 	for_each_pool(pool, id) {
4440e98d5b16STejun Heo 		spin_lock(&pool->lock);
444135b6bb63STejun Heo 		WARN_ON_ONCE(!(pool->flags & POOL_FREEZING));
444235b6bb63STejun Heo 		pool->flags &= ~POOL_FREEZING;
4443e98d5b16STejun Heo 		spin_unlock(&pool->lock);
4444d565ed63STejun Heo 	}
444524b8a847STejun Heo 
444624b8a847STejun Heo 	/* restore max_active and repopulate worklist */
444724b8a847STejun Heo 	list_for_each_entry(wq, &workqueues, list) {
444824b8a847STejun Heo 		if (!(wq->flags & WQ_FREEZABLE))
444924b8a847STejun Heo 			continue;
445024b8a847STejun Heo 
445124b8a847STejun Heo 		for_each_pwq(pwq, wq) {
445224b8a847STejun Heo 			spin_lock(&pwq->pool->lock);
445324b8a847STejun Heo 			pwq_set_max_active(pwq, wq->saved_max_active);
445424b8a847STejun Heo 			spin_unlock(&pwq->pool->lock);
445524b8a847STejun Heo 		}
445624b8a847STejun Heo 	}
445724b8a847STejun Heo 
445824b8a847STejun Heo 	/* kick workers */
445924b8a847STejun Heo 	for_each_pool(pool, id) {
446024b8a847STejun Heo 		spin_lock(&pool->lock);
446124b8a847STejun Heo 		wake_up_worker(pool);
446224b8a847STejun Heo 		spin_unlock(&pool->lock);
4463a0a1a5fdSTejun Heo 	}
4464a0a1a5fdSTejun Heo 
4465a0a1a5fdSTejun Heo 	workqueue_freezing = false;
4466a0a1a5fdSTejun Heo out_unlock:
4467e98d5b16STejun Heo 	spin_unlock_irq(&workqueue_lock);
4468a0a1a5fdSTejun Heo }
4469a0a1a5fdSTejun Heo #endif /* CONFIG_FREEZER */
4470a0a1a5fdSTejun Heo 
44716ee0578bSSuresh Siddha static int __init init_workqueues(void)
44721da177e4SLinus Torvalds {
44737a4e344cSTejun Heo 	int std_nice[NR_STD_WORKER_POOLS] = { 0, HIGHPRI_NICE_LEVEL };
44747a4e344cSTejun Heo 	int i, cpu;
4475c34056a3STejun Heo 
44767c3eed5cSTejun Heo 	/* make sure we have enough bits for OFFQ pool ID */
44777c3eed5cSTejun Heo 	BUILD_BUG_ON((1LU << (BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT)) <
44786be19588SLai Jiangshan 		     WORK_CPU_END * NR_STD_WORKER_POOLS);
4479b5490077STejun Heo 
4480e904e6c2STejun Heo 	WARN_ON(__alignof__(struct pool_workqueue) < __alignof__(long long));
4481e904e6c2STejun Heo 
4482e904e6c2STejun Heo 	pwq_cache = KMEM_CACHE(pool_workqueue, SLAB_PANIC);
4483e904e6c2STejun Heo 
448465758202STejun Heo 	cpu_notifier(workqueue_cpu_up_callback, CPU_PRI_WORKQUEUE_UP);
4485a5b4e57dSLai Jiangshan 	hotcpu_notifier(workqueue_cpu_down_callback, CPU_PRI_WORKQUEUE_DOWN);
44868b03ae3cSTejun Heo 
4487706026c2STejun Heo 	/* initialize CPU pools */
448829c91e99STejun Heo 	for_each_possible_cpu(cpu) {
44894ce62e9eSTejun Heo 		struct worker_pool *pool;
44908b03ae3cSTejun Heo 
44917a4e344cSTejun Heo 		i = 0;
4492f02ae73aSTejun Heo 		for_each_cpu_worker_pool(pool, cpu) {
44937a4e344cSTejun Heo 			BUG_ON(init_worker_pool(pool));
4494ec22ca5eSTejun Heo 			pool->cpu = cpu;
44957a4e344cSTejun Heo 			cpumask_copy(pool->attrs->cpumask, cpumask_of(cpu));
44967a4e344cSTejun Heo 			pool->attrs->nice = std_nice[i++];
44977a4e344cSTejun Heo 
44989daf9e67STejun Heo 			/* alloc pool ID */
44999daf9e67STejun Heo 			BUG_ON(worker_pool_assign_id(pool));
45004ce62e9eSTejun Heo 		}
45018b03ae3cSTejun Heo 	}
45028b03ae3cSTejun Heo 
4503e22bee78STejun Heo 	/* create the initial worker */
450429c91e99STejun Heo 	for_each_online_cpu(cpu) {
45054ce62e9eSTejun Heo 		struct worker_pool *pool;
4506e22bee78STejun Heo 
4507f02ae73aSTejun Heo 		for_each_cpu_worker_pool(pool, cpu) {
45084ce62e9eSTejun Heo 			struct worker *worker;
45094ce62e9eSTejun Heo 
451024647570STejun Heo 			pool->flags &= ~POOL_DISASSOCIATED;
451124647570STejun Heo 
4512bc2ae0f5STejun Heo 			worker = create_worker(pool);
4513e22bee78STejun Heo 			BUG_ON(!worker);
4514d565ed63STejun Heo 			spin_lock_irq(&pool->lock);
4515e22bee78STejun Heo 			start_worker(worker);
4516d565ed63STejun Heo 			spin_unlock_irq(&pool->lock);
4517e22bee78STejun Heo 		}
45184ce62e9eSTejun Heo 	}
4519e22bee78STejun Heo 
452029c91e99STejun Heo 	/* create default unbound wq attrs */
452129c91e99STejun Heo 	for (i = 0; i < NR_STD_WORKER_POOLS; i++) {
452229c91e99STejun Heo 		struct workqueue_attrs *attrs;
452329c91e99STejun Heo 
452429c91e99STejun Heo 		BUG_ON(!(attrs = alloc_workqueue_attrs(GFP_KERNEL)));
452529c91e99STejun Heo 
452629c91e99STejun Heo 		attrs->nice = std_nice[i];
452729c91e99STejun Heo 		cpumask_setall(attrs->cpumask);
452829c91e99STejun Heo 
452929c91e99STejun Heo 		unbound_std_wq_attrs[i] = attrs;
453029c91e99STejun Heo 	}
453129c91e99STejun Heo 
4532d320c038STejun Heo 	system_wq = alloc_workqueue("events", 0, 0);
45331aabe902SJoonsoo Kim 	system_highpri_wq = alloc_workqueue("events_highpri", WQ_HIGHPRI, 0);
4534d320c038STejun Heo 	system_long_wq = alloc_workqueue("events_long", 0, 0);
4535f3421797STejun Heo 	system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
4536f3421797STejun Heo 					    WQ_UNBOUND_MAX_ACTIVE);
453724d51addSTejun Heo 	system_freezable_wq = alloc_workqueue("events_freezable",
453824d51addSTejun Heo 					      WQ_FREEZABLE, 0);
45391aabe902SJoonsoo Kim 	BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||
4540ae930e0fSTejun Heo 	       !system_unbound_wq || !system_freezable_wq);
45416ee0578bSSuresh Siddha 	return 0;
45421da177e4SLinus Torvalds }
45436ee0578bSSuresh Siddha early_initcall(init_workqueues);
4544