blob: 81485c1a9879e14ae1b791284bce45adae3aa11c [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);
Pavel Begunkov7887fea2021-10-29 13:11:33 +0100143static void create_worker_cb(struct callback_head *cb);
Jens Axboe4b4e5bb2021-12-10 08:29:30 -0700144static void io_wq_cancel_tw_create(struct io_wq *wq);
Jens Axboef0127252021-03-03 15:47:04 -0700145
Jens Axboe771b53d02019-10-22 10:25:58 -0600146static bool io_worker_get(struct io_worker *worker)
147{
148 return refcount_inc_not_zero(&worker->ref);
149}
150
151static void io_worker_release(struct io_worker *worker)
152{
153 if (refcount_dec_and_test(&worker->ref))
Jens Axboeeb2de942021-02-23 19:59:06 -0700154 complete(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600155}
156
Pavel Begunkov8418f222021-03-22 01:58:28 +0000157static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
158{
159 return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
160}
161
Jens Axboec5def4a2019-11-07 11:41:16 -0700162static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
163 struct io_wq_work *work)
164{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000165 return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
Jens Axboec5def4a2019-11-07 11:41:16 -0700166}
167
Jens Axboe958234d2021-02-17 09:00:57 -0700168static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700169{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000170 return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
Jens Axboec5def4a2019-11-07 11:41:16 -0700171}
172
Jens Axboe685fe7f2021-03-08 09:37:51 -0700173static void io_worker_ref_put(struct io_wq *wq)
174{
175 if (atomic_dec_and_test(&wq->worker_refs))
176 complete(&wq->worker_done);
177}
178
Pavel Begunkov7887fea2021-10-29 13:11:33 +0100179static void io_worker_cancel_cb(struct io_worker *worker)
180{
181 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
182 struct io_wqe *wqe = worker->wqe;
183 struct io_wq *wq = wqe->wq;
184
185 atomic_dec(&acct->nr_running);
186 raw_spin_lock(&worker->wqe->lock);
187 acct->nr_workers--;
188 raw_spin_unlock(&worker->wqe->lock);
189 io_worker_ref_put(wq);
190 clear_bit_unlock(0, &worker->create_state);
191 io_worker_release(worker);
192}
193
194static bool io_task_worker_match(struct callback_head *cb, void *data)
195{
196 struct io_worker *worker;
197
198 if (cb->func != create_worker_cb)
199 return false;
200 worker = container_of(cb, struct io_worker, create_work);
201 return worker == data;
202}
203
Jens Axboe771b53d02019-10-22 10:25:58 -0600204static void io_worker_exit(struct io_worker *worker)
205{
206 struct io_wqe *wqe = worker->wqe;
Pavel Begunkov7887fea2021-10-29 13:11:33 +0100207 struct io_wq *wq = wqe->wq;
208
209 while (1) {
210 struct callback_head *cb = task_work_cancel_match(wq->task,
211 io_task_worker_match, worker);
212
213 if (!cb)
214 break;
215 io_worker_cancel_cb(worker);
216 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600217
Jens Axboeeb2de942021-02-23 19:59:06 -0700218 if (refcount_dec_and_test(&worker->ref))
219 complete(&worker->ref_done);
220 wait_for_completion(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600221
Jens Axboea9a4aa92021-08-30 06:33:08 -0600222 raw_spin_lock(&wqe->lock);
Jens Axboe83d6c392021-08-03 09:14:35 -0600223 if (worker->flags & IO_WORKER_F_FREE)
Jens Axboebf1daa42021-02-16 18:00:55 -0700224 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700225 list_del_rcu(&worker->all_list);
Jens Axboe83d6c392021-08-03 09:14:35 -0600226 preempt_disable();
227 io_wqe_dec_running(worker);
228 worker->flags = 0;
229 current->flags &= ~PF_IO_WORKER;
230 preempt_enable();
Jens Axboea9a4aa92021-08-30 06:33:08 -0600231 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600232
YueHaibing364b05f2019-11-02 15:55:01 +0800233 kfree_rcu(worker, rcu);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700234 io_worker_ref_put(wqe->wq);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700235 do_exit(0);
Jens Axboe771b53d02019-10-22 10:25:58 -0600236}
237
Jens Axboef95dc202021-08-31 13:57:32 -0600238static inline bool io_acct_run_queue(struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700239{
Jens Axboef95dc202021-08-31 13:57:32 -0600240 if (!wq_list_empty(&acct->work_list) &&
241 !test_bit(IO_ACCT_STALLED_BIT, &acct->flags))
Jens Axboec5def4a2019-11-07 11:41:16 -0700242 return true;
243 return false;
244}
245
246/*
247 * Check head of free list for an available worker. If one isn't available,
Jens Axboe685fe7f2021-03-08 09:37:51 -0700248 * caller must create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700249 */
Jens Axboef95dc202021-08-31 13:57:32 -0600250static bool io_wqe_activate_free_worker(struct io_wqe *wqe,
251 struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700252 __must_hold(RCU)
253{
254 struct hlist_nulls_node *n;
255 struct io_worker *worker;
256
Jens Axboe83d6c392021-08-03 09:14:35 -0600257 /*
258 * Iterate free_list and see if we can find an idle worker to
259 * activate. If a given worker is on the free_list but in the process
260 * of exiting, keep trying.
261 */
262 hlist_nulls_for_each_entry_rcu(worker, n, &wqe->free_list, nulls_node) {
263 if (!io_worker_get(worker))
264 continue;
Jens Axboef95dc202021-08-31 13:57:32 -0600265 if (io_wqe_get_acct(worker) != acct) {
266 io_worker_release(worker);
267 continue;
268 }
Jens Axboe83d6c392021-08-03 09:14:35 -0600269 if (wake_up_process(worker->task)) {
270 io_worker_release(worker);
271 return true;
272 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700273 io_worker_release(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700274 }
275
276 return false;
277}
278
279/*
280 * 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 -0700281 * below the max number of workers, create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700282 */
Jens Axboe3146cba2021-09-01 11:20:10 -0600283static bool io_wqe_create_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700284{
Jens Axboec5def4a2019-11-07 11:41:16 -0700285 /*
286 * Most likely an attempt to queue unbounded work on an io_wq that
287 * wasn't setup with any unbounded workers.
288 */
Pavel Begunkove6ab8992021-06-17 18:13:59 +0100289 if (unlikely(!acct->max_workers))
290 pr_warn_once("io-wq is not configured for unbound workers");
Jens Axboec5def4a2019-11-07 11:41:16 -0700291
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600292 raw_spin_lock(&wqe->lock);
Pavel Begunkovbc369922021-10-19 20:31:26 +0100293 if (acct->nr_workers >= acct->max_workers) {
Hao Xu7a842fb2021-09-12 03:40:50 +0800294 raw_spin_unlock(&wqe->lock);
295 return true;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600296 }
Hao Xu7a842fb2021-09-12 03:40:50 +0800297 acct->nr_workers++;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600298 raw_spin_unlock(&wqe->lock);
Hao Xu7a842fb2021-09-12 03:40:50 +0800299 atomic_inc(&acct->nr_running);
300 atomic_inc(&wqe->wq->worker_refs);
301 return create_io_worker(wqe->wq, wqe, acct->index);
Jens Axboec5def4a2019-11-07 11:41:16 -0700302}
303
Jens Axboe958234d2021-02-17 09:00:57 -0700304static void io_wqe_inc_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700305{
Jens Axboe958234d2021-02-17 09:00:57 -0700306 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700307
308 atomic_inc(&acct->nr_running);
309}
310
Jens Axboe685fe7f2021-03-08 09:37:51 -0700311static void create_worker_cb(struct callback_head *cb)
312{
Jens Axboed3e9f732021-08-04 08:37:25 -0600313 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700314 struct io_wq *wq;
Hao Xu21698272021-08-05 18:05:38 +0800315 struct io_wqe *wqe;
316 struct io_wqe_acct *acct;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600317 bool do_create = false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700318
Jens Axboed3e9f732021-08-04 08:37:25 -0600319 worker = container_of(cb, struct io_worker, create_work);
320 wqe = worker->wqe;
Hao Xu21698272021-08-05 18:05:38 +0800321 wq = wqe->wq;
Jens Axboed3e9f732021-08-04 08:37:25 -0600322 acct = &wqe->acct[worker->create_index];
Jens Axboea9a4aa92021-08-30 06:33:08 -0600323 raw_spin_lock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800324 if (acct->nr_workers < acct->max_workers) {
Hao Xu21698272021-08-05 18:05:38 +0800325 acct->nr_workers++;
Hao Xu49e7f0c2021-08-08 21:54:33 +0800326 do_create = true;
327 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600328 raw_spin_unlock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800329 if (do_create) {
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600330 create_io_worker(wq, wqe, worker->create_index);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800331 } else {
332 atomic_dec(&acct->nr_running);
333 io_worker_ref_put(wq);
334 }
Jens Axboed3e9f732021-08-04 08:37:25 -0600335 clear_bit_unlock(0, &worker->create_state);
336 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700337}
338
Jens Axboe3146cba2021-09-01 11:20:10 -0600339static bool io_queue_worker_create(struct io_worker *worker,
340 struct io_wqe_acct *acct,
341 task_work_func_t func)
Jens Axboe685fe7f2021-03-08 09:37:51 -0700342{
Jens Axboe3146cba2021-09-01 11:20:10 -0600343 struct io_wqe *wqe = worker->wqe;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700344 struct io_wq *wq = wqe->wq;
345
346 /* raced with exit, just ignore create call */
347 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
348 goto fail;
Jens Axboed3e9f732021-08-04 08:37:25 -0600349 if (!io_worker_get(worker))
350 goto fail;
351 /*
352 * create_state manages ownership of create_work/index. We should
353 * only need one entry per worker, as the worker going to sleep
354 * will trigger the condition, and waking will clear it once it
355 * runs the task_work.
356 */
357 if (test_bit(0, &worker->create_state) ||
358 test_and_set_bit_lock(0, &worker->create_state))
359 goto fail_release;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700360
Jens Axboe4b4e5bb2021-12-10 08:29:30 -0700361 atomic_inc(&wq->worker_refs);
Jens Axboe3146cba2021-09-01 11:20:10 -0600362 init_task_work(&worker->create_work, func);
Jens Axboed3e9f732021-08-04 08:37:25 -0600363 worker->create_index = acct->index;
Jens Axboe4b4e5bb2021-12-10 08:29:30 -0700364 if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL)) {
365 /*
366 * EXIT may have been set after checking it above, check after
367 * adding the task_work and remove any creation item if it is
368 * now set. wq exit does that too, but we can have added this
369 * work item after we canceled in io_wq_exit_workers().
370 */
371 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
372 io_wq_cancel_tw_create(wq);
373 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600374 return true;
Jens Axboe4b4e5bb2021-12-10 08:29:30 -0700375 }
376 io_worker_ref_put(wq);
Jens Axboed3e9f732021-08-04 08:37:25 -0600377 clear_bit_unlock(0, &worker->create_state);
378fail_release:
379 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700380fail:
381 atomic_dec(&acct->nr_running);
382 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600383 return false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700384}
385
Jens Axboe958234d2021-02-17 09:00:57 -0700386static void io_wqe_dec_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700387 __must_hold(wqe->lock)
388{
Jens Axboe958234d2021-02-17 09:00:57 -0700389 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
390 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700391
Jens Axboe685fe7f2021-03-08 09:37:51 -0700392 if (!(worker->flags & IO_WORKER_F_UP))
393 return;
394
Jens Axboef95dc202021-08-31 13:57:32 -0600395 if (atomic_dec_and_test(&acct->nr_running) && io_acct_run_queue(acct)) {
Jens Axboe685fe7f2021-03-08 09:37:51 -0700396 atomic_inc(&acct->nr_running);
397 atomic_inc(&wqe->wq->worker_refs);
Jens Axboe11053a02021-12-13 09:04:01 -0700398 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600399 io_queue_worker_create(worker, acct, create_worker_cb);
Jens Axboe11053a02021-12-13 09:04:01 -0700400 raw_spin_lock(&wqe->lock);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700401 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700402}
403
Jens Axboe771b53d02019-10-22 10:25:58 -0600404/*
405 * Worker will start processing some work. Move it to the busy list, if
406 * it's currently on the freelist
407 */
408static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
409 struct io_wq_work *work)
410 __must_hold(wqe->lock)
411{
412 if (worker->flags & IO_WORKER_F_FREE) {
413 worker->flags &= ~IO_WORKER_F_FREE;
414 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600415 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600416}
417
418/*
419 * No work, worker going to sleep. Move to freelist, and unuse mm if we
420 * have one attached. Dropping the mm may potentially sleep, so we drop
421 * the lock in that case and return success. Since the caller has to
422 * retry the loop in that case (we changed task state), we don't regrab
423 * the lock if we return success.
424 */
Jens Axboec6d77d92021-02-15 13:26:34 -0700425static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600426 __must_hold(wqe->lock)
427{
428 if (!(worker->flags & IO_WORKER_F_FREE)) {
429 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700430 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600431 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600432}
433
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300434static inline unsigned int io_get_work_hash(struct io_wq_work *work)
435{
436 return work->flags >> IO_WQ_HASH_SHIFT;
437}
438
Jens Axboe670f1f302021-11-11 17:32:53 -0700439static bool io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
Jens Axboee9418942021-02-19 12:33:30 -0700440{
441 struct io_wq *wq = wqe->wq;
Jens Axboe670f1f302021-11-11 17:32:53 -0700442 bool ret = false;
Jens Axboee9418942021-02-19 12:33:30 -0700443
Jens Axboe08bdbd32021-08-31 06:57:25 -0600444 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700445 if (list_empty(&wqe->wait.entry)) {
446 __add_wait_queue(&wq->hash->wait, &wqe->wait);
447 if (!test_bit(hash, &wq->hash->map)) {
448 __set_current_state(TASK_RUNNING);
449 list_del_init(&wqe->wait.entry);
Jens Axboe670f1f302021-11-11 17:32:53 -0700450 ret = true;
Jens Axboee9418942021-02-19 12:33:30 -0700451 }
452 }
Jens Axboe08bdbd32021-08-31 06:57:25 -0600453 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboe670f1f302021-11-11 17:32:53 -0700454 return ret;
Jens Axboee9418942021-02-19 12:33:30 -0700455}
456
Jens Axboef95dc202021-08-31 13:57:32 -0600457static struct io_wq_work *io_get_next_work(struct io_wqe_acct *acct,
Jens Axboe0242f642021-08-31 13:53:00 -0600458 struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600459 __must_hold(wqe->lock)
460{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700461 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300462 struct io_wq_work *work, *tail;
Jens Axboee9418942021-02-19 12:33:30 -0700463 unsigned int stall_hash = -1U;
Jens Axboef95dc202021-08-31 13:57:32 -0600464 struct io_wqe *wqe = worker->wqe;
Jens Axboe771b53d02019-10-22 10:25:58 -0600465
Jens Axboef95dc202021-08-31 13:57:32 -0600466 wq_list_for_each(node, prev, &acct->work_list) {
Jens Axboee9418942021-02-19 12:33:30 -0700467 unsigned int hash;
468
Jens Axboe6206f0e2019-11-26 11:59:32 -0700469 work = container_of(node, struct io_wq_work, list);
470
Jens Axboe771b53d02019-10-22 10:25:58 -0600471 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300472 if (!io_wq_is_hashed(work)) {
Jens Axboef95dc202021-08-31 13:57:32 -0600473 wq_list_del(&acct->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600474 return work;
475 }
476
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300477 hash = io_get_work_hash(work);
Jens Axboee9418942021-02-19 12:33:30 -0700478 /* all items with this hash lie in [work, tail] */
479 tail = wqe->hash_tail[hash];
480
481 /* hashed, can run if not already running */
482 if (!test_and_set_bit(hash, &wqe->wq->hash->map)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300483 wqe->hash_tail[hash] = NULL;
Jens Axboef95dc202021-08-31 13:57:32 -0600484 wq_list_cut(&acct->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600485 return work;
486 }
Jens Axboee9418942021-02-19 12:33:30 -0700487 if (stall_hash == -1U)
488 stall_hash = hash;
489 /* fast forward to a next hash, for-each will fix up @prev */
490 node = &tail->list;
491 }
492
493 if (stall_hash != -1U) {
Jens Axboe670f1f302021-11-11 17:32:53 -0700494 bool unstalled;
495
Jens Axboe0242f642021-08-31 13:53:00 -0600496 /*
497 * Set this before dropping the lock to avoid racing with new
498 * work being added and clearing the stalled bit.
499 */
Jens Axboef95dc202021-08-31 13:57:32 -0600500 set_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboee9418942021-02-19 12:33:30 -0700501 raw_spin_unlock(&wqe->lock);
Jens Axboe670f1f302021-11-11 17:32:53 -0700502 unstalled = io_wait_on_hash(wqe, stall_hash);
Jens Axboee9418942021-02-19 12:33:30 -0700503 raw_spin_lock(&wqe->lock);
Jens Axboe670f1f302021-11-11 17:32:53 -0700504 if (unstalled) {
505 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
506 if (wq_has_sleeper(&wqe->wq->hash->wait))
507 wake_up(&wqe->wq->hash->wait);
508 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600509 }
510
511 return NULL;
512}
513
Jens Axboe00ddff42021-03-21 07:06:56 -0600514static bool io_flush_signals(void)
Jens Axboecccf0ee2020-01-27 16:34:48 -0700515{
Jens Axboe2373a0c2023-01-20 20:50:24 -0700516 if (test_thread_flag(TIF_NOTIFY_SIGNAL) || current->task_works) {
Jens Axboe00ddff42021-03-21 07:06:56 -0600517 __set_current_state(TASK_RUNNING);
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600518 tracehook_notify_signal();
Jens Axboe00ddff42021-03-21 07:06:56 -0600519 return true;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700520 }
Jens Axboe00ddff42021-03-21 07:06:56 -0600521 return false;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300522}
523
524static void io_assign_current_work(struct io_worker *worker,
525 struct io_wq_work *work)
526{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300527 if (work) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700528 io_flush_signals();
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300529 cond_resched();
530 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300531
Jens Axboea9a4aa92021-08-30 06:33:08 -0600532 spin_lock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300533 worker->cur_work = work;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600534 spin_unlock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300535}
536
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300537static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
538
Jens Axboe771b53d02019-10-22 10:25:58 -0600539static void io_worker_handle_work(struct io_worker *worker)
540 __releases(wqe->lock)
541{
Jens Axboef95dc202021-08-31 13:57:32 -0600542 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600543 struct io_wqe *wqe = worker->wqe;
544 struct io_wq *wq = wqe->wq;
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100545 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
Jens Axboe771b53d02019-10-22 10:25:58 -0600546
547 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300548 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300549get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600550 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600551 * If we got some work, mark us as busy. If we didn't, but
552 * the list isn't empty, it means we stalled on hashed work.
553 * Mark us stalled so we don't keep looking for work when we
554 * can't make progress, any work completion or insertion will
555 * clear the stalled flag.
556 */
Jens Axboef95dc202021-08-31 13:57:32 -0600557 work = io_get_next_work(acct, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600558 if (work)
559 __io_worker_busy(wqe, worker, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600560
Jens Axboea9a4aa92021-08-30 06:33:08 -0600561 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600562 if (!work)
563 break;
Pavel Begunkov58e393192020-03-04 16:14:10 +0300564 io_assign_current_work(worker, work);
Jens Axboee9418942021-02-19 12:33:30 -0700565 __set_current_state(TASK_RUNNING);
Jens Axboe36c2f922019-11-13 09:43:34 -0700566
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300567 /* handle a whole dependent link */
568 do {
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000569 struct io_wq_work *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300570 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700571
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300572 next_hashed = wq_next_work(work);
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100573
574 if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
575 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000576 wq->do_work(work);
577 io_assign_current_work(worker, NULL);
Jens Axboe36c2f922019-11-13 09:43:34 -0700578
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000579 linked = wq->free_work(work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300580 work = next_hashed;
581 if (!work && linked && !io_wq_is_hashed(linked)) {
582 work = linked;
583 linked = NULL;
584 }
585 io_assign_current_work(worker, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300586 if (linked)
587 io_wqe_enqueue(wqe, linked);
588
589 if (hash != -1U && !next_hashed) {
Jens Axboe670f1f302021-11-11 17:32:53 -0700590 /* serialize hash clear with wake_up() */
591 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700592 clear_bit(hash, &wq->hash->map);
Jens Axboef95dc202021-08-31 13:57:32 -0600593 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboe670f1f302021-11-11 17:32:53 -0700594 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700595 if (wq_has_sleeper(&wq->hash->wait))
596 wake_up(&wq->hash->wait);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600597 raw_spin_lock(&wqe->lock);
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300598 /* skip unnecessary unlock-lock wqe->lock */
599 if (!work)
600 goto get_next;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600601 raw_spin_unlock(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300602 }
Pavel Begunkov58e393192020-03-04 16:14:10 +0300603 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700604
Jens Axboea9a4aa92021-08-30 06:33:08 -0600605 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600606 } while (1);
607}
608
Jens Axboe771b53d02019-10-22 10:25:58 -0600609static int io_wqe_worker(void *data)
610{
611 struct io_worker *worker = data;
Jens Axboef95dc202021-08-31 13:57:32 -0600612 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600613 struct io_wqe *wqe = worker->wqe;
614 struct io_wq *wq = wqe->wq;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600615 bool last_timeout = false;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700616 char buf[TASK_COMM_LEN];
Jens Axboe771b53d02019-10-22 10:25:58 -0600617
Jens Axboe46fe18b2021-03-04 12:39:36 -0700618 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700619
Jens Axboe685fe7f2021-03-08 09:37:51 -0700620 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700621 set_task_comm(current, buf);
Jens Axboe771b53d02019-10-22 10:25:58 -0600622
623 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe16efa4f2021-03-12 20:26:13 -0700624 long ret;
625
Jens Axboe506d95f2019-12-07 21:03:59 -0700626 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700627loop:
Jens Axboea9a4aa92021-08-30 06:33:08 -0600628 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -0600629 if (io_acct_run_queue(acct)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600630 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700631 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600632 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600633 /* timed out, exit unless we're the last worker */
634 if (last_timeout && acct->nr_workers > 1) {
Hao Xu767a65e2021-09-12 03:40:52 +0800635 acct->nr_workers--;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600636 raw_spin_unlock(&wqe->lock);
637 __set_current_state(TASK_RUNNING);
638 break;
639 }
640 last_timeout = false;
Jens Axboec6d77d92021-02-15 13:26:34 -0700641 __io_worker_idle(wqe, worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600642 raw_spin_unlock(&wqe->lock);
Jens Axboe00ddff42021-03-21 07:06:56 -0600643 if (io_flush_signals())
644 continue;
Jens Axboe16efa4f2021-03-12 20:26:13 -0700645 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600646 if (signal_pending(current)) {
647 struct ksignal ksig;
648
649 if (!get_signal(&ksig))
650 continue;
Jens Axboe78f88762021-09-27 10:04:10 -0600651 break;
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600652 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600653 last_timeout = !ret;
Jens Axboe771b53d02019-10-22 10:25:58 -0600654 }
655
Jens Axboe771b53d02019-10-22 10:25:58 -0600656 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboea9a4aa92021-08-30 06:33:08 -0600657 raw_spin_lock(&wqe->lock);
Pavel Begunkove5872272021-06-14 02:36:17 +0100658 io_worker_handle_work(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600659 }
660
661 io_worker_exit(worker);
662 return 0;
663}
664
665/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600666 * Called when a worker is scheduled in. Mark us as currently running.
667 */
668void io_wq_worker_running(struct task_struct *tsk)
669{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700670 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600671
Jens Axboe3bfe6102021-02-16 14:15:30 -0700672 if (!worker)
673 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600674 if (!(worker->flags & IO_WORKER_F_UP))
675 return;
676 if (worker->flags & IO_WORKER_F_RUNNING)
677 return;
678 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboe958234d2021-02-17 09:00:57 -0700679 io_wqe_inc_running(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600680}
681
682/*
683 * Called when worker is going to sleep. If there are no workers currently
Jens Axboe685fe7f2021-03-08 09:37:51 -0700684 * running and we have work pending, wake up a free one or create a new one.
Jens Axboe771b53d02019-10-22 10:25:58 -0600685 */
686void io_wq_worker_sleeping(struct task_struct *tsk)
687{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700688 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600689
Jens Axboe3bfe6102021-02-16 14:15:30 -0700690 if (!worker)
691 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600692 if (!(worker->flags & IO_WORKER_F_UP))
693 return;
694 if (!(worker->flags & IO_WORKER_F_RUNNING))
695 return;
696
697 worker->flags &= ~IO_WORKER_F_RUNNING;
698
Jens Axboea9a4aa92021-08-30 06:33:08 -0600699 raw_spin_lock(&worker->wqe->lock);
Jens Axboe958234d2021-02-17 09:00:57 -0700700 io_wqe_dec_running(worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600701 raw_spin_unlock(&worker->wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600702}
703
Jens Axboe3146cba2021-09-01 11:20:10 -0600704static void io_init_new_worker(struct io_wqe *wqe, struct io_worker *worker,
705 struct task_struct *tsk)
Jens Axboe3bfe6102021-02-16 14:15:30 -0700706{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700707 tsk->pf_io_worker = worker;
708 worker->task = tsk;
Jens Axboe0e034962021-06-17 10:08:11 -0600709 set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
Jens Axboee22bc9b2021-03-09 19:49:02 -0700710 tsk->flags |= PF_NO_SETAFFINITY;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700711
Jens Axboea9a4aa92021-08-30 06:33:08 -0600712 raw_spin_lock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700713 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
714 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
715 worker->flags |= IO_WORKER_F_FREE;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600716 raw_spin_unlock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700717 wake_up_new_task(tsk);
Jens Axboe771b53d02019-10-22 10:25:58 -0600718}
719
Jens Axboe3146cba2021-09-01 11:20:10 -0600720static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
721{
722 return true;
723}
724
725static inline bool io_should_retry_thread(long err)
726{
Jens Axboe690637e2021-12-02 19:40:15 -0700727 /*
728 * Prevent perpetual task_work retry, if the task (or its group) is
729 * exiting.
730 */
731 if (fatal_signal_pending(current))
732 return false;
733
Jens Axboe3146cba2021-09-01 11:20:10 -0600734 switch (err) {
735 case -EAGAIN:
736 case -ERESTARTSYS:
737 case -ERESTARTNOINTR:
738 case -ERESTARTNOHAND:
739 return true;
740 default:
741 return false;
742 }
743}
744
745static void create_worker_cont(struct callback_head *cb)
746{
747 struct io_worker *worker;
748 struct task_struct *tsk;
749 struct io_wqe *wqe;
750
751 worker = container_of(cb, struct io_worker, create_work);
752 clear_bit_unlock(0, &worker->create_state);
753 wqe = worker->wqe;
754 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
755 if (!IS_ERR(tsk)) {
756 io_init_new_worker(wqe, worker, tsk);
757 io_worker_release(worker);
758 return;
759 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
760 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
761
762 atomic_dec(&acct->nr_running);
763 raw_spin_lock(&wqe->lock);
764 acct->nr_workers--;
765 if (!acct->nr_workers) {
766 struct io_cb_cancel_data match = {
767 .fn = io_wq_work_match_all,
768 .cancel_all = true,
769 };
770
771 while (io_acct_cancel_pending_work(wqe, acct, &match))
772 raw_spin_lock(&wqe->lock);
773 }
774 raw_spin_unlock(&wqe->lock);
775 io_worker_ref_put(wqe->wq);
Qiang.zhang66e70be2021-09-09 19:58:22 +0800776 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600777 return;
778 }
779
780 /* re-create attempts grab a new worker ref, drop the existing one */
781 io_worker_release(worker);
782 schedule_work(&worker->work);
783}
784
785static void io_workqueue_create(struct work_struct *work)
786{
787 struct io_worker *worker = container_of(work, struct io_worker, work);
788 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
789
Bixuan Cui4eac23d2021-09-11 16:58:47 +0800790 if (!io_queue_worker_create(worker, acct, create_worker_cont))
Qiang.zhang66e70be2021-09-09 19:58:22 +0800791 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600792}
793
794static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
795{
796 struct io_wqe_acct *acct = &wqe->acct[index];
797 struct io_worker *worker;
798 struct task_struct *tsk;
799
800 __set_current_state(TASK_RUNNING);
801
802 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
803 if (!worker) {
804fail:
805 atomic_dec(&acct->nr_running);
806 raw_spin_lock(&wqe->lock);
807 acct->nr_workers--;
808 raw_spin_unlock(&wqe->lock);
809 io_worker_ref_put(wq);
810 return false;
811 }
812
813 refcount_set(&worker->ref, 1);
814 worker->wqe = wqe;
815 spin_lock_init(&worker->lock);
816 init_completion(&worker->ref_done);
817
818 if (index == IO_WQ_ACCT_BOUND)
819 worker->flags |= IO_WORKER_F_BOUND;
820
821 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
822 if (!IS_ERR(tsk)) {
823 io_init_new_worker(wqe, worker, tsk);
824 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
Qiang.zhang66e70be2021-09-09 19:58:22 +0800825 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600826 goto fail;
827 } else {
828 INIT_WORK(&worker->work, io_workqueue_create);
829 schedule_work(&worker->work);
830 }
831
832 return true;
833}
834
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800835/*
836 * Iterate the passed in list and call the specific function for each
837 * worker that isn't exiting
838 */
839static bool io_wq_for_each_worker(struct io_wqe *wqe,
840 bool (*func)(struct io_worker *, void *),
841 void *data)
842{
843 struct io_worker *worker;
844 bool ret = false;
845
846 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
847 if (io_worker_get(worker)) {
848 /* no task if node is/was offline */
849 if (worker->task)
850 ret = func(worker, data);
851 io_worker_release(worker);
852 if (ret)
853 break;
854 }
855 }
856
857 return ret;
858}
859
860static bool io_wq_worker_wake(struct io_worker *worker, void *data)
861{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700862 set_notify_signal(worker->task);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800863 wake_up_process(worker->task);
864 return false;
865}
866
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300867static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300868{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300869 struct io_wq *wq = wqe->wq;
870
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300871 do {
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300872 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000873 wq->do_work(work);
874 work = wq->free_work(work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300875 } while (work);
876}
877
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300878static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
879{
Jens Axboef95dc202021-08-31 13:57:32 -0600880 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300881 unsigned int hash;
882 struct io_wq_work *tail;
883
884 if (!io_wq_is_hashed(work)) {
885append:
Jens Axboef95dc202021-08-31 13:57:32 -0600886 wq_list_add_tail(&work->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300887 return;
888 }
889
890 hash = io_get_work_hash(work);
891 tail = wqe->hash_tail[hash];
892 wqe->hash_tail[hash] = work;
893 if (!tail)
894 goto append;
895
Jens Axboef95dc202021-08-31 13:57:32 -0600896 wq_list_add_after(&work->list, &tail->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300897}
898
Pavel Begunkov713b9822021-09-08 10:09:29 +0100899static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
900{
901 return work == data;
902}
903
Jens Axboe771b53d02019-10-22 10:25:58 -0600904static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
905{
Jens Axboec5def4a2019-11-07 11:41:16 -0700906 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600907 unsigned work_flags = work->flags;
908 bool do_create;
Jens Axboe771b53d02019-10-22 10:25:58 -0600909
Jens Axboe991468d2021-07-23 11:53:54 -0600910 /*
911 * If io-wq is exiting for this task, or if the request has explicitly
912 * been marked as one that should not get executed, cancel it here.
913 */
914 if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
915 (work->flags & IO_WQ_WORK_CANCEL)) {
yangerkun70e35122021-03-09 11:04:10 +0800916 io_run_cancel(work, wqe);
Jens Axboe4fb6ac32021-02-25 10:17:09 -0700917 return;
918 }
919
Jens Axboea9a4aa92021-08-30 06:33:08 -0600920 raw_spin_lock(&wqe->lock);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300921 io_wqe_insert_work(wqe, work);
Jens Axboef95dc202021-08-31 13:57:32 -0600922 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600923
924 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -0600925 do_create = !io_wqe_activate_free_worker(wqe, acct);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600926 rcu_read_unlock();
927
Jens Axboea9a4aa92021-08-30 06:33:08 -0600928 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600929
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600930 if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
Jens Axboe3146cba2021-09-01 11:20:10 -0600931 !atomic_read(&acct->nr_running))) {
932 bool did_create;
933
934 did_create = io_wqe_create_worker(wqe, acct);
Pavel Begunkov713b9822021-09-08 10:09:29 +0100935 if (likely(did_create))
936 return;
937
938 raw_spin_lock(&wqe->lock);
939 /* fatal condition, failed to create the first worker */
940 if (!acct->nr_workers) {
941 struct io_cb_cancel_data match = {
942 .fn = io_wq_work_match_item,
943 .data = work,
944 .cancel_all = false,
945 };
946
947 if (io_acct_cancel_pending_work(wqe, acct, &match))
948 raw_spin_lock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600949 }
Pavel Begunkov713b9822021-09-08 10:09:29 +0100950 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600951 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600952}
953
954void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
955{
956 struct io_wqe *wqe = wq->wqes[numa_node_id()];
957
958 io_wqe_enqueue(wqe, work);
959}
960
961/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300962 * Work items that hash to the same value will not be done in parallel.
963 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600964 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300965void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600966{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300967 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600968
969 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
970 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600971}
972
Pavel Begunkov2293b412020-03-07 01:15:39 +0300973static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600974{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300975 struct io_cb_cancel_data *match = data;
Jens Axboe62755e32019-10-28 21:49:21 -0600976
977 /*
978 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700979 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600980 */
Jens Axboea9a4aa92021-08-30 06:33:08 -0600981 spin_lock(&worker->lock);
Jens Axboe62755e32019-10-28 21:49:21 -0600982 if (worker->cur_work &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300983 match->fn(worker->cur_work, match->data)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700984 set_notify_signal(worker->task);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300985 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600986 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600987 spin_unlock(&worker->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600988
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300989 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600990}
991
Pavel Begunkov204361a2020-08-23 20:33:10 +0300992static inline void io_wqe_remove_pending(struct io_wqe *wqe,
993 struct io_wq_work *work,
994 struct io_wq_work_node *prev)
995{
Jens Axboef95dc202021-08-31 13:57:32 -0600996 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov204361a2020-08-23 20:33:10 +0300997 unsigned int hash = io_get_work_hash(work);
998 struct io_wq_work *prev_work = NULL;
999
1000 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
1001 if (prev)
1002 prev_work = container_of(prev, struct io_wq_work, list);
1003 if (prev_work && io_get_work_hash(prev_work) == hash)
1004 wqe->hash_tail[hash] = prev_work;
1005 else
1006 wqe->hash_tail[hash] = NULL;
1007 }
Jens Axboef95dc202021-08-31 13:57:32 -06001008 wq_list_del(&acct->work_list, &work->list, prev);
Pavel Begunkov204361a2020-08-23 20:33:10 +03001009}
1010
Jens Axboe3146cba2021-09-01 11:20:10 -06001011static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
1012 struct io_wqe_acct *acct,
1013 struct io_cb_cancel_data *match)
1014 __releases(wqe->lock)
Jens Axboe771b53d02019-10-22 10:25:58 -06001015{
Jens Axboe6206f0e2019-11-26 11:59:32 -07001016 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -06001017 struct io_wq_work *work;
Jens Axboe771b53d02019-10-22 10:25:58 -06001018
Jens Axboe3146cba2021-09-01 11:20:10 -06001019 wq_list_for_each(node, prev, &acct->work_list) {
1020 work = container_of(node, struct io_wq_work, list);
1021 if (!match->fn(work, match->data))
1022 continue;
1023 io_wqe_remove_pending(wqe, work, prev);
1024 raw_spin_unlock(&wqe->lock);
1025 io_run_cancel(work, wqe);
1026 match->nr_pending++;
1027 /* not safe to continue after unlock */
1028 return true;
1029 }
1030
1031 return false;
1032}
1033
1034static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
1035 struct io_cb_cancel_data *match)
1036{
1037 int i;
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001038retry:
Jens Axboea9a4aa92021-08-30 06:33:08 -06001039 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -06001040 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1041 struct io_wqe_acct *acct = io_get_acct(wqe, i == 0);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001042
Jens Axboe3146cba2021-09-01 11:20:10 -06001043 if (io_acct_cancel_pending_work(wqe, acct, match)) {
1044 if (match->cancel_all)
1045 goto retry;
1046 return;
Jens Axboef95dc202021-08-31 13:57:32 -06001047 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001048 }
Jens Axboea9a4aa92021-08-30 06:33:08 -06001049 raw_spin_unlock(&wqe->lock);
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001050}
Jens Axboe771b53d02019-10-22 10:25:58 -06001051
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001052static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001053 struct io_cb_cancel_data *match)
1054{
Jens Axboe771b53d02019-10-22 10:25:58 -06001055 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001056 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -06001057 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -06001058}
1059
Pavel Begunkov2293b412020-03-07 01:15:39 +03001060enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001061 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +03001062{
1063 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001064 .fn = cancel,
1065 .data = data,
1066 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +03001067 };
Pavel Begunkov2293b412020-03-07 01:15:39 +03001068 int node;
1069
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001070 /*
1071 * First check pending list, if we're lucky we can just remove it
1072 * from there. CANCEL_OK means that the work is returned as-new,
1073 * no completion will be posted for it.
1074 */
Pavel Begunkov2293b412020-03-07 01:15:39 +03001075 for_each_node(node) {
1076 struct io_wqe *wqe = wq->wqes[node];
1077
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001078 io_wqe_cancel_pending_work(wqe, &match);
1079 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001080 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001081 }
1082
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001083 /*
1084 * Now check if a free (going busy) or busy worker has the work
1085 * currently running. If we find it there, we'll return CANCEL_RUNNING
1086 * as an indication that we attempt to signal cancellation. The
1087 * completion will run normally in this case.
1088 */
1089 for_each_node(node) {
1090 struct io_wqe *wqe = wq->wqes[node];
1091
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001092 io_wqe_cancel_running_work(wqe, &match);
1093 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001094 return IO_WQ_CANCEL_RUNNING;
1095 }
1096
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001097 if (match.nr_running)
1098 return IO_WQ_CANCEL_RUNNING;
1099 if (match.nr_pending)
1100 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001101 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001102}
1103
Jens Axboee9418942021-02-19 12:33:30 -07001104static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1105 int sync, void *key)
1106{
1107 struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
Jens Axboef95dc202021-08-31 13:57:32 -06001108 int i;
Jens Axboee9418942021-02-19 12:33:30 -07001109
1110 list_del_init(&wait->entry);
1111
1112 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -06001113 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1114 struct io_wqe_acct *acct = &wqe->acct[i];
1115
1116 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1117 io_wqe_activate_free_worker(wqe, acct);
1118 }
Jens Axboee9418942021-02-19 12:33:30 -07001119 rcu_read_unlock();
Jens Axboee9418942021-02-19 12:33:30 -07001120 return 1;
1121}
1122
Jens Axboe576a3472019-11-25 08:49:20 -07001123struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -06001124{
Jens Axboef95dc202021-08-31 13:57:32 -06001125 int ret, node, i;
Jens Axboe771b53d02019-10-22 10:25:58 -06001126 struct io_wq *wq;
1127
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001128 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001129 return ERR_PTR(-EINVAL);
Pavel Begunkove6ab8992021-06-17 18:13:59 +01001130 if (WARN_ON_ONCE(!bounded))
1131 return ERR_PTR(-EINVAL);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001132
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001133 wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001134 if (!wq)
1135 return ERR_PTR(-ENOMEM);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001136 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1137 if (ret)
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001138 goto err_wq;
Jens Axboe771b53d02019-10-22 10:25:58 -06001139
Jens Axboee9418942021-02-19 12:33:30 -07001140 refcount_inc(&data->hash->refs);
1141 wq->hash = data->hash;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001142 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001143 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -07001144
Jens Axboe43c01fb2020-10-22 09:02:50 -06001145 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +01001146 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -06001147 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001148 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001149
Jens Axboe75634392020-02-11 06:30:06 -07001150 if (!node_online(alloc_node))
1151 alloc_node = NUMA_NO_NODE;
1152 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -06001153 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +01001154 goto err;
Rafael Mendoncab6e2c542022-10-19 22:47:09 -03001155 wq->wqes[node] = wqe;
Jens Axboe0e034962021-06-17 10:08:11 -06001156 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
1157 goto err;
1158 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
Jens Axboe75634392020-02-11 06:30:06 -07001159 wqe->node = alloc_node;
Jens Axboec5def4a2019-11-07 11:41:16 -07001160 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
Jens Axboe728f13e2021-02-21 16:02:53 -07001161 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
Jens Axboec5def4a2019-11-07 11:41:16 -07001162 task_rlimit(current, RLIMIT_NPROC);
Jens Axboee9418942021-02-19 12:33:30 -07001163 INIT_LIST_HEAD(&wqe->wait.entry);
Jens Axboef95dc202021-08-31 13:57:32 -06001164 wqe->wait.func = io_wqe_hash_wake;
1165 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1166 struct io_wqe_acct *acct = &wqe->acct[i];
1167
1168 acct->index = i;
1169 atomic_set(&acct->nr_running, 0);
1170 INIT_WQ_LIST(&acct->work_list);
1171 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001172 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001173 raw_spin_lock_init(&wqe->lock);
Jens Axboe021d1cd2019-11-14 08:00:41 -07001174 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -07001175 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -06001176 }
1177
Jens Axboe685fe7f2021-03-08 09:37:51 -07001178 wq->task = get_task_struct(data->task);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001179 atomic_set(&wq->worker_refs, 1);
1180 init_completion(&wq->worker_done);
1181 return wq;
Jens Axboeb60fda62019-11-19 08:37:07 -07001182err:
Jens Axboedc7bbc92021-03-01 09:09:56 -07001183 io_wq_put_hash(data->hash);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001184 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jens Axboe0e034962021-06-17 10:08:11 -06001185 for_each_node(node) {
1186 if (!wq->wqes[node])
1187 continue;
1188 free_cpumask_var(wq->wqes[node]->cpu_mask);
Jann Horn3fc50ab2019-11-26 19:10:20 +01001189 kfree(wq->wqes[node]);
Jens Axboe0e034962021-06-17 10:08:11 -06001190 }
Jens Axboe43c01fb2020-10-22 09:02:50 -06001191err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -07001192 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -06001193 return ERR_PTR(ret);
1194}
1195
Jens Axboec80ca472021-04-01 19:57:07 -06001196static bool io_task_work_match(struct callback_head *cb, void *data)
1197{
Jens Axboed3e9f732021-08-04 08:37:25 -06001198 struct io_worker *worker;
Jens Axboec80ca472021-04-01 19:57:07 -06001199
Jens Axboe3b33e3f2021-09-08 19:57:26 -06001200 if (cb->func != create_worker_cb && cb->func != create_worker_cont)
Jens Axboec80ca472021-04-01 19:57:07 -06001201 return false;
Jens Axboed3e9f732021-08-04 08:37:25 -06001202 worker = container_of(cb, struct io_worker, create_work);
1203 return worker->wqe->wq == data;
Jens Axboec80ca472021-04-01 19:57:07 -06001204}
1205
Pavel Begunkov17a91052021-05-23 15:48:39 +01001206void io_wq_exit_start(struct io_wq *wq)
1207{
1208 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1209}
1210
Jens Axboe4b4e5bb2021-12-10 08:29:30 -07001211static void io_wq_cancel_tw_create(struct io_wq *wq)
Jens Axboeafcc4012021-02-26 13:48:19 -07001212{
Jens Axboe685fe7f2021-03-08 09:37:51 -07001213 struct callback_head *cb;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001214
Jens Axboec80ca472021-04-01 19:57:07 -06001215 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
Jens Axboed3e9f732021-08-04 08:37:25 -06001216 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001217
Jens Axboed3e9f732021-08-04 08:37:25 -06001218 worker = container_of(cb, struct io_worker, create_work);
Pavel Begunkov7887fea2021-10-29 13:11:33 +01001219 io_worker_cancel_cb(worker);
Jens Axboeb5795782023-01-08 10:39:17 -07001220 /*
1221 * Only the worker continuation helper has worker allocated and
1222 * hence needs freeing.
1223 */
1224 if (cb->func == create_worker_cont)
1225 kfree(worker);
Jens Axboeafcc4012021-02-26 13:48:19 -07001226 }
Jens Axboe4b4e5bb2021-12-10 08:29:30 -07001227}
1228
1229static void io_wq_exit_workers(struct io_wq *wq)
1230{
1231 int node;
1232
1233 if (!wq->task)
1234 return;
1235
1236 io_wq_cancel_tw_create(wq);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001237
1238 rcu_read_lock();
1239 for_each_node(node) {
1240 struct io_wqe *wqe = wq->wqes[node];
1241
1242 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001243 }
1244 rcu_read_unlock();
1245 io_worker_ref_put(wq);
1246 wait_for_completion(&wq->worker_done);
Zqiang3743c172021-05-26 13:08:26 +08001247
1248 for_each_node(node) {
1249 spin_lock_irq(&wq->hash->wait.lock);
1250 list_del_init(&wq->wqes[node]->wait.entry);
1251 spin_unlock_irq(&wq->hash->wait.lock);
1252 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001253 put_task_struct(wq->task);
1254 wq->task = NULL;
Jens Axboeafcc4012021-02-26 13:48:19 -07001255}
1256
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001257static void io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001258{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001259 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001260
Jens Axboe43c01fb2020-10-22 09:02:50 -06001261 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1262
Jens Axboee9418942021-02-19 12:33:30 -07001263 for_each_node(node) {
1264 struct io_wqe *wqe = wq->wqes[node];
Jens Axboef5d2d23b2021-03-25 10:16:12 -06001265 struct io_cb_cancel_data match = {
1266 .fn = io_wq_work_match_all,
1267 .cancel_all = true,
1268 };
1269 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboe0e034962021-06-17 10:08:11 -06001270 free_cpumask_var(wqe->cpu_mask);
Jens Axboee9418942021-02-19 12:33:30 -07001271 kfree(wqe);
1272 }
Jens Axboee9418942021-02-19 12:33:30 -07001273 io_wq_put_hash(wq->hash);
Jens Axboe771b53d02019-10-22 10:25:58 -06001274 kfree(wq);
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001275}
1276
Jens Axboeafcc4012021-02-26 13:48:19 -07001277void io_wq_put_and_exit(struct io_wq *wq)
1278{
Pavel Begunkov17a91052021-05-23 15:48:39 +01001279 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1280
Jens Axboe685fe7f2021-03-08 09:37:51 -07001281 io_wq_exit_workers(wq);
Pavel Begunkov382cb032021-06-14 02:36:13 +01001282 io_wq_destroy(wq);
Jens Axboeafcc4012021-02-26 13:48:19 -07001283}
1284
Jens Axboe0e034962021-06-17 10:08:11 -06001285struct online_data {
1286 unsigned int cpu;
1287 bool online;
1288};
1289
Jens Axboe43c01fb2020-10-22 09:02:50 -06001290static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1291{
Jens Axboe0e034962021-06-17 10:08:11 -06001292 struct online_data *od = data;
Jens Axboe43c01fb2020-10-22 09:02:50 -06001293
Jens Axboe0e034962021-06-17 10:08:11 -06001294 if (od->online)
1295 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1296 else
1297 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001298 return false;
1299}
1300
Jens Axboe0e034962021-06-17 10:08:11 -06001301static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1302{
1303 struct online_data od = {
1304 .cpu = cpu,
1305 .online = online
1306 };
1307 int i;
1308
1309 rcu_read_lock();
1310 for_each_node(i)
1311 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1312 rcu_read_unlock();
1313 return 0;
1314}
1315
Jens Axboe43c01fb2020-10-22 09:02:50 -06001316static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1317{
1318 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001319
Jens Axboe0e034962021-06-17 10:08:11 -06001320 return __io_wq_cpu_online(wq, cpu, true);
1321}
1322
1323static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1324{
1325 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1326
1327 return __io_wq_cpu_online(wq, cpu, false);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001328}
1329
Jens Axboefe764212021-06-17 10:19:54 -06001330int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1331{
1332 int i;
1333
1334 rcu_read_lock();
1335 for_each_node(i) {
1336 struct io_wqe *wqe = wq->wqes[i];
1337
1338 if (mask)
1339 cpumask_copy(wqe->cpu_mask, mask);
1340 else
1341 cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1342 }
1343 rcu_read_unlock();
1344 return 0;
1345}
1346
Jens Axboe2e480052021-08-27 11:33:19 -06001347/*
1348 * Set max number of unbounded workers, returns old value. If new_count is 0,
1349 * then just return the old value.
1350 */
1351int io_wq_max_workers(struct io_wq *wq, int *new_count)
1352{
Beld Zhangcd63d082021-11-02 12:32:08 -06001353 int prev[IO_WQ_ACCT_NR];
1354 bool first_node = true;
1355 int i, node;
Jens Axboe2e480052021-08-27 11:33:19 -06001356
Eugene Syromiatnikovdd47c102021-09-13 17:44:15 +02001357 BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND != (int) IO_WQ_BOUND);
1358 BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1359 BUILD_BUG_ON((int) IO_WQ_ACCT_NR != 2);
1360
Jens Axboe2e480052021-08-27 11:33:19 -06001361 for (i = 0; i < 2; i++) {
1362 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1363 new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1364 }
1365
Beld Zhangcd63d082021-11-02 12:32:08 -06001366 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1367 prev[i] = 0;
1368
Jens Axboe2e480052021-08-27 11:33:19 -06001369 rcu_read_lock();
1370 for_each_node(node) {
Pavel Begunkovbc369922021-10-19 20:31:26 +01001371 struct io_wqe *wqe = wq->wqes[node];
Jens Axboe2e480052021-08-27 11:33:19 -06001372 struct io_wqe_acct *acct;
1373
Pavel Begunkovbc369922021-10-19 20:31:26 +01001374 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -06001375 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
Pavel Begunkovbc369922021-10-19 20:31:26 +01001376 acct = &wqe->acct[i];
Beld Zhangcd63d082021-11-02 12:32:08 -06001377 if (first_node)
1378 prev[i] = max_t(int, acct->max_workers, prev[i]);
Jens Axboe2e480052021-08-27 11:33:19 -06001379 if (new_count[i])
1380 acct->max_workers = new_count[i];
Jens Axboe2e480052021-08-27 11:33:19 -06001381 }
Pavel Begunkovbc369922021-10-19 20:31:26 +01001382 raw_spin_unlock(&wqe->lock);
Beld Zhangcd63d082021-11-02 12:32:08 -06001383 first_node = false;
Jens Axboe2e480052021-08-27 11:33:19 -06001384 }
1385 rcu_read_unlock();
Beld Zhangcd63d082021-11-02 12:32:08 -06001386
1387 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1388 new_count[i] = prev[i];
1389
Jens Axboe2e480052021-08-27 11:33:19 -06001390 return 0;
1391}
1392
Jens Axboe43c01fb2020-10-22 09:02:50 -06001393static __init int io_wq_init(void)
1394{
1395 int ret;
1396
1397 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
Jens Axboe0e034962021-06-17 10:08:11 -06001398 io_wq_cpu_online, io_wq_cpu_offline);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001399 if (ret < 0)
1400 return ret;
1401 io_wq_online = ret;
1402 return 0;
1403}
1404subsys_initcall(io_wq_init);