xref: /linux-6.15/include/linux/workqueue.h (revision 8639eceb)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * workqueue.h --- work queue handling for Linux.
4  */
5 
6 #ifndef _LINUX_WORKQUEUE_H
7 #define _LINUX_WORKQUEUE_H
8 
9 #include <linux/timer.h>
10 #include <linux/linkage.h>
11 #include <linux/bitops.h>
12 #include <linux/lockdep.h>
13 #include <linux/threads.h>
14 #include <linux/atomic.h>
15 #include <linux/cpumask.h>
16 #include <linux/rcupdate.h>
17 
18 struct workqueue_struct;
19 
20 struct work_struct;
21 typedef void (*work_func_t)(struct work_struct *work);
22 void delayed_work_timer_fn(struct timer_list *t);
23 
24 /*
25  * The first word is the work queue pointer and the flags rolled into
26  * one
27  */
28 #define work_data_bits(work) ((unsigned long *)(&(work)->data))
29 
30 enum {
31 	WORK_STRUCT_PENDING_BIT	= 0,	/* work item is pending execution */
32 	WORK_STRUCT_INACTIVE_BIT= 1,	/* work item is inactive */
33 	WORK_STRUCT_PWQ_BIT	= 2,	/* data points to pwq */
34 	WORK_STRUCT_LINKED_BIT	= 3,	/* next work is linked to this one */
35 #ifdef CONFIG_DEBUG_OBJECTS_WORK
36 	WORK_STRUCT_STATIC_BIT	= 4,	/* static initializer (debugobjects) */
37 	WORK_STRUCT_COLOR_SHIFT	= 5,	/* color for workqueue flushing */
38 #else
39 	WORK_STRUCT_COLOR_SHIFT	= 4,	/* color for workqueue flushing */
40 #endif
41 
42 	WORK_STRUCT_COLOR_BITS	= 4,
43 
44 	WORK_STRUCT_PENDING	= 1 << WORK_STRUCT_PENDING_BIT,
45 	WORK_STRUCT_INACTIVE	= 1 << WORK_STRUCT_INACTIVE_BIT,
46 	WORK_STRUCT_PWQ		= 1 << WORK_STRUCT_PWQ_BIT,
47 	WORK_STRUCT_LINKED	= 1 << WORK_STRUCT_LINKED_BIT,
48 #ifdef CONFIG_DEBUG_OBJECTS_WORK
49 	WORK_STRUCT_STATIC	= 1 << WORK_STRUCT_STATIC_BIT,
50 #else
51 	WORK_STRUCT_STATIC	= 0,
52 #endif
53 
54 	WORK_NR_COLORS		= (1 << WORK_STRUCT_COLOR_BITS),
55 
56 	/* not bound to any CPU, prefer the local CPU */
57 	WORK_CPU_UNBOUND	= NR_CPUS,
58 
59 	/*
60 	 * Reserve 8 bits off of pwq pointer w/ debugobjects turned off.
61 	 * This makes pwqs aligned to 256 bytes and allows 16 workqueue
62 	 * flush colors.
63 	 */
64 	WORK_STRUCT_FLAG_BITS	= WORK_STRUCT_COLOR_SHIFT +
65 				  WORK_STRUCT_COLOR_BITS,
66 
67 	/* data contains off-queue information when !WORK_STRUCT_PWQ */
68 	WORK_OFFQ_FLAG_BASE	= WORK_STRUCT_COLOR_SHIFT,
69 
70 	__WORK_OFFQ_CANCELING	= WORK_OFFQ_FLAG_BASE,
71 
72 	/*
73 	 * When a work item is off queue, its high bits point to the last
74 	 * pool it was on.  Cap at 31 bits and use the highest number to
75 	 * indicate that no pool is associated.
76 	 */
77 	WORK_OFFQ_FLAG_BITS	= 1,
78 	WORK_OFFQ_POOL_SHIFT	= WORK_OFFQ_FLAG_BASE + WORK_OFFQ_FLAG_BITS,
79 	WORK_OFFQ_LEFT		= BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT,
80 	WORK_OFFQ_POOL_BITS	= WORK_OFFQ_LEFT <= 31 ? WORK_OFFQ_LEFT : 31,
81 
82 	/* bit mask for work_busy() return values */
83 	WORK_BUSY_PENDING	= 1 << 0,
84 	WORK_BUSY_RUNNING	= 1 << 1,
85 
86 	/* maximum string length for set_worker_desc() */
87 	WORKER_DESC_LEN		= 24,
88 };
89 
90 /* Convenience constants - of type 'unsigned long', not 'enum'! */
91 #define WORK_OFFQ_CANCELING	(1ul << __WORK_OFFQ_CANCELING)
92 #define WORK_OFFQ_POOL_NONE	((1ul << WORK_OFFQ_POOL_BITS) - 1)
93 #define WORK_STRUCT_NO_POOL	(WORK_OFFQ_POOL_NONE << WORK_OFFQ_POOL_SHIFT)
94 
95 #define WORK_STRUCT_FLAG_MASK    ((1ul << WORK_STRUCT_FLAG_BITS) - 1)
96 #define WORK_STRUCT_WQ_DATA_MASK (~WORK_STRUCT_FLAG_MASK)
97 
98 struct work_struct {
99 	atomic_long_t data;
100 	struct list_head entry;
101 	work_func_t func;
102 #ifdef CONFIG_LOCKDEP
103 	struct lockdep_map lockdep_map;
104 #endif
105 };
106 
107 #define WORK_DATA_INIT()	ATOMIC_LONG_INIT((unsigned long)WORK_STRUCT_NO_POOL)
108 #define WORK_DATA_STATIC_INIT()	\
109 	ATOMIC_LONG_INIT((unsigned long)(WORK_STRUCT_NO_POOL | WORK_STRUCT_STATIC))
110 
111 struct delayed_work {
112 	struct work_struct work;
113 	struct timer_list timer;
114 
115 	/* target workqueue and CPU ->timer uses to queue ->work */
116 	struct workqueue_struct *wq;
117 	int cpu;
118 };
119 
120 struct rcu_work {
121 	struct work_struct work;
122 	struct rcu_head rcu;
123 
124 	/* target workqueue ->rcu uses to queue ->work */
125 	struct workqueue_struct *wq;
126 };
127 
128 enum wq_affn_scope {
129 	WQ_AFFN_CPU,			/* one pod per CPU */
130 	WQ_AFFN_SMT,			/* one pod poer SMT */
131 	WQ_AFFN_CACHE,			/* one pod per LLC */
132 	WQ_AFFN_NUMA,			/* one pod per NUMA node */
133 	WQ_AFFN_SYSTEM,			/* one pod across the whole system */
134 
135 	WQ_AFFN_NR_TYPES,
136 
137 	WQ_AFFN_DFL = WQ_AFFN_CACHE,
138 };
139 
140 /**
141  * struct workqueue_attrs - A struct for workqueue attributes.
142  *
143  * This can be used to change attributes of an unbound workqueue.
144  */
145 struct workqueue_attrs {
146 	/**
147 	 * @nice: nice level
148 	 */
149 	int nice;
150 
151 	/**
152 	 * @cpumask: allowed CPUs
153 	 *
154 	 * Work items in this workqueue are affine to these CPUs and not allowed
155 	 * to execute on other CPUs. A pool serving a workqueue must have the
156 	 * same @cpumask.
157 	 */
158 	cpumask_var_t cpumask;
159 
160 	/**
161 	 * @__pod_cpumask: internal attribute used to create per-pod pools
162 	 *
163 	 * Internal use only.
164 	 *
165 	 * Per-pod unbound worker pools are used to improve locality. Always a
166 	 * subset of ->cpumask. A workqueue can be associated with multiple
167 	 * worker pools with disjoint @__pod_cpumask's. Whether the enforcement
168 	 * of a pool's @__pod_cpumask is strict depends on @affn_strict.
169 	 */
170 	cpumask_var_t __pod_cpumask;
171 
172 	/**
173 	 * @affn_strict: affinity scope is strict
174 	 *
175 	 * If clear, workqueue will make a best-effort attempt at starting the
176 	 * worker inside @__pod_cpumask but the scheduler is free to migrate it
177 	 * outside.
178 	 *
179 	 * If set, workers are only allowed to run inside @__pod_cpumask.
180 	 */
181 	bool affn_strict;
182 
183 	/*
184 	 * Below fields aren't properties of a worker_pool. They only modify how
185 	 * :c:func:`apply_workqueue_attrs` select pools and thus don't
186 	 * participate in pool hash calculations or equality comparisons.
187 	 */
188 
189 	/**
190 	 * @affn_scope: unbound CPU affinity scope
191 	 *
192 	 * CPU pods are used to improve execution locality of unbound work
193 	 * items. There are multiple pod types, one for each wq_affn_scope, and
194 	 * every CPU in the system belongs to one pod in every pod type. CPUs
195 	 * that belong to the same pod share the worker pool. For example,
196 	 * selecting %WQ_AFFN_NUMA makes the workqueue use a separate worker
197 	 * pool for each NUMA node.
198 	 */
199 	enum wq_affn_scope affn_scope;
200 
201 	/**
202 	 * @ordered: work items must be executed one by one in queueing order
203 	 */
204 	bool ordered;
205 };
206 
207 static inline struct delayed_work *to_delayed_work(struct work_struct *work)
208 {
209 	return container_of(work, struct delayed_work, work);
210 }
211 
212 static inline struct rcu_work *to_rcu_work(struct work_struct *work)
213 {
214 	return container_of(work, struct rcu_work, work);
215 }
216 
217 struct execute_work {
218 	struct work_struct work;
219 };
220 
221 #ifdef CONFIG_LOCKDEP
222 /*
223  * NB: because we have to copy the lockdep_map, setting _key
224  * here is required, otherwise it could get initialised to the
225  * copy of the lockdep_map!
226  */
227 #define __WORK_INIT_LOCKDEP_MAP(n, k) \
228 	.lockdep_map = STATIC_LOCKDEP_MAP_INIT(n, k),
229 #else
230 #define __WORK_INIT_LOCKDEP_MAP(n, k)
231 #endif
232 
233 #define __WORK_INITIALIZER(n, f) {					\
234 	.data = WORK_DATA_STATIC_INIT(),				\
235 	.entry	= { &(n).entry, &(n).entry },				\
236 	.func = (f),							\
237 	__WORK_INIT_LOCKDEP_MAP(#n, &(n))				\
238 	}
239 
240 #define __DELAYED_WORK_INITIALIZER(n, f, tflags) {			\
241 	.work = __WORK_INITIALIZER((n).work, (f)),			\
242 	.timer = __TIMER_INITIALIZER(delayed_work_timer_fn,\
243 				     (tflags) | TIMER_IRQSAFE),		\
244 	}
245 
246 #define DECLARE_WORK(n, f)						\
247 	struct work_struct n = __WORK_INITIALIZER(n, f)
248 
249 #define DECLARE_DELAYED_WORK(n, f)					\
250 	struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, 0)
251 
252 #define DECLARE_DEFERRABLE_WORK(n, f)					\
253 	struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, TIMER_DEFERRABLE)
254 
255 #ifdef CONFIG_DEBUG_OBJECTS_WORK
256 extern void __init_work(struct work_struct *work, int onstack);
257 extern void destroy_work_on_stack(struct work_struct *work);
258 extern void destroy_delayed_work_on_stack(struct delayed_work *work);
259 static inline unsigned int work_static(struct work_struct *work)
260 {
261 	return *work_data_bits(work) & WORK_STRUCT_STATIC;
262 }
263 #else
264 static inline void __init_work(struct work_struct *work, int onstack) { }
265 static inline void destroy_work_on_stack(struct work_struct *work) { }
266 static inline void destroy_delayed_work_on_stack(struct delayed_work *work) { }
267 static inline unsigned int work_static(struct work_struct *work) { return 0; }
268 #endif
269 
270 /*
271  * initialize all of a work item in one go
272  *
273  * NOTE! No point in using "atomic_long_set()": using a direct
274  * assignment of the work data initializer allows the compiler
275  * to generate better code.
276  */
277 #ifdef CONFIG_LOCKDEP
278 #define __INIT_WORK(_work, _func, _onstack)				\
279 	do {								\
280 		static struct lock_class_key __key;			\
281 									\
282 		__init_work((_work), _onstack);				\
283 		(_work)->data = (atomic_long_t) WORK_DATA_INIT();	\
284 		lockdep_init_map(&(_work)->lockdep_map, "(work_completion)"#_work, &__key, 0); \
285 		INIT_LIST_HEAD(&(_work)->entry);			\
286 		(_work)->func = (_func);				\
287 	} while (0)
288 #else
289 #define __INIT_WORK(_work, _func, _onstack)				\
290 	do {								\
291 		__init_work((_work), _onstack);				\
292 		(_work)->data = (atomic_long_t) WORK_DATA_INIT();	\
293 		INIT_LIST_HEAD(&(_work)->entry);			\
294 		(_work)->func = (_func);				\
295 	} while (0)
296 #endif
297 
298 #define INIT_WORK(_work, _func)						\
299 	__INIT_WORK((_work), (_func), 0)
300 
301 #define INIT_WORK_ONSTACK(_work, _func)					\
302 	__INIT_WORK((_work), (_func), 1)
303 
304 #define __INIT_DELAYED_WORK(_work, _func, _tflags)			\
305 	do {								\
306 		INIT_WORK(&(_work)->work, (_func));			\
307 		__init_timer(&(_work)->timer,				\
308 			     delayed_work_timer_fn,			\
309 			     (_tflags) | TIMER_IRQSAFE);		\
310 	} while (0)
311 
312 #define __INIT_DELAYED_WORK_ONSTACK(_work, _func, _tflags)		\
313 	do {								\
314 		INIT_WORK_ONSTACK(&(_work)->work, (_func));		\
315 		__init_timer_on_stack(&(_work)->timer,			\
316 				      delayed_work_timer_fn,		\
317 				      (_tflags) | TIMER_IRQSAFE);	\
318 	} while (0)
319 
320 #define INIT_DELAYED_WORK(_work, _func)					\
321 	__INIT_DELAYED_WORK(_work, _func, 0)
322 
323 #define INIT_DELAYED_WORK_ONSTACK(_work, _func)				\
324 	__INIT_DELAYED_WORK_ONSTACK(_work, _func, 0)
325 
326 #define INIT_DEFERRABLE_WORK(_work, _func)				\
327 	__INIT_DELAYED_WORK(_work, _func, TIMER_DEFERRABLE)
328 
329 #define INIT_DEFERRABLE_WORK_ONSTACK(_work, _func)			\
330 	__INIT_DELAYED_WORK_ONSTACK(_work, _func, TIMER_DEFERRABLE)
331 
332 #define INIT_RCU_WORK(_work, _func)					\
333 	INIT_WORK(&(_work)->work, (_func))
334 
335 #define INIT_RCU_WORK_ONSTACK(_work, _func)				\
336 	INIT_WORK_ONSTACK(&(_work)->work, (_func))
337 
338 /**
339  * work_pending - Find out whether a work item is currently pending
340  * @work: The work item in question
341  */
342 #define work_pending(work) \
343 	test_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))
344 
345 /**
346  * delayed_work_pending - Find out whether a delayable work item is currently
347  * pending
348  * @w: The work item in question
349  */
350 #define delayed_work_pending(w) \
351 	work_pending(&(w)->work)
352 
353 /*
354  * Workqueue flags and constants.  For details, please refer to
355  * Documentation/core-api/workqueue.rst.
356  */
357 enum {
358 	WQ_UNBOUND		= 1 << 1, /* not bound to any cpu */
359 	WQ_FREEZABLE		= 1 << 2, /* freeze during suspend */
360 	WQ_MEM_RECLAIM		= 1 << 3, /* may be used for memory reclaim */
361 	WQ_HIGHPRI		= 1 << 4, /* high priority */
362 	WQ_CPU_INTENSIVE	= 1 << 5, /* cpu intensive workqueue */
363 	WQ_SYSFS		= 1 << 6, /* visible in sysfs, see workqueue_sysfs_register() */
364 
365 	/*
366 	 * Per-cpu workqueues are generally preferred because they tend to
367 	 * show better performance thanks to cache locality.  Per-cpu
368 	 * workqueues exclude the scheduler from choosing the CPU to
369 	 * execute the worker threads, which has an unfortunate side effect
370 	 * of increasing power consumption.
371 	 *
372 	 * The scheduler considers a CPU idle if it doesn't have any task
373 	 * to execute and tries to keep idle cores idle to conserve power;
374 	 * however, for example, a per-cpu work item scheduled from an
375 	 * interrupt handler on an idle CPU will force the scheduler to
376 	 * execute the work item on that CPU breaking the idleness, which in
377 	 * turn may lead to more scheduling choices which are sub-optimal
378 	 * in terms of power consumption.
379 	 *
380 	 * Workqueues marked with WQ_POWER_EFFICIENT are per-cpu by default
381 	 * but become unbound if workqueue.power_efficient kernel param is
382 	 * specified.  Per-cpu workqueues which are identified to
383 	 * contribute significantly to power-consumption are identified and
384 	 * marked with this flag and enabling the power_efficient mode
385 	 * leads to noticeable power saving at the cost of small
386 	 * performance disadvantage.
387 	 *
388 	 * http://thread.gmane.org/gmane.linux.kernel/1480396
389 	 */
390 	WQ_POWER_EFFICIENT	= 1 << 7,
391 
392 	__WQ_DESTROYING		= 1 << 15, /* internal: workqueue is destroying */
393 	__WQ_DRAINING		= 1 << 16, /* internal: workqueue is draining */
394 	__WQ_ORDERED		= 1 << 17, /* internal: workqueue is ordered */
395 	__WQ_LEGACY		= 1 << 18, /* internal: create*_workqueue() */
396 	__WQ_ORDERED_EXPLICIT	= 1 << 19, /* internal: alloc_ordered_workqueue() */
397 
398 	WQ_MAX_ACTIVE		= 512,	  /* I like 512, better ideas? */
399 	WQ_UNBOUND_MAX_ACTIVE	= WQ_MAX_ACTIVE,
400 	WQ_DFL_ACTIVE		= WQ_MAX_ACTIVE / 2,
401 };
402 
403 /*
404  * System-wide workqueues which are always present.
405  *
406  * system_wq is the one used by schedule[_delayed]_work[_on]().
407  * Multi-CPU multi-threaded.  There are users which expect relatively
408  * short queue flush time.  Don't queue works which can run for too
409  * long.
410  *
411  * system_highpri_wq is similar to system_wq but for work items which
412  * require WQ_HIGHPRI.
413  *
414  * system_long_wq is similar to system_wq but may host long running
415  * works.  Queue flushing might take relatively long.
416  *
417  * system_unbound_wq is unbound workqueue.  Workers are not bound to
418  * any specific CPU, not concurrency managed, and all queued works are
419  * executed immediately as long as max_active limit is not reached and
420  * resources are available.
421  *
422  * system_freezable_wq is equivalent to system_wq except that it's
423  * freezable.
424  *
425  * *_power_efficient_wq are inclined towards saving power and converted
426  * into WQ_UNBOUND variants if 'wq_power_efficient' is enabled; otherwise,
427  * they are same as their non-power-efficient counterparts - e.g.
428  * system_power_efficient_wq is identical to system_wq if
429  * 'wq_power_efficient' is disabled.  See WQ_POWER_EFFICIENT for more info.
430  */
431 extern struct workqueue_struct *system_wq;
432 extern struct workqueue_struct *system_highpri_wq;
433 extern struct workqueue_struct *system_long_wq;
434 extern struct workqueue_struct *system_unbound_wq;
435 extern struct workqueue_struct *system_freezable_wq;
436 extern struct workqueue_struct *system_power_efficient_wq;
437 extern struct workqueue_struct *system_freezable_power_efficient_wq;
438 
439 /**
440  * alloc_workqueue - allocate a workqueue
441  * @fmt: printf format for the name of the workqueue
442  * @flags: WQ_* flags
443  * @max_active: max in-flight work items per CPU, 0 for default
444  * remaining args: args for @fmt
445  *
446  * Allocate a workqueue with the specified parameters.  For detailed
447  * information on WQ_* flags, please refer to
448  * Documentation/core-api/workqueue.rst.
449  *
450  * RETURNS:
451  * Pointer to the allocated workqueue on success, %NULL on failure.
452  */
453 __printf(1, 4) struct workqueue_struct *
454 alloc_workqueue(const char *fmt, unsigned int flags, int max_active, ...);
455 
456 /**
457  * alloc_ordered_workqueue - allocate an ordered workqueue
458  * @fmt: printf format for the name of the workqueue
459  * @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful)
460  * @args: args for @fmt
461  *
462  * Allocate an ordered workqueue.  An ordered workqueue executes at
463  * most one work item at any given time in the queued order.  They are
464  * implemented as unbound workqueues with @max_active of one.
465  *
466  * RETURNS:
467  * Pointer to the allocated workqueue on success, %NULL on failure.
468  */
469 #define alloc_ordered_workqueue(fmt, flags, args...)			\
470 	alloc_workqueue(fmt, WQ_UNBOUND | __WQ_ORDERED |		\
471 			__WQ_ORDERED_EXPLICIT | (flags), 1, ##args)
472 
473 #define create_workqueue(name)						\
474 	alloc_workqueue("%s", __WQ_LEGACY | WQ_MEM_RECLAIM, 1, (name))
475 #define create_freezable_workqueue(name)				\
476 	alloc_workqueue("%s", __WQ_LEGACY | WQ_FREEZABLE | WQ_UNBOUND |	\
477 			WQ_MEM_RECLAIM, 1, (name))
478 #define create_singlethread_workqueue(name)				\
479 	alloc_ordered_workqueue("%s", __WQ_LEGACY | WQ_MEM_RECLAIM, name)
480 
481 extern void destroy_workqueue(struct workqueue_struct *wq);
482 
483 struct workqueue_attrs *alloc_workqueue_attrs(void);
484 void free_workqueue_attrs(struct workqueue_attrs *attrs);
485 int apply_workqueue_attrs(struct workqueue_struct *wq,
486 			  const struct workqueue_attrs *attrs);
487 int workqueue_set_unbound_cpumask(cpumask_var_t cpumask);
488 
489 extern bool queue_work_on(int cpu, struct workqueue_struct *wq,
490 			struct work_struct *work);
491 extern bool queue_work_node(int node, struct workqueue_struct *wq,
492 			    struct work_struct *work);
493 extern bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
494 			struct delayed_work *work, unsigned long delay);
495 extern bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
496 			struct delayed_work *dwork, unsigned long delay);
497 extern bool queue_rcu_work(struct workqueue_struct *wq, struct rcu_work *rwork);
498 
499 extern void __flush_workqueue(struct workqueue_struct *wq);
500 extern void drain_workqueue(struct workqueue_struct *wq);
501 
502 extern int schedule_on_each_cpu(work_func_t func);
503 
504 int execute_in_process_context(work_func_t fn, struct execute_work *);
505 
506 extern bool flush_work(struct work_struct *work);
507 extern bool cancel_work(struct work_struct *work);
508 extern bool cancel_work_sync(struct work_struct *work);
509 
510 extern bool flush_delayed_work(struct delayed_work *dwork);
511 extern bool cancel_delayed_work(struct delayed_work *dwork);
512 extern bool cancel_delayed_work_sync(struct delayed_work *dwork);
513 
514 extern bool flush_rcu_work(struct rcu_work *rwork);
515 
516 extern void workqueue_set_max_active(struct workqueue_struct *wq,
517 				     int max_active);
518 extern struct work_struct *current_work(void);
519 extern bool current_is_workqueue_rescuer(void);
520 extern bool workqueue_congested(int cpu, struct workqueue_struct *wq);
521 extern unsigned int work_busy(struct work_struct *work);
522 extern __printf(1, 2) void set_worker_desc(const char *fmt, ...);
523 extern void print_worker_info(const char *log_lvl, struct task_struct *task);
524 extern void show_all_workqueues(void);
525 extern void show_freezable_workqueues(void);
526 extern void show_one_workqueue(struct workqueue_struct *wq);
527 extern void wq_worker_comm(char *buf, size_t size, struct task_struct *task);
528 
529 /**
530  * queue_work - queue work on a workqueue
531  * @wq: workqueue to use
532  * @work: work to queue
533  *
534  * Returns %false if @work was already on a queue, %true otherwise.
535  *
536  * We queue the work to the CPU on which it was submitted, but if the CPU dies
537  * it can be processed by another CPU.
538  *
539  * Memory-ordering properties:  If it returns %true, guarantees that all stores
540  * preceding the call to queue_work() in the program order will be visible from
541  * the CPU which will execute @work by the time such work executes, e.g.,
542  *
543  * { x is initially 0 }
544  *
545  *   CPU0				CPU1
546  *
547  *   WRITE_ONCE(x, 1);			[ @work is being executed ]
548  *   r0 = queue_work(wq, work);		  r1 = READ_ONCE(x);
549  *
550  * Forbids: r0 == true && r1 == 0
551  */
552 static inline bool queue_work(struct workqueue_struct *wq,
553 			      struct work_struct *work)
554 {
555 	return queue_work_on(WORK_CPU_UNBOUND, wq, work);
556 }
557 
558 /**
559  * queue_delayed_work - queue work on a workqueue after delay
560  * @wq: workqueue to use
561  * @dwork: delayable work to queue
562  * @delay: number of jiffies to wait before queueing
563  *
564  * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
565  */
566 static inline bool queue_delayed_work(struct workqueue_struct *wq,
567 				      struct delayed_work *dwork,
568 				      unsigned long delay)
569 {
570 	return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
571 }
572 
573 /**
574  * mod_delayed_work - modify delay of or queue a delayed work
575  * @wq: workqueue to use
576  * @dwork: work to queue
577  * @delay: number of jiffies to wait before queueing
578  *
579  * mod_delayed_work_on() on local CPU.
580  */
581 static inline bool mod_delayed_work(struct workqueue_struct *wq,
582 				    struct delayed_work *dwork,
583 				    unsigned long delay)
584 {
585 	return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
586 }
587 
588 /**
589  * schedule_work_on - put work task on a specific cpu
590  * @cpu: cpu to put the work task on
591  * @work: job to be done
592  *
593  * This puts a job on a specific cpu
594  */
595 static inline bool schedule_work_on(int cpu, struct work_struct *work)
596 {
597 	return queue_work_on(cpu, system_wq, work);
598 }
599 
600 /**
601  * schedule_work - put work task in global workqueue
602  * @work: job to be done
603  *
604  * Returns %false if @work was already on the kernel-global workqueue and
605  * %true otherwise.
606  *
607  * This puts a job in the kernel-global workqueue if it was not already
608  * queued and leaves it in the same position on the kernel-global
609  * workqueue otherwise.
610  *
611  * Shares the same memory-ordering properties of queue_work(), cf. the
612  * DocBook header of queue_work().
613  */
614 static inline bool schedule_work(struct work_struct *work)
615 {
616 	return queue_work(system_wq, work);
617 }
618 
619 /*
620  * Detect attempt to flush system-wide workqueues at compile time when possible.
621  * Warn attempt to flush system-wide workqueues at runtime.
622  *
623  * See https://lkml.kernel.org/r/[email protected]
624  * for reasons and steps for converting system-wide workqueues into local workqueues.
625  */
626 extern void __warn_flushing_systemwide_wq(void)
627 	__compiletime_warning("Please avoid flushing system-wide workqueues.");
628 
629 /* Please stop using this function, for this function will be removed in near future. */
630 #define flush_scheduled_work()						\
631 ({									\
632 	__warn_flushing_systemwide_wq();				\
633 	__flush_workqueue(system_wq);					\
634 })
635 
636 #define flush_workqueue(wq)						\
637 ({									\
638 	struct workqueue_struct *_wq = (wq);				\
639 									\
640 	if ((__builtin_constant_p(_wq == system_wq) &&			\
641 	     _wq == system_wq) ||					\
642 	    (__builtin_constant_p(_wq == system_highpri_wq) &&		\
643 	     _wq == system_highpri_wq) ||				\
644 	    (__builtin_constant_p(_wq == system_long_wq) &&		\
645 	     _wq == system_long_wq) ||					\
646 	    (__builtin_constant_p(_wq == system_unbound_wq) &&		\
647 	     _wq == system_unbound_wq) ||				\
648 	    (__builtin_constant_p(_wq == system_freezable_wq) &&	\
649 	     _wq == system_freezable_wq) ||				\
650 	    (__builtin_constant_p(_wq == system_power_efficient_wq) &&	\
651 	     _wq == system_power_efficient_wq) ||			\
652 	    (__builtin_constant_p(_wq == system_freezable_power_efficient_wq) && \
653 	     _wq == system_freezable_power_efficient_wq))		\
654 		__warn_flushing_systemwide_wq();			\
655 	__flush_workqueue(_wq);						\
656 })
657 
658 /**
659  * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
660  * @cpu: cpu to use
661  * @dwork: job to be done
662  * @delay: number of jiffies to wait
663  *
664  * After waiting for a given time this puts a job in the kernel-global
665  * workqueue on the specified CPU.
666  */
667 static inline bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
668 					    unsigned long delay)
669 {
670 	return queue_delayed_work_on(cpu, system_wq, dwork, delay);
671 }
672 
673 /**
674  * schedule_delayed_work - put work task in global workqueue after delay
675  * @dwork: job to be done
676  * @delay: number of jiffies to wait or 0 for immediate execution
677  *
678  * After waiting for a given time this puts a job in the kernel-global
679  * workqueue.
680  */
681 static inline bool schedule_delayed_work(struct delayed_work *dwork,
682 					 unsigned long delay)
683 {
684 	return queue_delayed_work(system_wq, dwork, delay);
685 }
686 
687 #ifndef CONFIG_SMP
688 static inline long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
689 {
690 	return fn(arg);
691 }
692 static inline long work_on_cpu_safe(int cpu, long (*fn)(void *), void *arg)
693 {
694 	return fn(arg);
695 }
696 #else
697 long work_on_cpu(int cpu, long (*fn)(void *), void *arg);
698 long work_on_cpu_safe(int cpu, long (*fn)(void *), void *arg);
699 #endif /* CONFIG_SMP */
700 
701 #ifdef CONFIG_FREEZER
702 extern void freeze_workqueues_begin(void);
703 extern bool freeze_workqueues_busy(void);
704 extern void thaw_workqueues(void);
705 #endif /* CONFIG_FREEZER */
706 
707 #ifdef CONFIG_SYSFS
708 int workqueue_sysfs_register(struct workqueue_struct *wq);
709 #else	/* CONFIG_SYSFS */
710 static inline int workqueue_sysfs_register(struct workqueue_struct *wq)
711 { return 0; }
712 #endif	/* CONFIG_SYSFS */
713 
714 #ifdef CONFIG_WQ_WATCHDOG
715 void wq_watchdog_touch(int cpu);
716 #else	/* CONFIG_WQ_WATCHDOG */
717 static inline void wq_watchdog_touch(int cpu) { }
718 #endif	/* CONFIG_WQ_WATCHDOG */
719 
720 #ifdef CONFIG_SMP
721 int workqueue_prepare_cpu(unsigned int cpu);
722 int workqueue_online_cpu(unsigned int cpu);
723 int workqueue_offline_cpu(unsigned int cpu);
724 #endif
725 
726 void __init workqueue_init_early(void);
727 void __init workqueue_init(void);
728 void __init workqueue_init_topology(void);
729 
730 #endif
731