xref: /openbmc/linux/include/linux/workqueue.h (revision f991b318)
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>
141da177e4SLinus Torvalds 
151da177e4SLinus Torvalds struct workqueue_struct;
161da177e4SLinus Torvalds 
1765f27f38SDavid Howells struct work_struct;
1865f27f38SDavid Howells typedef void (*work_func_t)(struct work_struct *work);
19d8e794dfSTejun Heo void delayed_work_timer_fn(unsigned long __data);
206bb49e59SDavid Howells 
21a08727baSLinus Torvalds /*
22a08727baSLinus Torvalds  * The first word is the work queue pointer and the flags rolled into
23a08727baSLinus Torvalds  * one
24a08727baSLinus Torvalds  */
25a08727baSLinus Torvalds #define work_data_bits(work) ((unsigned long *)(&(work)->data))
26a08727baSLinus Torvalds 
2722df02bbSTejun Heo enum {
2822df02bbSTejun Heo 	WORK_STRUCT_PENDING_BIT	= 0,	/* work item is pending execution */
298a2e8e5dSTejun Heo 	WORK_STRUCT_DELAYED_BIT	= 1,	/* work item is delayed */
308a2e8e5dSTejun Heo 	WORK_STRUCT_CWQ_BIT	= 2,	/* data points to cwq */
318a2e8e5dSTejun Heo 	WORK_STRUCT_LINKED_BIT	= 3,	/* next work is linked to this one */
3222df02bbSTejun Heo #ifdef CONFIG_DEBUG_OBJECTS_WORK
338a2e8e5dSTejun Heo 	WORK_STRUCT_STATIC_BIT	= 4,	/* static initializer (debugobjects) */
348a2e8e5dSTejun Heo 	WORK_STRUCT_COLOR_SHIFT	= 5,	/* color for workqueue flushing */
350f900049STejun Heo #else
368a2e8e5dSTejun Heo 	WORK_STRUCT_COLOR_SHIFT	= 4,	/* color for workqueue flushing */
3722df02bbSTejun Heo #endif
3822df02bbSTejun Heo 
3973f53c4aSTejun Heo 	WORK_STRUCT_COLOR_BITS	= 4,
4073f53c4aSTejun Heo 
4122df02bbSTejun Heo 	WORK_STRUCT_PENDING	= 1 << WORK_STRUCT_PENDING_BIT,
428a2e8e5dSTejun Heo 	WORK_STRUCT_DELAYED	= 1 << WORK_STRUCT_DELAYED_BIT,
43e120153dSTejun Heo 	WORK_STRUCT_CWQ		= 1 << WORK_STRUCT_CWQ_BIT,
44affee4b2STejun Heo 	WORK_STRUCT_LINKED	= 1 << WORK_STRUCT_LINKED_BIT,
4522df02bbSTejun Heo #ifdef CONFIG_DEBUG_OBJECTS_WORK
4622df02bbSTejun Heo 	WORK_STRUCT_STATIC	= 1 << WORK_STRUCT_STATIC_BIT,
4722df02bbSTejun Heo #else
4822df02bbSTejun Heo 	WORK_STRUCT_STATIC	= 0,
4922df02bbSTejun Heo #endif
5022df02bbSTejun Heo 
5173f53c4aSTejun Heo 	/*
5273f53c4aSTejun Heo 	 * The last color is no color used for works which don't
5373f53c4aSTejun Heo 	 * participate in workqueue flushing.
5473f53c4aSTejun Heo 	 */
5573f53c4aSTejun Heo 	WORK_NR_COLORS		= (1 << WORK_STRUCT_COLOR_BITS) - 1,
5673f53c4aSTejun Heo 	WORK_NO_COLOR		= WORK_NR_COLORS,
5773f53c4aSTejun Heo 
58bdbc5dd7STejun Heo 	/* special cpu IDs */
59f3421797STejun Heo 	WORK_CPU_UNBOUND	= NR_CPUS,
60f3421797STejun Heo 	WORK_CPU_NONE		= NR_CPUS + 1,
61bdbc5dd7STejun Heo 	WORK_CPU_LAST		= WORK_CPU_NONE,
62bdbc5dd7STejun Heo 
6373f53c4aSTejun Heo 	/*
64e120153dSTejun Heo 	 * Reserve 7 bits off of cwq pointer w/ debugobjects turned
658a2e8e5dSTejun Heo 	 * off.  This makes cwqs aligned to 256 bytes and allows 15
668a2e8e5dSTejun Heo 	 * workqueue flush colors.
6773f53c4aSTejun Heo 	 */
6873f53c4aSTejun Heo 	WORK_STRUCT_FLAG_BITS	= WORK_STRUCT_COLOR_SHIFT +
6973f53c4aSTejun Heo 				  WORK_STRUCT_COLOR_BITS,
7073f53c4aSTejun Heo 
71b5490077STejun Heo 	/* data contains off-queue information when !WORK_STRUCT_CWQ */
72b5490077STejun Heo 	WORK_OFFQ_FLAG_BASE	= WORK_STRUCT_FLAG_BITS,
73bbb68dfaSTejun Heo 
74bbb68dfaSTejun Heo 	WORK_OFFQ_CANCELING	= (1 << WORK_OFFQ_FLAG_BASE),
75bbb68dfaSTejun Heo 
76bbb68dfaSTejun Heo 	WORK_OFFQ_FLAG_BITS	= 1,
77b5490077STejun Heo 	WORK_OFFQ_CPU_SHIFT	= WORK_OFFQ_FLAG_BASE + WORK_OFFQ_FLAG_BITS,
78b5490077STejun Heo 
79b5490077STejun Heo 	/* convenience constants */
800f900049STejun Heo 	WORK_STRUCT_FLAG_MASK	= (1UL << WORK_STRUCT_FLAG_BITS) - 1,
8122df02bbSTejun Heo 	WORK_STRUCT_WQ_DATA_MASK = ~WORK_STRUCT_FLAG_MASK,
82b5490077STejun Heo 	WORK_STRUCT_NO_CPU	= (unsigned long)WORK_CPU_NONE << WORK_OFFQ_CPU_SHIFT,
83dcd989cbSTejun Heo 
84dcd989cbSTejun Heo 	/* bit mask for work_busy() return values */
85dcd989cbSTejun Heo 	WORK_BUSY_PENDING	= 1 << 0,
86dcd989cbSTejun Heo 	WORK_BUSY_RUNNING	= 1 << 1,
8722df02bbSTejun Heo };
8822df02bbSTejun Heo 
891da177e4SLinus Torvalds struct work_struct {
90a08727baSLinus Torvalds 	atomic_long_t data;
911da177e4SLinus Torvalds 	struct list_head entry;
926bb49e59SDavid Howells 	work_func_t func;
934e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
944e6045f1SJohannes Berg 	struct lockdep_map lockdep_map;
954e6045f1SJohannes Berg #endif
9652bad64dSDavid Howells };
9752bad64dSDavid Howells 
987a22ad75STejun Heo #define WORK_DATA_INIT()	ATOMIC_LONG_INIT(WORK_STRUCT_NO_CPU)
997a22ad75STejun Heo #define WORK_DATA_STATIC_INIT()	\
1007a22ad75STejun Heo 	ATOMIC_LONG_INIT(WORK_STRUCT_NO_CPU | WORK_STRUCT_STATIC)
101a08727baSLinus Torvalds 
10252bad64dSDavid Howells struct delayed_work {
10352bad64dSDavid Howells 	struct work_struct work;
1041da177e4SLinus Torvalds 	struct timer_list timer;
1051265057fSTejun Heo 	int cpu;
1061da177e4SLinus Torvalds };
1071da177e4SLinus Torvalds 
108bf6aede7SJean Delvare static inline struct delayed_work *to_delayed_work(struct work_struct *work)
109bf6aede7SJean Delvare {
110bf6aede7SJean Delvare 	return container_of(work, struct delayed_work, work);
111bf6aede7SJean Delvare }
112bf6aede7SJean Delvare 
1131fa44ecaSJames Bottomley struct execute_work {
1141fa44ecaSJames Bottomley 	struct work_struct work;
1151fa44ecaSJames Bottomley };
1161fa44ecaSJames Bottomley 
1174e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
1184e6045f1SJohannes Berg /*
1194e6045f1SJohannes Berg  * NB: because we have to copy the lockdep_map, setting _key
1204e6045f1SJohannes Berg  * here is required, otherwise it could get initialised to the
1214e6045f1SJohannes Berg  * copy of the lockdep_map!
1224e6045f1SJohannes Berg  */
1234e6045f1SJohannes Berg #define __WORK_INIT_LOCKDEP_MAP(n, k) \
1244e6045f1SJohannes Berg 	.lockdep_map = STATIC_LOCKDEP_MAP_INIT(n, k),
1254e6045f1SJohannes Berg #else
1264e6045f1SJohannes Berg #define __WORK_INIT_LOCKDEP_MAP(n, k)
1274e6045f1SJohannes Berg #endif
1284e6045f1SJohannes Berg 
12965f27f38SDavid Howells #define __WORK_INITIALIZER(n, f) {					\
130dc186ad7SThomas Gleixner 	.data = WORK_DATA_STATIC_INIT(),				\
13165f27f38SDavid Howells 	.entry	= { &(n).entry, &(n).entry },				\
13265f27f38SDavid Howells 	.func = (f),							\
1334e6045f1SJohannes Berg 	__WORK_INIT_LOCKDEP_MAP(#n, &(n))				\
13465f27f38SDavid Howells 	}
13565f27f38SDavid Howells 
136f991b318STejun Heo #define __DELAYED_WORK_INITIALIZER(n, f, tflags) {			\
13765f27f38SDavid Howells 	.work = __WORK_INITIALIZER((n).work, (f)),			\
138f991b318STejun Heo 	.timer = __TIMER_INITIALIZER(delayed_work_timer_fn,		\
139f991b318STejun Heo 			0, (unsigned long)&(n), (tflags)),		\
140dd6414b5SPhil Carmody 	}
141dd6414b5SPhil Carmody 
14265f27f38SDavid Howells #define DECLARE_WORK(n, f)						\
14365f27f38SDavid Howells 	struct work_struct n = __WORK_INITIALIZER(n, f)
14465f27f38SDavid Howells 
14565f27f38SDavid Howells #define DECLARE_DELAYED_WORK(n, f)					\
146f991b318STejun Heo 	struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, 0)
14765f27f38SDavid Howells 
148203b42f7STejun Heo #define DECLARE_DEFERRABLE_WORK(n, f)					\
149f991b318STejun Heo 	struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, TIMER_DEFERRABLE)
150dd6414b5SPhil Carmody 
1511da177e4SLinus Torvalds /*
15265f27f38SDavid Howells  * initialize a work item's function pointer
1531da177e4SLinus Torvalds  */
15465f27f38SDavid Howells #define PREPARE_WORK(_work, _func)					\
1551da177e4SLinus Torvalds 	do {								\
15652bad64dSDavid Howells 		(_work)->func = (_func);				\
1571da177e4SLinus Torvalds 	} while (0)
1581da177e4SLinus Torvalds 
15965f27f38SDavid Howells #define PREPARE_DELAYED_WORK(_work, _func)				\
16065f27f38SDavid Howells 	PREPARE_WORK(&(_work)->work, (_func))
16152bad64dSDavid Howells 
162dc186ad7SThomas Gleixner #ifdef CONFIG_DEBUG_OBJECTS_WORK
163dc186ad7SThomas Gleixner extern void __init_work(struct work_struct *work, int onstack);
164dc186ad7SThomas Gleixner extern void destroy_work_on_stack(struct work_struct *work);
1654690c4abSTejun Heo static inline unsigned int work_static(struct work_struct *work)
1664690c4abSTejun Heo {
16722df02bbSTejun Heo 	return *work_data_bits(work) & WORK_STRUCT_STATIC;
1684690c4abSTejun Heo }
169dc186ad7SThomas Gleixner #else
170dc186ad7SThomas Gleixner static inline void __init_work(struct work_struct *work, int onstack) { }
171dc186ad7SThomas Gleixner static inline void destroy_work_on_stack(struct work_struct *work) { }
1724690c4abSTejun Heo static inline unsigned int work_static(struct work_struct *work) { return 0; }
173dc186ad7SThomas Gleixner #endif
174dc186ad7SThomas Gleixner 
1751da177e4SLinus Torvalds /*
17652bad64dSDavid Howells  * initialize all of a work item in one go
177a08727baSLinus Torvalds  *
178b9049df5SDmitri Vorobiev  * NOTE! No point in using "atomic_long_set()": using a direct
179a08727baSLinus Torvalds  * assignment of the work data initializer allows the compiler
180a08727baSLinus Torvalds  * to generate better code.
1811da177e4SLinus Torvalds  */
1824e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
183dc186ad7SThomas Gleixner #define __INIT_WORK(_work, _func, _onstack)				\
1844e6045f1SJohannes Berg 	do {								\
1854e6045f1SJohannes Berg 		static struct lock_class_key __key;			\
1864e6045f1SJohannes Berg 									\
187dc186ad7SThomas Gleixner 		__init_work((_work), _onstack);				\
1884e6045f1SJohannes Berg 		(_work)->data = (atomic_long_t) WORK_DATA_INIT();	\
1894e6045f1SJohannes Berg 		lockdep_init_map(&(_work)->lockdep_map, #_work, &__key, 0); \
1904e6045f1SJohannes Berg 		INIT_LIST_HEAD(&(_work)->entry);			\
1914e6045f1SJohannes Berg 		PREPARE_WORK((_work), (_func));				\
1924e6045f1SJohannes Berg 	} while (0)
1934e6045f1SJohannes Berg #else
194dc186ad7SThomas Gleixner #define __INIT_WORK(_work, _func, _onstack)				\
1951da177e4SLinus Torvalds 	do {								\
196dc186ad7SThomas Gleixner 		__init_work((_work), _onstack);				\
19723b2e599SOleg Nesterov 		(_work)->data = (atomic_long_t) WORK_DATA_INIT();	\
19865f27f38SDavid Howells 		INIT_LIST_HEAD(&(_work)->entry);			\
19965f27f38SDavid Howells 		PREPARE_WORK((_work), (_func));				\
20065f27f38SDavid Howells 	} while (0)
2014e6045f1SJohannes Berg #endif
20265f27f38SDavid Howells 
203dc186ad7SThomas Gleixner #define INIT_WORK(_work, _func)						\
204dc186ad7SThomas Gleixner 	do {								\
205dc186ad7SThomas Gleixner 		__INIT_WORK((_work), (_func), 0);			\
206dc186ad7SThomas Gleixner 	} while (0)
207dc186ad7SThomas Gleixner 
208ca1cab37SAndrew Morton #define INIT_WORK_ONSTACK(_work, _func)					\
209dc186ad7SThomas Gleixner 	do {								\
210dc186ad7SThomas Gleixner 		__INIT_WORK((_work), (_func), 1);			\
211dc186ad7SThomas Gleixner 	} while (0)
212dc186ad7SThomas Gleixner 
213f991b318STejun Heo #define __INIT_DELAYED_WORK(_work, _func, _tflags)			\
21465f27f38SDavid Howells 	do {								\
21565f27f38SDavid Howells 		INIT_WORK(&(_work)->work, (_func));			\
216f991b318STejun Heo 		__setup_timer(&(_work)->timer, delayed_work_timer_fn,	\
217f991b318STejun Heo 			      (unsigned long)(_work), (_tflags));	\
21865f27f38SDavid Howells 	} while (0)
21965f27f38SDavid Howells 
220f991b318STejun Heo #define __INIT_DELAYED_WORK_ONSTACK(_work, _func, _tflags)		\
2216d612b0fSPeter Zijlstra 	do {								\
222ca1cab37SAndrew Morton 		INIT_WORK_ONSTACK(&(_work)->work, (_func));		\
223f991b318STejun Heo 		__setup_timer_on_stack(&(_work)->timer,			\
224f991b318STejun Heo 				       delayed_work_timer_fn,		\
225f991b318STejun Heo 				       (unsigned long)(_work),		\
226f991b318STejun Heo 				       (_tflags));			\
2276d612b0fSPeter Zijlstra 	} while (0)
2286d612b0fSPeter Zijlstra 
229f991b318STejun Heo #define INIT_DELAYED_WORK(_work, _func)					\
230f991b318STejun Heo 	__INIT_DELAYED_WORK(_work, _func, 0)
231f991b318STejun Heo 
232f991b318STejun Heo #define INIT_DELAYED_WORK_ONSTACK(_work, _func)				\
233f991b318STejun Heo 	__INIT_DELAYED_WORK_ONSTACK(_work, _func, 0)
234f991b318STejun Heo 
235203b42f7STejun Heo #define INIT_DEFERRABLE_WORK(_work, _func)				\
236f991b318STejun Heo 	__INIT_DELAYED_WORK(_work, _func, TIMER_DEFERRABLE)
237f991b318STejun Heo 
238f991b318STejun Heo #define INIT_DEFERRABLE_WORK_ONSTACK(_work, _func)			\
239f991b318STejun Heo 	__INIT_DELAYED_WORK_ONSTACK(_work, _func, TIMER_DEFERRABLE)
24028287033SVenki Pallipadi 
241365970a1SDavid Howells /**
242365970a1SDavid Howells  * work_pending - Find out whether a work item is currently pending
243365970a1SDavid Howells  * @work: The work item in question
244365970a1SDavid Howells  */
245365970a1SDavid Howells #define work_pending(work) \
24622df02bbSTejun Heo 	test_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))
247365970a1SDavid Howells 
248365970a1SDavid Howells /**
249365970a1SDavid Howells  * delayed_work_pending - Find out whether a delayable work item is currently
250365970a1SDavid Howells  * pending
251365970a1SDavid Howells  * @work: The work item in question
252365970a1SDavid Howells  */
2530221872aSLinus Torvalds #define delayed_work_pending(w) \
2540221872aSLinus Torvalds 	work_pending(&(w)->work)
255365970a1SDavid Howells 
25665f27f38SDavid Howells /**
25723b2e599SOleg Nesterov  * work_clear_pending - for internal use only, mark a work item as not pending
25823b2e599SOleg Nesterov  * @work: The work item in question
25965f27f38SDavid Howells  */
26023b2e599SOleg Nesterov #define work_clear_pending(work) \
26122df02bbSTejun Heo 	clear_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))
26265f27f38SDavid Howells 
263c54fce6eSTejun Heo /*
264c54fce6eSTejun Heo  * Workqueue flags and constants.  For details, please refer to
265c54fce6eSTejun Heo  * Documentation/workqueue.txt.
266c54fce6eSTejun Heo  */
26797e37d7bSTejun Heo enum {
268bdbc5dd7STejun Heo 	WQ_NON_REENTRANT	= 1 << 0, /* guarantee non-reentrance */
269c7fc77f7STejun Heo 	WQ_UNBOUND		= 1 << 1, /* not bound to any cpu */
27058a69cb4STejun Heo 	WQ_FREEZABLE		= 1 << 2, /* freeze during suspend */
2716370a6adSTejun Heo 	WQ_MEM_RECLAIM		= 1 << 3, /* may be used for memory reclaim */
272649027d7STejun Heo 	WQ_HIGHPRI		= 1 << 4, /* high priority */
273fb0e7bebSTejun Heo 	WQ_CPU_INTENSIVE	= 1 << 5, /* cpu instensive workqueue */
274b71ab8c2STejun Heo 
2759c5a2ba7STejun Heo 	WQ_DRAINING		= 1 << 6, /* internal: workqueue is draining */
2766370a6adSTejun Heo 	WQ_RESCUER		= 1 << 7, /* internal: workqueue has rescuer */
277e41e704bSTejun Heo 
278b71ab8c2STejun Heo 	WQ_MAX_ACTIVE		= 512,	  /* I like 512, better ideas? */
279f3421797STejun Heo 	WQ_MAX_UNBOUND_PER_CPU	= 4,	  /* 4 * #cpus for unbound wq */
280b71ab8c2STejun Heo 	WQ_DFL_ACTIVE		= WQ_MAX_ACTIVE / 2,
28197e37d7bSTejun Heo };
28252bad64dSDavid Howells 
283f3421797STejun Heo /* unbound wq's aren't per-cpu, scale max_active according to #cpus */
284f3421797STejun Heo #define WQ_UNBOUND_MAX_ACTIVE	\
285f3421797STejun Heo 	max_t(int, WQ_MAX_ACTIVE, num_possible_cpus() * WQ_MAX_UNBOUND_PER_CPU)
286f3421797STejun Heo 
287d320c038STejun Heo /*
288d320c038STejun Heo  * System-wide workqueues which are always present.
289d320c038STejun Heo  *
290d320c038STejun Heo  * system_wq is the one used by schedule[_delayed]_work[_on]().
291d320c038STejun Heo  * Multi-CPU multi-threaded.  There are users which expect relatively
292d320c038STejun Heo  * short queue flush time.  Don't queue works which can run for too
293d320c038STejun Heo  * long.
294d320c038STejun Heo  *
295d320c038STejun Heo  * system_long_wq is similar to system_wq but may host long running
296d320c038STejun Heo  * works.  Queue flushing might take relatively long.
297d320c038STejun Heo  *
298f3421797STejun Heo  * system_unbound_wq is unbound workqueue.  Workers are not bound to
299f3421797STejun Heo  * any specific CPU, not concurrency managed, and all queued works are
300f3421797STejun Heo  * executed immediately as long as max_active limit is not reached and
301f3421797STejun Heo  * resources are available.
3024149efb2STejun Heo  *
30324d51addSTejun Heo  * system_freezable_wq is equivalent to system_wq except that it's
30424d51addSTejun Heo  * freezable.
305d320c038STejun Heo  */
306d320c038STejun Heo extern struct workqueue_struct *system_wq;
307d320c038STejun Heo extern struct workqueue_struct *system_long_wq;
308f3421797STejun Heo extern struct workqueue_struct *system_unbound_wq;
30924d51addSTejun Heo extern struct workqueue_struct *system_freezable_wq;
310ae930e0fSTejun Heo 
3113b07e9caSTejun Heo static inline struct workqueue_struct * __deprecated __system_nrt_wq(void)
312ae930e0fSTejun Heo {
313ae930e0fSTejun Heo 	return system_wq;
314ae930e0fSTejun Heo }
315ae930e0fSTejun Heo 
3163b07e9caSTejun Heo static inline struct workqueue_struct * __deprecated __system_nrt_freezable_wq(void)
317ae930e0fSTejun Heo {
318ae930e0fSTejun Heo 	return system_freezable_wq;
319ae930e0fSTejun Heo }
320ae930e0fSTejun Heo 
321ae930e0fSTejun Heo /* equivlalent to system_wq and system_freezable_wq, deprecated */
322ae930e0fSTejun Heo #define system_nrt_wq			__system_nrt_wq()
323ae930e0fSTejun Heo #define system_nrt_freezable_wq		__system_nrt_freezable_wq()
3241da177e4SLinus Torvalds 
3254e6045f1SJohannes Berg extern struct workqueue_struct *
326b196be89STejun Heo __alloc_workqueue_key(const char *fmt, unsigned int flags, int max_active,
327b196be89STejun Heo 	struct lock_class_key *key, const char *lock_name, ...) __printf(1, 6);
3284e6045f1SJohannes Berg 
329b196be89STejun Heo /**
330b196be89STejun Heo  * alloc_workqueue - allocate a workqueue
331b196be89STejun Heo  * @fmt: printf format for the name of the workqueue
332b196be89STejun Heo  * @flags: WQ_* flags
333b196be89STejun Heo  * @max_active: max in-flight work items, 0 for default
334b196be89STejun Heo  * @args: args for @fmt
335b196be89STejun Heo  *
336b196be89STejun Heo  * Allocate a workqueue with the specified parameters.  For detailed
337b196be89STejun Heo  * information on WQ_* flags, please refer to Documentation/workqueue.txt.
338b196be89STejun Heo  *
339b196be89STejun Heo  * The __lock_name macro dance is to guarantee that single lock_class_key
340b196be89STejun Heo  * doesn't end up with different namesm, which isn't allowed by lockdep.
341b196be89STejun Heo  *
342b196be89STejun Heo  * RETURNS:
343b196be89STejun Heo  * Pointer to the allocated workqueue on success, %NULL on failure.
344b196be89STejun Heo  */
3454e6045f1SJohannes Berg #ifdef CONFIG_LOCKDEP
346b196be89STejun Heo #define alloc_workqueue(fmt, flags, max_active, args...)		\
3474e6045f1SJohannes Berg ({									\
3484e6045f1SJohannes Berg 	static struct lock_class_key __key;				\
349eb13ba87SJohannes Berg 	const char *__lock_name;					\
350eb13ba87SJohannes Berg 									\
351b196be89STejun Heo 	if (__builtin_constant_p(fmt))					\
352b196be89STejun Heo 		__lock_name = (fmt);					\
353eb13ba87SJohannes Berg 	else								\
354b196be89STejun Heo 		__lock_name = #fmt;					\
3554e6045f1SJohannes Berg 									\
356b196be89STejun Heo 	__alloc_workqueue_key((fmt), (flags), (max_active),		\
357b196be89STejun Heo 			      &__key, __lock_name, ##args);		\
3584e6045f1SJohannes Berg })
3594e6045f1SJohannes Berg #else
360b196be89STejun Heo #define alloc_workqueue(fmt, flags, max_active, args...)		\
361b196be89STejun Heo 	__alloc_workqueue_key((fmt), (flags), (max_active),		\
362b196be89STejun Heo 			      NULL, NULL, ##args)
3634e6045f1SJohannes Berg #endif
3644e6045f1SJohannes Berg 
36581dcaf65STejun Heo /**
36681dcaf65STejun Heo  * alloc_ordered_workqueue - allocate an ordered workqueue
367b196be89STejun Heo  * @fmt: printf format for the name of the workqueue
36858a69cb4STejun Heo  * @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful)
369b196be89STejun Heo  * @args: args for @fmt
37081dcaf65STejun Heo  *
37181dcaf65STejun Heo  * Allocate an ordered workqueue.  An ordered workqueue executes at
37281dcaf65STejun Heo  * most one work item at any given time in the queued order.  They are
37381dcaf65STejun Heo  * implemented as unbound workqueues with @max_active of one.
37481dcaf65STejun Heo  *
37581dcaf65STejun Heo  * RETURNS:
37681dcaf65STejun Heo  * Pointer to the allocated workqueue on success, %NULL on failure.
37781dcaf65STejun Heo  */
378b196be89STejun Heo #define alloc_ordered_workqueue(fmt, flags, args...)			\
379b196be89STejun Heo 	alloc_workqueue(fmt, WQ_UNBOUND | (flags), 1, ##args)
38081dcaf65STejun Heo 
38197e37d7bSTejun Heo #define create_workqueue(name)						\
3826370a6adSTejun Heo 	alloc_workqueue((name), WQ_MEM_RECLAIM, 1)
38358a69cb4STejun Heo #define create_freezable_workqueue(name)				\
38458a69cb4STejun Heo 	alloc_workqueue((name), WQ_FREEZABLE | WQ_UNBOUND | WQ_MEM_RECLAIM, 1)
38597e37d7bSTejun Heo #define create_singlethread_workqueue(name)				\
3866370a6adSTejun Heo 	alloc_workqueue((name), WQ_UNBOUND | WQ_MEM_RECLAIM, 1)
3871da177e4SLinus Torvalds 
3881da177e4SLinus Torvalds extern void destroy_workqueue(struct workqueue_struct *wq);
3891da177e4SLinus Torvalds 
390d4283e93STejun Heo extern bool queue_work_on(int cpu, struct workqueue_struct *wq,
391c1a220e7SZhang Rui 			struct work_struct *work);
392d4283e93STejun Heo extern bool queue_work(struct workqueue_struct *wq, struct work_struct *work);
393d4283e93STejun Heo extern bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
39452bad64dSDavid Howells 			struct delayed_work *work, unsigned long delay);
395d4283e93STejun Heo extern bool queue_delayed_work(struct workqueue_struct *wq,
3960a13c00eSTejun Heo 			struct delayed_work *work, unsigned long delay);
3978376fe22STejun Heo extern bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
3988376fe22STejun Heo 			struct delayed_work *dwork, unsigned long delay);
3998376fe22STejun Heo extern bool mod_delayed_work(struct workqueue_struct *wq,
4008376fe22STejun Heo 			struct delayed_work *dwork, unsigned long delay);
40128e53bddSOleg Nesterov 
402b3c97528SHarvey Harrison extern void flush_workqueue(struct workqueue_struct *wq);
4039c5a2ba7STejun Heo extern void drain_workqueue(struct workqueue_struct *wq);
40428e53bddSOleg Nesterov extern void flush_scheduled_work(void);
4051da177e4SLinus Torvalds 
406d4283e93STejun Heo extern bool schedule_work_on(int cpu, struct work_struct *work);
407d4283e93STejun Heo extern bool schedule_work(struct work_struct *work);
408d4283e93STejun Heo extern bool schedule_delayed_work_on(int cpu, struct delayed_work *work,
40928e53bddSOleg Nesterov 				     unsigned long delay);
410d4283e93STejun Heo extern bool schedule_delayed_work(struct delayed_work *work,
4110a13c00eSTejun Heo 				  unsigned long delay);
41265f27f38SDavid Howells extern int schedule_on_each_cpu(work_func_t func);
4131da177e4SLinus Torvalds extern int keventd_up(void);
4141da177e4SLinus Torvalds 
41565f27f38SDavid Howells int execute_in_process_context(work_func_t fn, struct execute_work *);
4161da177e4SLinus Torvalds 
417401a8d04STejun Heo extern bool flush_work(struct work_struct *work);
418401a8d04STejun Heo extern bool cancel_work_sync(struct work_struct *work);
419401a8d04STejun Heo 
420401a8d04STejun Heo extern bool flush_delayed_work(struct delayed_work *dwork);
421401a8d04STejun Heo extern bool cancel_delayed_work_sync(struct delayed_work *dwork);
42228e53bddSOleg Nesterov 
423dcd989cbSTejun Heo extern void workqueue_set_max_active(struct workqueue_struct *wq,
424dcd989cbSTejun Heo 				     int max_active);
425dcd989cbSTejun Heo extern bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq);
426dcd989cbSTejun Heo extern unsigned int work_cpu(struct work_struct *work);
427dcd989cbSTejun Heo extern unsigned int work_busy(struct work_struct *work);
428dcd989cbSTejun Heo 
4291da177e4SLinus Torvalds /*
4301da177e4SLinus Torvalds  * Kill off a pending schedule_delayed_work().  Note that the work callback
431071b6386SOleg Nesterov  * function may still be running on return from cancel_delayed_work(), unless
432071b6386SOleg Nesterov  * it returns 1 and the work doesn't re-arm itself. Run flush_workqueue() or
43328e53bddSOleg Nesterov  * cancel_work_sync() to wait on it.
4341da177e4SLinus Torvalds  */
435401a8d04STejun Heo static inline bool cancel_delayed_work(struct delayed_work *work)
4361da177e4SLinus Torvalds {
437401a8d04STejun Heo 	bool ret;
4381da177e4SLinus Torvalds 
439223a10a9SOleg Nesterov 	ret = del_timer_sync(&work->timer);
4401da177e4SLinus Torvalds 	if (ret)
44123b2e599SOleg Nesterov 		work_clear_pending(&work->work);
4421da177e4SLinus Torvalds 	return ret;
4431da177e4SLinus Torvalds }
4441da177e4SLinus Torvalds 
4454e49627bSOleg Nesterov /*
4464e49627bSOleg Nesterov  * Like above, but uses del_timer() instead of del_timer_sync(). This means,
4474e49627bSOleg Nesterov  * if it returns 0 the timer function may be running and the queueing is in
4484e49627bSOleg Nesterov  * progress.
4494e49627bSOleg Nesterov  */
450401a8d04STejun Heo static inline bool __cancel_delayed_work(struct delayed_work *work)
4514e49627bSOleg Nesterov {
452401a8d04STejun Heo 	bool ret;
4534e49627bSOleg Nesterov 
4544e49627bSOleg Nesterov 	ret = del_timer(&work->timer);
4554e49627bSOleg Nesterov 	if (ret)
4564e49627bSOleg Nesterov 		work_clear_pending(&work->work);
4574e49627bSOleg Nesterov 	return ret;
4584e49627bSOleg Nesterov }
4594e49627bSOleg Nesterov 
460606a5020STejun Heo /* used to be different but now identical to flush_work(), deprecated */
46143829731STejun Heo static inline bool __deprecated flush_work_sync(struct work_struct *work)
462606a5020STejun Heo {
463606a5020STejun Heo 	return flush_work(work);
464606a5020STejun Heo }
465606a5020STejun Heo 
466606a5020STejun Heo /* used to be different but now identical to flush_delayed_work(), deprecated */
46743829731STejun Heo static inline bool __deprecated flush_delayed_work_sync(struct delayed_work *dwork)
468606a5020STejun Heo {
469606a5020STejun Heo 	return flush_delayed_work(dwork);
470606a5020STejun Heo }
471606a5020STejun Heo 
4722d3854a3SRusty Russell #ifndef CONFIG_SMP
4732d3854a3SRusty Russell static inline long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
4742d3854a3SRusty Russell {
4752d3854a3SRusty Russell 	return fn(arg);
4762d3854a3SRusty Russell }
4772d3854a3SRusty Russell #else
4782d3854a3SRusty Russell long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg);
4792d3854a3SRusty Russell #endif /* CONFIG_SMP */
480a25909a4SPaul E. McKenney 
481a0a1a5fdSTejun Heo #ifdef CONFIG_FREEZER
482a0a1a5fdSTejun Heo extern void freeze_workqueues_begin(void);
483a0a1a5fdSTejun Heo extern bool freeze_workqueues_busy(void);
484a0a1a5fdSTejun Heo extern void thaw_workqueues(void);
485a0a1a5fdSTejun Heo #endif /* CONFIG_FREEZER */
486a0a1a5fdSTejun Heo 
4871da177e4SLinus Torvalds #endif
488