blob: 50dc93ffc153174b878b86c53608239c180caedf [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 Axboe83d6c392021-08-03 09:14:35 -0600133static void io_wqe_dec_running(struct io_worker *worker);
Jens Axboef0127252021-03-03 15:47:04 -0700134
Jens Axboe771b53d02019-10-22 10:25:58 -0600135static bool io_worker_get(struct io_worker *worker)
136{
137 return refcount_inc_not_zero(&worker->ref);
138}
139
140static void io_worker_release(struct io_worker *worker)
141{
142 if (refcount_dec_and_test(&worker->ref))
Jens Axboeeb2de942021-02-23 19:59:06 -0700143 complete(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600144}
145
Pavel Begunkov8418f222021-03-22 01:58:28 +0000146static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
147{
148 return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
149}
150
Jens Axboec5def4a2019-11-07 11:41:16 -0700151static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
152 struct io_wq_work *work)
153{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000154 return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
Jens Axboec5def4a2019-11-07 11:41:16 -0700155}
156
Jens Axboe958234d2021-02-17 09:00:57 -0700157static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700158{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000159 return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
Jens Axboec5def4a2019-11-07 11:41:16 -0700160}
161
Jens Axboe685fe7f2021-03-08 09:37:51 -0700162static void io_worker_ref_put(struct io_wq *wq)
163{
164 if (atomic_dec_and_test(&wq->worker_refs))
165 complete(&wq->worker_done);
166}
167
Jens Axboe771b53d02019-10-22 10:25:58 -0600168static void io_worker_exit(struct io_worker *worker)
169{
170 struct io_wqe *wqe = worker->wqe;
Jens Axboe958234d2021-02-17 09:00:57 -0700171 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
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
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200177 raw_spin_lock_irq(&wqe->lock);
Jens Axboe83d6c392021-08-03 09:14:35 -0600178 if (worker->flags & IO_WORKER_F_FREE)
Jens Axboebf1daa42021-02-16 18:00:55 -0700179 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700180 list_del_rcu(&worker->all_list);
Jens Axboec5def4a2019-11-07 11:41:16 -0700181 acct->nr_workers--;
Jens Axboe83d6c392021-08-03 09:14:35 -0600182 preempt_disable();
183 io_wqe_dec_running(worker);
184 worker->flags = 0;
185 current->flags &= ~PF_IO_WORKER;
186 preempt_enable();
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200187 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600188
YueHaibing364b05f2019-11-02 15:55:01 +0800189 kfree_rcu(worker, rcu);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700190 io_worker_ref_put(wqe->wq);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700191 do_exit(0);
Jens Axboe771b53d02019-10-22 10:25:58 -0600192}
193
Jens Axboec5def4a2019-11-07 11:41:16 -0700194static inline bool io_wqe_run_queue(struct io_wqe *wqe)
195 __must_hold(wqe->lock)
196{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700197 if (!wq_list_empty(&wqe->work_list) &&
198 !(wqe->flags & IO_WQE_FLAG_STALLED))
Jens Axboec5def4a2019-11-07 11:41:16 -0700199 return true;
200 return false;
201}
202
203/*
204 * Check head of free list for an available worker. If one isn't available,
Jens Axboe685fe7f2021-03-08 09:37:51 -0700205 * caller must create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700206 */
207static bool io_wqe_activate_free_worker(struct io_wqe *wqe)
208 __must_hold(RCU)
209{
210 struct hlist_nulls_node *n;
211 struct io_worker *worker;
212
Jens Axboe83d6c392021-08-03 09:14:35 -0600213 /*
214 * Iterate free_list and see if we can find an idle worker to
215 * activate. If a given worker is on the free_list but in the process
216 * of exiting, keep trying.
217 */
218 hlist_nulls_for_each_entry_rcu(worker, n, &wqe->free_list, nulls_node) {
219 if (!io_worker_get(worker))
220 continue;
221 if (wake_up_process(worker->task)) {
222 io_worker_release(worker);
223 return true;
224 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700225 io_worker_release(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700226 }
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 */
Pavel Begunkove6ab8992021-06-17 18:13:59 +0100243 if (unlikely(!acct->max_workers))
244 pr_warn_once("io-wq is not configured for unbound workers");
Jens Axboec5def4a2019-11-07 11:41:16 -0700245
246 rcu_read_lock();
247 ret = io_wqe_activate_free_worker(wqe);
248 rcu_read_unlock();
249
Jens Axboe685fe7f2021-03-08 09:37:51 -0700250 if (!ret && acct->nr_workers < acct->max_workers) {
251 atomic_inc(&acct->nr_running);
252 atomic_inc(&wqe->wq->worker_refs);
253 create_io_worker(wqe->wq, wqe, acct->index);
254 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700255}
256
Jens Axboe958234d2021-02-17 09:00:57 -0700257static void io_wqe_inc_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700258{
Jens Axboe958234d2021-02-17 09:00:57 -0700259 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700260
261 atomic_inc(&acct->nr_running);
262}
263
Jens Axboe685fe7f2021-03-08 09:37:51 -0700264struct create_worker_data {
265 struct callback_head work;
266 struct io_wqe *wqe;
267 int index;
268};
269
270static void create_worker_cb(struct callback_head *cb)
271{
272 struct create_worker_data *cwd;
273 struct io_wq *wq;
274
275 cwd = container_of(cb, struct create_worker_data, work);
276 wq = cwd->wqe->wq;
277 create_io_worker(wq, cwd->wqe, cwd->index);
278 kfree(cwd);
279}
280
281static void io_queue_worker_create(struct io_wqe *wqe, struct io_wqe_acct *acct)
282{
283 struct create_worker_data *cwd;
284 struct io_wq *wq = wqe->wq;
285
286 /* raced with exit, just ignore create call */
287 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
288 goto fail;
289
290 cwd = kmalloc(sizeof(*cwd), GFP_ATOMIC);
291 if (cwd) {
292 init_task_work(&cwd->work, create_worker_cb);
293 cwd->wqe = wqe;
294 cwd->index = acct->index;
295 if (!task_work_add(wq->task, &cwd->work, TWA_SIGNAL))
296 return;
297
298 kfree(cwd);
299 }
300fail:
301 atomic_dec(&acct->nr_running);
302 io_worker_ref_put(wq);
303}
304
Jens Axboe958234d2021-02-17 09:00:57 -0700305static void io_wqe_dec_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700306 __must_hold(wqe->lock)
307{
Jens Axboe958234d2021-02-17 09:00:57 -0700308 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
309 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700310
Jens Axboe685fe7f2021-03-08 09:37:51 -0700311 if (!(worker->flags & IO_WORKER_F_UP))
312 return;
313
314 if (atomic_dec_and_test(&acct->nr_running) && io_wqe_run_queue(wqe)) {
315 atomic_inc(&acct->nr_running);
316 atomic_inc(&wqe->wq->worker_refs);
317 io_queue_worker_create(wqe, acct);
318 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700319}
320
Jens Axboe771b53d02019-10-22 10:25:58 -0600321/*
322 * Worker will start processing some work. Move it to the busy list, if
323 * it's currently on the freelist
324 */
325static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
326 struct io_wq_work *work)
327 __must_hold(wqe->lock)
328{
Jens Axboec5def4a2019-11-07 11:41:16 -0700329 bool worker_bound, work_bound;
330
Hao Xu417b5052021-04-06 11:08:45 +0800331 BUILD_BUG_ON((IO_WQ_ACCT_UNBOUND ^ IO_WQ_ACCT_BOUND) != 1);
332
Jens Axboe771b53d02019-10-22 10:25:58 -0600333 if (worker->flags & IO_WORKER_F_FREE) {
334 worker->flags &= ~IO_WORKER_F_FREE;
335 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600336 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700337
338 /*
339 * If worker is moving from bound to unbound (or vice versa), then
340 * ensure we update the running accounting.
341 */
Dan Carpenterb2e9c7d62019-11-19 09:22:16 +0300342 worker_bound = (worker->flags & IO_WORKER_F_BOUND) != 0;
343 work_bound = (work->flags & IO_WQ_WORK_UNBOUND) == 0;
344 if (worker_bound != work_bound) {
Hao Xu417b5052021-04-06 11:08:45 +0800345 int index = work_bound ? IO_WQ_ACCT_UNBOUND : IO_WQ_ACCT_BOUND;
Jens Axboe958234d2021-02-17 09:00:57 -0700346 io_wqe_dec_running(worker);
Hao Xu417b5052021-04-06 11:08:45 +0800347 worker->flags ^= IO_WORKER_F_BOUND;
348 wqe->acct[index].nr_workers--;
349 wqe->acct[index ^ 1].nr_workers++;
Jens Axboe958234d2021-02-17 09:00:57 -0700350 io_wqe_inc_running(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700351 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600352}
353
354/*
355 * No work, worker going to sleep. Move to freelist, and unuse mm if we
356 * have one attached. Dropping the mm may potentially sleep, so we drop
357 * the lock in that case and return success. Since the caller has to
358 * retry the loop in that case (we changed task state), we don't regrab
359 * the lock if we return success.
360 */
Jens Axboec6d77d92021-02-15 13:26:34 -0700361static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600362 __must_hold(wqe->lock)
363{
364 if (!(worker->flags & IO_WORKER_F_FREE)) {
365 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700366 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600367 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600368}
369
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300370static inline unsigned int io_get_work_hash(struct io_wq_work *work)
371{
372 return work->flags >> IO_WQ_HASH_SHIFT;
373}
374
Jens Axboee9418942021-02-19 12:33:30 -0700375static void io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
376{
377 struct io_wq *wq = wqe->wq;
378
379 spin_lock(&wq->hash->wait.lock);
380 if (list_empty(&wqe->wait.entry)) {
381 __add_wait_queue(&wq->hash->wait, &wqe->wait);
382 if (!test_bit(hash, &wq->hash->map)) {
383 __set_current_state(TASK_RUNNING);
384 list_del_init(&wqe->wait.entry);
385 }
386 }
387 spin_unlock(&wq->hash->wait.lock);
388}
389
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300390static struct io_wq_work *io_get_next_work(struct io_wqe *wqe)
Jens Axboe771b53d02019-10-22 10:25:58 -0600391 __must_hold(wqe->lock)
392{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700393 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300394 struct io_wq_work *work, *tail;
Jens Axboee9418942021-02-19 12:33:30 -0700395 unsigned int stall_hash = -1U;
Jens Axboe771b53d02019-10-22 10:25:58 -0600396
Jens Axboe6206f0e2019-11-26 11:59:32 -0700397 wq_list_for_each(node, prev, &wqe->work_list) {
Jens Axboee9418942021-02-19 12:33:30 -0700398 unsigned int hash;
399
Jens Axboe6206f0e2019-11-26 11:59:32 -0700400 work = container_of(node, struct io_wq_work, list);
401
Jens Axboe771b53d02019-10-22 10:25:58 -0600402 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300403 if (!io_wq_is_hashed(work)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300404 wq_list_del(&wqe->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600405 return work;
406 }
407
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300408 hash = io_get_work_hash(work);
Jens Axboee9418942021-02-19 12:33:30 -0700409 /* all items with this hash lie in [work, tail] */
410 tail = wqe->hash_tail[hash];
411
412 /* hashed, can run if not already running */
413 if (!test_and_set_bit(hash, &wqe->wq->hash->map)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300414 wqe->hash_tail[hash] = NULL;
415 wq_list_cut(&wqe->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600416 return work;
417 }
Jens Axboee9418942021-02-19 12:33:30 -0700418 if (stall_hash == -1U)
419 stall_hash = hash;
420 /* fast forward to a next hash, for-each will fix up @prev */
421 node = &tail->list;
422 }
423
424 if (stall_hash != -1U) {
425 raw_spin_unlock(&wqe->lock);
426 io_wait_on_hash(wqe, stall_hash);
427 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600428 }
429
430 return NULL;
431}
432
Jens Axboe00ddff42021-03-21 07:06:56 -0600433static bool io_flush_signals(void)
Jens Axboecccf0ee2020-01-27 16:34:48 -0700434{
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600435 if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL))) {
Jens Axboe00ddff42021-03-21 07:06:56 -0600436 __set_current_state(TASK_RUNNING);
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600437 tracehook_notify_signal();
Jens Axboe00ddff42021-03-21 07:06:56 -0600438 return true;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700439 }
Jens Axboe00ddff42021-03-21 07:06:56 -0600440 return false;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300441}
442
443static void io_assign_current_work(struct io_worker *worker,
444 struct io_wq_work *work)
445{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300446 if (work) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700447 io_flush_signals();
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300448 cond_resched();
449 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300450
451 spin_lock_irq(&worker->lock);
452 worker->cur_work = work;
453 spin_unlock_irq(&worker->lock);
454}
455
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300456static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
457
Jens Axboe771b53d02019-10-22 10:25:58 -0600458static void io_worker_handle_work(struct io_worker *worker)
459 __releases(wqe->lock)
460{
Jens Axboe771b53d02019-10-22 10:25:58 -0600461 struct io_wqe *wqe = worker->wqe;
462 struct io_wq *wq = wqe->wq;
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100463 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
Jens Axboe771b53d02019-10-22 10:25:58 -0600464
465 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300466 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300467get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600468 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600469 * If we got some work, mark us as busy. If we didn't, but
470 * the list isn't empty, it means we stalled on hashed work.
471 * Mark us stalled so we don't keep looking for work when we
472 * can't make progress, any work completion or insertion will
473 * clear the stalled flag.
474 */
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300475 work = io_get_next_work(wqe);
Jens Axboe771b53d02019-10-22 10:25:58 -0600476 if (work)
477 __io_worker_busy(wqe, worker, work);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700478 else if (!wq_list_empty(&wqe->work_list))
Jens Axboe771b53d02019-10-22 10:25:58 -0600479 wqe->flags |= IO_WQE_FLAG_STALLED;
480
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200481 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600482 if (!work)
483 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300484 io_assign_current_work(worker, work);
Jens Axboee9418942021-02-19 12:33:30 -0700485 __set_current_state(TASK_RUNNING);
Jens Axboe36c2f922019-11-13 09:43:34 -0700486
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300487 /* handle a whole dependent link */
488 do {
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000489 struct io_wq_work *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300490 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700491
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300492 next_hashed = wq_next_work(work);
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100493
494 if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
495 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000496 wq->do_work(work);
497 io_assign_current_work(worker, NULL);
Jens Axboe36c2f922019-11-13 09:43:34 -0700498
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000499 linked = wq->free_work(work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300500 work = next_hashed;
501 if (!work && linked && !io_wq_is_hashed(linked)) {
502 work = linked;
503 linked = NULL;
504 }
505 io_assign_current_work(worker, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300506 if (linked)
507 io_wqe_enqueue(wqe, linked);
508
509 if (hash != -1U && !next_hashed) {
Jens Axboee9418942021-02-19 12:33:30 -0700510 clear_bit(hash, &wq->hash->map);
511 if (wq_has_sleeper(&wq->hash->wait))
512 wake_up(&wq->hash->wait);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200513 raw_spin_lock_irq(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300514 wqe->flags &= ~IO_WQE_FLAG_STALLED;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300515 /* skip unnecessary unlock-lock wqe->lock */
516 if (!work)
517 goto get_next;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200518 raw_spin_unlock_irq(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300519 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300520 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700521
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200522 raw_spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600523 } while (1);
524}
525
Jens Axboe771b53d02019-10-22 10:25:58 -0600526static int io_wqe_worker(void *data)
527{
528 struct io_worker *worker = data;
529 struct io_wqe *wqe = worker->wqe;
530 struct io_wq *wq = wqe->wq;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700531 char buf[TASK_COMM_LEN];
Jens Axboe771b53d02019-10-22 10:25:58 -0600532
Jens Axboe46fe18b2021-03-04 12:39:36 -0700533 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700534
Jens Axboe685fe7f2021-03-08 09:37:51 -0700535 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700536 set_task_comm(current, buf);
Jens Axboe771b53d02019-10-22 10:25:58 -0600537
538 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe16efa4f2021-03-12 20:26:13 -0700539 long ret;
540
Jens Axboe506d95f2019-12-07 21:03:59 -0700541 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700542loop:
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200543 raw_spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600544 if (io_wqe_run_queue(wqe)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600545 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700546 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600547 }
Jens Axboec6d77d92021-02-15 13:26:34 -0700548 __io_worker_idle(wqe, worker);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200549 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe00ddff42021-03-21 07:06:56 -0600550 if (io_flush_signals())
551 continue;
Jens Axboe16efa4f2021-03-12 20:26:13 -0700552 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600553 if (signal_pending(current)) {
554 struct ksignal ksig;
555
556 if (!get_signal(&ksig))
557 continue;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700558 break;
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600559 }
560 if (ret)
561 continue;
Jens Axboe771b53d02019-10-22 10:25:58 -0600562 /* timed out, exit unless we're the fixed worker */
Pavel Begunkov769e6832021-06-14 02:36:16 +0100563 if (!(worker->flags & IO_WORKER_F_FIXED))
Jens Axboe771b53d02019-10-22 10:25:58 -0600564 break;
565 }
566
Jens Axboe771b53d02019-10-22 10:25:58 -0600567 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200568 raw_spin_lock_irq(&wqe->lock);
Pavel Begunkove5872272021-06-14 02:36:17 +0100569 io_worker_handle_work(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600570 }
571
572 io_worker_exit(worker);
573 return 0;
574}
575
576/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600577 * Called when a worker is scheduled in. Mark us as currently running.
578 */
579void io_wq_worker_running(struct task_struct *tsk)
580{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700581 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600582
Jens Axboe3bfe6102021-02-16 14:15:30 -0700583 if (!worker)
584 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600585 if (!(worker->flags & IO_WORKER_F_UP))
586 return;
587 if (worker->flags & IO_WORKER_F_RUNNING)
588 return;
589 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboe958234d2021-02-17 09:00:57 -0700590 io_wqe_inc_running(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600591}
592
593/*
594 * Called when worker is going to sleep. If there are no workers currently
Jens Axboe685fe7f2021-03-08 09:37:51 -0700595 * running and we have work pending, wake up a free one or create a new one.
Jens Axboe771b53d02019-10-22 10:25:58 -0600596 */
597void io_wq_worker_sleeping(struct task_struct *tsk)
598{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700599 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600600
Jens Axboe3bfe6102021-02-16 14:15:30 -0700601 if (!worker)
602 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600603 if (!(worker->flags & IO_WORKER_F_UP))
604 return;
605 if (!(worker->flags & IO_WORKER_F_RUNNING))
606 return;
607
608 worker->flags &= ~IO_WORKER_F_RUNNING;
609
Jens Axboe3bfe6102021-02-16 14:15:30 -0700610 raw_spin_lock_irq(&worker->wqe->lock);
Jens Axboe958234d2021-02-17 09:00:57 -0700611 io_wqe_dec_running(worker);
Jens Axboe3bfe6102021-02-16 14:15:30 -0700612 raw_spin_unlock_irq(&worker->wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600613}
614
Jens Axboe685fe7f2021-03-08 09:37:51 -0700615static void create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
Jens Axboe3bfe6102021-02-16 14:15:30 -0700616{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700617 struct io_wqe_acct *acct = &wqe->acct[index];
Jens Axboe3bfe6102021-02-16 14:15:30 -0700618 struct io_worker *worker;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700619 struct task_struct *tsk;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700620
Jens Axboe8b3e78b2021-02-23 15:34:06 -0700621 __set_current_state(TASK_RUNNING);
622
Jens Axboe3bfe6102021-02-16 14:15:30 -0700623 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
624 if (!worker)
Jens Axboe685fe7f2021-03-08 09:37:51 -0700625 goto fail;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700626
627 refcount_set(&worker->ref, 1);
628 worker->nulls_node.pprev = NULL;
629 worker->wqe = wqe;
630 spin_lock_init(&worker->lock);
Jens Axboeeb2de942021-02-23 19:59:06 -0700631 init_completion(&worker->ref_done);
Jens Axboe3bfe6102021-02-16 14:15:30 -0700632
Jens Axboe46fe18b2021-03-04 12:39:36 -0700633 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
634 if (IS_ERR(tsk)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700635 kfree(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700636fail:
637 atomic_dec(&acct->nr_running);
638 io_worker_ref_put(wq);
639 return;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700640 }
Jens Axboe46fe18b2021-03-04 12:39:36 -0700641
642 tsk->pf_io_worker = worker;
643 worker->task = tsk;
Jens Axboe0e034962021-06-17 10:08:11 -0600644 set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
Jens Axboee22bc9b2021-03-09 19:49:02 -0700645 tsk->flags |= PF_NO_SETAFFINITY;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700646
647 raw_spin_lock_irq(&wqe->lock);
648 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
649 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
650 worker->flags |= IO_WORKER_F_FREE;
651 if (index == IO_WQ_ACCT_BOUND)
652 worker->flags |= IO_WORKER_F_BOUND;
653 if (!acct->nr_workers && (worker->flags & IO_WORKER_F_BOUND))
654 worker->flags |= IO_WORKER_F_FIXED;
655 acct->nr_workers++;
656 raw_spin_unlock_irq(&wqe->lock);
657 wake_up_new_task(tsk);
Jens Axboe771b53d02019-10-22 10:25:58 -0600658}
659
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800660/*
661 * Iterate the passed in list and call the specific function for each
662 * worker that isn't exiting
663 */
664static bool io_wq_for_each_worker(struct io_wqe *wqe,
665 bool (*func)(struct io_worker *, void *),
666 void *data)
667{
668 struct io_worker *worker;
669 bool ret = false;
670
671 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
672 if (io_worker_get(worker)) {
673 /* no task if node is/was offline */
674 if (worker->task)
675 ret = func(worker, data);
676 io_worker_release(worker);
677 if (ret)
678 break;
679 }
680 }
681
682 return ret;
683}
684
685static bool io_wq_worker_wake(struct io_worker *worker, void *data)
686{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700687 set_notify_signal(worker->task);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800688 wake_up_process(worker->task);
689 return false;
690}
691
Jens Axboef0127252021-03-03 15:47:04 -0700692static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
693{
694 return true;
695}
696
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300697static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300698{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300699 struct io_wq *wq = wqe->wq;
700
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300701 do {
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300702 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000703 wq->do_work(work);
704 work = wq->free_work(work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300705 } while (work);
706}
707
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300708static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
709{
710 unsigned int hash;
711 struct io_wq_work *tail;
712
713 if (!io_wq_is_hashed(work)) {
714append:
715 wq_list_add_tail(&work->list, &wqe->work_list);
716 return;
717 }
718
719 hash = io_get_work_hash(work);
720 tail = wqe->hash_tail[hash];
721 wqe->hash_tail[hash] = work;
722 if (!tail)
723 goto append;
724
725 wq_list_add_after(&work->list, &tail->list, &wqe->work_list);
726}
727
Jens Axboe771b53d02019-10-22 10:25:58 -0600728static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
729{
Jens Axboec5def4a2019-11-07 11:41:16 -0700730 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe895e2ca2019-12-17 08:46:33 -0700731 int work_flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600732 unsigned long flags;
733
Jens Axboe991468d2021-07-23 11:53:54 -0600734 /*
735 * If io-wq is exiting for this task, or if the request has explicitly
736 * been marked as one that should not get executed, cancel it here.
737 */
738 if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
739 (work->flags & IO_WQ_WORK_CANCEL)) {
yangerkun70e35122021-03-09 11:04:10 +0800740 io_run_cancel(work, wqe);
Jens Axboe4fb6ac32021-02-25 10:17:09 -0700741 return;
742 }
743
Jens Axboe895e2ca2019-12-17 08:46:33 -0700744 work_flags = work->flags;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200745 raw_spin_lock_irqsave(&wqe->lock, flags);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300746 io_wqe_insert_work(wqe, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600747 wqe->flags &= ~IO_WQE_FLAG_STALLED;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200748 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Jens Axboe771b53d02019-10-22 10:25:58 -0600749
Jens Axboe895e2ca2019-12-17 08:46:33 -0700750 if ((work_flags & IO_WQ_WORK_CONCURRENT) ||
751 !atomic_read(&acct->nr_running))
Jens Axboec5def4a2019-11-07 11:41:16 -0700752 io_wqe_wake_worker(wqe, acct);
Jens Axboe771b53d02019-10-22 10:25:58 -0600753}
754
755void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
756{
757 struct io_wqe *wqe = wq->wqes[numa_node_id()];
758
759 io_wqe_enqueue(wqe, work);
760}
761
762/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300763 * Work items that hash to the same value will not be done in parallel.
764 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600765 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300766void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600767{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300768 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600769
770 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
771 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600772}
773
Pavel Begunkov2293b412020-03-07 01:15:39 +0300774static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600775{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300776 struct io_cb_cancel_data *match = data;
Jens Axboe6f726532019-11-05 13:51:51 -0700777 unsigned long flags;
Jens Axboe62755e32019-10-28 21:49:21 -0600778
779 /*
780 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700781 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600782 */
Jens Axboe36c2f922019-11-13 09:43:34 -0700783 spin_lock_irqsave(&worker->lock, flags);
Jens Axboe62755e32019-10-28 21:49:21 -0600784 if (worker->cur_work &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300785 match->fn(worker->cur_work, match->data)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700786 set_notify_signal(worker->task);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300787 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600788 }
Jens Axboe36c2f922019-11-13 09:43:34 -0700789 spin_unlock_irqrestore(&worker->lock, flags);
Jens Axboe771b53d02019-10-22 10:25:58 -0600790
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300791 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600792}
793
Pavel Begunkov204361a2020-08-23 20:33:10 +0300794static inline void io_wqe_remove_pending(struct io_wqe *wqe,
795 struct io_wq_work *work,
796 struct io_wq_work_node *prev)
797{
798 unsigned int hash = io_get_work_hash(work);
799 struct io_wq_work *prev_work = NULL;
800
801 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
802 if (prev)
803 prev_work = container_of(prev, struct io_wq_work, list);
804 if (prev_work && io_get_work_hash(prev_work) == hash)
805 wqe->hash_tail[hash] = prev_work;
806 else
807 wqe->hash_tail[hash] = NULL;
808 }
809 wq_list_del(&wqe->work_list, &work->list, prev);
810}
811
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300812static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300813 struct io_cb_cancel_data *match)
Jens Axboe771b53d02019-10-22 10:25:58 -0600814{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700815 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -0600816 struct io_wq_work *work;
Jens Axboe6f726532019-11-05 13:51:51 -0700817 unsigned long flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600818
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300819retry:
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200820 raw_spin_lock_irqsave(&wqe->lock, flags);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700821 wq_list_for_each(node, prev, &wqe->work_list) {
822 work = container_of(node, struct io_wq_work, list);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300823 if (!match->fn(work, match->data))
824 continue;
Pavel Begunkov204361a2020-08-23 20:33:10 +0300825 io_wqe_remove_pending(wqe, work, prev);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200826 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300827 io_run_cancel(work, wqe);
828 match->nr_pending++;
829 if (!match->cancel_all)
830 return;
831
832 /* not safe to continue after unlock */
833 goto retry;
Jens Axboe771b53d02019-10-22 10:25:58 -0600834 }
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200835 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300836}
Jens Axboe771b53d02019-10-22 10:25:58 -0600837
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300838static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300839 struct io_cb_cancel_data *match)
840{
Jens Axboe771b53d02019-10-22 10:25:58 -0600841 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300842 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -0600843 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -0600844}
845
Pavel Begunkov2293b412020-03-07 01:15:39 +0300846enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300847 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +0300848{
849 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300850 .fn = cancel,
851 .data = data,
852 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +0300853 };
Pavel Begunkov2293b412020-03-07 01:15:39 +0300854 int node;
855
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300856 /*
857 * First check pending list, if we're lucky we can just remove it
858 * from there. CANCEL_OK means that the work is returned as-new,
859 * no completion will be posted for it.
860 */
Pavel Begunkov2293b412020-03-07 01:15:39 +0300861 for_each_node(node) {
862 struct io_wqe *wqe = wq->wqes[node];
863
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300864 io_wqe_cancel_pending_work(wqe, &match);
865 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300866 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +0300867 }
868
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300869 /*
870 * Now check if a free (going busy) or busy worker has the work
871 * currently running. If we find it there, we'll return CANCEL_RUNNING
872 * as an indication that we attempt to signal cancellation. The
873 * completion will run normally in this case.
874 */
875 for_each_node(node) {
876 struct io_wqe *wqe = wq->wqes[node];
877
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300878 io_wqe_cancel_running_work(wqe, &match);
879 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300880 return IO_WQ_CANCEL_RUNNING;
881 }
882
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300883 if (match.nr_running)
884 return IO_WQ_CANCEL_RUNNING;
885 if (match.nr_pending)
886 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300887 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +0300888}
889
Jens Axboee9418942021-02-19 12:33:30 -0700890static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
891 int sync, void *key)
892{
893 struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
Jens Axboee9418942021-02-19 12:33:30 -0700894
895 list_del_init(&wait->entry);
896
897 rcu_read_lock();
Jens Axboe685fe7f2021-03-08 09:37:51 -0700898 io_wqe_activate_free_worker(wqe);
Jens Axboee9418942021-02-19 12:33:30 -0700899 rcu_read_unlock();
Jens Axboee9418942021-02-19 12:33:30 -0700900 return 1;
901}
902
Jens Axboe576a3472019-11-25 08:49:20 -0700903struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -0600904{
Colin Ian Kingb1b2fc32021-06-15 15:34:24 +0100905 int ret, node;
Jens Axboe771b53d02019-10-22 10:25:58 -0600906 struct io_wq *wq;
907
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300908 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300909 return ERR_PTR(-EINVAL);
Pavel Begunkove6ab8992021-06-17 18:13:59 +0100910 if (WARN_ON_ONCE(!bounded))
911 return ERR_PTR(-EINVAL);
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300912
Pavel Begunkovc7f405d2021-06-14 02:36:12 +0100913 wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -0600914 if (!wq)
915 return ERR_PTR(-ENOMEM);
Jens Axboe43c01fb2020-10-22 09:02:50 -0600916 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
917 if (ret)
Pavel Begunkovc7f405d2021-06-14 02:36:12 +0100918 goto err_wq;
Jens Axboe771b53d02019-10-22 10:25:58 -0600919
Jens Axboee9418942021-02-19 12:33:30 -0700920 refcount_inc(&data->hash->refs);
921 wq->hash = data->hash;
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300922 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300923 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -0700924
Jens Axboe43c01fb2020-10-22 09:02:50 -0600925 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +0100926 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600927 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -0700928 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -0600929
Jens Axboe75634392020-02-11 06:30:06 -0700930 if (!node_online(alloc_node))
931 alloc_node = NUMA_NO_NODE;
932 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600933 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +0100934 goto err;
Jens Axboe0e034962021-06-17 10:08:11 -0600935 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
936 goto err;
937 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
Jann Horn3fc50ab2019-11-26 19:10:20 +0100938 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -0700939 wqe->node = alloc_node;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700940 wqe->acct[IO_WQ_ACCT_BOUND].index = IO_WQ_ACCT_BOUND;
941 wqe->acct[IO_WQ_ACCT_UNBOUND].index = IO_WQ_ACCT_UNBOUND;
Jens Axboec5def4a2019-11-07 11:41:16 -0700942 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
943 atomic_set(&wqe->acct[IO_WQ_ACCT_BOUND].nr_running, 0);
Jens Axboe728f13e2021-02-21 16:02:53 -0700944 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
Jens Axboec5def4a2019-11-07 11:41:16 -0700945 task_rlimit(current, RLIMIT_NPROC);
Jens Axboec5def4a2019-11-07 11:41:16 -0700946 atomic_set(&wqe->acct[IO_WQ_ACCT_UNBOUND].nr_running, 0);
Jens Axboee9418942021-02-19 12:33:30 -0700947 wqe->wait.func = io_wqe_hash_wake;
948 INIT_LIST_HEAD(&wqe->wait.entry);
Jens Axboe771b53d02019-10-22 10:25:58 -0600949 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200950 raw_spin_lock_init(&wqe->lock);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700951 INIT_WQ_LIST(&wqe->work_list);
Jens Axboe021d1cd2019-11-14 08:00:41 -0700952 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -0700953 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600954 }
955
Jens Axboe685fe7f2021-03-08 09:37:51 -0700956 wq->task = get_task_struct(data->task);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700957 atomic_set(&wq->worker_refs, 1);
958 init_completion(&wq->worker_done);
959 return wq;
Jens Axboeb60fda62019-11-19 08:37:07 -0700960err:
Jens Axboedc7bbc92021-03-01 09:09:56 -0700961 io_wq_put_hash(data->hash);
Jens Axboe43c01fb2020-10-22 09:02:50 -0600962 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jens Axboe0e034962021-06-17 10:08:11 -0600963 for_each_node(node) {
964 if (!wq->wqes[node])
965 continue;
966 free_cpumask_var(wq->wqes[node]->cpu_mask);
Jann Horn3fc50ab2019-11-26 19:10:20 +0100967 kfree(wq->wqes[node]);
Jens Axboe0e034962021-06-17 10:08:11 -0600968 }
Jens Axboe43c01fb2020-10-22 09:02:50 -0600969err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -0700970 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -0600971 return ERR_PTR(ret);
972}
973
Jens Axboec80ca472021-04-01 19:57:07 -0600974static bool io_task_work_match(struct callback_head *cb, void *data)
975{
976 struct create_worker_data *cwd;
977
978 if (cb->func != create_worker_cb)
979 return false;
980 cwd = container_of(cb, struct create_worker_data, work);
981 return cwd->wqe->wq == data;
982}
983
Pavel Begunkov17a91052021-05-23 15:48:39 +0100984void io_wq_exit_start(struct io_wq *wq)
985{
986 set_bit(IO_WQ_BIT_EXIT, &wq->state);
987}
988
Jens Axboe685fe7f2021-03-08 09:37:51 -0700989static void io_wq_exit_workers(struct io_wq *wq)
Jens Axboeafcc4012021-02-26 13:48:19 -0700990{
Jens Axboe685fe7f2021-03-08 09:37:51 -0700991 struct callback_head *cb;
992 int node;
993
Jens Axboe685fe7f2021-03-08 09:37:51 -0700994 if (!wq->task)
995 return;
996
Jens Axboec80ca472021-04-01 19:57:07 -0600997 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
Jens Axboe685fe7f2021-03-08 09:37:51 -0700998 struct create_worker_data *cwd;
999
1000 cwd = container_of(cb, struct create_worker_data, work);
1001 atomic_dec(&cwd->wqe->acct[cwd->index].nr_running);
1002 io_worker_ref_put(wq);
1003 kfree(cwd);
Jens Axboeafcc4012021-02-26 13:48:19 -07001004 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001005
1006 rcu_read_lock();
1007 for_each_node(node) {
1008 struct io_wqe *wqe = wq->wqes[node];
1009
1010 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001011 }
1012 rcu_read_unlock();
1013 io_worker_ref_put(wq);
1014 wait_for_completion(&wq->worker_done);
Zqiang3743c172021-05-26 13:08:26 +08001015
1016 for_each_node(node) {
1017 spin_lock_irq(&wq->hash->wait.lock);
1018 list_del_init(&wq->wqes[node]->wait.entry);
1019 spin_unlock_irq(&wq->hash->wait.lock);
1020 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001021 put_task_struct(wq->task);
1022 wq->task = NULL;
Jens Axboeafcc4012021-02-26 13:48:19 -07001023}
1024
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001025static void io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001026{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001027 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001028
Jens Axboe43c01fb2020-10-22 09:02:50 -06001029 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1030
Jens Axboee9418942021-02-19 12:33:30 -07001031 for_each_node(node) {
1032 struct io_wqe *wqe = wq->wqes[node];
Jens Axboef5d2d232021-03-25 10:16:12 -06001033 struct io_cb_cancel_data match = {
1034 .fn = io_wq_work_match_all,
1035 .cancel_all = true,
1036 };
1037 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboe0e034962021-06-17 10:08:11 -06001038 free_cpumask_var(wqe->cpu_mask);
Jens Axboee9418942021-02-19 12:33:30 -07001039 kfree(wqe);
1040 }
Jens Axboee9418942021-02-19 12:33:30 -07001041 io_wq_put_hash(wq->hash);
Jens Axboe771b53d02019-10-22 10:25:58 -06001042 kfree(wq);
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001043}
1044
Jens Axboeafcc4012021-02-26 13:48:19 -07001045void io_wq_put_and_exit(struct io_wq *wq)
1046{
Pavel Begunkov17a91052021-05-23 15:48:39 +01001047 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1048
Jens Axboe685fe7f2021-03-08 09:37:51 -07001049 io_wq_exit_workers(wq);
Pavel Begunkov382cb032021-06-14 02:36:13 +01001050 io_wq_destroy(wq);
Jens Axboeafcc4012021-02-26 13:48:19 -07001051}
1052
Jens Axboe0e034962021-06-17 10:08:11 -06001053struct online_data {
1054 unsigned int cpu;
1055 bool online;
1056};
1057
Jens Axboe43c01fb2020-10-22 09:02:50 -06001058static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1059{
Jens Axboe0e034962021-06-17 10:08:11 -06001060 struct online_data *od = data;
Jens Axboe43c01fb2020-10-22 09:02:50 -06001061
Jens Axboe0e034962021-06-17 10:08:11 -06001062 if (od->online)
1063 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1064 else
1065 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001066 return false;
1067}
1068
Jens Axboe0e034962021-06-17 10:08:11 -06001069static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1070{
1071 struct online_data od = {
1072 .cpu = cpu,
1073 .online = online
1074 };
1075 int i;
1076
1077 rcu_read_lock();
1078 for_each_node(i)
1079 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1080 rcu_read_unlock();
1081 return 0;
1082}
1083
Jens Axboe43c01fb2020-10-22 09:02:50 -06001084static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1085{
1086 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001087
Jens Axboe0e034962021-06-17 10:08:11 -06001088 return __io_wq_cpu_online(wq, cpu, true);
1089}
1090
1091static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1092{
1093 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1094
1095 return __io_wq_cpu_online(wq, cpu, false);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001096}
1097
Jens Axboefe764212021-06-17 10:19:54 -06001098int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1099{
1100 int i;
1101
1102 rcu_read_lock();
1103 for_each_node(i) {
1104 struct io_wqe *wqe = wq->wqes[i];
1105
1106 if (mask)
1107 cpumask_copy(wqe->cpu_mask, mask);
1108 else
1109 cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1110 }
1111 rcu_read_unlock();
1112 return 0;
1113}
1114
Jens Axboe43c01fb2020-10-22 09:02:50 -06001115static __init int io_wq_init(void)
1116{
1117 int ret;
1118
1119 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
Jens Axboe0e034962021-06-17 10:08:11 -06001120 io_wq_cpu_online, io_wq_cpu_offline);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001121 if (ret < 0)
1122 return ret;
1123 io_wq_online = ret;
1124 return 0;
1125}
1126subsys_initcall(io_wq_init);