blob: c2e0e8e80949a7089268e2854a6b48c5802825f3 [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>
Eugene Syromiatnikovdd47c102021-09-13 17:44:15 +020017#include <uapi/linux/io_uring.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060018
19#include "io-wq.h"
20
21#define WORKER_IDLE_TIMEOUT (5 * HZ)
22
23enum {
24 IO_WORKER_F_UP = 1, /* up and active */
25 IO_WORKER_F_RUNNING = 2, /* account as running */
26 IO_WORKER_F_FREE = 4, /* worker on free list */
Jens Axboe05c5f4e2021-09-01 13:01:17 -060027 IO_WORKER_F_BOUND = 8, /* 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 {
Jens Axboef95dc202021-08-31 13:57:32 -060035 IO_ACCT_STALLED_BIT = 0, /* stalled on hash */
Jens Axboe771b53d02019-10-22 10:25:58 -060036};
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 Axboed3e9f732021-08-04 08:37:25 -060054 unsigned long create_state;
55 struct callback_head create_work;
56 int create_index;
57
Jens Axboe3146cba2021-09-01 11:20:10 -060058 union {
59 struct rcu_head rcu;
60 struct work_struct work;
61 };
Jens Axboe771b53d02019-10-22 10:25:58 -060062};
63
Jens Axboe771b53d02019-10-22 10:25:58 -060064#if BITS_PER_LONG == 64
65#define IO_WQ_HASH_ORDER 6
66#else
67#define IO_WQ_HASH_ORDER 5
68#endif
69
Pavel Begunkov86f3cd12020-03-23 22:57:22 +030070#define IO_WQ_NR_HASH_BUCKETS (1u << IO_WQ_HASH_ORDER)
71
Jens Axboec5def4a2019-11-07 11:41:16 -070072struct io_wqe_acct {
73 unsigned nr_workers;
74 unsigned max_workers;
Jens Axboe685fe7f2021-03-08 09:37:51 -070075 int index;
Jens Axboec5def4a2019-11-07 11:41:16 -070076 atomic_t nr_running;
Jens Axboef95dc202021-08-31 13:57:32 -060077 struct io_wq_work_list work_list;
78 unsigned long flags;
Jens Axboec5def4a2019-11-07 11:41:16 -070079};
80
81enum {
82 IO_WQ_ACCT_BOUND,
83 IO_WQ_ACCT_UNBOUND,
Jens Axboef95dc202021-08-31 13:57:32 -060084 IO_WQ_ACCT_NR,
Jens Axboec5def4a2019-11-07 11:41:16 -070085};
86
Jens Axboe771b53d02019-10-22 10:25:58 -060087/*
88 * Per-node worker thread pool
89 */
90struct io_wqe {
Jens Axboef95dc202021-08-31 13:57:32 -060091 raw_spinlock_t lock;
92 struct io_wqe_acct acct[2];
Jens Axboe771b53d02019-10-22 10:25:58 -060093
94 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -060095
Jens Axboe021d1cd2019-11-14 08:00:41 -070096 struct hlist_nulls_head free_list;
Jens Axboee61df662019-11-13 13:54:49 -070097 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060098
Jens Axboee9418942021-02-19 12:33:30 -070099 struct wait_queue_entry wait;
100
Jens Axboe771b53d02019-10-22 10:25:58 -0600101 struct io_wq *wq;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300102 struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
Jens Axboe0e034962021-06-17 10:08:11 -0600103
104 cpumask_var_t cpu_mask;
Jens Axboe771b53d02019-10-22 10:25:58 -0600105};
106
107/*
108 * Per io_wq state
109 */
110struct io_wq {
Jens Axboe771b53d02019-10-22 10:25:58 -0600111 unsigned long state;
Jens Axboe771b53d02019-10-22 10:25:58 -0600112
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300113 free_work_fn *free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300114 io_wq_work_fn *do_work;
Jens Axboe7d723062019-11-12 22:31:31 -0700115
Jens Axboee9418942021-02-19 12:33:30 -0700116 struct io_wq_hash *hash;
117
Jens Axboefb3a1f62021-02-26 09:47:20 -0700118 atomic_t worker_refs;
119 struct completion worker_done;
120
Jens Axboe43c01fb2020-10-22 09:02:50 -0600121 struct hlist_node cpuhp_node;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700122
Jens Axboe685fe7f2021-03-08 09:37:51 -0700123 struct task_struct *task;
Pavel Begunkovc7f405d2021-06-14 02:36:12 +0100124
125 struct io_wqe *wqes[];
Jens Axboe771b53d02019-10-22 10:25:58 -0600126};
127
Jens Axboe43c01fb2020-10-22 09:02:50 -0600128static enum cpuhp_state io_wq_online;
129
Jens Axboef0127252021-03-03 15:47:04 -0700130struct io_cb_cancel_data {
131 work_cancel_fn *fn;
132 void *data;
133 int nr_running;
134 int nr_pending;
135 bool cancel_all;
136};
137
Jens Axboe3146cba2021-09-01 11:20:10 -0600138static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index);
Jens Axboe83d6c392021-08-03 09:14:35 -0600139static void io_wqe_dec_running(struct io_worker *worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600140static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
141 struct io_wqe_acct *acct,
142 struct io_cb_cancel_data *match);
Jens Axboef0127252021-03-03 15:47:04 -0700143
Jens Axboe771b53d02019-10-22 10:25:58 -0600144static bool io_worker_get(struct io_worker *worker)
145{
146 return refcount_inc_not_zero(&worker->ref);
147}
148
149static void io_worker_release(struct io_worker *worker)
150{
151 if (refcount_dec_and_test(&worker->ref))
Jens Axboeeb2de942021-02-23 19:59:06 -0700152 complete(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600153}
154
Pavel Begunkov8418f222021-03-22 01:58:28 +0000155static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
156{
157 return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
158}
159
Jens Axboec5def4a2019-11-07 11:41:16 -0700160static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
161 struct io_wq_work *work)
162{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000163 return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
Jens Axboec5def4a2019-11-07 11:41:16 -0700164}
165
Jens Axboe958234d2021-02-17 09:00:57 -0700166static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700167{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000168 return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
Jens Axboec5def4a2019-11-07 11:41:16 -0700169}
170
Jens Axboe685fe7f2021-03-08 09:37:51 -0700171static void io_worker_ref_put(struct io_wq *wq)
172{
173 if (atomic_dec_and_test(&wq->worker_refs))
174 complete(&wq->worker_done);
175}
176
Jens Axboe771b53d02019-10-22 10:25:58 -0600177static void io_worker_exit(struct io_worker *worker)
178{
179 struct io_wqe *wqe = worker->wqe;
Jens Axboe771b53d02019-10-22 10:25:58 -0600180
Jens Axboeeb2de942021-02-23 19:59:06 -0700181 if (refcount_dec_and_test(&worker->ref))
182 complete(&worker->ref_done);
183 wait_for_completion(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600184
Jens Axboea9a4aa92021-08-30 06:33:08 -0600185 raw_spin_lock(&wqe->lock);
Jens Axboe83d6c392021-08-03 09:14:35 -0600186 if (worker->flags & IO_WORKER_F_FREE)
Jens Axboebf1daa42021-02-16 18:00:55 -0700187 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700188 list_del_rcu(&worker->all_list);
Jens Axboe83d6c392021-08-03 09:14:35 -0600189 preempt_disable();
190 io_wqe_dec_running(worker);
191 worker->flags = 0;
192 current->flags &= ~PF_IO_WORKER;
193 preempt_enable();
Jens Axboea9a4aa92021-08-30 06:33:08 -0600194 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600195
YueHaibing364b05f2019-11-02 15:55:01 +0800196 kfree_rcu(worker, rcu);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700197 io_worker_ref_put(wqe->wq);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700198 do_exit(0);
Jens Axboe771b53d02019-10-22 10:25:58 -0600199}
200
Jens Axboef95dc202021-08-31 13:57:32 -0600201static inline bool io_acct_run_queue(struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700202{
Jens Axboef95dc202021-08-31 13:57:32 -0600203 if (!wq_list_empty(&acct->work_list) &&
204 !test_bit(IO_ACCT_STALLED_BIT, &acct->flags))
Jens Axboec5def4a2019-11-07 11:41:16 -0700205 return true;
206 return false;
207}
208
209/*
210 * Check head of free list for an available worker. If one isn't available,
Jens Axboe685fe7f2021-03-08 09:37:51 -0700211 * caller must create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700212 */
Jens Axboef95dc202021-08-31 13:57:32 -0600213static bool io_wqe_activate_free_worker(struct io_wqe *wqe,
214 struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700215 __must_hold(RCU)
216{
217 struct hlist_nulls_node *n;
218 struct io_worker *worker;
219
Jens Axboe83d6c392021-08-03 09:14:35 -0600220 /*
221 * Iterate free_list and see if we can find an idle worker to
222 * activate. If a given worker is on the free_list but in the process
223 * of exiting, keep trying.
224 */
225 hlist_nulls_for_each_entry_rcu(worker, n, &wqe->free_list, nulls_node) {
226 if (!io_worker_get(worker))
227 continue;
Jens Axboef95dc202021-08-31 13:57:32 -0600228 if (io_wqe_get_acct(worker) != acct) {
229 io_worker_release(worker);
230 continue;
231 }
Jens Axboe83d6c392021-08-03 09:14:35 -0600232 if (wake_up_process(worker->task)) {
233 io_worker_release(worker);
234 return true;
235 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700236 io_worker_release(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700237 }
238
239 return false;
240}
241
242/*
243 * 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 -0700244 * below the max number of workers, create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700245 */
Jens Axboe3146cba2021-09-01 11:20:10 -0600246static bool io_wqe_create_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700247{
Jens Axboec5def4a2019-11-07 11:41:16 -0700248 /*
249 * Most likely an attempt to queue unbounded work on an io_wq that
250 * wasn't setup with any unbounded workers.
251 */
Pavel Begunkove6ab8992021-06-17 18:13:59 +0100252 if (unlikely(!acct->max_workers))
253 pr_warn_once("io-wq is not configured for unbound workers");
Jens Axboec5def4a2019-11-07 11:41:16 -0700254
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600255 raw_spin_lock(&wqe->lock);
Hao Xu7a842fb2021-09-12 03:40:50 +0800256 if (acct->nr_workers == acct->max_workers) {
257 raw_spin_unlock(&wqe->lock);
258 return true;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600259 }
Hao Xu7a842fb2021-09-12 03:40:50 +0800260 acct->nr_workers++;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600261 raw_spin_unlock(&wqe->lock);
Hao Xu7a842fb2021-09-12 03:40:50 +0800262 atomic_inc(&acct->nr_running);
263 atomic_inc(&wqe->wq->worker_refs);
264 return create_io_worker(wqe->wq, wqe, acct->index);
Jens Axboec5def4a2019-11-07 11:41:16 -0700265}
266
Jens Axboe958234d2021-02-17 09:00:57 -0700267static void io_wqe_inc_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700268{
Jens Axboe958234d2021-02-17 09:00:57 -0700269 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700270
271 atomic_inc(&acct->nr_running);
272}
273
Jens Axboe685fe7f2021-03-08 09:37:51 -0700274static void create_worker_cb(struct callback_head *cb)
275{
Jens Axboed3e9f732021-08-04 08:37:25 -0600276 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700277 struct io_wq *wq;
Hao Xu21698272021-08-05 18:05:38 +0800278 struct io_wqe *wqe;
279 struct io_wqe_acct *acct;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600280 bool do_create = false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700281
Jens Axboed3e9f732021-08-04 08:37:25 -0600282 worker = container_of(cb, struct io_worker, create_work);
283 wqe = worker->wqe;
Hao Xu21698272021-08-05 18:05:38 +0800284 wq = wqe->wq;
Jens Axboed3e9f732021-08-04 08:37:25 -0600285 acct = &wqe->acct[worker->create_index];
Jens Axboea9a4aa92021-08-30 06:33:08 -0600286 raw_spin_lock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800287 if (acct->nr_workers < acct->max_workers) {
Hao Xu21698272021-08-05 18:05:38 +0800288 acct->nr_workers++;
Hao Xu49e7f0c2021-08-08 21:54:33 +0800289 do_create = true;
290 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600291 raw_spin_unlock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800292 if (do_create) {
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600293 create_io_worker(wq, wqe, worker->create_index);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800294 } else {
295 atomic_dec(&acct->nr_running);
296 io_worker_ref_put(wq);
297 }
Jens Axboed3e9f732021-08-04 08:37:25 -0600298 clear_bit_unlock(0, &worker->create_state);
299 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700300}
301
Jens Axboe3146cba2021-09-01 11:20:10 -0600302static bool io_queue_worker_create(struct io_worker *worker,
303 struct io_wqe_acct *acct,
304 task_work_func_t func)
Jens Axboe685fe7f2021-03-08 09:37:51 -0700305{
Jens Axboe3146cba2021-09-01 11:20:10 -0600306 struct io_wqe *wqe = worker->wqe;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700307 struct io_wq *wq = wqe->wq;
308
309 /* raced with exit, just ignore create call */
310 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
311 goto fail;
Jens Axboed3e9f732021-08-04 08:37:25 -0600312 if (!io_worker_get(worker))
313 goto fail;
314 /*
315 * create_state manages ownership of create_work/index. We should
316 * only need one entry per worker, as the worker going to sleep
317 * will trigger the condition, and waking will clear it once it
318 * runs the task_work.
319 */
320 if (test_bit(0, &worker->create_state) ||
321 test_and_set_bit_lock(0, &worker->create_state))
322 goto fail_release;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700323
Jens Axboe3146cba2021-09-01 11:20:10 -0600324 init_task_work(&worker->create_work, func);
Jens Axboed3e9f732021-08-04 08:37:25 -0600325 worker->create_index = acct->index;
326 if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL))
Jens Axboe3146cba2021-09-01 11:20:10 -0600327 return true;
Jens Axboed3e9f732021-08-04 08:37:25 -0600328 clear_bit_unlock(0, &worker->create_state);
329fail_release:
330 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700331fail:
332 atomic_dec(&acct->nr_running);
333 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600334 return false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700335}
336
Jens Axboe958234d2021-02-17 09:00:57 -0700337static void io_wqe_dec_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700338 __must_hold(wqe->lock)
339{
Jens Axboe958234d2021-02-17 09:00:57 -0700340 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
341 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700342
Jens Axboe685fe7f2021-03-08 09:37:51 -0700343 if (!(worker->flags & IO_WORKER_F_UP))
344 return;
345
Jens Axboef95dc202021-08-31 13:57:32 -0600346 if (atomic_dec_and_test(&acct->nr_running) && io_acct_run_queue(acct)) {
Jens Axboe685fe7f2021-03-08 09:37:51 -0700347 atomic_inc(&acct->nr_running);
348 atomic_inc(&wqe->wq->worker_refs);
Jens Axboe3146cba2021-09-01 11:20:10 -0600349 io_queue_worker_create(worker, acct, create_worker_cb);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700350 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700351}
352
Jens Axboe771b53d02019-10-22 10:25:58 -0600353/*
354 * Worker will start processing some work. Move it to the busy list, if
355 * it's currently on the freelist
356 */
357static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
358 struct io_wq_work *work)
359 __must_hold(wqe->lock)
360{
361 if (worker->flags & IO_WORKER_F_FREE) {
362 worker->flags &= ~IO_WORKER_F_FREE;
363 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600364 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600365}
366
367/*
368 * No work, worker going to sleep. Move to freelist, and unuse mm if we
369 * have one attached. Dropping the mm may potentially sleep, so we drop
370 * the lock in that case and return success. Since the caller has to
371 * retry the loop in that case (we changed task state), we don't regrab
372 * the lock if we return success.
373 */
Jens Axboec6d77d92021-02-15 13:26:34 -0700374static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600375 __must_hold(wqe->lock)
376{
377 if (!(worker->flags & IO_WORKER_F_FREE)) {
378 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700379 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600380 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600381}
382
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300383static inline unsigned int io_get_work_hash(struct io_wq_work *work)
384{
385 return work->flags >> IO_WQ_HASH_SHIFT;
386}
387
Jens Axboee9418942021-02-19 12:33:30 -0700388static void io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
389{
390 struct io_wq *wq = wqe->wq;
391
Jens Axboe08bdbd32021-08-31 06:57:25 -0600392 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700393 if (list_empty(&wqe->wait.entry)) {
394 __add_wait_queue(&wq->hash->wait, &wqe->wait);
395 if (!test_bit(hash, &wq->hash->map)) {
396 __set_current_state(TASK_RUNNING);
397 list_del_init(&wqe->wait.entry);
398 }
399 }
Jens Axboe08bdbd32021-08-31 06:57:25 -0600400 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700401}
402
Jens Axboef95dc202021-08-31 13:57:32 -0600403static struct io_wq_work *io_get_next_work(struct io_wqe_acct *acct,
Jens Axboe0242f642021-08-31 13:53:00 -0600404 struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600405 __must_hold(wqe->lock)
406{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700407 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300408 struct io_wq_work *work, *tail;
Jens Axboee9418942021-02-19 12:33:30 -0700409 unsigned int stall_hash = -1U;
Jens Axboef95dc202021-08-31 13:57:32 -0600410 struct io_wqe *wqe = worker->wqe;
Jens Axboe771b53d02019-10-22 10:25:58 -0600411
Jens Axboef95dc202021-08-31 13:57:32 -0600412 wq_list_for_each(node, prev, &acct->work_list) {
Jens Axboee9418942021-02-19 12:33:30 -0700413 unsigned int hash;
414
Jens Axboe6206f0e2019-11-26 11:59:32 -0700415 work = container_of(node, struct io_wq_work, list);
416
Jens Axboe771b53d02019-10-22 10:25:58 -0600417 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300418 if (!io_wq_is_hashed(work)) {
Jens Axboef95dc202021-08-31 13:57:32 -0600419 wq_list_del(&acct->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600420 return work;
421 }
422
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300423 hash = io_get_work_hash(work);
Jens Axboee9418942021-02-19 12:33:30 -0700424 /* all items with this hash lie in [work, tail] */
425 tail = wqe->hash_tail[hash];
426
427 /* hashed, can run if not already running */
428 if (!test_and_set_bit(hash, &wqe->wq->hash->map)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300429 wqe->hash_tail[hash] = NULL;
Jens Axboef95dc202021-08-31 13:57:32 -0600430 wq_list_cut(&acct->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600431 return work;
432 }
Jens Axboee9418942021-02-19 12:33:30 -0700433 if (stall_hash == -1U)
434 stall_hash = hash;
435 /* fast forward to a next hash, for-each will fix up @prev */
436 node = &tail->list;
437 }
438
439 if (stall_hash != -1U) {
Jens Axboe0242f642021-08-31 13:53:00 -0600440 /*
441 * Set this before dropping the lock to avoid racing with new
442 * work being added and clearing the stalled bit.
443 */
Jens Axboef95dc202021-08-31 13:57:32 -0600444 set_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboee9418942021-02-19 12:33:30 -0700445 raw_spin_unlock(&wqe->lock);
446 io_wait_on_hash(wqe, stall_hash);
447 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600448 }
449
450 return NULL;
451}
452
Jens Axboe00ddff42021-03-21 07:06:56 -0600453static bool io_flush_signals(void)
Jens Axboecccf0ee2020-01-27 16:34:48 -0700454{
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600455 if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL))) {
Jens Axboe00ddff42021-03-21 07:06:56 -0600456 __set_current_state(TASK_RUNNING);
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600457 tracehook_notify_signal();
Jens Axboe00ddff42021-03-21 07:06:56 -0600458 return true;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700459 }
Jens Axboe00ddff42021-03-21 07:06:56 -0600460 return false;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300461}
462
463static void io_assign_current_work(struct io_worker *worker,
464 struct io_wq_work *work)
465{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300466 if (work) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700467 io_flush_signals();
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300468 cond_resched();
469 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300470
Jens Axboea9a4aa92021-08-30 06:33:08 -0600471 spin_lock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300472 worker->cur_work = work;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600473 spin_unlock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300474}
475
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300476static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
477
Jens Axboe771b53d02019-10-22 10:25:58 -0600478static void io_worker_handle_work(struct io_worker *worker)
479 __releases(wqe->lock)
480{
Jens Axboef95dc202021-08-31 13:57:32 -0600481 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600482 struct io_wqe *wqe = worker->wqe;
483 struct io_wq *wq = wqe->wq;
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100484 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
Jens Axboe771b53d02019-10-22 10:25:58 -0600485
486 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300487 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300488get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600489 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600490 * If we got some work, mark us as busy. If we didn't, but
491 * the list isn't empty, it means we stalled on hashed work.
492 * Mark us stalled so we don't keep looking for work when we
493 * can't make progress, any work completion or insertion will
494 * clear the stalled flag.
495 */
Jens Axboef95dc202021-08-31 13:57:32 -0600496 work = io_get_next_work(acct, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600497 if (work)
498 __io_worker_busy(wqe, worker, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600499
Jens Axboea9a4aa92021-08-30 06:33:08 -0600500 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600501 if (!work)
502 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300503 io_assign_current_work(worker, work);
Jens Axboee9418942021-02-19 12:33:30 -0700504 __set_current_state(TASK_RUNNING);
Jens Axboe36c2f922019-11-13 09:43:34 -0700505
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300506 /* handle a whole dependent link */
507 do {
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000508 struct io_wq_work *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300509 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700510
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300511 next_hashed = wq_next_work(work);
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100512
513 if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
514 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000515 wq->do_work(work);
516 io_assign_current_work(worker, NULL);
Jens Axboe36c2f922019-11-13 09:43:34 -0700517
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000518 linked = wq->free_work(work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300519 work = next_hashed;
520 if (!work && linked && !io_wq_is_hashed(linked)) {
521 work = linked;
522 linked = NULL;
523 }
524 io_assign_current_work(worker, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300525 if (linked)
526 io_wqe_enqueue(wqe, linked);
527
528 if (hash != -1U && !next_hashed) {
Jens Axboee9418942021-02-19 12:33:30 -0700529 clear_bit(hash, &wq->hash->map);
Jens Axboef95dc202021-08-31 13:57:32 -0600530 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboee9418942021-02-19 12:33:30 -0700531 if (wq_has_sleeper(&wq->hash->wait))
532 wake_up(&wq->hash->wait);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600533 raw_spin_lock(&wqe->lock);
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300534 /* skip unnecessary unlock-lock wqe->lock */
535 if (!work)
536 goto get_next;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600537 raw_spin_unlock(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300538 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300539 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700540
Jens Axboea9a4aa92021-08-30 06:33:08 -0600541 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600542 } while (1);
543}
544
Jens Axboe771b53d02019-10-22 10:25:58 -0600545static int io_wqe_worker(void *data)
546{
547 struct io_worker *worker = data;
Jens Axboef95dc202021-08-31 13:57:32 -0600548 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600549 struct io_wqe *wqe = worker->wqe;
550 struct io_wq *wq = wqe->wq;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600551 bool last_timeout = false;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700552 char buf[TASK_COMM_LEN];
Jens Axboe771b53d02019-10-22 10:25:58 -0600553
Jens Axboe46fe18b2021-03-04 12:39:36 -0700554 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700555
Jens Axboe685fe7f2021-03-08 09:37:51 -0700556 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700557 set_task_comm(current, buf);
Jens Axboe771b53d02019-10-22 10:25:58 -0600558
559 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe16efa4f2021-03-12 20:26:13 -0700560 long ret;
561
Jens Axboe506d95f2019-12-07 21:03:59 -0700562 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700563loop:
Jens Axboea9a4aa92021-08-30 06:33:08 -0600564 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -0600565 if (io_acct_run_queue(acct)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600566 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700567 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600568 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600569 /* timed out, exit unless we're the last worker */
570 if (last_timeout && acct->nr_workers > 1) {
Hao Xu767a65e2021-09-12 03:40:52 +0800571 acct->nr_workers--;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600572 raw_spin_unlock(&wqe->lock);
573 __set_current_state(TASK_RUNNING);
574 break;
575 }
576 last_timeout = false;
Jens Axboec6d77d92021-02-15 13:26:34 -0700577 __io_worker_idle(wqe, worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600578 raw_spin_unlock(&wqe->lock);
Jens Axboe00ddff42021-03-21 07:06:56 -0600579 if (io_flush_signals())
580 continue;
Jens Axboe16efa4f2021-03-12 20:26:13 -0700581 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600582 if (signal_pending(current)) {
583 struct ksignal ksig;
584
585 if (!get_signal(&ksig))
586 continue;
Jens Axboe15e20db2021-09-01 11:18:41 -0600587 if (fatal_signal_pending(current))
588 break;
589 continue;
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600590 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600591 last_timeout = !ret;
Jens Axboe771b53d02019-10-22 10:25:58 -0600592 }
593
Jens Axboe771b53d02019-10-22 10:25:58 -0600594 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboea9a4aa92021-08-30 06:33:08 -0600595 raw_spin_lock(&wqe->lock);
Pavel Begunkove5872272021-06-14 02:36:17 +0100596 io_worker_handle_work(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600597 }
598
599 io_worker_exit(worker);
600 return 0;
601}
602
603/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600604 * Called when a worker is scheduled in. Mark us as currently running.
605 */
606void io_wq_worker_running(struct task_struct *tsk)
607{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700608 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600609
Jens Axboe3bfe6102021-02-16 14:15:30 -0700610 if (!worker)
611 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600612 if (!(worker->flags & IO_WORKER_F_UP))
613 return;
614 if (worker->flags & IO_WORKER_F_RUNNING)
615 return;
616 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboe958234d2021-02-17 09:00:57 -0700617 io_wqe_inc_running(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600618}
619
620/*
621 * Called when worker is going to sleep. If there are no workers currently
Jens Axboe685fe7f2021-03-08 09:37:51 -0700622 * running and we have work pending, wake up a free one or create a new one.
Jens Axboe771b53d02019-10-22 10:25:58 -0600623 */
624void io_wq_worker_sleeping(struct task_struct *tsk)
625{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700626 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600627
Jens Axboe3bfe6102021-02-16 14:15:30 -0700628 if (!worker)
629 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600630 if (!(worker->flags & IO_WORKER_F_UP))
631 return;
632 if (!(worker->flags & IO_WORKER_F_RUNNING))
633 return;
634
635 worker->flags &= ~IO_WORKER_F_RUNNING;
636
Jens Axboea9a4aa92021-08-30 06:33:08 -0600637 raw_spin_lock(&worker->wqe->lock);
Jens Axboe958234d2021-02-17 09:00:57 -0700638 io_wqe_dec_running(worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600639 raw_spin_unlock(&worker->wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600640}
641
Jens Axboe3146cba2021-09-01 11:20:10 -0600642static void io_init_new_worker(struct io_wqe *wqe, struct io_worker *worker,
643 struct task_struct *tsk)
Jens Axboe3bfe6102021-02-16 14:15:30 -0700644{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700645 tsk->pf_io_worker = worker;
646 worker->task = tsk;
Jens Axboe0e034962021-06-17 10:08:11 -0600647 set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
Jens Axboee22bc9b2021-03-09 19:49:02 -0700648 tsk->flags |= PF_NO_SETAFFINITY;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700649
Jens Axboea9a4aa92021-08-30 06:33:08 -0600650 raw_spin_lock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700651 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
652 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
653 worker->flags |= IO_WORKER_F_FREE;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600654 raw_spin_unlock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700655 wake_up_new_task(tsk);
Jens Axboe771b53d02019-10-22 10:25:58 -0600656}
657
Jens Axboe3146cba2021-09-01 11:20:10 -0600658static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
659{
660 return true;
661}
662
663static inline bool io_should_retry_thread(long err)
664{
665 switch (err) {
666 case -EAGAIN:
667 case -ERESTARTSYS:
668 case -ERESTARTNOINTR:
669 case -ERESTARTNOHAND:
670 return true;
671 default:
672 return false;
673 }
674}
675
676static void create_worker_cont(struct callback_head *cb)
677{
678 struct io_worker *worker;
679 struct task_struct *tsk;
680 struct io_wqe *wqe;
681
682 worker = container_of(cb, struct io_worker, create_work);
683 clear_bit_unlock(0, &worker->create_state);
684 wqe = worker->wqe;
685 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
686 if (!IS_ERR(tsk)) {
687 io_init_new_worker(wqe, worker, tsk);
688 io_worker_release(worker);
689 return;
690 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
691 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
692
693 atomic_dec(&acct->nr_running);
694 raw_spin_lock(&wqe->lock);
695 acct->nr_workers--;
696 if (!acct->nr_workers) {
697 struct io_cb_cancel_data match = {
698 .fn = io_wq_work_match_all,
699 .cancel_all = true,
700 };
701
702 while (io_acct_cancel_pending_work(wqe, acct, &match))
703 raw_spin_lock(&wqe->lock);
704 }
705 raw_spin_unlock(&wqe->lock);
706 io_worker_ref_put(wqe->wq);
Qiang.zhang66e70be2021-09-09 19:58:22 +0800707 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600708 return;
709 }
710
711 /* re-create attempts grab a new worker ref, drop the existing one */
712 io_worker_release(worker);
713 schedule_work(&worker->work);
714}
715
716static void io_workqueue_create(struct work_struct *work)
717{
718 struct io_worker *worker = container_of(work, struct io_worker, work);
719 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
720
721 if (!io_queue_worker_create(worker, acct, create_worker_cont)) {
722 clear_bit_unlock(0, &worker->create_state);
723 io_worker_release(worker);
Qiang.zhang66e70be2021-09-09 19:58:22 +0800724 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600725 }
726}
727
728static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
729{
730 struct io_wqe_acct *acct = &wqe->acct[index];
731 struct io_worker *worker;
732 struct task_struct *tsk;
733
734 __set_current_state(TASK_RUNNING);
735
736 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
737 if (!worker) {
738fail:
739 atomic_dec(&acct->nr_running);
740 raw_spin_lock(&wqe->lock);
741 acct->nr_workers--;
742 raw_spin_unlock(&wqe->lock);
743 io_worker_ref_put(wq);
744 return false;
745 }
746
747 refcount_set(&worker->ref, 1);
748 worker->wqe = wqe;
749 spin_lock_init(&worker->lock);
750 init_completion(&worker->ref_done);
751
752 if (index == IO_WQ_ACCT_BOUND)
753 worker->flags |= IO_WORKER_F_BOUND;
754
755 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
756 if (!IS_ERR(tsk)) {
757 io_init_new_worker(wqe, worker, tsk);
758 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
Qiang.zhang66e70be2021-09-09 19:58:22 +0800759 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600760 goto fail;
761 } else {
762 INIT_WORK(&worker->work, io_workqueue_create);
763 schedule_work(&worker->work);
764 }
765
766 return true;
767}
768
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800769/*
770 * Iterate the passed in list and call the specific function for each
771 * worker that isn't exiting
772 */
773static bool io_wq_for_each_worker(struct io_wqe *wqe,
774 bool (*func)(struct io_worker *, void *),
775 void *data)
776{
777 struct io_worker *worker;
778 bool ret = false;
779
780 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
781 if (io_worker_get(worker)) {
782 /* no task if node is/was offline */
783 if (worker->task)
784 ret = func(worker, data);
785 io_worker_release(worker);
786 if (ret)
787 break;
788 }
789 }
790
791 return ret;
792}
793
794static bool io_wq_worker_wake(struct io_worker *worker, void *data)
795{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700796 set_notify_signal(worker->task);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800797 wake_up_process(worker->task);
798 return false;
799}
800
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300801static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300802{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300803 struct io_wq *wq = wqe->wq;
804
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300805 do {
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300806 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000807 wq->do_work(work);
808 work = wq->free_work(work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300809 } while (work);
810}
811
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300812static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
813{
Jens Axboef95dc202021-08-31 13:57:32 -0600814 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300815 unsigned int hash;
816 struct io_wq_work *tail;
817
818 if (!io_wq_is_hashed(work)) {
819append:
Jens Axboef95dc202021-08-31 13:57:32 -0600820 wq_list_add_tail(&work->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300821 return;
822 }
823
824 hash = io_get_work_hash(work);
825 tail = wqe->hash_tail[hash];
826 wqe->hash_tail[hash] = work;
827 if (!tail)
828 goto append;
829
Jens Axboef95dc202021-08-31 13:57:32 -0600830 wq_list_add_after(&work->list, &tail->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300831}
832
Pavel Begunkov713b9822021-09-08 10:09:29 +0100833static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
834{
835 return work == data;
836}
837
Jens Axboe771b53d02019-10-22 10:25:58 -0600838static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
839{
Jens Axboec5def4a2019-11-07 11:41:16 -0700840 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600841 unsigned work_flags = work->flags;
842 bool do_create;
Jens Axboe771b53d02019-10-22 10:25:58 -0600843
Jens Axboe991468d2021-07-23 11:53:54 -0600844 /*
845 * If io-wq is exiting for this task, or if the request has explicitly
846 * been marked as one that should not get executed, cancel it here.
847 */
848 if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
849 (work->flags & IO_WQ_WORK_CANCEL)) {
yangerkun70e35122021-03-09 11:04:10 +0800850 io_run_cancel(work, wqe);
Jens Axboe4fb6ac32021-02-25 10:17:09 -0700851 return;
852 }
853
Jens Axboea9a4aa92021-08-30 06:33:08 -0600854 raw_spin_lock(&wqe->lock);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300855 io_wqe_insert_work(wqe, work);
Jens Axboef95dc202021-08-31 13:57:32 -0600856 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600857
858 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -0600859 do_create = !io_wqe_activate_free_worker(wqe, acct);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600860 rcu_read_unlock();
861
Jens Axboea9a4aa92021-08-30 06:33:08 -0600862 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600863
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600864 if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
Jens Axboe3146cba2021-09-01 11:20:10 -0600865 !atomic_read(&acct->nr_running))) {
866 bool did_create;
867
868 did_create = io_wqe_create_worker(wqe, acct);
Pavel Begunkov713b9822021-09-08 10:09:29 +0100869 if (likely(did_create))
870 return;
871
872 raw_spin_lock(&wqe->lock);
873 /* fatal condition, failed to create the first worker */
874 if (!acct->nr_workers) {
875 struct io_cb_cancel_data match = {
876 .fn = io_wq_work_match_item,
877 .data = work,
878 .cancel_all = false,
879 };
880
881 if (io_acct_cancel_pending_work(wqe, acct, &match))
882 raw_spin_lock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600883 }
Pavel Begunkov713b9822021-09-08 10:09:29 +0100884 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600885 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600886}
887
888void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
889{
890 struct io_wqe *wqe = wq->wqes[numa_node_id()];
891
892 io_wqe_enqueue(wqe, work);
893}
894
895/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300896 * Work items that hash to the same value will not be done in parallel.
897 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600898 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300899void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600900{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300901 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600902
903 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
904 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600905}
906
Pavel Begunkov2293b412020-03-07 01:15:39 +0300907static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600908{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300909 struct io_cb_cancel_data *match = data;
Jens Axboe62755e32019-10-28 21:49:21 -0600910
911 /*
912 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700913 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600914 */
Jens Axboea9a4aa92021-08-30 06:33:08 -0600915 spin_lock(&worker->lock);
Jens Axboe62755e32019-10-28 21:49:21 -0600916 if (worker->cur_work &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300917 match->fn(worker->cur_work, match->data)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700918 set_notify_signal(worker->task);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300919 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600920 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600921 spin_unlock(&worker->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600922
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300923 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600924}
925
Pavel Begunkov204361a2020-08-23 20:33:10 +0300926static inline void io_wqe_remove_pending(struct io_wqe *wqe,
927 struct io_wq_work *work,
928 struct io_wq_work_node *prev)
929{
Jens Axboef95dc202021-08-31 13:57:32 -0600930 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov204361a2020-08-23 20:33:10 +0300931 unsigned int hash = io_get_work_hash(work);
932 struct io_wq_work *prev_work = NULL;
933
934 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
935 if (prev)
936 prev_work = container_of(prev, struct io_wq_work, list);
937 if (prev_work && io_get_work_hash(prev_work) == hash)
938 wqe->hash_tail[hash] = prev_work;
939 else
940 wqe->hash_tail[hash] = NULL;
941 }
Jens Axboef95dc202021-08-31 13:57:32 -0600942 wq_list_del(&acct->work_list, &work->list, prev);
Pavel Begunkov204361a2020-08-23 20:33:10 +0300943}
944
Jens Axboe3146cba2021-09-01 11:20:10 -0600945static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
946 struct io_wqe_acct *acct,
947 struct io_cb_cancel_data *match)
948 __releases(wqe->lock)
Jens Axboe771b53d02019-10-22 10:25:58 -0600949{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700950 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -0600951 struct io_wq_work *work;
Jens Axboe771b53d02019-10-22 10:25:58 -0600952
Jens Axboe3146cba2021-09-01 11:20:10 -0600953 wq_list_for_each(node, prev, &acct->work_list) {
954 work = container_of(node, struct io_wq_work, list);
955 if (!match->fn(work, match->data))
956 continue;
957 io_wqe_remove_pending(wqe, work, prev);
958 raw_spin_unlock(&wqe->lock);
959 io_run_cancel(work, wqe);
960 match->nr_pending++;
961 /* not safe to continue after unlock */
962 return true;
963 }
964
965 return false;
966}
967
968static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
969 struct io_cb_cancel_data *match)
970{
971 int i;
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300972retry:
Jens Axboea9a4aa92021-08-30 06:33:08 -0600973 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -0600974 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
975 struct io_wqe_acct *acct = io_get_acct(wqe, i == 0);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300976
Jens Axboe3146cba2021-09-01 11:20:10 -0600977 if (io_acct_cancel_pending_work(wqe, acct, match)) {
978 if (match->cancel_all)
979 goto retry;
980 return;
Jens Axboef95dc202021-08-31 13:57:32 -0600981 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600982 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600983 raw_spin_unlock(&wqe->lock);
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300984}
Jens Axboe771b53d02019-10-22 10:25:58 -0600985
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300986static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300987 struct io_cb_cancel_data *match)
988{
Jens Axboe771b53d02019-10-22 10:25:58 -0600989 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300990 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -0600991 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -0600992}
993
Pavel Begunkov2293b412020-03-07 01:15:39 +0300994enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300995 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +0300996{
997 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300998 .fn = cancel,
999 .data = data,
1000 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +03001001 };
Pavel Begunkov2293b412020-03-07 01:15:39 +03001002 int node;
1003
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001004 /*
1005 * First check pending list, if we're lucky we can just remove it
1006 * from there. CANCEL_OK means that the work is returned as-new,
1007 * no completion will be posted for it.
1008 */
Pavel Begunkov2293b412020-03-07 01:15:39 +03001009 for_each_node(node) {
1010 struct io_wqe *wqe = wq->wqes[node];
1011
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001012 io_wqe_cancel_pending_work(wqe, &match);
1013 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001014 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001015 }
1016
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001017 /*
1018 * Now check if a free (going busy) or busy worker has the work
1019 * currently running. If we find it there, we'll return CANCEL_RUNNING
1020 * as an indication that we attempt to signal cancellation. The
1021 * completion will run normally in this case.
1022 */
1023 for_each_node(node) {
1024 struct io_wqe *wqe = wq->wqes[node];
1025
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001026 io_wqe_cancel_running_work(wqe, &match);
1027 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001028 return IO_WQ_CANCEL_RUNNING;
1029 }
1030
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001031 if (match.nr_running)
1032 return IO_WQ_CANCEL_RUNNING;
1033 if (match.nr_pending)
1034 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001035 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001036}
1037
Jens Axboee9418942021-02-19 12:33:30 -07001038static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1039 int sync, void *key)
1040{
1041 struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
Jens Axboef95dc202021-08-31 13:57:32 -06001042 int i;
Jens Axboee9418942021-02-19 12:33:30 -07001043
1044 list_del_init(&wait->entry);
1045
1046 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -06001047 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1048 struct io_wqe_acct *acct = &wqe->acct[i];
1049
1050 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1051 io_wqe_activate_free_worker(wqe, acct);
1052 }
Jens Axboee9418942021-02-19 12:33:30 -07001053 rcu_read_unlock();
Jens Axboee9418942021-02-19 12:33:30 -07001054 return 1;
1055}
1056
Jens Axboe576a3472019-11-25 08:49:20 -07001057struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -06001058{
Jens Axboef95dc202021-08-31 13:57:32 -06001059 int ret, node, i;
Jens Axboe771b53d02019-10-22 10:25:58 -06001060 struct io_wq *wq;
1061
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001062 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001063 return ERR_PTR(-EINVAL);
Pavel Begunkove6ab8992021-06-17 18:13:59 +01001064 if (WARN_ON_ONCE(!bounded))
1065 return ERR_PTR(-EINVAL);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001066
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001067 wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001068 if (!wq)
1069 return ERR_PTR(-ENOMEM);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001070 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1071 if (ret)
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001072 goto err_wq;
Jens Axboe771b53d02019-10-22 10:25:58 -06001073
Jens Axboee9418942021-02-19 12:33:30 -07001074 refcount_inc(&data->hash->refs);
1075 wq->hash = data->hash;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001076 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001077 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -07001078
Jens Axboe43c01fb2020-10-22 09:02:50 -06001079 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +01001080 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -06001081 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001082 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001083
Jens Axboe75634392020-02-11 06:30:06 -07001084 if (!node_online(alloc_node))
1085 alloc_node = NUMA_NO_NODE;
1086 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -06001087 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +01001088 goto err;
Jens Axboe0e034962021-06-17 10:08:11 -06001089 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
1090 goto err;
1091 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
Jann Horn3fc50ab2019-11-26 19:10:20 +01001092 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001093 wqe->node = alloc_node;
Jens Axboec5def4a2019-11-07 11:41:16 -07001094 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
Jens Axboe728f13e2021-02-21 16:02:53 -07001095 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
Jens Axboec5def4a2019-11-07 11:41:16 -07001096 task_rlimit(current, RLIMIT_NPROC);
Jens Axboee9418942021-02-19 12:33:30 -07001097 INIT_LIST_HEAD(&wqe->wait.entry);
Jens Axboef95dc202021-08-31 13:57:32 -06001098 wqe->wait.func = io_wqe_hash_wake;
1099 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1100 struct io_wqe_acct *acct = &wqe->acct[i];
1101
1102 acct->index = i;
1103 atomic_set(&acct->nr_running, 0);
1104 INIT_WQ_LIST(&acct->work_list);
1105 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001106 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001107 raw_spin_lock_init(&wqe->lock);
Jens Axboe021d1cd2019-11-14 08:00:41 -07001108 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -07001109 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -06001110 }
1111
Jens Axboe685fe7f2021-03-08 09:37:51 -07001112 wq->task = get_task_struct(data->task);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001113 atomic_set(&wq->worker_refs, 1);
1114 init_completion(&wq->worker_done);
1115 return wq;
Jens Axboeb60fda62019-11-19 08:37:07 -07001116err:
Jens Axboedc7bbc92021-03-01 09:09:56 -07001117 io_wq_put_hash(data->hash);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001118 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jens Axboe0e034962021-06-17 10:08:11 -06001119 for_each_node(node) {
1120 if (!wq->wqes[node])
1121 continue;
1122 free_cpumask_var(wq->wqes[node]->cpu_mask);
Jann Horn3fc50ab2019-11-26 19:10:20 +01001123 kfree(wq->wqes[node]);
Jens Axboe0e034962021-06-17 10:08:11 -06001124 }
Jens Axboe43c01fb2020-10-22 09:02:50 -06001125err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -07001126 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -06001127 return ERR_PTR(ret);
1128}
1129
Jens Axboec80ca472021-04-01 19:57:07 -06001130static bool io_task_work_match(struct callback_head *cb, void *data)
1131{
Jens Axboed3e9f732021-08-04 08:37:25 -06001132 struct io_worker *worker;
Jens Axboec80ca472021-04-01 19:57:07 -06001133
Jens Axboe3b33e3f2021-09-08 19:57:26 -06001134 if (cb->func != create_worker_cb && cb->func != create_worker_cont)
Jens Axboec80ca472021-04-01 19:57:07 -06001135 return false;
Jens Axboed3e9f732021-08-04 08:37:25 -06001136 worker = container_of(cb, struct io_worker, create_work);
1137 return worker->wqe->wq == data;
Jens Axboec80ca472021-04-01 19:57:07 -06001138}
1139
Pavel Begunkov17a91052021-05-23 15:48:39 +01001140void io_wq_exit_start(struct io_wq *wq)
1141{
1142 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1143}
1144
Jens Axboe685fe7f2021-03-08 09:37:51 -07001145static void io_wq_exit_workers(struct io_wq *wq)
Jens Axboeafcc4012021-02-26 13:48:19 -07001146{
Jens Axboe685fe7f2021-03-08 09:37:51 -07001147 struct callback_head *cb;
1148 int node;
1149
Jens Axboe685fe7f2021-03-08 09:37:51 -07001150 if (!wq->task)
1151 return;
1152
Jens Axboec80ca472021-04-01 19:57:07 -06001153 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
Jens Axboed3e9f732021-08-04 08:37:25 -06001154 struct io_worker *worker;
Jens Axboe3b33e3f2021-09-08 19:57:26 -06001155 struct io_wqe_acct *acct;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001156
Jens Axboed3e9f732021-08-04 08:37:25 -06001157 worker = container_of(cb, struct io_worker, create_work);
Jens Axboe3b33e3f2021-09-08 19:57:26 -06001158 acct = io_wqe_get_acct(worker);
1159 atomic_dec(&acct->nr_running);
1160 raw_spin_lock(&worker->wqe->lock);
1161 acct->nr_workers--;
1162 raw_spin_unlock(&worker->wqe->lock);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001163 io_worker_ref_put(wq);
Jens Axboed3e9f732021-08-04 08:37:25 -06001164 clear_bit_unlock(0, &worker->create_state);
1165 io_worker_release(worker);
Jens Axboeafcc4012021-02-26 13:48:19 -07001166 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001167
1168 rcu_read_lock();
1169 for_each_node(node) {
1170 struct io_wqe *wqe = wq->wqes[node];
1171
1172 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001173 }
1174 rcu_read_unlock();
1175 io_worker_ref_put(wq);
1176 wait_for_completion(&wq->worker_done);
Zqiang3743c172021-05-26 13:08:26 +08001177
1178 for_each_node(node) {
1179 spin_lock_irq(&wq->hash->wait.lock);
1180 list_del_init(&wq->wqes[node]->wait.entry);
1181 spin_unlock_irq(&wq->hash->wait.lock);
1182 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001183 put_task_struct(wq->task);
1184 wq->task = NULL;
Jens Axboeafcc4012021-02-26 13:48:19 -07001185}
1186
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001187static void io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001188{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001189 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001190
Jens Axboe43c01fb2020-10-22 09:02:50 -06001191 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1192
Jens Axboee9418942021-02-19 12:33:30 -07001193 for_each_node(node) {
1194 struct io_wqe *wqe = wq->wqes[node];
Jens Axboef5d2d232021-03-25 10:16:12 -06001195 struct io_cb_cancel_data match = {
1196 .fn = io_wq_work_match_all,
1197 .cancel_all = true,
1198 };
1199 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboe0e034962021-06-17 10:08:11 -06001200 free_cpumask_var(wqe->cpu_mask);
Jens Axboee9418942021-02-19 12:33:30 -07001201 kfree(wqe);
1202 }
Jens Axboee9418942021-02-19 12:33:30 -07001203 io_wq_put_hash(wq->hash);
Jens Axboe771b53d02019-10-22 10:25:58 -06001204 kfree(wq);
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001205}
1206
Jens Axboeafcc4012021-02-26 13:48:19 -07001207void io_wq_put_and_exit(struct io_wq *wq)
1208{
Pavel Begunkov17a91052021-05-23 15:48:39 +01001209 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1210
Jens Axboe685fe7f2021-03-08 09:37:51 -07001211 io_wq_exit_workers(wq);
Pavel Begunkov382cb032021-06-14 02:36:13 +01001212 io_wq_destroy(wq);
Jens Axboeafcc4012021-02-26 13:48:19 -07001213}
1214
Jens Axboe0e034962021-06-17 10:08:11 -06001215struct online_data {
1216 unsigned int cpu;
1217 bool online;
1218};
1219
Jens Axboe43c01fb2020-10-22 09:02:50 -06001220static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1221{
Jens Axboe0e034962021-06-17 10:08:11 -06001222 struct online_data *od = data;
Jens Axboe43c01fb2020-10-22 09:02:50 -06001223
Jens Axboe0e034962021-06-17 10:08:11 -06001224 if (od->online)
1225 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1226 else
1227 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001228 return false;
1229}
1230
Jens Axboe0e034962021-06-17 10:08:11 -06001231static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1232{
1233 struct online_data od = {
1234 .cpu = cpu,
1235 .online = online
1236 };
1237 int i;
1238
1239 rcu_read_lock();
1240 for_each_node(i)
1241 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1242 rcu_read_unlock();
1243 return 0;
1244}
1245
Jens Axboe43c01fb2020-10-22 09:02:50 -06001246static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1247{
1248 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001249
Jens Axboe0e034962021-06-17 10:08:11 -06001250 return __io_wq_cpu_online(wq, cpu, true);
1251}
1252
1253static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1254{
1255 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1256
1257 return __io_wq_cpu_online(wq, cpu, false);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001258}
1259
Jens Axboefe764212021-06-17 10:19:54 -06001260int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1261{
1262 int i;
1263
1264 rcu_read_lock();
1265 for_each_node(i) {
1266 struct io_wqe *wqe = wq->wqes[i];
1267
1268 if (mask)
1269 cpumask_copy(wqe->cpu_mask, mask);
1270 else
1271 cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1272 }
1273 rcu_read_unlock();
1274 return 0;
1275}
1276
Jens Axboe2e480052021-08-27 11:33:19 -06001277/*
1278 * Set max number of unbounded workers, returns old value. If new_count is 0,
1279 * then just return the old value.
1280 */
1281int io_wq_max_workers(struct io_wq *wq, int *new_count)
1282{
1283 int i, node, prev = 0;
1284
Eugene Syromiatnikovdd47c102021-09-13 17:44:15 +02001285 BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND != (int) IO_WQ_BOUND);
1286 BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1287 BUILD_BUG_ON((int) IO_WQ_ACCT_NR != 2);
1288
Jens Axboe2e480052021-08-27 11:33:19 -06001289 for (i = 0; i < 2; i++) {
1290 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1291 new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1292 }
1293
1294 rcu_read_lock();
1295 for_each_node(node) {
1296 struct io_wqe_acct *acct;
1297
Jens Axboef95dc202021-08-31 13:57:32 -06001298 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
Jens Axboe2e480052021-08-27 11:33:19 -06001299 acct = &wq->wqes[node]->acct[i];
1300 prev = max_t(int, acct->max_workers, prev);
1301 if (new_count[i])
1302 acct->max_workers = new_count[i];
1303 new_count[i] = prev;
1304 }
1305 }
1306 rcu_read_unlock();
1307 return 0;
1308}
1309
Jens Axboe43c01fb2020-10-22 09:02:50 -06001310static __init int io_wq_init(void)
1311{
1312 int ret;
1313
1314 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
Jens Axboe0e034962021-06-17 10:08:11 -06001315 io_wq_cpu_online, io_wq_cpu_offline);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001316 if (ret < 0)
1317 return ret;
1318 io_wq_online = ret;
1319 return 0;
1320}
1321subsys_initcall(io_wq_init);