xref: /openbmc/linux/include/linux/workqueue.h (revision 79bc251f)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * workqueue.h --- work queue handling for Linux.
31da177e4SLinus Torvalds  */
41da177e4SLinus Torvalds 
51da177e4SLinus Torvalds #ifndef _LINUX_WORKQUEUE_H
61da177e4SLinus Torvalds #define _LINUX_WORKQUEUE_H
71da177e4SLinus Torvalds 
81da177e4SLinus Torvalds #include <linux/timer.h>
91da177e4SLinus Torvalds #include <linux/linkage.h>
101da177e4SLinus Torvalds #include <linux/bitops.h>
114e6045f1SJohannes Berg #include <linux/lockdep.h>
127a22ad75STejun Heo #include <linux/threads.h>
1360063497SArun Sharma #include <linux/atomic.h>
147a4e344cSTejun Heo #include <linux/cpumask.h>
151da177e4SLinus Torvalds 
161da177e4SLinus Torvalds struct workqueue_struct;
171da177e4SLinus Torvalds 
1865f27f38SDavid Howells struct work_struct;
1965f27f38SDavid Howells typedef void (*work_func_t)(struct work_struct *work);
20d8e794dfSTejun Heo void delayed_work_timer_fn(unsigned long __data);
216bb49e59SDavid Howells 
22a08727baSLinus Torvalds /*
23a08727baSLinus Torvalds  * The first word is the work queue pointer and the flags rolled into
24a08727baSLinus Torvalds  * one
25a08727baSLinus Torvalds  */
26a08727baSLinus Torvalds #define work_data_bits(work) ((unsigned long *)(&(work)->data))
27a08727baSLinus Torvalds 
2822df02bbSTejun Heo enum {
2922df02bbSTejun Heo 	WORK_STRUCT_PENDING_BIT	= 0,	/* work item is pending execution */
308a2e8e5dSTejun Heo 	WORK_STRUCT_DELAYED_BIT	= 1,	/* work item is delayed */
31112202d9STejun Heo 	WORK_STRUCT_PWQ_BIT	= 2,	/* data points to pwq */
328a2e8e5dSTejun Heo 	WORK_STRUCT_LINKED_BIT	= 3,	/* next work is linked to this one */
3322df02bbSTejun Heo #ifdef CONFIG_DEBUG_OBJECTS_WORK
348a2e8e5dSTejun Heo 	WORK_STRUCT_STATIC_BIT	= 4,	/* static initializer (debugobjects) */
358a2e8e5dSTejun Heo 	WORK_STRUCT_COLOR_SHIFT	= 5,	/* color for workqueue flushing */
360f900049STejun Heo #else
378a2e8e5dSTejun Heo 	WORK_STRUCT_COLOR_SHIFT	= 4,	/* color for workqueue flushing */
3822df02bbSTejun Heo #endif
3922df02bbSTejun Heo 
4073f53c4aSTejun Heo 	WORK_STRUCT_COLOR_BITS	= 4,
4173f53c4aSTejun Heo 
4222df02bbSTejun Heo 	WORK_STRUCT_PENDING	= 1 << WORK_STRUCT_PENDING_BIT,
438a2e8e5dSTejun Heo 	WORK_STRUCT_DELAYED	= 1 << WORK_STRUCT_DELAYED_BIT,
44112202d9STejun Heo 	WORK_STRUCT_PWQ		= 1 << WORK_STRUCT_PWQ_BIT,
45affee4b2STejun Heo 	WORK_STRUCT_LINKED	= 1 << WORK_STRUCT_LINKED_BIT,
4622df02bbSTejun Heo #ifdef CONFIG_DEBUG_OBJECTS_WORK
4722df02bbSTejun Heo 	WORK_STRUCT_STATIC	= 1 << WORK_STRUCT_STATIC_BIT,
4822df02bbSTejun Heo #else
4922df02bbSTejun Heo 	WORK_STRUCT_STATIC	= 0,
5022df02bbSTejun Heo #endif
5122df02bbSTejun Heo 
5273f53c4aSTejun Heo 	/*
5373f53c4aSTejun Heo 	 * The last color is no color used for works which don't
5473f53c4aSTejun Heo 	 * participate in workqueue flushing.
5573f53c4aSTejun Heo 	 */
5673f53c4aSTejun Heo 	WORK_NR_COLORS		= (1 << WORK_STRUCT_COLOR_BITS) - 1,
5773f53c4aSTejun Heo 	WORK_NO_COLOR		= WORK_NR_COLORS,
5873f53c4aSTejun Heo 
5979bc251fSLai Jiangshan 	/* not bound to any CPU, prefer the local CPU */
60f3421797STejun Heo 	WORK_CPU_UNBOUND	= NR_CPUS,
61bdbc5dd7STejun Heo 
6273f53c4aSTejun Heo 	/*
63112202d9STejun Heo 	 * Reserve 7 bits off of pwq pointer w/ debugobjects turned off.
64112202d9STejun Heo 	 * This makes pwqs aligned to 256 bytes and allows 15 workqueue
65112202d9STejun Heo 	 * flush colors.
6673f53c4aSTejun Heo 	 */
6773f53c4aSTejun Heo 	WORK_STRUCT_FLAG_BITS	= WORK_STRUCT_COLOR_SHIFT +
6873f53c4aSTejun Heo 				  WORK_STRUCT_COLOR_BITS,
6973f53c4aSTejun Heo 
70112202d9STejun Heo 	/* data contains off-queue information when !WORK_STRUCT_PWQ */
7145d9550aSLai Jiangshan 	WORK_OFFQ_FLAG_BASE	= WORK_STRUCT_COLOR_SHIFT,
72bbb68dfaSTejun Heo 
73bbb68dfaSTejun Heo 	WORK_OFFQ_CANCELING	= (1 << WORK_OFFQ_FLAG_BASE),
74bbb68dfaSTejun Heo 
75715b06b8STejun Heo 	/*
76715b06b8STejun Heo 	 * When a work item is off queue, its high bits point to the last
777c3eed5cSTejun Heo 	 * pool it was on.  Cap at 31 bits and use the highest number to
787c3eed5cSTejun Heo 	 * indicate that no pool is associated.
79715b06b8STejun Heo 	 */
80bbb68dfaSTejun Heo 	WORK_OFFQ_FLAG_BITS	= 1,
817c3eed5cSTejun Heo 	WORK_OFFQ_POOL_SHIFT	= WORK_OFFQ_FLAG_BASE + WORK_OFFQ_FLAG_BITS,
827c3eed5cSTejun Heo 	WORK_OFFQ_LEFT		= BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT,
837c3eed5cSTejun Heo 	WORK_OFFQ_POOL_BITS	= WORK_OFFQ_LEFT <= 31 ? WORK_OFFQ_LEFT : 31,
847c3eed5cSTejun Heo 	WORK_OFFQ_POOL_NONE	= (1LU << WORK_OFFQ_POOL_BITS) - 1,
85b5490077STejun Heo 
86b5490077STejun Heo 	/* convenience constants */
870f900049STejun Heo 	WORK_STRUCT_FLAG_MASK	= (1UL << WORK_STRUCT_FLAG_BITS) - 1,
8822df02bbSTejun Heo 	WORK_STRUCT_WQ_DATA_MASK = ~WORK_STRUCT_FLAG_MASK,
897c3eed5cSTejun Heo 	WORK_STRUCT_NO_POOL	= (unsigned long)WORK_OFFQ_POOL_NONE << WORK_OFFQ_POOL_SHIFT,
90dcd989cbSTejun Heo 
91dcd989cbSTejun Heo 	/* bit mask for work_busy() return values */
92dcd989cbSTejun Heo 	WORK_BUSY_PENDING	= 1 << 0,
93dcd989cbSTejun Heo 	WORK_BUSY_RUNNING	= 1 << 1,
943d1cb205STejun Heo 
953d1cb205STejun Heo 	/* maximum string length for set_worker_desc() */
963d1cb205STejun Heo 	WORKER_DESC_LEN		= 24,
9722df02bbSTejun Heo };
9822df02bbSTejun Heo 
991da177e4SLinus Torvalds struct work_struct {
100a08727baSLinus Torvalds 	atomic_long_t data;
1011da177e4SLinus Torvalds 	struct list_head entry;
1026bb49e59SDavid Howells 	work_func_t func;
1034e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
1044e6045f1SJohannes Berg 	struct lockdep_map lockdep_map;
1054e6045f1SJohannes Berg #endif
10652bad64dSDavid Howells };
10752bad64dSDavid Howells 
1087c3eed5cSTejun Heo #define WORK_DATA_INIT()	ATOMIC_LONG_INIT(WORK_STRUCT_NO_POOL)
1097a22ad75STejun Heo #define WORK_DATA_STATIC_INIT()	\
1107c3eed5cSTejun Heo 	ATOMIC_LONG_INIT(WORK_STRUCT_NO_POOL | WORK_STRUCT_STATIC)
111a08727baSLinus Torvalds 
11252bad64dSDavid Howells struct delayed_work {
11352bad64dSDavid Howells 	struct work_struct work;
1141da177e4SLinus Torvalds 	struct timer_list timer;
11560c057bcSLai Jiangshan 
11660c057bcSLai Jiangshan 	/* target workqueue and CPU ->timer uses to queue ->work */
11760c057bcSLai Jiangshan 	struct workqueue_struct *wq;
1181265057fSTejun Heo 	int cpu;
1191da177e4SLinus Torvalds };
1201da177e4SLinus Torvalds 
1217a4e344cSTejun Heo /*
1227a4e344cSTejun Heo  * A struct for workqueue attributes.  This can be used to change
1237a4e344cSTejun Heo  * attributes of an unbound workqueue.
124d55262c4STejun Heo  *
125d55262c4STejun Heo  * Unlike other fields, ->no_numa isn't a property of a worker_pool.  It
126d55262c4STejun Heo  * only modifies how apply_workqueue_attrs() select pools and thus doesn't
127d55262c4STejun Heo  * participate in pool hash calculations or equality comparisons.
1287a4e344cSTejun Heo  */
1297a4e344cSTejun Heo struct workqueue_attrs {
1307a4e344cSTejun Heo 	int			nice;		/* nice level */
1317a4e344cSTejun Heo 	cpumask_var_t		cpumask;	/* allowed CPUs */
132d55262c4STejun Heo 	bool			no_numa;	/* disable NUMA affinity */
1337a4e344cSTejun Heo };
1347a4e344cSTejun Heo 
135bf6aede7SJean Delvare static inline struct delayed_work *to_delayed_work(struct work_struct *work)
136bf6aede7SJean Delvare {
137bf6aede7SJean Delvare 	return container_of(work, struct delayed_work, work);
138bf6aede7SJean Delvare }
139bf6aede7SJean Delvare 
1401fa44ecaSJames Bottomley struct execute_work {
1411fa44ecaSJames Bottomley 	struct work_struct work;
1421fa44ecaSJames Bottomley };
1431fa44ecaSJames Bottomley 
1444e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
1454e6045f1SJohannes Berg /*
1464e6045f1SJohannes Berg  * NB: because we have to copy the lockdep_map, setting _key
1474e6045f1SJohannes Berg  * here is required, otherwise it could get initialised to the
1484e6045f1SJohannes Berg  * copy of the lockdep_map!
1494e6045f1SJohannes Berg  */
1504e6045f1SJohannes Berg #define __WORK_INIT_LOCKDEP_MAP(n, k) \
1514e6045f1SJohannes Berg 	.lockdep_map = STATIC_LOCKDEP_MAP_INIT(n, k),
1524e6045f1SJohannes Berg #else
1534e6045f1SJohannes Berg #define __WORK_INIT_LOCKDEP_MAP(n, k)
1544e6045f1SJohannes Berg #endif
1554e6045f1SJohannes Berg 
15665f27f38SDavid Howells #define __WORK_INITIALIZER(n, f) {					\
157dc186ad7SThomas Gleixner 	.data = WORK_DATA_STATIC_INIT(),				\
15865f27f38SDavid Howells 	.entry	= { &(n).entry, &(n).entry },				\
15965f27f38SDavid Howells 	.func = (f),							\
1604e6045f1SJohannes Berg 	__WORK_INIT_LOCKDEP_MAP(#n, &(n))				\
16165f27f38SDavid Howells 	}
16265f27f38SDavid Howells 
163f991b318STejun Heo #define __DELAYED_WORK_INITIALIZER(n, f, tflags) {			\
16465f27f38SDavid Howells 	.work = __WORK_INITIALIZER((n).work, (f)),			\
165f991b318STejun Heo 	.timer = __TIMER_INITIALIZER(delayed_work_timer_fn,		\
166e0aecdd8STejun Heo 				     0, (unsigned long)&(n),		\
167e0aecdd8STejun Heo 				     (tflags) | TIMER_IRQSAFE),		\
168dd6414b5SPhil Carmody 	}
169dd6414b5SPhil Carmody 
17065f27f38SDavid Howells #define DECLARE_WORK(n, f)						\
17165f27f38SDavid Howells 	struct work_struct n = __WORK_INITIALIZER(n, f)
17265f27f38SDavid Howells 
17365f27f38SDavid Howells #define DECLARE_DELAYED_WORK(n, f)					\
174f991b318STejun Heo 	struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, 0)
17565f27f38SDavid Howells 
176203b42f7STejun Heo #define DECLARE_DEFERRABLE_WORK(n, f)					\
177f991b318STejun Heo 	struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, TIMER_DEFERRABLE)
178dd6414b5SPhil Carmody 
179dc186ad7SThomas Gleixner #ifdef CONFIG_DEBUG_OBJECTS_WORK
180dc186ad7SThomas Gleixner extern void __init_work(struct work_struct *work, int onstack);
181dc186ad7SThomas Gleixner extern void destroy_work_on_stack(struct work_struct *work);
182ea2e64f2SThomas Gleixner extern void destroy_delayed_work_on_stack(struct delayed_work *work);
1834690c4abSTejun Heo static inline unsigned int work_static(struct work_struct *work)
1844690c4abSTejun Heo {
18522df02bbSTejun Heo 	return *work_data_bits(work) & WORK_STRUCT_STATIC;
1864690c4abSTejun Heo }
187dc186ad7SThomas Gleixner #else
188dc186ad7SThomas Gleixner static inline void __init_work(struct work_struct *work, int onstack) { }
189dc186ad7SThomas Gleixner static inline void destroy_work_on_stack(struct work_struct *work) { }
190ea2e64f2SThomas Gleixner static inline void destroy_delayed_work_on_stack(struct delayed_work *work) { }
1914690c4abSTejun Heo static inline unsigned int work_static(struct work_struct *work) { return 0; }
192dc186ad7SThomas Gleixner #endif
193dc186ad7SThomas Gleixner 
1941da177e4SLinus Torvalds /*
19552bad64dSDavid Howells  * initialize all of a work item in one go
196a08727baSLinus Torvalds  *
197b9049df5SDmitri Vorobiev  * NOTE! No point in using "atomic_long_set()": using a direct
198a08727baSLinus Torvalds  * assignment of the work data initializer allows the compiler
199a08727baSLinus Torvalds  * to generate better code.
2001da177e4SLinus Torvalds  */
2014e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
202dc186ad7SThomas Gleixner #define __INIT_WORK(_work, _func, _onstack)				\
2034e6045f1SJohannes Berg 	do {								\
2044e6045f1SJohannes Berg 		static struct lock_class_key __key;			\
2054e6045f1SJohannes Berg 									\
206dc186ad7SThomas Gleixner 		__init_work((_work), _onstack);				\
2074e6045f1SJohannes Berg 		(_work)->data = (atomic_long_t) WORK_DATA_INIT();	\
2084e6045f1SJohannes Berg 		lockdep_init_map(&(_work)->lockdep_map, #_work, &__key, 0); \
2094e6045f1SJohannes Berg 		INIT_LIST_HEAD(&(_work)->entry);			\
210f073f922STejun Heo 		(_work)->func = (_func);				\
2114e6045f1SJohannes Berg 	} while (0)
2124e6045f1SJohannes Berg #else
213dc186ad7SThomas Gleixner #define __INIT_WORK(_work, _func, _onstack)				\
2141da177e4SLinus Torvalds 	do {								\
215dc186ad7SThomas Gleixner 		__init_work((_work), _onstack);				\
21623b2e599SOleg Nesterov 		(_work)->data = (atomic_long_t) WORK_DATA_INIT();	\
21765f27f38SDavid Howells 		INIT_LIST_HEAD(&(_work)->entry);			\
218f073f922STejun Heo 		(_work)->func = (_func);				\
21965f27f38SDavid Howells 	} while (0)
2204e6045f1SJohannes Berg #endif
22165f27f38SDavid Howells 
222dc186ad7SThomas Gleixner #define INIT_WORK(_work, _func)						\
223dc186ad7SThomas Gleixner 	do {								\
224dc186ad7SThomas Gleixner 		__INIT_WORK((_work), (_func), 0);			\
225dc186ad7SThomas Gleixner 	} while (0)
226dc186ad7SThomas Gleixner 
227ca1cab37SAndrew Morton #define INIT_WORK_ONSTACK(_work, _func)					\
228dc186ad7SThomas Gleixner 	do {								\
229dc186ad7SThomas Gleixner 		__INIT_WORK((_work), (_func), 1);			\
230dc186ad7SThomas Gleixner 	} while (0)
231dc186ad7SThomas Gleixner 
232f991b318STejun Heo #define __INIT_DELAYED_WORK(_work, _func, _tflags)			\
23365f27f38SDavid Howells 	do {								\
23465f27f38SDavid Howells 		INIT_WORK(&(_work)->work, (_func));			\
235f991b318STejun Heo 		__setup_timer(&(_work)->timer, delayed_work_timer_fn,	\
236e0aecdd8STejun Heo 			      (unsigned long)(_work),			\
237e0aecdd8STejun Heo 			      (_tflags) | TIMER_IRQSAFE);		\
23865f27f38SDavid Howells 	} while (0)
23965f27f38SDavid Howells 
240f991b318STejun Heo #define __INIT_DELAYED_WORK_ONSTACK(_work, _func, _tflags)		\
2416d612b0fSPeter Zijlstra 	do {								\
242ca1cab37SAndrew Morton 		INIT_WORK_ONSTACK(&(_work)->work, (_func));		\
243f991b318STejun Heo 		__setup_timer_on_stack(&(_work)->timer,			\
244f991b318STejun Heo 				       delayed_work_timer_fn,		\
245f991b318STejun Heo 				       (unsigned long)(_work),		\
246e0aecdd8STejun Heo 				       (_tflags) | TIMER_IRQSAFE);	\
2476d612b0fSPeter Zijlstra 	} while (0)
2486d612b0fSPeter Zijlstra 
249f991b318STejun Heo #define INIT_DELAYED_WORK(_work, _func)					\
250f991b318STejun Heo 	__INIT_DELAYED_WORK(_work, _func, 0)
251f991b318STejun Heo 
252f991b318STejun Heo #define INIT_DELAYED_WORK_ONSTACK(_work, _func)				\
253f991b318STejun Heo 	__INIT_DELAYED_WORK_ONSTACK(_work, _func, 0)
254f991b318STejun Heo 
255203b42f7STejun Heo #define INIT_DEFERRABLE_WORK(_work, _func)				\
256f991b318STejun Heo 	__INIT_DELAYED_WORK(_work, _func, TIMER_DEFERRABLE)
257f991b318STejun Heo 
258f991b318STejun Heo #define INIT_DEFERRABLE_WORK_ONSTACK(_work, _func)			\
259f991b318STejun Heo 	__INIT_DELAYED_WORK_ONSTACK(_work, _func, TIMER_DEFERRABLE)
26028287033SVenki Pallipadi 
261365970a1SDavid Howells /**
262365970a1SDavid Howells  * work_pending - Find out whether a work item is currently pending
263365970a1SDavid Howells  * @work: The work item in question
264365970a1SDavid Howells  */
265365970a1SDavid Howells #define work_pending(work) \
26622df02bbSTejun Heo 	test_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))
267365970a1SDavid Howells 
268365970a1SDavid Howells /**
269365970a1SDavid Howells  * delayed_work_pending - Find out whether a delayable work item is currently
270365970a1SDavid Howells  * pending
271365970a1SDavid Howells  * @work: The work item in question
272365970a1SDavid Howells  */
2730221872aSLinus Torvalds #define delayed_work_pending(w) \
2740221872aSLinus Torvalds 	work_pending(&(w)->work)
275365970a1SDavid Howells 
27665f27f38SDavid Howells /**
27723b2e599SOleg Nesterov  * work_clear_pending - for internal use only, mark a work item as not pending
27823b2e599SOleg Nesterov  * @work: The work item in question
27965f27f38SDavid Howells  */
28023b2e599SOleg Nesterov #define work_clear_pending(work) \
28122df02bbSTejun Heo 	clear_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))
28265f27f38SDavid Howells 
283c54fce6eSTejun Heo /*
284c54fce6eSTejun Heo  * Workqueue flags and constants.  For details, please refer to
285c54fce6eSTejun Heo  * Documentation/workqueue.txt.
286c54fce6eSTejun Heo  */
28797e37d7bSTejun Heo enum {
288c7fc77f7STejun Heo 	WQ_UNBOUND		= 1 << 1, /* not bound to any cpu */
28958a69cb4STejun Heo 	WQ_FREEZABLE		= 1 << 2, /* freeze during suspend */
2906370a6adSTejun Heo 	WQ_MEM_RECLAIM		= 1 << 3, /* may be used for memory reclaim */
291649027d7STejun Heo 	WQ_HIGHPRI		= 1 << 4, /* high priority */
29241f50094SGeert Uytterhoeven 	WQ_CPU_INTENSIVE	= 1 << 5, /* cpu intensive workqueue */
293226223abSTejun Heo 	WQ_SYSFS		= 1 << 6, /* visible in sysfs, see wq_sysfs_register() */
294b71ab8c2STejun Heo 
295cee22a15SViresh Kumar 	/*
296cee22a15SViresh Kumar 	 * Per-cpu workqueues are generally preferred because they tend to
297cee22a15SViresh Kumar 	 * show better performance thanks to cache locality.  Per-cpu
298cee22a15SViresh Kumar 	 * workqueues exclude the scheduler from choosing the CPU to
299cee22a15SViresh Kumar 	 * execute the worker threads, which has an unfortunate side effect
300cee22a15SViresh Kumar 	 * of increasing power consumption.
301cee22a15SViresh Kumar 	 *
302cee22a15SViresh Kumar 	 * The scheduler considers a CPU idle if it doesn't have any task
303cee22a15SViresh Kumar 	 * to execute and tries to keep idle cores idle to conserve power;
304cee22a15SViresh Kumar 	 * however, for example, a per-cpu work item scheduled from an
305cee22a15SViresh Kumar 	 * interrupt handler on an idle CPU will force the scheduler to
306cee22a15SViresh Kumar 	 * excute the work item on that CPU breaking the idleness, which in
307cee22a15SViresh Kumar 	 * turn may lead to more scheduling choices which are sub-optimal
308cee22a15SViresh Kumar 	 * in terms of power consumption.
309cee22a15SViresh Kumar 	 *
310cee22a15SViresh Kumar 	 * Workqueues marked with WQ_POWER_EFFICIENT are per-cpu by default
311cee22a15SViresh Kumar 	 * but become unbound if workqueue.power_efficient kernel param is
312cee22a15SViresh Kumar 	 * specified.  Per-cpu workqueues which are identified to
313cee22a15SViresh Kumar 	 * contribute significantly to power-consumption are identified and
314cee22a15SViresh Kumar 	 * marked with this flag and enabling the power_efficient mode
315cee22a15SViresh Kumar 	 * leads to noticeable power saving at the cost of small
316cee22a15SViresh Kumar 	 * performance disadvantage.
317cee22a15SViresh Kumar 	 *
318cee22a15SViresh Kumar 	 * http://thread.gmane.org/gmane.linux.kernel/1480396
319cee22a15SViresh Kumar 	 */
320cee22a15SViresh Kumar 	WQ_POWER_EFFICIENT	= 1 << 7,
321cee22a15SViresh Kumar 
322618b01ebSTejun Heo 	__WQ_DRAINING		= 1 << 16, /* internal: workqueue is draining */
3238719dceaSTejun Heo 	__WQ_ORDERED		= 1 << 17, /* internal: workqueue is ordered */
324e41e704bSTejun Heo 
325b71ab8c2STejun Heo 	WQ_MAX_ACTIVE		= 512,	  /* I like 512, better ideas? */
326f3421797STejun Heo 	WQ_MAX_UNBOUND_PER_CPU	= 4,	  /* 4 * #cpus for unbound wq */
327b71ab8c2STejun Heo 	WQ_DFL_ACTIVE		= WQ_MAX_ACTIVE / 2,
32897e37d7bSTejun Heo };
32952bad64dSDavid Howells 
330f3421797STejun Heo /* unbound wq's aren't per-cpu, scale max_active according to #cpus */
331f3421797STejun Heo #define WQ_UNBOUND_MAX_ACTIVE	\
332f3421797STejun Heo 	max_t(int, WQ_MAX_ACTIVE, num_possible_cpus() * WQ_MAX_UNBOUND_PER_CPU)
333f3421797STejun Heo 
334d320c038STejun Heo /*
335d320c038STejun Heo  * System-wide workqueues which are always present.
336d320c038STejun Heo  *
337d320c038STejun Heo  * system_wq is the one used by schedule[_delayed]_work[_on]().
338d320c038STejun Heo  * Multi-CPU multi-threaded.  There are users which expect relatively
339d320c038STejun Heo  * short queue flush time.  Don't queue works which can run for too
340d320c038STejun Heo  * long.
341d320c038STejun Heo  *
34273e43544SLai Jiangshan  * system_highpri_wq is similar to system_wq but for work items which
34373e43544SLai Jiangshan  * require WQ_HIGHPRI.
34473e43544SLai Jiangshan  *
345d320c038STejun Heo  * system_long_wq is similar to system_wq but may host long running
346d320c038STejun Heo  * works.  Queue flushing might take relatively long.
347d320c038STejun Heo  *
348f3421797STejun Heo  * system_unbound_wq is unbound workqueue.  Workers are not bound to
349f3421797STejun Heo  * any specific CPU, not concurrency managed, and all queued works are
350f3421797STejun Heo  * executed immediately as long as max_active limit is not reached and
351f3421797STejun Heo  * resources are available.
3524149efb2STejun Heo  *
35324d51addSTejun Heo  * system_freezable_wq is equivalent to system_wq except that it's
35424d51addSTejun Heo  * freezable.
3550668106cSViresh Kumar  *
3560668106cSViresh Kumar  * *_power_efficient_wq are inclined towards saving power and converted
3570668106cSViresh Kumar  * into WQ_UNBOUND variants if 'wq_power_efficient' is enabled; otherwise,
3580668106cSViresh Kumar  * they are same as their non-power-efficient counterparts - e.g.
3590668106cSViresh Kumar  * system_power_efficient_wq is identical to system_wq if
3600668106cSViresh Kumar  * 'wq_power_efficient' is disabled.  See WQ_POWER_EFFICIENT for more info.
361d320c038STejun Heo  */
362d320c038STejun Heo extern struct workqueue_struct *system_wq;
36373e43544SLai Jiangshan extern struct workqueue_struct *system_highpri_wq;
364d320c038STejun Heo extern struct workqueue_struct *system_long_wq;
365f3421797STejun Heo extern struct workqueue_struct *system_unbound_wq;
36624d51addSTejun Heo extern struct workqueue_struct *system_freezable_wq;
3670668106cSViresh Kumar extern struct workqueue_struct *system_power_efficient_wq;
3680668106cSViresh Kumar extern struct workqueue_struct *system_freezable_power_efficient_wq;
369ae930e0fSTejun Heo 
3704e6045f1SJohannes Berg extern struct workqueue_struct *
371b196be89STejun Heo __alloc_workqueue_key(const char *fmt, unsigned int flags, int max_active,
372b196be89STejun Heo 	struct lock_class_key *key, const char *lock_name, ...) __printf(1, 6);
3734e6045f1SJohannes Berg 
374b196be89STejun Heo /**
375b196be89STejun Heo  * alloc_workqueue - allocate a workqueue
376b196be89STejun Heo  * @fmt: printf format for the name of the workqueue
377b196be89STejun Heo  * @flags: WQ_* flags
378b196be89STejun Heo  * @max_active: max in-flight work items, 0 for default
379b196be89STejun Heo  * @args: args for @fmt
380b196be89STejun Heo  *
381b196be89STejun Heo  * Allocate a workqueue with the specified parameters.  For detailed
382b196be89STejun Heo  * information on WQ_* flags, please refer to Documentation/workqueue.txt.
383b196be89STejun Heo  *
384b196be89STejun Heo  * The __lock_name macro dance is to guarantee that single lock_class_key
385b196be89STejun Heo  * doesn't end up with different namesm, which isn't allowed by lockdep.
386b196be89STejun Heo  *
387b196be89STejun Heo  * RETURNS:
388b196be89STejun Heo  * Pointer to the allocated workqueue on success, %NULL on failure.
389b196be89STejun Heo  */
3904e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
391b196be89STejun Heo #define alloc_workqueue(fmt, flags, max_active, args...)		\
3924e6045f1SJohannes Berg ({									\
3934e6045f1SJohannes Berg 	static struct lock_class_key __key;				\
394eb13ba87SJohannes Berg 	const char *__lock_name;					\
395eb13ba87SJohannes Berg 									\
396fada94eeSLi Zhong 	__lock_name = #fmt#args;					\
3974e6045f1SJohannes Berg 									\
398b196be89STejun Heo 	__alloc_workqueue_key((fmt), (flags), (max_active),		\
399b196be89STejun Heo 			      &__key, __lock_name, ##args);		\
4004e6045f1SJohannes Berg })
4014e6045f1SJohannes Berg #else
402b196be89STejun Heo #define alloc_workqueue(fmt, flags, max_active, args...)		\
403b196be89STejun Heo 	__alloc_workqueue_key((fmt), (flags), (max_active),		\
404b196be89STejun Heo 			      NULL, NULL, ##args)
4054e6045f1SJohannes Berg #endif
4064e6045f1SJohannes Berg 
40781dcaf65STejun Heo /**
40881dcaf65STejun Heo  * alloc_ordered_workqueue - allocate an ordered workqueue
409b196be89STejun Heo  * @fmt: printf format for the name of the workqueue
41058a69cb4STejun Heo  * @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful)
411b196be89STejun Heo  * @args: args for @fmt
41281dcaf65STejun Heo  *
41381dcaf65STejun Heo  * Allocate an ordered workqueue.  An ordered workqueue executes at
41481dcaf65STejun Heo  * most one work item at any given time in the queued order.  They are
41581dcaf65STejun Heo  * implemented as unbound workqueues with @max_active of one.
41681dcaf65STejun Heo  *
41781dcaf65STejun Heo  * RETURNS:
41881dcaf65STejun Heo  * Pointer to the allocated workqueue on success, %NULL on failure.
41981dcaf65STejun Heo  */
420b196be89STejun Heo #define alloc_ordered_workqueue(fmt, flags, args...)			\
4218719dceaSTejun Heo 	alloc_workqueue(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), 1, ##args)
42281dcaf65STejun Heo 
42397e37d7bSTejun Heo #define create_workqueue(name)						\
424d8537548SKees Cook 	alloc_workqueue("%s", WQ_MEM_RECLAIM, 1, (name))
42558a69cb4STejun Heo #define create_freezable_workqueue(name)				\
426d8537548SKees Cook 	alloc_workqueue("%s", WQ_FREEZABLE | WQ_UNBOUND | WQ_MEM_RECLAIM, \
427d8537548SKees Cook 			1, (name))
42897e37d7bSTejun Heo #define create_singlethread_workqueue(name)				\
429d8537548SKees Cook 	alloc_workqueue("%s", WQ_UNBOUND | WQ_MEM_RECLAIM, 1, (name))
4301da177e4SLinus Torvalds 
4311da177e4SLinus Torvalds extern void destroy_workqueue(struct workqueue_struct *wq);
4321da177e4SLinus Torvalds 
4337a4e344cSTejun Heo struct workqueue_attrs *alloc_workqueue_attrs(gfp_t gfp_mask);
4347a4e344cSTejun Heo void free_workqueue_attrs(struct workqueue_attrs *attrs);
4359e8cd2f5STejun Heo int apply_workqueue_attrs(struct workqueue_struct *wq,
4369e8cd2f5STejun Heo 			  const struct workqueue_attrs *attrs);
4377a4e344cSTejun Heo 
438d4283e93STejun Heo extern bool queue_work_on(int cpu, struct workqueue_struct *wq,
439c1a220e7SZhang Rui 			struct work_struct *work);
440d4283e93STejun Heo extern bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
44152bad64dSDavid Howells 			struct delayed_work *work, unsigned long delay);
4428376fe22STejun Heo extern bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
4438376fe22STejun Heo 			struct delayed_work *dwork, unsigned long delay);
44428e53bddSOleg Nesterov 
445b3c97528SHarvey Harrison extern void flush_workqueue(struct workqueue_struct *wq);
4469c5a2ba7STejun Heo extern void drain_workqueue(struct workqueue_struct *wq);
44728e53bddSOleg Nesterov extern void flush_scheduled_work(void);
4481da177e4SLinus Torvalds 
44965f27f38SDavid Howells extern int schedule_on_each_cpu(work_func_t func);
4501da177e4SLinus Torvalds 
45165f27f38SDavid Howells int execute_in_process_context(work_func_t fn, struct execute_work *);
4521da177e4SLinus Torvalds 
453401a8d04STejun Heo extern bool flush_work(struct work_struct *work);
454401a8d04STejun Heo extern bool cancel_work_sync(struct work_struct *work);
455401a8d04STejun Heo 
456401a8d04STejun Heo extern bool flush_delayed_work(struct delayed_work *dwork);
45757b30ae7STejun Heo extern bool cancel_delayed_work(struct delayed_work *dwork);
458401a8d04STejun Heo extern bool cancel_delayed_work_sync(struct delayed_work *dwork);
45928e53bddSOleg Nesterov 
460dcd989cbSTejun Heo extern void workqueue_set_max_active(struct workqueue_struct *wq,
461dcd989cbSTejun Heo 				     int max_active);
462e6267616STejun Heo extern bool current_is_workqueue_rescuer(void);
463d84ff051STejun Heo extern bool workqueue_congested(int cpu, struct workqueue_struct *wq);
464dcd989cbSTejun Heo extern unsigned int work_busy(struct work_struct *work);
4653d1cb205STejun Heo extern __printf(1, 2) void set_worker_desc(const char *fmt, ...);
4663d1cb205STejun Heo extern void print_worker_info(const char *log_lvl, struct task_struct *task);
467dcd989cbSTejun Heo 
4688425e3d5STejun Heo /**
4698425e3d5STejun Heo  * queue_work - queue work on a workqueue
4708425e3d5STejun Heo  * @wq: workqueue to use
4718425e3d5STejun Heo  * @work: work to queue
4728425e3d5STejun Heo  *
4738425e3d5STejun Heo  * Returns %false if @work was already on a queue, %true otherwise.
4748425e3d5STejun Heo  *
4758425e3d5STejun Heo  * We queue the work to the CPU on which it was submitted, but if the CPU dies
4768425e3d5STejun Heo  * it can be processed by another CPU.
4778425e3d5STejun Heo  */
4788425e3d5STejun Heo static inline bool queue_work(struct workqueue_struct *wq,
4798425e3d5STejun Heo 			      struct work_struct *work)
4808425e3d5STejun Heo {
4818425e3d5STejun Heo 	return queue_work_on(WORK_CPU_UNBOUND, wq, work);
4828425e3d5STejun Heo }
4838425e3d5STejun Heo 
4848425e3d5STejun Heo /**
4858425e3d5STejun Heo  * queue_delayed_work - queue work on a workqueue after delay
4868425e3d5STejun Heo  * @wq: workqueue to use
4878425e3d5STejun Heo  * @dwork: delayable work to queue
4888425e3d5STejun Heo  * @delay: number of jiffies to wait before queueing
4898425e3d5STejun Heo  *
4908425e3d5STejun Heo  * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
4918425e3d5STejun Heo  */
4928425e3d5STejun Heo static inline bool queue_delayed_work(struct workqueue_struct *wq,
4938425e3d5STejun Heo 				      struct delayed_work *dwork,
4948425e3d5STejun Heo 				      unsigned long delay)
4958425e3d5STejun Heo {
4968425e3d5STejun Heo 	return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
4978425e3d5STejun Heo }
4988425e3d5STejun Heo 
4998425e3d5STejun Heo /**
5008425e3d5STejun Heo  * mod_delayed_work - modify delay of or queue a delayed work
5018425e3d5STejun Heo  * @wq: workqueue to use
5028425e3d5STejun Heo  * @dwork: work to queue
5038425e3d5STejun Heo  * @delay: number of jiffies to wait before queueing
5048425e3d5STejun Heo  *
5058425e3d5STejun Heo  * mod_delayed_work_on() on local CPU.
5068425e3d5STejun Heo  */
5078425e3d5STejun Heo static inline bool mod_delayed_work(struct workqueue_struct *wq,
5088425e3d5STejun Heo 				    struct delayed_work *dwork,
5098425e3d5STejun Heo 				    unsigned long delay)
5108425e3d5STejun Heo {
5118425e3d5STejun Heo 	return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
5128425e3d5STejun Heo }
5138425e3d5STejun Heo 
5148425e3d5STejun Heo /**
5158425e3d5STejun Heo  * schedule_work_on - put work task on a specific cpu
5168425e3d5STejun Heo  * @cpu: cpu to put the work task on
5178425e3d5STejun Heo  * @work: job to be done
5188425e3d5STejun Heo  *
5198425e3d5STejun Heo  * This puts a job on a specific cpu
5208425e3d5STejun Heo  */
5218425e3d5STejun Heo static inline bool schedule_work_on(int cpu, struct work_struct *work)
5228425e3d5STejun Heo {
5238425e3d5STejun Heo 	return queue_work_on(cpu, system_wq, work);
5248425e3d5STejun Heo }
5258425e3d5STejun Heo 
5268425e3d5STejun Heo /**
5278425e3d5STejun Heo  * schedule_work - put work task in global workqueue
5288425e3d5STejun Heo  * @work: job to be done
5298425e3d5STejun Heo  *
5308425e3d5STejun Heo  * Returns %false if @work was already on the kernel-global workqueue and
5318425e3d5STejun Heo  * %true otherwise.
5328425e3d5STejun Heo  *
5338425e3d5STejun Heo  * This puts a job in the kernel-global workqueue if it was not already
5348425e3d5STejun Heo  * queued and leaves it in the same position on the kernel-global
5358425e3d5STejun Heo  * workqueue otherwise.
5368425e3d5STejun Heo  */
5378425e3d5STejun Heo static inline bool schedule_work(struct work_struct *work)
5388425e3d5STejun Heo {
5398425e3d5STejun Heo 	return queue_work(system_wq, work);
5408425e3d5STejun Heo }
5418425e3d5STejun Heo 
5428425e3d5STejun Heo /**
5438425e3d5STejun Heo  * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
5448425e3d5STejun Heo  * @cpu: cpu to use
5458425e3d5STejun Heo  * @dwork: job to be done
5468425e3d5STejun Heo  * @delay: number of jiffies to wait
5478425e3d5STejun Heo  *
5488425e3d5STejun Heo  * After waiting for a given time this puts a job in the kernel-global
5498425e3d5STejun Heo  * workqueue on the specified CPU.
5508425e3d5STejun Heo  */
5518425e3d5STejun Heo static inline bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
5528425e3d5STejun Heo 					    unsigned long delay)
5538425e3d5STejun Heo {
5548425e3d5STejun Heo 	return queue_delayed_work_on(cpu, system_wq, dwork, delay);
5558425e3d5STejun Heo }
5568425e3d5STejun Heo 
5578425e3d5STejun Heo /**
5588425e3d5STejun Heo  * schedule_delayed_work - put work task in global workqueue after delay
5598425e3d5STejun Heo  * @dwork: job to be done
5608425e3d5STejun Heo  * @delay: number of jiffies to wait or 0 for immediate execution
5618425e3d5STejun Heo  *
5628425e3d5STejun Heo  * After waiting for a given time this puts a job in the kernel-global
5638425e3d5STejun Heo  * workqueue.
5648425e3d5STejun Heo  */
5658425e3d5STejun Heo static inline bool schedule_delayed_work(struct delayed_work *dwork,
5668425e3d5STejun Heo 					 unsigned long delay)
5678425e3d5STejun Heo {
5688425e3d5STejun Heo 	return queue_delayed_work(system_wq, dwork, delay);
5698425e3d5STejun Heo }
5708425e3d5STejun Heo 
5718425e3d5STejun Heo /**
5728425e3d5STejun Heo  * keventd_up - is workqueue initialized yet?
5738425e3d5STejun Heo  */
5748425e3d5STejun Heo static inline bool keventd_up(void)
5758425e3d5STejun Heo {
5768425e3d5STejun Heo 	return system_wq != NULL;
5778425e3d5STejun Heo }
5788425e3d5STejun Heo 
5792d3854a3SRusty Russell #ifndef CONFIG_SMP
580d84ff051STejun Heo static inline long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
5812d3854a3SRusty Russell {
5822d3854a3SRusty Russell 	return fn(arg);
5832d3854a3SRusty Russell }
5842d3854a3SRusty Russell #else
585d84ff051STejun Heo long work_on_cpu(int cpu, long (*fn)(void *), void *arg);
5862d3854a3SRusty Russell #endif /* CONFIG_SMP */
587a25909a4SPaul E. McKenney 
588a0a1a5fdSTejun Heo #ifdef CONFIG_FREEZER
589a0a1a5fdSTejun Heo extern void freeze_workqueues_begin(void);
590a0a1a5fdSTejun Heo extern bool freeze_workqueues_busy(void);
591a0a1a5fdSTejun Heo extern void thaw_workqueues(void);
592a0a1a5fdSTejun Heo #endif /* CONFIG_FREEZER */
593a0a1a5fdSTejun Heo 
594226223abSTejun Heo #ifdef CONFIG_SYSFS
595226223abSTejun Heo int workqueue_sysfs_register(struct workqueue_struct *wq);
596226223abSTejun Heo #else	/* CONFIG_SYSFS */
597226223abSTejun Heo static inline int workqueue_sysfs_register(struct workqueue_struct *wq)
598226223abSTejun Heo { return 0; }
599226223abSTejun Heo #endif	/* CONFIG_SYSFS */
600226223abSTejun Heo 
6011da177e4SLinus Torvalds #endif
602