blob: bb4d3ee9592e86dae3271545be5d1b9fdf7abd4c [file] [log] [blame]
Jens Axboe771b53d02019-10-22 10:25:58 -06001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Basic worker thread pool for io_uring
4 *
5 * Copyright (C) 2019 Jens Axboe
6 *
7 */
8#include <linux/kernel.h>
9#include <linux/init.h>
10#include <linux/errno.h>
11#include <linux/sched/signal.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060012#include <linux/percpu.h>
13#include <linux/slab.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060014#include <linux/rculist_nulls.h>
Jens Axboe43c01fb2020-10-22 09:02:50 -060015#include <linux/cpu.h>
Jens Axboe3bfe6102021-02-16 14:15:30 -070016#include <linux/tracehook.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060017
18#include "io-wq.h"
19
20#define WORKER_IDLE_TIMEOUT (5 * HZ)
21
22enum {
23 IO_WORKER_F_UP = 1, /* up and active */
24 IO_WORKER_F_RUNNING = 2, /* account as running */
25 IO_WORKER_F_FREE = 4, /* worker on free list */
Jens Axboe145cc8c2020-09-26 12:37:46 -060026 IO_WORKER_F_FIXED = 8, /* static idle worker */
27 IO_WORKER_F_BOUND = 16, /* is doing bounded work */
Jens Axboe771b53d02019-10-22 10:25:58 -060028};
29
30enum {
31 IO_WQ_BIT_EXIT = 0, /* wq exiting */
Jens Axboe771b53d02019-10-22 10:25:58 -060032};
33
34enum {
35 IO_WQE_FLAG_STALLED = 1, /* stalled on hash */
36};
37
38/*
39 * One for each thread in a wqe pool
40 */
41struct io_worker {
42 refcount_t ref;
43 unsigned flags;
44 struct hlist_nulls_node nulls_node;
Jens Axboee61df662019-11-13 13:54:49 -070045 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060046 struct task_struct *task;
Jens Axboe771b53d02019-10-22 10:25:58 -060047 struct io_wqe *wqe;
Jens Axboe36c2f922019-11-13 09:43:34 -070048
Jens Axboe771b53d02019-10-22 10:25:58 -060049 struct io_wq_work *cur_work;
Jens Axboe36c2f922019-11-13 09:43:34 -070050 spinlock_t lock;
Jens Axboe771b53d02019-10-22 10:25:58 -060051
Jens Axboeeb2de942021-02-23 19:59:06 -070052 struct completion ref_done;
53
Jens Axboe771b53d02019-10-22 10:25:58 -060054 struct rcu_head rcu;
Jens Axboe771b53d02019-10-22 10:25:58 -060055};
56
Jens Axboe771b53d02019-10-22 10:25:58 -060057#if BITS_PER_LONG == 64
58#define IO_WQ_HASH_ORDER 6
59#else
60#define IO_WQ_HASH_ORDER 5
61#endif
62
Pavel Begunkov86f3cd12020-03-23 22:57:22 +030063#define IO_WQ_NR_HASH_BUCKETS (1u << IO_WQ_HASH_ORDER)
64
Jens Axboec5def4a2019-11-07 11:41:16 -070065struct io_wqe_acct {
66 unsigned nr_workers;
67 unsigned max_workers;
Jens Axboe685fe7f2021-03-08 09:37:51 -070068 int index;
Jens Axboec5def4a2019-11-07 11:41:16 -070069 atomic_t nr_running;
70};
71
72enum {
73 IO_WQ_ACCT_BOUND,
74 IO_WQ_ACCT_UNBOUND,
75};
76
Jens Axboe771b53d02019-10-22 10:25:58 -060077/*
78 * Per-node worker thread pool
79 */
80struct io_wqe {
81 struct {
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +020082 raw_spinlock_t lock;
Jens Axboe6206f0e2019-11-26 11:59:32 -070083 struct io_wq_work_list work_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060084 unsigned flags;
85 } ____cacheline_aligned_in_smp;
86
87 int node;
Jens Axboec5def4a2019-11-07 11:41:16 -070088 struct io_wqe_acct acct[2];
Jens Axboe771b53d02019-10-22 10:25:58 -060089
Jens Axboe021d1cd2019-11-14 08:00:41 -070090 struct hlist_nulls_head free_list;
Jens Axboee61df662019-11-13 13:54:49 -070091 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060092
Jens Axboee9418942021-02-19 12:33:30 -070093 struct wait_queue_entry wait;
94
Jens Axboe771b53d02019-10-22 10:25:58 -060095 struct io_wq *wq;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +030096 struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
Jens Axboe0e034962021-06-17 10:08:11 -060097
98 cpumask_var_t cpu_mask;
Jens Axboe771b53d02019-10-22 10:25:58 -060099};
100
101/*
102 * Per io_wq state
103 */
104struct io_wq {
Jens Axboe771b53d02019-10-22 10:25:58 -0600105 unsigned long state;
Jens Axboe771b53d02019-10-22 10:25:58 -0600106
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300107 free_work_fn *free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300108 io_wq_work_fn *do_work;
Jens Axboe7d723062019-11-12 22:31:31 -0700109
Jens Axboee9418942021-02-19 12:33:30 -0700110 struct io_wq_hash *hash;
111
Jens Axboefb3a1f62021-02-26 09:47:20 -0700112 atomic_t worker_refs;
113 struct completion worker_done;
114
Jens Axboe43c01fb2020-10-22 09:02:50 -0600115 struct hlist_node cpuhp_node;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700116
Jens Axboe685fe7f2021-03-08 09:37:51 -0700117 struct task_struct *task;
Pavel Begunkovc7f405d2021-06-14 02:36:12 +0100118
119 struct io_wqe *wqes[];
Jens Axboe771b53d02019-10-22 10:25:58 -0600120};
121
Jens Axboe43c01fb2020-10-22 09:02:50 -0600122static enum cpuhp_state io_wq_online;
123
Jens Axboef0127252021-03-03 15:47:04 -0700124struct io_cb_cancel_data {
125 work_cancel_fn *fn;
126 void *data;
127 int nr_running;
128 int nr_pending;
129 bool cancel_all;
130};
131
Jens Axboe685fe7f2021-03-08 09:37:51 -0700132static void create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index);
Jens Axboef0127252021-03-03 15:47:04 -0700133
Jens Axboe771b53d02019-10-22 10:25:58 -0600134static bool io_worker_get(struct io_worker *worker)
135{
136 return refcount_inc_not_zero(&worker->ref);
137}
138
139static void io_worker_release(struct io_worker *worker)
140{
141 if (refcount_dec_and_test(&worker->ref))
Jens Axboeeb2de942021-02-23 19:59:06 -0700142 complete(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600143}
144
Pavel Begunkov8418f222021-03-22 01:58:28 +0000145static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
146{
147 return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
148}
149
Jens Axboec5def4a2019-11-07 11:41:16 -0700150static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
151 struct io_wq_work *work)
152{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000153 return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
Jens Axboec5def4a2019-11-07 11:41:16 -0700154}
155
Jens Axboe958234d2021-02-17 09:00:57 -0700156static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700157{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000158 return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
Jens Axboec5def4a2019-11-07 11:41:16 -0700159}
160
Jens Axboe685fe7f2021-03-08 09:37:51 -0700161static void io_worker_ref_put(struct io_wq *wq)
162{
163 if (atomic_dec_and_test(&wq->worker_refs))
164 complete(&wq->worker_done);
165}
166
Jens Axboe771b53d02019-10-22 10:25:58 -0600167static void io_worker_exit(struct io_worker *worker)
168{
169 struct io_wqe *wqe = worker->wqe;
Jens Axboe958234d2021-02-17 09:00:57 -0700170 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboebf1daa42021-02-16 18:00:55 -0700171 unsigned flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600172
Jens Axboeeb2de942021-02-23 19:59:06 -0700173 if (refcount_dec_and_test(&worker->ref))
174 complete(&worker->ref_done);
175 wait_for_completion(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600176
177 preempt_disable();
178 current->flags &= ~PF_IO_WORKER;
Jens Axboebf1daa42021-02-16 18:00:55 -0700179 flags = worker->flags;
180 worker->flags = 0;
181 if (flags & IO_WORKER_F_RUNNING)
Jens Axboec5def4a2019-11-07 11:41:16 -0700182 atomic_dec(&acct->nr_running);
Jens Axboe771b53d02019-10-22 10:25:58 -0600183 worker->flags = 0;
184 preempt_enable();
185
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200186 raw_spin_lock_irq(&wqe->lock);
Jens Axboebf1daa42021-02-16 18:00:55 -0700187 if (flags & IO_WORKER_F_FREE)
188 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700189 list_del_rcu(&worker->all_list);
Jens Axboec5def4a2019-11-07 11:41:16 -0700190 acct->nr_workers--;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200191 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600192
YueHaibing364b05f2019-11-02 15:55:01 +0800193 kfree_rcu(worker, rcu);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700194 io_worker_ref_put(wqe->wq);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700195 do_exit(0);
Jens Axboe771b53d02019-10-22 10:25:58 -0600196}
197
Jens Axboec5def4a2019-11-07 11:41:16 -0700198static inline bool io_wqe_run_queue(struct io_wqe *wqe)
199 __must_hold(wqe->lock)
200{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700201 if (!wq_list_empty(&wqe->work_list) &&
202 !(wqe->flags & IO_WQE_FLAG_STALLED))
Jens Axboec5def4a2019-11-07 11:41:16 -0700203 return true;
204 return false;
205}
206
207/*
208 * Check head of free list for an available worker. If one isn't available,
Jens Axboe685fe7f2021-03-08 09:37:51 -0700209 * caller must create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700210 */
211static bool io_wqe_activate_free_worker(struct io_wqe *wqe)
212 __must_hold(RCU)
213{
214 struct hlist_nulls_node *n;
215 struct io_worker *worker;
216
Jens Axboe021d1cd2019-11-14 08:00:41 -0700217 n = rcu_dereference(hlist_nulls_first_rcu(&wqe->free_list));
Jens Axboec5def4a2019-11-07 11:41:16 -0700218 if (is_a_nulls(n))
219 return false;
220
221 worker = hlist_nulls_entry(n, struct io_worker, nulls_node);
222 if (io_worker_get(worker)) {
Jens Axboe506d95f2019-12-07 21:03:59 -0700223 wake_up_process(worker->task);
Jens Axboec5def4a2019-11-07 11:41:16 -0700224 io_worker_release(worker);
225 return true;
226 }
227
228 return false;
229}
230
231/*
232 * We need a worker. If we find a free one, we're good. If not, and we're
Jens Axboe685fe7f2021-03-08 09:37:51 -0700233 * below the max number of workers, create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700234 */
235static void io_wqe_wake_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
236{
237 bool ret;
238
239 /*
240 * Most likely an attempt to queue unbounded work on an io_wq that
241 * wasn't setup with any unbounded workers.
242 */
243 WARN_ON_ONCE(!acct->max_workers);
244
245 rcu_read_lock();
246 ret = io_wqe_activate_free_worker(wqe);
247 rcu_read_unlock();
248
Jens Axboe685fe7f2021-03-08 09:37:51 -0700249 if (!ret && acct->nr_workers < acct->max_workers) {
250 atomic_inc(&acct->nr_running);
251 atomic_inc(&wqe->wq->worker_refs);
252 create_io_worker(wqe->wq, wqe, acct->index);
253 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700254}
255
Jens Axboe958234d2021-02-17 09:00:57 -0700256static void io_wqe_inc_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700257{
Jens Axboe958234d2021-02-17 09:00:57 -0700258 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700259
260 atomic_inc(&acct->nr_running);
261}
262
Jens Axboe685fe7f2021-03-08 09:37:51 -0700263struct create_worker_data {
264 struct callback_head work;
265 struct io_wqe *wqe;
266 int index;
267};
268
269static void create_worker_cb(struct callback_head *cb)
270{
271 struct create_worker_data *cwd;
272 struct io_wq *wq;
273
274 cwd = container_of(cb, struct create_worker_data, work);
275 wq = cwd->wqe->wq;
276 create_io_worker(wq, cwd->wqe, cwd->index);
277 kfree(cwd);
278}
279
280static void io_queue_worker_create(struct io_wqe *wqe, struct io_wqe_acct *acct)
281{
282 struct create_worker_data *cwd;
283 struct io_wq *wq = wqe->wq;
284
285 /* raced with exit, just ignore create call */
286 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
287 goto fail;
288
289 cwd = kmalloc(sizeof(*cwd), GFP_ATOMIC);
290 if (cwd) {
291 init_task_work(&cwd->work, create_worker_cb);
292 cwd->wqe = wqe;
293 cwd->index = acct->index;
294 if (!task_work_add(wq->task, &cwd->work, TWA_SIGNAL))
295 return;
296
297 kfree(cwd);
298 }
299fail:
300 atomic_dec(&acct->nr_running);
301 io_worker_ref_put(wq);
302}
303
Jens Axboe958234d2021-02-17 09:00:57 -0700304static void io_wqe_dec_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700305 __must_hold(wqe->lock)
306{
Jens Axboe958234d2021-02-17 09:00:57 -0700307 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
308 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700309
Jens Axboe685fe7f2021-03-08 09:37:51 -0700310 if (!(worker->flags & IO_WORKER_F_UP))
311 return;
312
313 if (atomic_dec_and_test(&acct->nr_running) && io_wqe_run_queue(wqe)) {
314 atomic_inc(&acct->nr_running);
315 atomic_inc(&wqe->wq->worker_refs);
316 io_queue_worker_create(wqe, acct);
317 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700318}
319
Jens Axboe771b53d02019-10-22 10:25:58 -0600320/*
321 * Worker will start processing some work. Move it to the busy list, if
322 * it's currently on the freelist
323 */
324static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
325 struct io_wq_work *work)
326 __must_hold(wqe->lock)
327{
Jens Axboec5def4a2019-11-07 11:41:16 -0700328 bool worker_bound, work_bound;
329
Hao Xu417b5052021-04-06 11:08:45 +0800330 BUILD_BUG_ON((IO_WQ_ACCT_UNBOUND ^ IO_WQ_ACCT_BOUND) != 1);
331
Jens Axboe771b53d02019-10-22 10:25:58 -0600332 if (worker->flags & IO_WORKER_F_FREE) {
333 worker->flags &= ~IO_WORKER_F_FREE;
334 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600335 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700336
337 /*
338 * If worker is moving from bound to unbound (or vice versa), then
339 * ensure we update the running accounting.
340 */
Dan Carpenterb2e9c7d62019-11-19 09:22:16 +0300341 worker_bound = (worker->flags & IO_WORKER_F_BOUND) != 0;
342 work_bound = (work->flags & IO_WQ_WORK_UNBOUND) == 0;
343 if (worker_bound != work_bound) {
Hao Xu417b5052021-04-06 11:08:45 +0800344 int index = work_bound ? IO_WQ_ACCT_UNBOUND : IO_WQ_ACCT_BOUND;
Jens Axboe958234d2021-02-17 09:00:57 -0700345 io_wqe_dec_running(worker);
Hao Xu417b5052021-04-06 11:08:45 +0800346 worker->flags ^= IO_WORKER_F_BOUND;
347 wqe->acct[index].nr_workers--;
348 wqe->acct[index ^ 1].nr_workers++;
Jens Axboe958234d2021-02-17 09:00:57 -0700349 io_wqe_inc_running(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700350 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600351}
352
353/*
354 * No work, worker going to sleep. Move to freelist, and unuse mm if we
355 * have one attached. Dropping the mm may potentially sleep, so we drop
356 * the lock in that case and return success. Since the caller has to
357 * retry the loop in that case (we changed task state), we don't regrab
358 * the lock if we return success.
359 */
Jens Axboec6d77d92021-02-15 13:26:34 -0700360static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600361 __must_hold(wqe->lock)
362{
363 if (!(worker->flags & IO_WORKER_F_FREE)) {
364 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700365 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600366 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600367}
368
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300369static inline unsigned int io_get_work_hash(struct io_wq_work *work)
370{
371 return work->flags >> IO_WQ_HASH_SHIFT;
372}
373
Jens Axboee9418942021-02-19 12:33:30 -0700374static void io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
375{
376 struct io_wq *wq = wqe->wq;
377
378 spin_lock(&wq->hash->wait.lock);
379 if (list_empty(&wqe->wait.entry)) {
380 __add_wait_queue(&wq->hash->wait, &wqe->wait);
381 if (!test_bit(hash, &wq->hash->map)) {
382 __set_current_state(TASK_RUNNING);
383 list_del_init(&wqe->wait.entry);
384 }
385 }
386 spin_unlock(&wq->hash->wait.lock);
387}
388
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300389static struct io_wq_work *io_get_next_work(struct io_wqe *wqe)
Jens Axboe771b53d02019-10-22 10:25:58 -0600390 __must_hold(wqe->lock)
391{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700392 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300393 struct io_wq_work *work, *tail;
Jens Axboee9418942021-02-19 12:33:30 -0700394 unsigned int stall_hash = -1U;
Jens Axboe771b53d02019-10-22 10:25:58 -0600395
Jens Axboe6206f0e2019-11-26 11:59:32 -0700396 wq_list_for_each(node, prev, &wqe->work_list) {
Jens Axboee9418942021-02-19 12:33:30 -0700397 unsigned int hash;
398
Jens Axboe6206f0e2019-11-26 11:59:32 -0700399 work = container_of(node, struct io_wq_work, list);
400
Jens Axboe771b53d02019-10-22 10:25:58 -0600401 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300402 if (!io_wq_is_hashed(work)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300403 wq_list_del(&wqe->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600404 return work;
405 }
406
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300407 hash = io_get_work_hash(work);
Jens Axboee9418942021-02-19 12:33:30 -0700408 /* all items with this hash lie in [work, tail] */
409 tail = wqe->hash_tail[hash];
410
411 /* hashed, can run if not already running */
412 if (!test_and_set_bit(hash, &wqe->wq->hash->map)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300413 wqe->hash_tail[hash] = NULL;
414 wq_list_cut(&wqe->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600415 return work;
416 }
Jens Axboee9418942021-02-19 12:33:30 -0700417 if (stall_hash == -1U)
418 stall_hash = hash;
419 /* fast forward to a next hash, for-each will fix up @prev */
420 node = &tail->list;
421 }
422
423 if (stall_hash != -1U) {
424 raw_spin_unlock(&wqe->lock);
425 io_wait_on_hash(wqe, stall_hash);
426 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600427 }
428
429 return NULL;
430}
431
Jens Axboe00ddff42021-03-21 07:06:56 -0600432static bool io_flush_signals(void)
Jens Axboecccf0ee2020-01-27 16:34:48 -0700433{
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600434 if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL))) {
Jens Axboe00ddff42021-03-21 07:06:56 -0600435 __set_current_state(TASK_RUNNING);
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600436 tracehook_notify_signal();
Jens Axboe00ddff42021-03-21 07:06:56 -0600437 return true;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700438 }
Jens Axboe00ddff42021-03-21 07:06:56 -0600439 return false;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300440}
441
442static void io_assign_current_work(struct io_worker *worker,
443 struct io_wq_work *work)
444{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300445 if (work) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700446 io_flush_signals();
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300447 cond_resched();
448 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300449
450 spin_lock_irq(&worker->lock);
451 worker->cur_work = work;
452 spin_unlock_irq(&worker->lock);
453}
454
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300455static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
456
Jens Axboe771b53d02019-10-22 10:25:58 -0600457static void io_worker_handle_work(struct io_worker *worker)
458 __releases(wqe->lock)
459{
Jens Axboe771b53d02019-10-22 10:25:58 -0600460 struct io_wqe *wqe = worker->wqe;
461 struct io_wq *wq = wqe->wq;
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100462 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
Jens Axboe771b53d02019-10-22 10:25:58 -0600463
464 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300465 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300466get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600467 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600468 * If we got some work, mark us as busy. If we didn't, but
469 * the list isn't empty, it means we stalled on hashed work.
470 * Mark us stalled so we don't keep looking for work when we
471 * can't make progress, any work completion or insertion will
472 * clear the stalled flag.
473 */
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300474 work = io_get_next_work(wqe);
Jens Axboe771b53d02019-10-22 10:25:58 -0600475 if (work)
476 __io_worker_busy(wqe, worker, work);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700477 else if (!wq_list_empty(&wqe->work_list))
Jens Axboe771b53d02019-10-22 10:25:58 -0600478 wqe->flags |= IO_WQE_FLAG_STALLED;
479
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200480 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600481 if (!work)
482 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300483 io_assign_current_work(worker, work);
Jens Axboee9418942021-02-19 12:33:30 -0700484 __set_current_state(TASK_RUNNING);
Jens Axboe36c2f922019-11-13 09:43:34 -0700485
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300486 /* handle a whole dependent link */
487 do {
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000488 struct io_wq_work *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300489 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700490
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300491 next_hashed = wq_next_work(work);
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100492
493 if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
494 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000495 wq->do_work(work);
496 io_assign_current_work(worker, NULL);
Jens Axboe36c2f922019-11-13 09:43:34 -0700497
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000498 linked = wq->free_work(work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300499 work = next_hashed;
500 if (!work && linked && !io_wq_is_hashed(linked)) {
501 work = linked;
502 linked = NULL;
503 }
504 io_assign_current_work(worker, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300505 if (linked)
506 io_wqe_enqueue(wqe, linked);
507
508 if (hash != -1U && !next_hashed) {
Jens Axboee9418942021-02-19 12:33:30 -0700509 clear_bit(hash, &wq->hash->map);
510 if (wq_has_sleeper(&wq->hash->wait))
511 wake_up(&wq->hash->wait);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200512 raw_spin_lock_irq(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300513 wqe->flags &= ~IO_WQE_FLAG_STALLED;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300514 /* skip unnecessary unlock-lock wqe->lock */
515 if (!work)
516 goto get_next;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200517 raw_spin_unlock_irq(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300518 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300519 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700520
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200521 raw_spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600522 } while (1);
523}
524
Jens Axboe771b53d02019-10-22 10:25:58 -0600525static int io_wqe_worker(void *data)
526{
527 struct io_worker *worker = data;
528 struct io_wqe *wqe = worker->wqe;
529 struct io_wq *wq = wqe->wq;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700530 char buf[TASK_COMM_LEN];
Jens Axboe771b53d02019-10-22 10:25:58 -0600531
Jens Axboe46fe18b2021-03-04 12:39:36 -0700532 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700533
Jens Axboe685fe7f2021-03-08 09:37:51 -0700534 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700535 set_task_comm(current, buf);
Jens Axboe771b53d02019-10-22 10:25:58 -0600536
537 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe16efa4f2021-03-12 20:26:13 -0700538 long ret;
539
Jens Axboe506d95f2019-12-07 21:03:59 -0700540 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700541loop:
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200542 raw_spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600543 if (io_wqe_run_queue(wqe)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600544 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700545 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600546 }
Jens Axboec6d77d92021-02-15 13:26:34 -0700547 __io_worker_idle(wqe, worker);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200548 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe00ddff42021-03-21 07:06:56 -0600549 if (io_flush_signals())
550 continue;
Jens Axboe16efa4f2021-03-12 20:26:13 -0700551 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600552 if (signal_pending(current)) {
553 struct ksignal ksig;
554
555 if (!get_signal(&ksig))
556 continue;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700557 break;
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600558 }
559 if (ret)
560 continue;
Jens Axboe771b53d02019-10-22 10:25:58 -0600561 /* timed out, exit unless we're the fixed worker */
Pavel Begunkov769e6832021-06-14 02:36:16 +0100562 if (!(worker->flags & IO_WORKER_F_FIXED))
Jens Axboe771b53d02019-10-22 10:25:58 -0600563 break;
564 }
565
Jens Axboe771b53d02019-10-22 10:25:58 -0600566 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200567 raw_spin_lock_irq(&wqe->lock);
Pavel Begunkove5872272021-06-14 02:36:17 +0100568 io_worker_handle_work(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600569 }
570
571 io_worker_exit(worker);
572 return 0;
573}
574
575/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600576 * Called when a worker is scheduled in. Mark us as currently running.
577 */
578void io_wq_worker_running(struct task_struct *tsk)
579{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700580 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600581
Jens Axboe3bfe6102021-02-16 14:15:30 -0700582 if (!worker)
583 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600584 if (!(worker->flags & IO_WORKER_F_UP))
585 return;
586 if (worker->flags & IO_WORKER_F_RUNNING)
587 return;
588 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboe958234d2021-02-17 09:00:57 -0700589 io_wqe_inc_running(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600590}
591
592/*
593 * Called when worker is going to sleep. If there are no workers currently
Jens Axboe685fe7f2021-03-08 09:37:51 -0700594 * running and we have work pending, wake up a free one or create a new one.
Jens Axboe771b53d02019-10-22 10:25:58 -0600595 */
596void io_wq_worker_sleeping(struct task_struct *tsk)
597{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700598 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600599
Jens Axboe3bfe6102021-02-16 14:15:30 -0700600 if (!worker)
601 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600602 if (!(worker->flags & IO_WORKER_F_UP))
603 return;
604 if (!(worker->flags & IO_WORKER_F_RUNNING))
605 return;
606
607 worker->flags &= ~IO_WORKER_F_RUNNING;
608
Jens Axboe3bfe6102021-02-16 14:15:30 -0700609 raw_spin_lock_irq(&worker->wqe->lock);
Jens Axboe958234d2021-02-17 09:00:57 -0700610 io_wqe_dec_running(worker);
Jens Axboe3bfe6102021-02-16 14:15:30 -0700611 raw_spin_unlock_irq(&worker->wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600612}
613
Jens Axboe685fe7f2021-03-08 09:37:51 -0700614static void create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
Jens Axboe3bfe6102021-02-16 14:15:30 -0700615{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700616 struct io_wqe_acct *acct = &wqe->acct[index];
Jens Axboe3bfe6102021-02-16 14:15:30 -0700617 struct io_worker *worker;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700618 struct task_struct *tsk;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700619
Jens Axboe8b3e78b2021-02-23 15:34:06 -0700620 __set_current_state(TASK_RUNNING);
621
Jens Axboe3bfe6102021-02-16 14:15:30 -0700622 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
623 if (!worker)
Jens Axboe685fe7f2021-03-08 09:37:51 -0700624 goto fail;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700625
626 refcount_set(&worker->ref, 1);
627 worker->nulls_node.pprev = NULL;
628 worker->wqe = wqe;
629 spin_lock_init(&worker->lock);
Jens Axboeeb2de942021-02-23 19:59:06 -0700630 init_completion(&worker->ref_done);
Jens Axboe3bfe6102021-02-16 14:15:30 -0700631
Jens Axboe46fe18b2021-03-04 12:39:36 -0700632 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
633 if (IS_ERR(tsk)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700634 kfree(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700635fail:
636 atomic_dec(&acct->nr_running);
637 io_worker_ref_put(wq);
638 return;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700639 }
Jens Axboe46fe18b2021-03-04 12:39:36 -0700640
641 tsk->pf_io_worker = worker;
642 worker->task = tsk;
Jens Axboe0e034962021-06-17 10:08:11 -0600643 set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
Jens Axboee22bc9b2021-03-09 19:49:02 -0700644 tsk->flags |= PF_NO_SETAFFINITY;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700645
646 raw_spin_lock_irq(&wqe->lock);
647 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
648 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
649 worker->flags |= IO_WORKER_F_FREE;
650 if (index == IO_WQ_ACCT_BOUND)
651 worker->flags |= IO_WORKER_F_BOUND;
652 if (!acct->nr_workers && (worker->flags & IO_WORKER_F_BOUND))
653 worker->flags |= IO_WORKER_F_FIXED;
654 acct->nr_workers++;
655 raw_spin_unlock_irq(&wqe->lock);
656 wake_up_new_task(tsk);
Jens Axboe771b53d02019-10-22 10:25:58 -0600657}
658
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800659/*
660 * Iterate the passed in list and call the specific function for each
661 * worker that isn't exiting
662 */
663static bool io_wq_for_each_worker(struct io_wqe *wqe,
664 bool (*func)(struct io_worker *, void *),
665 void *data)
666{
667 struct io_worker *worker;
668 bool ret = false;
669
670 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
671 if (io_worker_get(worker)) {
672 /* no task if node is/was offline */
673 if (worker->task)
674 ret = func(worker, data);
675 io_worker_release(worker);
676 if (ret)
677 break;
678 }
679 }
680
681 return ret;
682}
683
684static bool io_wq_worker_wake(struct io_worker *worker, void *data)
685{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700686 set_notify_signal(worker->task);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800687 wake_up_process(worker->task);
688 return false;
689}
690
Jens Axboef0127252021-03-03 15:47:04 -0700691static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
692{
693 return true;
694}
695
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300696static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300697{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300698 struct io_wq *wq = wqe->wq;
699
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300700 do {
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300701 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000702 wq->do_work(work);
703 work = wq->free_work(work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300704 } while (work);
705}
706
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300707static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
708{
709 unsigned int hash;
710 struct io_wq_work *tail;
711
712 if (!io_wq_is_hashed(work)) {
713append:
714 wq_list_add_tail(&work->list, &wqe->work_list);
715 return;
716 }
717
718 hash = io_get_work_hash(work);
719 tail = wqe->hash_tail[hash];
720 wqe->hash_tail[hash] = work;
721 if (!tail)
722 goto append;
723
724 wq_list_add_after(&work->list, &tail->list, &wqe->work_list);
725}
726
Jens Axboe771b53d02019-10-22 10:25:58 -0600727static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
728{
Jens Axboec5def4a2019-11-07 11:41:16 -0700729 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe895e2ca2019-12-17 08:46:33 -0700730 int work_flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600731 unsigned long flags;
732
Jens Axboe685fe7f2021-03-08 09:37:51 -0700733 if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state)) {
yangerkun70e35122021-03-09 11:04:10 +0800734 io_run_cancel(work, wqe);
Jens Axboe4fb6ac32021-02-25 10:17:09 -0700735 return;
736 }
737
Jens Axboe895e2ca2019-12-17 08:46:33 -0700738 work_flags = work->flags;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200739 raw_spin_lock_irqsave(&wqe->lock, flags);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300740 io_wqe_insert_work(wqe, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600741 wqe->flags &= ~IO_WQE_FLAG_STALLED;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200742 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Jens Axboe771b53d02019-10-22 10:25:58 -0600743
Jens Axboe895e2ca2019-12-17 08:46:33 -0700744 if ((work_flags & IO_WQ_WORK_CONCURRENT) ||
745 !atomic_read(&acct->nr_running))
Jens Axboec5def4a2019-11-07 11:41:16 -0700746 io_wqe_wake_worker(wqe, acct);
Jens Axboe771b53d02019-10-22 10:25:58 -0600747}
748
749void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
750{
751 struct io_wqe *wqe = wq->wqes[numa_node_id()];
752
753 io_wqe_enqueue(wqe, work);
754}
755
756/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300757 * Work items that hash to the same value will not be done in parallel.
758 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600759 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300760void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600761{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300762 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600763
764 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
765 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600766}
767
Pavel Begunkov2293b412020-03-07 01:15:39 +0300768static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600769{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300770 struct io_cb_cancel_data *match = data;
Jens Axboe6f726532019-11-05 13:51:51 -0700771 unsigned long flags;
Jens Axboe62755e32019-10-28 21:49:21 -0600772
773 /*
774 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700775 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600776 */
Jens Axboe36c2f922019-11-13 09:43:34 -0700777 spin_lock_irqsave(&worker->lock, flags);
Jens Axboe62755e32019-10-28 21:49:21 -0600778 if (worker->cur_work &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300779 match->fn(worker->cur_work, match->data)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700780 set_notify_signal(worker->task);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300781 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600782 }
Jens Axboe36c2f922019-11-13 09:43:34 -0700783 spin_unlock_irqrestore(&worker->lock, flags);
Jens Axboe771b53d02019-10-22 10:25:58 -0600784
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300785 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600786}
787
Pavel Begunkov204361a2020-08-23 20:33:10 +0300788static inline void io_wqe_remove_pending(struct io_wqe *wqe,
789 struct io_wq_work *work,
790 struct io_wq_work_node *prev)
791{
792 unsigned int hash = io_get_work_hash(work);
793 struct io_wq_work *prev_work = NULL;
794
795 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
796 if (prev)
797 prev_work = container_of(prev, struct io_wq_work, list);
798 if (prev_work && io_get_work_hash(prev_work) == hash)
799 wqe->hash_tail[hash] = prev_work;
800 else
801 wqe->hash_tail[hash] = NULL;
802 }
803 wq_list_del(&wqe->work_list, &work->list, prev);
804}
805
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300806static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300807 struct io_cb_cancel_data *match)
Jens Axboe771b53d02019-10-22 10:25:58 -0600808{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700809 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -0600810 struct io_wq_work *work;
Jens Axboe6f726532019-11-05 13:51:51 -0700811 unsigned long flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600812
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300813retry:
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200814 raw_spin_lock_irqsave(&wqe->lock, flags);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700815 wq_list_for_each(node, prev, &wqe->work_list) {
816 work = container_of(node, struct io_wq_work, list);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300817 if (!match->fn(work, match->data))
818 continue;
Pavel Begunkov204361a2020-08-23 20:33:10 +0300819 io_wqe_remove_pending(wqe, work, prev);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200820 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300821 io_run_cancel(work, wqe);
822 match->nr_pending++;
823 if (!match->cancel_all)
824 return;
825
826 /* not safe to continue after unlock */
827 goto retry;
Jens Axboe771b53d02019-10-22 10:25:58 -0600828 }
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200829 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300830}
Jens Axboe771b53d02019-10-22 10:25:58 -0600831
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300832static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300833 struct io_cb_cancel_data *match)
834{
Jens Axboe771b53d02019-10-22 10:25:58 -0600835 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300836 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -0600837 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -0600838}
839
Pavel Begunkov2293b412020-03-07 01:15:39 +0300840enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300841 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +0300842{
843 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300844 .fn = cancel,
845 .data = data,
846 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +0300847 };
Pavel Begunkov2293b412020-03-07 01:15:39 +0300848 int node;
849
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300850 /*
851 * First check pending list, if we're lucky we can just remove it
852 * from there. CANCEL_OK means that the work is returned as-new,
853 * no completion will be posted for it.
854 */
Pavel Begunkov2293b412020-03-07 01:15:39 +0300855 for_each_node(node) {
856 struct io_wqe *wqe = wq->wqes[node];
857
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300858 io_wqe_cancel_pending_work(wqe, &match);
859 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300860 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +0300861 }
862
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300863 /*
864 * Now check if a free (going busy) or busy worker has the work
865 * currently running. If we find it there, we'll return CANCEL_RUNNING
866 * as an indication that we attempt to signal cancellation. The
867 * completion will run normally in this case.
868 */
869 for_each_node(node) {
870 struct io_wqe *wqe = wq->wqes[node];
871
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300872 io_wqe_cancel_running_work(wqe, &match);
873 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300874 return IO_WQ_CANCEL_RUNNING;
875 }
876
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300877 if (match.nr_running)
878 return IO_WQ_CANCEL_RUNNING;
879 if (match.nr_pending)
880 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300881 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +0300882}
883
Jens Axboee9418942021-02-19 12:33:30 -0700884static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
885 int sync, void *key)
886{
887 struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
Jens Axboee9418942021-02-19 12:33:30 -0700888
889 list_del_init(&wait->entry);
890
891 rcu_read_lock();
Jens Axboe685fe7f2021-03-08 09:37:51 -0700892 io_wqe_activate_free_worker(wqe);
Jens Axboee9418942021-02-19 12:33:30 -0700893 rcu_read_unlock();
Jens Axboee9418942021-02-19 12:33:30 -0700894 return 1;
895}
896
Jens Axboe576a3472019-11-25 08:49:20 -0700897struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -0600898{
Colin Ian Kingb1b2fc32021-06-15 15:34:24 +0100899 int ret, node;
Jens Axboe771b53d02019-10-22 10:25:58 -0600900 struct io_wq *wq;
901
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300902 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300903 return ERR_PTR(-EINVAL);
904
Pavel Begunkovc7f405d2021-06-14 02:36:12 +0100905 wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -0600906 if (!wq)
907 return ERR_PTR(-ENOMEM);
Jens Axboe43c01fb2020-10-22 09:02:50 -0600908 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
909 if (ret)
Pavel Begunkovc7f405d2021-06-14 02:36:12 +0100910 goto err_wq;
Jens Axboe771b53d02019-10-22 10:25:58 -0600911
Jens Axboee9418942021-02-19 12:33:30 -0700912 refcount_inc(&data->hash->refs);
913 wq->hash = data->hash;
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300914 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300915 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -0700916
Jens Axboe43c01fb2020-10-22 09:02:50 -0600917 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +0100918 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600919 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -0700920 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -0600921
Jens Axboe75634392020-02-11 06:30:06 -0700922 if (!node_online(alloc_node))
923 alloc_node = NUMA_NO_NODE;
924 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600925 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +0100926 goto err;
Jens Axboe0e034962021-06-17 10:08:11 -0600927 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
928 goto err;
929 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
Jann Horn3fc50ab2019-11-26 19:10:20 +0100930 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -0700931 wqe->node = alloc_node;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700932 wqe->acct[IO_WQ_ACCT_BOUND].index = IO_WQ_ACCT_BOUND;
933 wqe->acct[IO_WQ_ACCT_UNBOUND].index = IO_WQ_ACCT_UNBOUND;
Jens Axboec5def4a2019-11-07 11:41:16 -0700934 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
935 atomic_set(&wqe->acct[IO_WQ_ACCT_BOUND].nr_running, 0);
Jens Axboe728f13e2021-02-21 16:02:53 -0700936 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
Jens Axboec5def4a2019-11-07 11:41:16 -0700937 task_rlimit(current, RLIMIT_NPROC);
Jens Axboec5def4a2019-11-07 11:41:16 -0700938 atomic_set(&wqe->acct[IO_WQ_ACCT_UNBOUND].nr_running, 0);
Jens Axboee9418942021-02-19 12:33:30 -0700939 wqe->wait.func = io_wqe_hash_wake;
940 INIT_LIST_HEAD(&wqe->wait.entry);
Jens Axboe771b53d02019-10-22 10:25:58 -0600941 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200942 raw_spin_lock_init(&wqe->lock);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700943 INIT_WQ_LIST(&wqe->work_list);
Jens Axboe021d1cd2019-11-14 08:00:41 -0700944 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -0700945 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600946 }
947
Jens Axboe685fe7f2021-03-08 09:37:51 -0700948 wq->task = get_task_struct(data->task);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700949 atomic_set(&wq->worker_refs, 1);
950 init_completion(&wq->worker_done);
951 return wq;
Jens Axboeb60fda62019-11-19 08:37:07 -0700952err:
Jens Axboedc7bbc92021-03-01 09:09:56 -0700953 io_wq_put_hash(data->hash);
Jens Axboe43c01fb2020-10-22 09:02:50 -0600954 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jens Axboe0e034962021-06-17 10:08:11 -0600955 for_each_node(node) {
956 if (!wq->wqes[node])
957 continue;
958 free_cpumask_var(wq->wqes[node]->cpu_mask);
Jann Horn3fc50ab2019-11-26 19:10:20 +0100959 kfree(wq->wqes[node]);
Jens Axboe0e034962021-06-17 10:08:11 -0600960 }
Jens Axboe43c01fb2020-10-22 09:02:50 -0600961err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -0700962 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -0600963 return ERR_PTR(ret);
964}
965
Jens Axboec80ca472021-04-01 19:57:07 -0600966static bool io_task_work_match(struct callback_head *cb, void *data)
967{
968 struct create_worker_data *cwd;
969
970 if (cb->func != create_worker_cb)
971 return false;
972 cwd = container_of(cb, struct create_worker_data, work);
973 return cwd->wqe->wq == data;
974}
975
Pavel Begunkov17a91052021-05-23 15:48:39 +0100976void io_wq_exit_start(struct io_wq *wq)
977{
978 set_bit(IO_WQ_BIT_EXIT, &wq->state);
979}
980
Jens Axboe685fe7f2021-03-08 09:37:51 -0700981static void io_wq_exit_workers(struct io_wq *wq)
Jens Axboeafcc4012021-02-26 13:48:19 -0700982{
Jens Axboe685fe7f2021-03-08 09:37:51 -0700983 struct callback_head *cb;
984 int node;
985
Jens Axboe685fe7f2021-03-08 09:37:51 -0700986 if (!wq->task)
987 return;
988
Jens Axboec80ca472021-04-01 19:57:07 -0600989 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
Jens Axboe685fe7f2021-03-08 09:37:51 -0700990 struct create_worker_data *cwd;
991
992 cwd = container_of(cb, struct create_worker_data, work);
993 atomic_dec(&cwd->wqe->acct[cwd->index].nr_running);
994 io_worker_ref_put(wq);
995 kfree(cwd);
Jens Axboeafcc4012021-02-26 13:48:19 -0700996 }
Jens Axboe685fe7f2021-03-08 09:37:51 -0700997
998 rcu_read_lock();
999 for_each_node(node) {
1000 struct io_wqe *wqe = wq->wqes[node];
1001
1002 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001003 }
1004 rcu_read_unlock();
1005 io_worker_ref_put(wq);
1006 wait_for_completion(&wq->worker_done);
Zqiang3743c172021-05-26 13:08:26 +08001007
1008 for_each_node(node) {
1009 spin_lock_irq(&wq->hash->wait.lock);
1010 list_del_init(&wq->wqes[node]->wait.entry);
1011 spin_unlock_irq(&wq->hash->wait.lock);
1012 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001013 put_task_struct(wq->task);
1014 wq->task = NULL;
Jens Axboeafcc4012021-02-26 13:48:19 -07001015}
1016
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001017static void io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001018{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001019 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001020
Jens Axboe43c01fb2020-10-22 09:02:50 -06001021 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1022
Jens Axboee9418942021-02-19 12:33:30 -07001023 for_each_node(node) {
1024 struct io_wqe *wqe = wq->wqes[node];
Jens Axboef5d2d232021-03-25 10:16:12 -06001025 struct io_cb_cancel_data match = {
1026 .fn = io_wq_work_match_all,
1027 .cancel_all = true,
1028 };
1029 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboe0e034962021-06-17 10:08:11 -06001030 free_cpumask_var(wqe->cpu_mask);
Jens Axboee9418942021-02-19 12:33:30 -07001031 kfree(wqe);
1032 }
Jens Axboee9418942021-02-19 12:33:30 -07001033 io_wq_put_hash(wq->hash);
Jens Axboe771b53d02019-10-22 10:25:58 -06001034 kfree(wq);
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001035}
1036
Jens Axboeafcc4012021-02-26 13:48:19 -07001037void io_wq_put_and_exit(struct io_wq *wq)
1038{
Pavel Begunkov17a91052021-05-23 15:48:39 +01001039 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1040
Jens Axboe685fe7f2021-03-08 09:37:51 -07001041 io_wq_exit_workers(wq);
Pavel Begunkov382cb032021-06-14 02:36:13 +01001042 io_wq_destroy(wq);
Jens Axboeafcc4012021-02-26 13:48:19 -07001043}
1044
Jens Axboe0e034962021-06-17 10:08:11 -06001045struct online_data {
1046 unsigned int cpu;
1047 bool online;
1048};
1049
Jens Axboe43c01fb2020-10-22 09:02:50 -06001050static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1051{
Jens Axboe0e034962021-06-17 10:08:11 -06001052 struct online_data *od = data;
Jens Axboe43c01fb2020-10-22 09:02:50 -06001053
Jens Axboe0e034962021-06-17 10:08:11 -06001054 if (od->online)
1055 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1056 else
1057 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001058 return false;
1059}
1060
Jens Axboe0e034962021-06-17 10:08:11 -06001061static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1062{
1063 struct online_data od = {
1064 .cpu = cpu,
1065 .online = online
1066 };
1067 int i;
1068
1069 rcu_read_lock();
1070 for_each_node(i)
1071 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1072 rcu_read_unlock();
1073 return 0;
1074}
1075
Jens Axboe43c01fb2020-10-22 09:02:50 -06001076static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1077{
1078 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001079
Jens Axboe0e034962021-06-17 10:08:11 -06001080 return __io_wq_cpu_online(wq, cpu, true);
1081}
1082
1083static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1084{
1085 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1086
1087 return __io_wq_cpu_online(wq, cpu, false);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001088}
1089
Jens Axboefe764212021-06-17 10:19:54 -06001090int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1091{
1092 int i;
1093
1094 rcu_read_lock();
1095 for_each_node(i) {
1096 struct io_wqe *wqe = wq->wqes[i];
1097
1098 if (mask)
1099 cpumask_copy(wqe->cpu_mask, mask);
1100 else
1101 cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1102 }
1103 rcu_read_unlock();
1104 return 0;
1105}
1106
Jens Axboe43c01fb2020-10-22 09:02:50 -06001107static __init int io_wq_init(void)
1108{
1109 int ret;
1110
1111 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
Jens Axboe0e034962021-06-17 10:08:11 -06001112 io_wq_cpu_online, io_wq_cpu_offline);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001113 if (ret < 0)
1114 return ret;
1115 io_wq_online = ret;
1116 return 0;
1117}
1118subsys_initcall(io_wq_init);