blob: dbecd27656c7ccd79f1d738f40a1c9feebd147ad [file] [log] [blame]
Jens Axboe771b53d02019-10-22 10:25:58 -06001#ifndef INTERNAL_IO_WQ_H
2#define INTERNAL_IO_WQ_H
3
Jens Axboee9418942021-02-19 12:33:30 -07004#include <linux/refcount.h>
Jens Axboe98447d62020-10-14 10:48:51 -06005
Jens Axboe771b53d02019-10-22 10:25:58 -06006struct io_wq;
7
8enum {
9 IO_WQ_WORK_CANCEL = 1,
Pavel Begunkove883a792020-06-25 18:20:53 +030010 IO_WQ_WORK_HASHED = 2,
11 IO_WQ_WORK_UNBOUND = 4,
Pavel Begunkove883a792020-06-25 18:20:53 +030012 IO_WQ_WORK_CONCURRENT = 16,
Jens Axboe771b53d02019-10-22 10:25:58 -060013
14 IO_WQ_HASH_SHIFT = 24, /* upper 8 bits are used for hash key */
15};
16
17enum io_wq_cancel {
18 IO_WQ_CANCEL_OK, /* cancelled before started */
19 IO_WQ_CANCEL_RUNNING, /* found, running, and attempted cancelled */
20 IO_WQ_CANCEL_NOTFOUND, /* work not found */
21};
22
Stefan Metzmacher53e043b2021-03-15 12:56:56 +010023struct io_wq_work_node {
24 struct io_wq_work_node *next;
25};
26
27struct io_wq_work_list {
28 struct io_wq_work_node *first;
29 struct io_wq_work_node *last;
30};
31
Pavel Begunkov0d9521b2021-09-24 21:59:46 +010032#define wq_list_for_each(pos, prv, head) \
33 for (pos = (head)->first, prv = NULL; pos; prv = pos, pos = (pos)->next)
34
Pavel Begunkov5eef4e82021-09-24 21:59:49 +010035#define wq_list_for_each_resume(pos, prv) \
36 for (; pos; prv = pos, pos = (pos)->next)
37
Pavel Begunkov0d9521b2021-09-24 21:59:46 +010038#define wq_list_empty(list) (READ_ONCE((list)->first) == NULL)
39#define INIT_WQ_LIST(list) do { \
40 (list)->first = NULL; \
Pavel Begunkov0d9521b2021-09-24 21:59:46 +010041} while (0)
42
Pavel Begunkov86f3cd12020-03-23 22:57:22 +030043static inline void wq_list_add_after(struct io_wq_work_node *node,
44 struct io_wq_work_node *pos,
45 struct io_wq_work_list *list)
46{
47 struct io_wq_work_node *next = pos->next;
48
49 pos->next = node;
50 node->next = next;
51 if (!next)
52 list->last = node;
53}
54
Hao Xu24115c42021-12-07 17:39:47 +080055/**
56 * wq_list_merge - merge the second list to the first one.
57 * @list0: the first list
58 * @list1: the second list
59 * Return the first node after mergence.
60 */
61static inline struct io_wq_work_node *wq_list_merge(struct io_wq_work_list *list0,
62 struct io_wq_work_list *list1)
63{
64 struct io_wq_work_node *ret;
65
66 if (!list0->first) {
67 ret = list1->first;
68 } else {
69 ret = list0->first;
70 list0->last->next = list1->first;
71 }
72 INIT_WQ_LIST(list0);
73 INIT_WQ_LIST(list1);
74 return ret;
75}
76
Jens Axboe6206f0e2019-11-26 11:59:32 -070077static inline void wq_list_add_tail(struct io_wq_work_node *node,
78 struct io_wq_work_list *list)
79{
Pavel Begunkov8724dd82021-08-09 13:04:07 +010080 node->next = NULL;
Jens Axboe6206f0e2019-11-26 11:59:32 -070081 if (!list->first) {
Jens Axboee995d512019-12-07 21:06:46 -070082 list->last = node;
83 WRITE_ONCE(list->first, node);
Jens Axboe6206f0e2019-11-26 11:59:32 -070084 } else {
85 list->last->next = node;
86 list->last = node;
87 }
88}
89
Pavel Begunkov0d9521b2021-09-24 21:59:46 +010090static inline void wq_list_add_head(struct io_wq_work_node *node,
91 struct io_wq_work_list *list)
92{
93 node->next = list->first;
94 if (!node->next)
95 list->last = node;
96 WRITE_ONCE(list->first, node);
97}
98
Pavel Begunkov86f3cd12020-03-23 22:57:22 +030099static inline void wq_list_cut(struct io_wq_work_list *list,
100 struct io_wq_work_node *last,
101 struct io_wq_work_node *prev)
102{
103 /* first in the list, if prev==NULL */
104 if (!prev)
105 WRITE_ONCE(list->first, last->next);
106 else
107 prev->next = last->next;
108
109 if (last == list->last)
110 list->last = prev;
111 last->next = NULL;
112}
113
Pavel Begunkov0d9521b2021-09-24 21:59:46 +0100114static inline void __wq_list_splice(struct io_wq_work_list *list,
115 struct io_wq_work_node *to)
116{
117 list->last->next = to->next;
118 to->next = list->first;
119 INIT_WQ_LIST(list);
120}
121
122static inline bool wq_list_splice(struct io_wq_work_list *list,
123 struct io_wq_work_node *to)
124{
125 if (!wq_list_empty(list)) {
126 __wq_list_splice(list, to);
127 return true;
128 }
129 return false;
130}
131
132static inline void wq_stack_add_head(struct io_wq_work_node *node,
133 struct io_wq_work_node *stack)
134{
135 node->next = stack->next;
136 stack->next = node;
137}
138
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300139static inline void wq_list_del(struct io_wq_work_list *list,
Jens Axboe6206f0e2019-11-26 11:59:32 -0700140 struct io_wq_work_node *node,
141 struct io_wq_work_node *prev)
142{
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300143 wq_list_cut(list, node, prev);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700144}
145
Pavel Begunkov0d9521b2021-09-24 21:59:46 +0100146static inline
147struct io_wq_work_node *wq_stack_extract(struct io_wq_work_node *stack)
148{
149 struct io_wq_work_node *node = stack->next;
Jens Axboe6206f0e2019-11-26 11:59:32 -0700150
Pavel Begunkov0d9521b2021-09-24 21:59:46 +0100151 stack->next = node->next;
152 return node;
153}
Jens Axboe6206f0e2019-11-26 11:59:32 -0700154
Jens Axboe771b53d02019-10-22 10:25:58 -0600155struct io_wq_work {
Pavel Begunkov18a542f2020-03-23 00:23:29 +0300156 struct io_wq_work_node list;
Jens Axboe6206f0e2019-11-26 11:59:32 -0700157 unsigned flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600158};
159
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300160static inline struct io_wq_work *wq_next_work(struct io_wq_work *work)
161{
162 if (!work->list.next)
163 return NULL;
164
165 return container_of(work->list.next, struct io_wq_work, list);
166}
167
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000168typedef struct io_wq_work *(free_work_fn)(struct io_wq_work *);
169typedef void (io_wq_work_fn)(struct io_wq_work *);
Jens Axboe7d723062019-11-12 22:31:31 -0700170
Jens Axboee9418942021-02-19 12:33:30 -0700171struct io_wq_hash {
172 refcount_t refs;
173 unsigned long map;
174 struct wait_queue_head wait;
175};
176
177static inline void io_wq_put_hash(struct io_wq_hash *hash)
178{
179 if (refcount_dec_and_test(&hash->refs))
180 kfree(hash);
181}
182
Jens Axboe576a3472019-11-25 08:49:20 -0700183struct io_wq_data {
Jens Axboee9418942021-02-19 12:33:30 -0700184 struct io_wq_hash *hash;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700185 struct task_struct *task;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300186 io_wq_work_fn *do_work;
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300187 free_work_fn *free_work;
Jens Axboe576a3472019-11-25 08:49:20 -0700188};
189
190struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data);
Pavel Begunkov17a91052021-05-23 15:48:39 +0100191void io_wq_exit_start(struct io_wq *wq);
Jens Axboeafcc4012021-02-26 13:48:19 -0700192void io_wq_put_and_exit(struct io_wq *wq);
Jens Axboe771b53d02019-10-22 10:25:58 -0600193
194void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work);
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300195void io_wq_hash_work(struct io_wq_work *work, void *val);
196
Jens Axboefe764212021-06-17 10:19:54 -0600197int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask);
Jens Axboe2e480052021-08-27 11:33:19 -0600198int io_wq_max_workers(struct io_wq *wq, int *new_count);
Jens Axboefe764212021-06-17 10:19:54 -0600199
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300200static inline bool io_wq_is_hashed(struct io_wq_work *work)
201{
202 return work->flags & IO_WQ_WORK_HASHED;
203}
Jens Axboe771b53d02019-10-22 10:25:58 -0600204
Jens Axboe62755e32019-10-28 21:49:21 -0600205typedef bool (work_cancel_fn)(struct io_wq_work *, void *);
206
207enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300208 void *data, bool cancel_all);
Jens Axboe62755e32019-10-28 21:49:21 -0600209
Jens Axboe771b53d02019-10-22 10:25:58 -0600210#if defined(CONFIG_IO_WQ)
211extern void io_wq_worker_sleeping(struct task_struct *);
212extern void io_wq_worker_running(struct task_struct *);
213#else
214static inline void io_wq_worker_sleeping(struct task_struct *tsk)
215{
216}
217static inline void io_wq_worker_running(struct task_struct *tsk)
218{
219}
Jens Axboe525b3052019-12-17 14:13:37 -0700220#endif
Jens Axboe771b53d02019-10-22 10:25:58 -0600221
Jens Axboe525b3052019-12-17 14:13:37 -0700222static inline bool io_wq_current_is_worker(void)
223{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700224 return in_task() && (current->flags & PF_IO_WORKER) &&
Eric W. Biedermane32cf5d2021-12-22 22:10:09 -0600225 current->worker_private;
Jens Axboe525b3052019-12-17 14:13:37 -0700226}
227#endif