Merge tag 'fbdev-for-6.4-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/deller...
[linux-block.git] / include / linux / workqueue.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
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>
4e6045f1 12#include <linux/lockdep.h>
7a22ad75 13#include <linux/threads.h>
60063497 14#include <linux/atomic.h>
7a4e344c 15#include <linux/cpumask.h>
05f0fe6b 16#include <linux/rcupdate.h>
1da177e4
LT
17
18struct workqueue_struct;
19
65f27f38
DH
20struct work_struct;
21typedef void (*work_func_t)(struct work_struct *work);
8c20feb6 22void delayed_work_timer_fn(struct timer_list *t);
6bb49e59 23
a08727ba
LT
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
22df02bb
TH
30enum {
31 WORK_STRUCT_PENDING_BIT = 0, /* work item is pending execution */
f97a4a1a 32 WORK_STRUCT_INACTIVE_BIT= 1, /* work item is inactive */
112202d9 33 WORK_STRUCT_PWQ_BIT = 2, /* data points to pwq */
8a2e8e5d 34 WORK_STRUCT_LINKED_BIT = 3, /* next work is linked to this one */
22df02bb 35#ifdef CONFIG_DEBUG_OBJECTS_WORK
8a2e8e5d
TH
36 WORK_STRUCT_STATIC_BIT = 4, /* static initializer (debugobjects) */
37 WORK_STRUCT_COLOR_SHIFT = 5, /* color for workqueue flushing */
0f900049 38#else
8a2e8e5d 39 WORK_STRUCT_COLOR_SHIFT = 4, /* color for workqueue flushing */
22df02bb
TH
40#endif
41
73f53c4a
TH
42 WORK_STRUCT_COLOR_BITS = 4,
43
22df02bb 44 WORK_STRUCT_PENDING = 1 << WORK_STRUCT_PENDING_BIT,
f97a4a1a 45 WORK_STRUCT_INACTIVE = 1 << WORK_STRUCT_INACTIVE_BIT,
112202d9 46 WORK_STRUCT_PWQ = 1 << WORK_STRUCT_PWQ_BIT,
affee4b2 47 WORK_STRUCT_LINKED = 1 << WORK_STRUCT_LINKED_BIT,
22df02bb
TH
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
bdb0a654 54 WORK_NR_COLORS = (1 << WORK_STRUCT_COLOR_BITS),
73f53c4a 55
79bc251f 56 /* not bound to any CPU, prefer the local CPU */
f3421797 57 WORK_CPU_UNBOUND = NR_CPUS,
bdbc5dd7 58
73f53c4a 59 /*
c39ba6b3 60 * Reserve 8 bits off of pwq pointer w/ debugobjects turned off.
bdb0a654 61 * This makes pwqs aligned to 256 bytes and allows 16 workqueue
112202d9 62 * flush colors.
73f53c4a
TH
63 */
64 WORK_STRUCT_FLAG_BITS = WORK_STRUCT_COLOR_SHIFT +
65 WORK_STRUCT_COLOR_BITS,
66
112202d9 67 /* data contains off-queue information when !WORK_STRUCT_PWQ */
45d9550a 68 WORK_OFFQ_FLAG_BASE = WORK_STRUCT_COLOR_SHIFT,
bbb68dfa 69
8603e1b3
TH
70 __WORK_OFFQ_CANCELING = WORK_OFFQ_FLAG_BASE,
71 WORK_OFFQ_CANCELING = (1 << __WORK_OFFQ_CANCELING),
bbb68dfa 72
715b06b8
TH
73 /*
74 * When a work item is off queue, its high bits point to the last
7c3eed5c
TH
75 * pool it was on. Cap at 31 bits and use the highest number to
76 * indicate that no pool is associated.
715b06b8 77 */
bbb68dfa 78 WORK_OFFQ_FLAG_BITS = 1,
7c3eed5c
TH
79 WORK_OFFQ_POOL_SHIFT = WORK_OFFQ_FLAG_BASE + WORK_OFFQ_FLAG_BITS,
80 WORK_OFFQ_LEFT = BITS_PER_LONG - WORK_OFFQ_POOL_SHIFT,
81 WORK_OFFQ_POOL_BITS = WORK_OFFQ_LEFT <= 31 ? WORK_OFFQ_LEFT : 31,
82 WORK_OFFQ_POOL_NONE = (1LU << WORK_OFFQ_POOL_BITS) - 1,
b5490077
TH
83
84 /* convenience constants */
0f900049 85 WORK_STRUCT_FLAG_MASK = (1UL << WORK_STRUCT_FLAG_BITS) - 1,
22df02bb 86 WORK_STRUCT_WQ_DATA_MASK = ~WORK_STRUCT_FLAG_MASK,
7c3eed5c 87 WORK_STRUCT_NO_POOL = (unsigned long)WORK_OFFQ_POOL_NONE << WORK_OFFQ_POOL_SHIFT,
dcd989cb
TH
88
89 /* bit mask for work_busy() return values */
90 WORK_BUSY_PENDING = 1 << 0,
91 WORK_BUSY_RUNNING = 1 << 1,
3d1cb205
TH
92
93 /* maximum string length for set_worker_desc() */
94 WORKER_DESC_LEN = 24,
22df02bb
TH
95};
96
1da177e4 97struct work_struct {
a08727ba 98 atomic_long_t data;
1da177e4 99 struct list_head entry;
6bb49e59 100 work_func_t func;
4e6045f1
JB
101#ifdef CONFIG_LOCKDEP
102 struct lockdep_map lockdep_map;
103#endif
52bad64d
DH
104};
105
a45463cb 106#define WORK_DATA_INIT() ATOMIC_LONG_INIT((unsigned long)WORK_STRUCT_NO_POOL)
7a22ad75 107#define WORK_DATA_STATIC_INIT() \
a45463cb 108 ATOMIC_LONG_INIT((unsigned long)(WORK_STRUCT_NO_POOL | WORK_STRUCT_STATIC))
a08727ba 109
52bad64d
DH
110struct delayed_work {
111 struct work_struct work;
1da177e4 112 struct timer_list timer;
60c057bc
LJ
113
114 /* target workqueue and CPU ->timer uses to queue ->work */
115 struct workqueue_struct *wq;
1265057f 116 int cpu;
1da177e4
LT
117};
118
05f0fe6b
TH
119struct rcu_work {
120 struct work_struct work;
121 struct rcu_head rcu;
122
123 /* target workqueue ->rcu uses to queue ->work */
124 struct workqueue_struct *wq;
125};
126
42412c3a
SF
127/**
128 * struct workqueue_attrs - A struct for workqueue attributes.
d55262c4 129 *
42412c3a 130 * This can be used to change attributes of an unbound workqueue.
7a4e344c
TH
131 */
132struct workqueue_attrs {
42412c3a
SF
133 /**
134 * @nice: nice level
135 */
136 int nice;
137
138 /**
139 * @cpumask: allowed CPUs
140 */
141 cpumask_var_t cpumask;
142
143 /**
144 * @no_numa: disable NUMA affinity
145 *
146 * Unlike other fields, ``no_numa`` isn't a property of a worker_pool. It
147 * only modifies how :c:func:`apply_workqueue_attrs` select pools and thus
148 * doesn't participate in pool hash calculations or equality comparisons.
149 */
150 bool no_numa;
7a4e344c
TH
151};
152
bf6aede7
JD
153static inline struct delayed_work *to_delayed_work(struct work_struct *work)
154{
155 return container_of(work, struct delayed_work, work);
156}
157
05f0fe6b
TH
158static inline struct rcu_work *to_rcu_work(struct work_struct *work)
159{
160 return container_of(work, struct rcu_work, work);
161}
162
1fa44eca
JB
163struct execute_work {
164 struct work_struct work;
165};
166
4e6045f1
JB
167#ifdef CONFIG_LOCKDEP
168/*
169 * NB: because we have to copy the lockdep_map, setting _key
170 * here is required, otherwise it could get initialised to the
171 * copy of the lockdep_map!
172 */
173#define __WORK_INIT_LOCKDEP_MAP(n, k) \
174 .lockdep_map = STATIC_LOCKDEP_MAP_INIT(n, k),
175#else
176#define __WORK_INIT_LOCKDEP_MAP(n, k)
177#endif
178
ee64e7f6
TH
179#define __WORK_INITIALIZER(n, f) { \
180 .data = WORK_DATA_STATIC_INIT(), \
181 .entry = { &(n).entry, &(n).entry }, \
182 .func = (f), \
183 __WORK_INIT_LOCKDEP_MAP(#n, &(n)) \
65f27f38
DH
184 }
185
f991b318 186#define __DELAYED_WORK_INITIALIZER(n, f, tflags) { \
ee64e7f6 187 .work = __WORK_INITIALIZER((n).work, (f)), \
841b86f3 188 .timer = __TIMER_INITIALIZER(delayed_work_timer_fn,\
e0aecdd8 189 (tflags) | TIMER_IRQSAFE), \
dd6414b5
PC
190 }
191
ee64e7f6 192#define DECLARE_WORK(n, f) \
65f27f38
DH
193 struct work_struct n = __WORK_INITIALIZER(n, f)
194
ee64e7f6 195#define DECLARE_DELAYED_WORK(n, f) \
f991b318 196 struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, 0)
65f27f38 197
203b42f7 198#define DECLARE_DEFERRABLE_WORK(n, f) \
f991b318 199 struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, TIMER_DEFERRABLE)
dd6414b5 200
dc186ad7
TG
201#ifdef CONFIG_DEBUG_OBJECTS_WORK
202extern void __init_work(struct work_struct *work, int onstack);
203extern void destroy_work_on_stack(struct work_struct *work);
ea2e64f2 204extern void destroy_delayed_work_on_stack(struct delayed_work *work);
4690c4ab
TH
205static inline unsigned int work_static(struct work_struct *work)
206{
22df02bb 207 return *work_data_bits(work) & WORK_STRUCT_STATIC;
4690c4ab 208}
dc186ad7
TG
209#else
210static inline void __init_work(struct work_struct *work, int onstack) { }
211static inline void destroy_work_on_stack(struct work_struct *work) { }
ea2e64f2 212static inline void destroy_delayed_work_on_stack(struct delayed_work *work) { }
4690c4ab 213static inline unsigned int work_static(struct work_struct *work) { return 0; }
dc186ad7
TG
214#endif
215
1da177e4 216/*
52bad64d 217 * initialize all of a work item in one go
a08727ba 218 *
b9049df5 219 * NOTE! No point in using "atomic_long_set()": using a direct
a08727ba
LT
220 * assignment of the work data initializer allows the compiler
221 * to generate better code.
1da177e4 222 */
4e6045f1 223#ifdef CONFIG_LOCKDEP
dc186ad7 224#define __INIT_WORK(_work, _func, _onstack) \
65f27f38 225 do { \
4e6045f1
JB
226 static struct lock_class_key __key; \
227 \
dc186ad7 228 __init_work((_work), _onstack); \
23b2e599 229 (_work)->data = (atomic_long_t) WORK_DATA_INIT(); \
fd1a5b04 230 lockdep_init_map(&(_work)->lockdep_map, "(work_completion)"#_work, &__key, 0); \
65f27f38 231 INIT_LIST_HEAD(&(_work)->entry); \
f073f922 232 (_work)->func = (_func); \
65f27f38 233 } while (0)
4e6045f1 234#else
dc186ad7 235#define __INIT_WORK(_work, _func, _onstack) \
4e6045f1 236 do { \
dc186ad7 237 __init_work((_work), _onstack); \
4e6045f1
JB
238 (_work)->data = (atomic_long_t) WORK_DATA_INIT(); \
239 INIT_LIST_HEAD(&(_work)->entry); \
f073f922 240 (_work)->func = (_func); \
4e6045f1
JB
241 } while (0)
242#endif
65f27f38 243
ee64e7f6 244#define INIT_WORK(_work, _func) \
9da7dae9 245 __INIT_WORK((_work), (_func), 0)
dc186ad7 246
ee64e7f6 247#define INIT_WORK_ONSTACK(_work, _func) \
9da7dae9 248 __INIT_WORK((_work), (_func), 1)
dc186ad7 249
f991b318 250#define __INIT_DELAYED_WORK(_work, _func, _tflags) \
ee64e7f6
TH
251 do { \
252 INIT_WORK(&(_work)->work, (_func)); \
919b250f
KC
253 __init_timer(&(_work)->timer, \
254 delayed_work_timer_fn, \
255 (_tflags) | TIMER_IRQSAFE); \
52bad64d
DH
256 } while (0)
257
f991b318 258#define __INIT_DELAYED_WORK_ONSTACK(_work, _func, _tflags) \
ee64e7f6
TH
259 do { \
260 INIT_WORK_ONSTACK(&(_work)->work, (_func)); \
919b250f
KC
261 __init_timer_on_stack(&(_work)->timer, \
262 delayed_work_timer_fn, \
263 (_tflags) | TIMER_IRQSAFE); \
6d612b0f
PZ
264 } while (0)
265
f991b318
TH
266#define INIT_DELAYED_WORK(_work, _func) \
267 __INIT_DELAYED_WORK(_work, _func, 0)
268
269#define INIT_DELAYED_WORK_ONSTACK(_work, _func) \
270 __INIT_DELAYED_WORK_ONSTACK(_work, _func, 0)
271
203b42f7 272#define INIT_DEFERRABLE_WORK(_work, _func) \
f991b318
TH
273 __INIT_DELAYED_WORK(_work, _func, TIMER_DEFERRABLE)
274
275#define INIT_DEFERRABLE_WORK_ONSTACK(_work, _func) \
276 __INIT_DELAYED_WORK_ONSTACK(_work, _func, TIMER_DEFERRABLE)
28287033 277
05f0fe6b
TH
278#define INIT_RCU_WORK(_work, _func) \
279 INIT_WORK(&(_work)->work, (_func))
280
281#define INIT_RCU_WORK_ONSTACK(_work, _func) \
282 INIT_WORK_ONSTACK(&(_work)->work, (_func))
283
365970a1
DH
284/**
285 * work_pending - Find out whether a work item is currently pending
286 * @work: The work item in question
287 */
288#define work_pending(work) \
22df02bb 289 test_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))
365970a1
DH
290
291/**
292 * delayed_work_pending - Find out whether a delayable work item is currently
293 * pending
355c0663 294 * @w: The work item in question
365970a1 295 */
0221872a
LT
296#define delayed_work_pending(w) \
297 work_pending(&(w)->work)
365970a1 298
c54fce6e
TH
299/*
300 * Workqueue flags and constants. For details, please refer to
42412c3a 301 * Documentation/core-api/workqueue.rst.
c54fce6e 302 */
97e37d7b 303enum {
c7fc77f7 304 WQ_UNBOUND = 1 << 1, /* not bound to any cpu */
58a69cb4 305 WQ_FREEZABLE = 1 << 2, /* freeze during suspend */
6370a6ad 306 WQ_MEM_RECLAIM = 1 << 3, /* may be used for memory reclaim */
649027d7 307 WQ_HIGHPRI = 1 << 4, /* high priority */
41f50094 308 WQ_CPU_INTENSIVE = 1 << 5, /* cpu intensive workqueue */
93e86295 309 WQ_SYSFS = 1 << 6, /* visible in sysfs, see workqueue_sysfs_register() */
b71ab8c2 310
cee22a15
VK
311 /*
312 * Per-cpu workqueues are generally preferred because they tend to
313 * show better performance thanks to cache locality. Per-cpu
314 * workqueues exclude the scheduler from choosing the CPU to
315 * execute the worker threads, which has an unfortunate side effect
316 * of increasing power consumption.
317 *
318 * The scheduler considers a CPU idle if it doesn't have any task
319 * to execute and tries to keep idle cores idle to conserve power;
320 * however, for example, a per-cpu work item scheduled from an
321 * interrupt handler on an idle CPU will force the scheduler to
67dc8325 322 * execute the work item on that CPU breaking the idleness, which in
cee22a15
VK
323 * turn may lead to more scheduling choices which are sub-optimal
324 * in terms of power consumption.
325 *
326 * Workqueues marked with WQ_POWER_EFFICIENT are per-cpu by default
327 * but become unbound if workqueue.power_efficient kernel param is
328 * specified. Per-cpu workqueues which are identified to
329 * contribute significantly to power-consumption are identified and
330 * marked with this flag and enabling the power_efficient mode
331 * leads to noticeable power saving at the cost of small
332 * performance disadvantage.
333 *
334 * http://thread.gmane.org/gmane.linux.kernel/1480396
335 */
336 WQ_POWER_EFFICIENT = 1 << 7,
337
33e3f0a3 338 __WQ_DESTROYING = 1 << 15, /* internal: workqueue is destroying */
618b01eb 339 __WQ_DRAINING = 1 << 16, /* internal: workqueue is draining */
8719dcea 340 __WQ_ORDERED = 1 << 17, /* internal: workqueue is ordered */
23d11a58 341 __WQ_LEGACY = 1 << 18, /* internal: create*_workqueue() */
fbf1c41f 342 __WQ_ORDERED_EXPLICIT = 1 << 19, /* internal: alloc_ordered_workqueue() */
e41e704b 343
b71ab8c2 344 WQ_MAX_ACTIVE = 512, /* I like 512, better ideas? */
f3421797 345 WQ_MAX_UNBOUND_PER_CPU = 4, /* 4 * #cpus for unbound wq */
b71ab8c2 346 WQ_DFL_ACTIVE = WQ_MAX_ACTIVE / 2,
97e37d7b 347};
52bad64d 348
f3421797
TH
349/* unbound wq's aren't per-cpu, scale max_active according to #cpus */
350#define WQ_UNBOUND_MAX_ACTIVE \
351 max_t(int, WQ_MAX_ACTIVE, num_possible_cpus() * WQ_MAX_UNBOUND_PER_CPU)
65f27f38 352
d320c038
TH
353/*
354 * System-wide workqueues which are always present.
355 *
356 * system_wq is the one used by schedule[_delayed]_work[_on]().
357 * Multi-CPU multi-threaded. There are users which expect relatively
358 * short queue flush time. Don't queue works which can run for too
359 * long.
360 *
73e43544
LJ
361 * system_highpri_wq is similar to system_wq but for work items which
362 * require WQ_HIGHPRI.
363 *
d320c038
TH
364 * system_long_wq is similar to system_wq but may host long running
365 * works. Queue flushing might take relatively long.
366 *
f3421797
TH
367 * system_unbound_wq is unbound workqueue. Workers are not bound to
368 * any specific CPU, not concurrency managed, and all queued works are
369 * executed immediately as long as max_active limit is not reached and
370 * resources are available.
4149efb2 371 *
24d51add
TH
372 * system_freezable_wq is equivalent to system_wq except that it's
373 * freezable.
0668106c
VK
374 *
375 * *_power_efficient_wq are inclined towards saving power and converted
376 * into WQ_UNBOUND variants if 'wq_power_efficient' is enabled; otherwise,
377 * they are same as their non-power-efficient counterparts - e.g.
378 * system_power_efficient_wq is identical to system_wq if
379 * 'wq_power_efficient' is disabled. See WQ_POWER_EFFICIENT for more info.
d320c038
TH
380 */
381extern struct workqueue_struct *system_wq;
73e43544 382extern struct workqueue_struct *system_highpri_wq;
d320c038 383extern struct workqueue_struct *system_long_wq;
f3421797 384extern struct workqueue_struct *system_unbound_wq;
24d51add 385extern struct workqueue_struct *system_freezable_wq;
0668106c
VK
386extern struct workqueue_struct *system_power_efficient_wq;
387extern struct workqueue_struct *system_freezable_power_efficient_wq;
ae930e0f 388
b196be89
TH
389/**
390 * alloc_workqueue - allocate a workqueue
391 * @fmt: printf format for the name of the workqueue
392 * @flags: WQ_* flags
393 * @max_active: max in-flight work items, 0 for default
669de8bd 394 * remaining args: args for @fmt
b196be89
TH
395 *
396 * Allocate a workqueue with the specified parameters. For detailed
42412c3a
SF
397 * information on WQ_* flags, please refer to
398 * Documentation/core-api/workqueue.rst.
b196be89 399 *
b196be89
TH
400 * RETURNS:
401 * Pointer to the allocated workqueue on success, %NULL on failure.
402 */
80f0a1f9
REB
403__printf(1, 4) struct workqueue_struct *
404alloc_workqueue(const char *fmt, unsigned int flags, int max_active, ...);
4e6045f1 405
81dcaf65
TH
406/**
407 * alloc_ordered_workqueue - allocate an ordered workqueue
b196be89 408 * @fmt: printf format for the name of the workqueue
58a69cb4 409 * @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful)
8bee9dd9 410 * @args: args for @fmt
81dcaf65
TH
411 *
412 * Allocate an ordered workqueue. An ordered workqueue executes at
413 * most one work item at any given time in the queued order. They are
414 * implemented as unbound workqueues with @max_active of one.
415 *
416 * RETURNS:
417 * Pointer to the allocated workqueue on success, %NULL on failure.
418 */
ee64e7f6 419#define alloc_ordered_workqueue(fmt, flags, args...) \
0a94efb5
TH
420 alloc_workqueue(fmt, WQ_UNBOUND | __WQ_ORDERED | \
421 __WQ_ORDERED_EXPLICIT | (flags), 1, ##args)
81dcaf65 422
ee64e7f6 423#define create_workqueue(name) \
23d11a58 424 alloc_workqueue("%s", __WQ_LEGACY | WQ_MEM_RECLAIM, 1, (name))
ee64e7f6 425#define create_freezable_workqueue(name) \
23d11a58
TH
426 alloc_workqueue("%s", __WQ_LEGACY | WQ_FREEZABLE | WQ_UNBOUND | \
427 WQ_MEM_RECLAIM, 1, (name))
ee64e7f6 428#define create_singlethread_workqueue(name) \
23d11a58 429 alloc_ordered_workqueue("%s", __WQ_LEGACY | WQ_MEM_RECLAIM, name)
1da177e4
LT
430
431extern void destroy_workqueue(struct workqueue_struct *wq);
432
513c98d0
DJ
433struct workqueue_attrs *alloc_workqueue_attrs(void);
434void free_workqueue_attrs(struct workqueue_attrs *attrs);
435int apply_workqueue_attrs(struct workqueue_struct *wq,
436 const struct workqueue_attrs *attrs);
042f7df1 437int workqueue_set_unbound_cpumask(cpumask_var_t cpumask);
7a4e344c 438
d4283e93 439extern bool queue_work_on(int cpu, struct workqueue_struct *wq,
c1a220e7 440 struct work_struct *work);
8204e0c1
AD
441extern bool queue_work_node(int node, struct workqueue_struct *wq,
442 struct work_struct *work);
d4283e93 443extern bool queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
28e53bdd 444 struct delayed_work *work, unsigned long delay);
8376fe22
TH
445extern bool mod_delayed_work_on(int cpu, struct workqueue_struct *wq,
446 struct delayed_work *dwork, unsigned long delay);
05f0fe6b 447extern bool queue_rcu_work(struct workqueue_struct *wq, struct rcu_work *rwork);
28e53bdd 448
c4f135d6 449extern void __flush_workqueue(struct workqueue_struct *wq);
9c5a2ba7 450extern void drain_workqueue(struct workqueue_struct *wq);
1da177e4 451
65f27f38 452extern int schedule_on_each_cpu(work_func_t func);
1da177e4 453
65f27f38 454int execute_in_process_context(work_func_t fn, struct execute_work *);
1da177e4 455
401a8d04 456extern bool flush_work(struct work_struct *work);
73b4b532 457extern bool cancel_work(struct work_struct *work);
401a8d04
TH
458extern bool cancel_work_sync(struct work_struct *work);
459
460extern bool flush_delayed_work(struct delayed_work *dwork);
57b30ae7 461extern bool cancel_delayed_work(struct delayed_work *dwork);
401a8d04 462extern bool cancel_delayed_work_sync(struct delayed_work *dwork);
28e53bdd 463
05f0fe6b
TH
464extern bool flush_rcu_work(struct rcu_work *rwork);
465
dcd989cb
TH
466extern void workqueue_set_max_active(struct workqueue_struct *wq,
467 int max_active);
27d4ee03 468extern struct work_struct *current_work(void);
e6267616 469extern bool current_is_workqueue_rescuer(void);
d84ff051 470extern bool workqueue_congested(int cpu, struct workqueue_struct *wq);
dcd989cb 471extern unsigned int work_busy(struct work_struct *work);
3d1cb205
TH
472extern __printf(1, 2) void set_worker_desc(const char *fmt, ...);
473extern void print_worker_info(const char *log_lvl, struct task_struct *task);
55df0933 474extern void show_all_workqueues(void);
704bc669 475extern void show_freezable_workqueues(void);
55df0933 476extern void show_one_workqueue(struct workqueue_struct *wq);
6b59808b 477extern void wq_worker_comm(char *buf, size_t size, struct task_struct *task);
dcd989cb 478
8425e3d5
TH
479/**
480 * queue_work - queue work on a workqueue
481 * @wq: workqueue to use
482 * @work: work to queue
483 *
484 * Returns %false if @work was already on a queue, %true otherwise.
485 *
486 * We queue the work to the CPU on which it was submitted, but if the CPU dies
487 * it can be processed by another CPU.
dbb92f88
AP
488 *
489 * Memory-ordering properties: If it returns %true, guarantees that all stores
490 * preceding the call to queue_work() in the program order will be visible from
491 * the CPU which will execute @work by the time such work executes, e.g.,
492 *
493 * { x is initially 0 }
494 *
495 * CPU0 CPU1
496 *
497 * WRITE_ONCE(x, 1); [ @work is being executed ]
498 * r0 = queue_work(wq, work); r1 = READ_ONCE(x);
499 *
500 * Forbids: r0 == true && r1 == 0
8425e3d5
TH
501 */
502static inline bool queue_work(struct workqueue_struct *wq,
503 struct work_struct *work)
504{
505 return queue_work_on(WORK_CPU_UNBOUND, wq, work);
506}
507
508/**
509 * queue_delayed_work - queue work on a workqueue after delay
510 * @wq: workqueue to use
511 * @dwork: delayable work to queue
512 * @delay: number of jiffies to wait before queueing
513 *
514 * Equivalent to queue_delayed_work_on() but tries to use the local CPU.
515 */
516static inline bool queue_delayed_work(struct workqueue_struct *wq,
517 struct delayed_work *dwork,
518 unsigned long delay)
519{
520 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
521}
522
523/**
524 * mod_delayed_work - modify delay of or queue a delayed work
525 * @wq: workqueue to use
526 * @dwork: work to queue
527 * @delay: number of jiffies to wait before queueing
528 *
529 * mod_delayed_work_on() on local CPU.
530 */
531static inline bool mod_delayed_work(struct workqueue_struct *wq,
532 struct delayed_work *dwork,
533 unsigned long delay)
534{
535 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay);
536}
537
538/**
539 * schedule_work_on - put work task on a specific cpu
540 * @cpu: cpu to put the work task on
541 * @work: job to be done
542 *
543 * This puts a job on a specific cpu
544 */
545static inline bool schedule_work_on(int cpu, struct work_struct *work)
546{
547 return queue_work_on(cpu, system_wq, work);
548}
549
550/**
551 * schedule_work - put work task in global workqueue
552 * @work: job to be done
553 *
554 * Returns %false if @work was already on the kernel-global workqueue and
555 * %true otherwise.
556 *
557 * This puts a job in the kernel-global workqueue if it was not already
558 * queued and leaves it in the same position on the kernel-global
559 * workqueue otherwise.
dbb92f88
AP
560 *
561 * Shares the same memory-ordering properties of queue_work(), cf. the
562 * DocBook header of queue_work().
8425e3d5
TH
563 */
564static inline bool schedule_work(struct work_struct *work)
565{
566 return queue_work(system_wq, work);
567}
568
c4f135d6
TH
569/*
570 * Detect attempt to flush system-wide workqueues at compile time when possible.
571 *
572 * See https://lkml.kernel.org/r/49925af7-78a8-a3dd-bce6-cfc02e1a9236@I-love.SAKURA.ne.jp
573 * for reasons and steps for converting system-wide workqueues into local workqueues.
574 */
575extern void __warn_flushing_systemwide_wq(void)
576 __compiletime_warning("Please avoid flushing system-wide workqueues.");
577
37b1ef31
LJ
578/**
579 * flush_scheduled_work - ensure that any scheduled work has run to completion.
580 *
581 * Forces execution of the kernel-global workqueue and blocks until its
582 * completion.
583 *
c4f135d6
TH
584 * It's very easy to get into trouble if you don't take great care.
585 * Either of the following situations will lead to deadlock:
37b1ef31
LJ
586 *
587 * One of the work items currently on the workqueue needs to acquire
588 * a lock held by your code or its caller.
589 *
590 * Your code is running in the context of a work routine.
591 *
592 * They will be detected by lockdep when they occur, but the first might not
593 * occur very often. It depends on what work items are on the workqueue and
594 * what locks they need, which you have no control over.
595 *
596 * In most situations flushing the entire workqueue is overkill; you merely
597 * need to know that a particular work item isn't queued and isn't running.
598 * In such cases you should use cancel_delayed_work_sync() or
599 * cancel_work_sync() instead.
c4f135d6
TH
600 *
601 * Please stop calling this function! A conversion to stop flushing system-wide
602 * workqueues is in progress. This function will be removed after all in-tree
603 * users stopped calling this function.
37b1ef31 604 */
c4f135d6
TH
605/*
606 * The background of commit 771c035372a036f8 ("deprecate the
607 * '__deprecated' attribute warnings entirely and for good") is that,
608 * since Linus builds all modules between every single pull he does,
609 * the standard kernel build needs to be _clean_ in order to be able to
610 * notice when new problems happen. Therefore, don't emit warning while
611 * there are in-tree users.
612 */
613#define flush_scheduled_work() \
614({ \
615 if (0) \
616 __warn_flushing_systemwide_wq(); \
617 __flush_workqueue(system_wq); \
618})
619
620/*
621 * Although there is no longer in-tree caller, for now just emit warning
622 * in order to give out-of-tree callers time to update.
623 */
624#define flush_workqueue(wq) \
625({ \
626 struct workqueue_struct *_wq = (wq); \
627 \
628 if ((__builtin_constant_p(_wq == system_wq) && \
629 _wq == system_wq) || \
630 (__builtin_constant_p(_wq == system_highpri_wq) && \
631 _wq == system_highpri_wq) || \
632 (__builtin_constant_p(_wq == system_long_wq) && \
633 _wq == system_long_wq) || \
634 (__builtin_constant_p(_wq == system_unbound_wq) && \
635 _wq == system_unbound_wq) || \
636 (__builtin_constant_p(_wq == system_freezable_wq) && \
637 _wq == system_freezable_wq) || \
638 (__builtin_constant_p(_wq == system_power_efficient_wq) && \
639 _wq == system_power_efficient_wq) || \
640 (__builtin_constant_p(_wq == system_freezable_power_efficient_wq) && \
641 _wq == system_freezable_power_efficient_wq)) \
642 __warn_flushing_systemwide_wq(); \
643 __flush_workqueue(_wq); \
644})
37b1ef31 645
8425e3d5
TH
646/**
647 * schedule_delayed_work_on - queue work in global workqueue on CPU after delay
648 * @cpu: cpu to use
649 * @dwork: job to be done
650 * @delay: number of jiffies to wait
651 *
652 * After waiting for a given time this puts a job in the kernel-global
653 * workqueue on the specified CPU.
654 */
655static inline bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
656 unsigned long delay)
657{
658 return queue_delayed_work_on(cpu, system_wq, dwork, delay);
659}
660
661/**
662 * schedule_delayed_work - put work task in global workqueue after delay
663 * @dwork: job to be done
664 * @delay: number of jiffies to wait or 0 for immediate execution
665 *
666 * After waiting for a given time this puts a job in the kernel-global
667 * workqueue.
668 */
669static inline bool schedule_delayed_work(struct delayed_work *dwork,
670 unsigned long delay)
671{
672 return queue_delayed_work(system_wq, dwork, delay);
673}
674
2d3854a3 675#ifndef CONFIG_SMP
d84ff051 676static inline long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
2d3854a3
RR
677{
678 return fn(arg);
679}
0e8d6a93
TG
680static inline long work_on_cpu_safe(int cpu, long (*fn)(void *), void *arg)
681{
682 return fn(arg);
683}
2d3854a3 684#else
d84ff051 685long work_on_cpu(int cpu, long (*fn)(void *), void *arg);
0e8d6a93 686long work_on_cpu_safe(int cpu, long (*fn)(void *), void *arg);
2d3854a3 687#endif /* CONFIG_SMP */
a25909a4 688
a0a1a5fd
TH
689#ifdef CONFIG_FREEZER
690extern void freeze_workqueues_begin(void);
691extern bool freeze_workqueues_busy(void);
692extern void thaw_workqueues(void);
693#endif /* CONFIG_FREEZER */
694
226223ab
TH
695#ifdef CONFIG_SYSFS
696int workqueue_sysfs_register(struct workqueue_struct *wq);
697#else /* CONFIG_SYSFS */
698static inline int workqueue_sysfs_register(struct workqueue_struct *wq)
699{ return 0; }
700#endif /* CONFIG_SYSFS */
701
82607adc
TH
702#ifdef CONFIG_WQ_WATCHDOG
703void wq_watchdog_touch(int cpu);
704#else /* CONFIG_WQ_WATCHDOG */
705static inline void wq_watchdog_touch(int cpu) { }
706#endif /* CONFIG_WQ_WATCHDOG */
707
7ee681b2
TG
708#ifdef CONFIG_SMP
709int workqueue_prepare_cpu(unsigned int cpu);
710int workqueue_online_cpu(unsigned int cpu);
711int workqueue_offline_cpu(unsigned int cpu);
712#endif
713
2333e829
YC
714void __init workqueue_init_early(void);
715void __init workqueue_init(void);
3347fa09 716
1da177e4 717#endif