]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/workqueue.h
WorkStruct: Merge the pending bit into the wq_data pointer
[mirror_ubuntu-bionic-kernel.git] / include / linux / workqueue.h
CommitLineData
1da177e4
LT
1/*
2 * workqueue.h --- work queue handling for Linux.
3 */
4
5#ifndef _LINUX_WORKQUEUE_H
6#define _LINUX_WORKQUEUE_H
7
8#include <linux/timer.h>
9#include <linux/linkage.h>
10#include <linux/bitops.h>
11
12struct workqueue_struct;
13
6bb49e59
DH
14typedef void (*work_func_t)(void *data);
15
1da177e4 16struct work_struct {
365970a1
DH
17 /* the first word is the work queue pointer and the pending flag
18 * rolled into one */
19 unsigned long management;
20#define WORK_STRUCT_PENDING 0 /* T if work item pending execution */
21#define WORK_STRUCT_FLAG_MASK (3UL)
22#define WORK_STRUCT_WQ_DATA_MASK (~WORK_STRUCT_FLAG_MASK)
1da177e4 23 struct list_head entry;
6bb49e59 24 work_func_t func;
1da177e4 25 void *data;
52bad64d
DH
26};
27
28struct delayed_work {
29 struct work_struct work;
1da177e4
LT
30 struct timer_list timer;
31};
32
1fa44eca
JB
33struct execute_work {
34 struct work_struct work;
35};
36
1da177e4
LT
37#define __WORK_INITIALIZER(n, f, d) { \
38 .entry = { &(n).entry, &(n).entry }, \
39 .func = (f), \
40 .data = (d), \
52bad64d
DH
41 }
42
43#define __DELAYED_WORK_INITIALIZER(n, f, d) { \
44 .work = __WORK_INITIALIZER((n).work, (f), (d)), \
1da177e4
LT
45 .timer = TIMER_INITIALIZER(NULL, 0, 0), \
46 }
47
48#define DECLARE_WORK(n, f, d) \
49 struct work_struct n = __WORK_INITIALIZER(n, f, d)
50
52bad64d
DH
51#define DECLARE_DELAYED_WORK(n, f, d) \
52 struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, d)
53
1da177e4 54/*
52bad64d 55 * initialize a work item's function and data pointers
1da177e4
LT
56 */
57#define PREPARE_WORK(_work, _func, _data) \
58 do { \
52bad64d
DH
59 (_work)->func = (_func); \
60 (_work)->data = (_data); \
1da177e4
LT
61 } while (0)
62
52bad64d
DH
63#define PREPARE_DELAYED_WORK(_work, _func, _data) \
64 PREPARE_WORK(&(_work)->work, (_func), (_data))
65
1da177e4 66/*
52bad64d 67 * initialize all of a work item in one go
1da177e4
LT
68 */
69#define INIT_WORK(_work, _func, _data) \
70 do { \
71 INIT_LIST_HEAD(&(_work)->entry); \
365970a1 72 (_work)->management = 0; \
1da177e4 73 PREPARE_WORK((_work), (_func), (_data)); \
52bad64d
DH
74 } while (0)
75
76#define INIT_DELAYED_WORK(_work, _func, _data) \
77 do { \
78 INIT_WORK(&(_work)->work, (_func), (_data)); \
1da177e4
LT
79 init_timer(&(_work)->timer); \
80 } while (0)
81
365970a1
DH
82/**
83 * work_pending - Find out whether a work item is currently pending
84 * @work: The work item in question
85 */
86#define work_pending(work) \
87 test_bit(WORK_STRUCT_PENDING, &(work)->management)
88
89/**
90 * delayed_work_pending - Find out whether a delayable work item is currently
91 * pending
92 * @work: The work item in question
93 */
94#define delayed_work_pending(work) \
95 test_bit(WORK_STRUCT_PENDING, &(work)->work.management)
96
52bad64d 97
1da177e4
LT
98extern struct workqueue_struct *__create_workqueue(const char *name,
99 int singlethread);
100#define create_workqueue(name) __create_workqueue((name), 0)
101#define create_singlethread_workqueue(name) __create_workqueue((name), 1)
102
103extern void destroy_workqueue(struct workqueue_struct *wq);
104
105extern int FASTCALL(queue_work(struct workqueue_struct *wq, struct work_struct *work));
52bad64d 106extern int FASTCALL(queue_delayed_work(struct workqueue_struct *wq, struct delayed_work *work, unsigned long delay));
7a6bc1cd 107extern int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
52bad64d 108 struct delayed_work *work, unsigned long delay);
1da177e4
LT
109extern void FASTCALL(flush_workqueue(struct workqueue_struct *wq));
110
111extern int FASTCALL(schedule_work(struct work_struct *work));
52bad64d 112extern int FASTCALL(schedule_delayed_work(struct delayed_work *work, unsigned long delay));
1da177e4 113
52bad64d 114extern int schedule_delayed_work_on(int cpu, struct delayed_work *work, unsigned long delay);
6bb49e59 115extern int schedule_on_each_cpu(work_func_t func, void *info);
1da177e4
LT
116extern void flush_scheduled_work(void);
117extern int current_is_keventd(void);
118extern int keventd_up(void);
119
120extern void init_workqueues(void);
52bad64d 121void cancel_rearming_delayed_work(struct delayed_work *work);
81ddef77 122void cancel_rearming_delayed_workqueue(struct workqueue_struct *,
52bad64d 123 struct delayed_work *);
6bb49e59 124int execute_in_process_context(work_func_t fn, void *, struct execute_work *);
1da177e4
LT
125
126/*
127 * Kill off a pending schedule_delayed_work(). Note that the work callback
128 * function may still be running on return from cancel_delayed_work(). Run
129 * flush_scheduled_work() to wait on it.
130 */
52bad64d 131static inline int cancel_delayed_work(struct delayed_work *work)
1da177e4
LT
132{
133 int ret;
134
135 ret = del_timer_sync(&work->timer);
136 if (ret)
365970a1 137 clear_bit(WORK_STRUCT_PENDING, &work->work.management);
1da177e4
LT
138 return ret;
139}
140
141#endif