blob: fe6b2abcaa49aebde9361b8e11c012ced32e716b [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 Begunkov1d5f5ea2021-10-29 13:11:33 +0100143static void create_worker_cb(struct callback_head *cb);
Jens Axboef0127252021-03-03 15:47:04 -0700144
Jens Axboe771b53d02019-10-22 10:25:58 -0600145static bool io_worker_get(struct io_worker *worker)
146{
147 return refcount_inc_not_zero(&worker->ref);
148}
149
150static void io_worker_release(struct io_worker *worker)
151{
152 if (refcount_dec_and_test(&worker->ref))
Jens Axboeeb2de942021-02-23 19:59:06 -0700153 complete(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600154}
155
Pavel Begunkov8418f222021-03-22 01:58:28 +0000156static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
157{
158 return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
159}
160
Jens Axboec5def4a2019-11-07 11:41:16 -0700161static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
162 struct io_wq_work *work)
163{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000164 return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
Jens Axboec5def4a2019-11-07 11:41:16 -0700165}
166
Jens Axboe958234d2021-02-17 09:00:57 -0700167static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700168{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000169 return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
Jens Axboec5def4a2019-11-07 11:41:16 -0700170}
171
Jens Axboe685fe7f2021-03-08 09:37:51 -0700172static void io_worker_ref_put(struct io_wq *wq)
173{
174 if (atomic_dec_and_test(&wq->worker_refs))
175 complete(&wq->worker_done);
176}
177
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100178static void io_worker_cancel_cb(struct io_worker *worker)
179{
180 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
181 struct io_wqe *wqe = worker->wqe;
182 struct io_wq *wq = wqe->wq;
183
184 atomic_dec(&acct->nr_running);
185 raw_spin_lock(&worker->wqe->lock);
186 acct->nr_workers--;
187 raw_spin_unlock(&worker->wqe->lock);
188 io_worker_ref_put(wq);
189 clear_bit_unlock(0, &worker->create_state);
190 io_worker_release(worker);
191}
192
193static bool io_task_worker_match(struct callback_head *cb, void *data)
194{
195 struct io_worker *worker;
196
197 if (cb->func != create_worker_cb)
198 return false;
199 worker = container_of(cb, struct io_worker, create_work);
200 return worker == data;
201}
202
Jens Axboe771b53d02019-10-22 10:25:58 -0600203static void io_worker_exit(struct io_worker *worker)
204{
205 struct io_wqe *wqe = worker->wqe;
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100206 struct io_wq *wq = wqe->wq;
207
208 while (1) {
209 struct callback_head *cb = task_work_cancel_match(wq->task,
210 io_task_worker_match, worker);
211
212 if (!cb)
213 break;
214 io_worker_cancel_cb(worker);
215 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600216
Pavel Begunkovc907e522021-10-23 12:13:55 +0100217 io_worker_release(worker);
Jens Axboeeb2de942021-02-23 19:59:06 -0700218 wait_for_completion(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600219
Jens Axboea9a4aa92021-08-30 06:33:08 -0600220 raw_spin_lock(&wqe->lock);
Jens Axboe83d6c392021-08-03 09:14:35 -0600221 if (worker->flags & IO_WORKER_F_FREE)
Jens Axboebf1daa42021-02-16 18:00:55 -0700222 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700223 list_del_rcu(&worker->all_list);
Jens Axboe83d6c392021-08-03 09:14:35 -0600224 preempt_disable();
225 io_wqe_dec_running(worker);
226 worker->flags = 0;
227 current->flags &= ~PF_IO_WORKER;
228 preempt_enable();
Jens Axboea9a4aa92021-08-30 06:33:08 -0600229 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600230
YueHaibing364b05f2019-11-02 15:55:01 +0800231 kfree_rcu(worker, rcu);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700232 io_worker_ref_put(wqe->wq);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700233 do_exit(0);
Jens Axboe771b53d02019-10-22 10:25:58 -0600234}
235
Jens Axboef95dc202021-08-31 13:57:32 -0600236static inline bool io_acct_run_queue(struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700237{
Jens Axboef95dc202021-08-31 13:57:32 -0600238 if (!wq_list_empty(&acct->work_list) &&
239 !test_bit(IO_ACCT_STALLED_BIT, &acct->flags))
Jens Axboec5def4a2019-11-07 11:41:16 -0700240 return true;
241 return false;
242}
243
244/*
245 * Check head of free list for an available worker. If one isn't available,
Jens Axboe685fe7f2021-03-08 09:37:51 -0700246 * caller must create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700247 */
Jens Axboef95dc202021-08-31 13:57:32 -0600248static bool io_wqe_activate_free_worker(struct io_wqe *wqe,
249 struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700250 __must_hold(RCU)
251{
252 struct hlist_nulls_node *n;
253 struct io_worker *worker;
254
Jens Axboe83d6c392021-08-03 09:14:35 -0600255 /*
256 * Iterate free_list and see if we can find an idle worker to
257 * activate. If a given worker is on the free_list but in the process
258 * of exiting, keep trying.
259 */
260 hlist_nulls_for_each_entry_rcu(worker, n, &wqe->free_list, nulls_node) {
261 if (!io_worker_get(worker))
262 continue;
Jens Axboef95dc202021-08-31 13:57:32 -0600263 if (io_wqe_get_acct(worker) != acct) {
264 io_worker_release(worker);
265 continue;
266 }
Jens Axboe83d6c392021-08-03 09:14:35 -0600267 if (wake_up_process(worker->task)) {
268 io_worker_release(worker);
269 return true;
270 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700271 io_worker_release(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700272 }
273
274 return false;
275}
276
277/*
278 * 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 -0700279 * below the max number of workers, create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700280 */
Jens Axboe3146cba2021-09-01 11:20:10 -0600281static bool io_wqe_create_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700282{
Jens Axboec5def4a2019-11-07 11:41:16 -0700283 /*
284 * Most likely an attempt to queue unbounded work on an io_wq that
285 * wasn't setup with any unbounded workers.
286 */
Pavel Begunkove6ab8992021-06-17 18:13:59 +0100287 if (unlikely(!acct->max_workers))
288 pr_warn_once("io-wq is not configured for unbound workers");
Jens Axboec5def4a2019-11-07 11:41:16 -0700289
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600290 raw_spin_lock(&wqe->lock);
Hao Xu7a842fb2021-09-12 03:40:50 +0800291 if (acct->nr_workers == acct->max_workers) {
292 raw_spin_unlock(&wqe->lock);
293 return true;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600294 }
Hao Xu7a842fb2021-09-12 03:40:50 +0800295 acct->nr_workers++;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600296 raw_spin_unlock(&wqe->lock);
Hao Xu7a842fb2021-09-12 03:40:50 +0800297 atomic_inc(&acct->nr_running);
298 atomic_inc(&wqe->wq->worker_refs);
299 return create_io_worker(wqe->wq, wqe, acct->index);
Jens Axboec5def4a2019-11-07 11:41:16 -0700300}
301
Jens Axboe958234d2021-02-17 09:00:57 -0700302static void io_wqe_inc_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700303{
Jens Axboe958234d2021-02-17 09:00:57 -0700304 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700305
306 atomic_inc(&acct->nr_running);
307}
308
Jens Axboe685fe7f2021-03-08 09:37:51 -0700309static void create_worker_cb(struct callback_head *cb)
310{
Jens Axboed3e9f732021-08-04 08:37:25 -0600311 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700312 struct io_wq *wq;
Hao Xu21698272021-08-05 18:05:38 +0800313 struct io_wqe *wqe;
314 struct io_wqe_acct *acct;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600315 bool do_create = false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700316
Jens Axboed3e9f732021-08-04 08:37:25 -0600317 worker = container_of(cb, struct io_worker, create_work);
318 wqe = worker->wqe;
Hao Xu21698272021-08-05 18:05:38 +0800319 wq = wqe->wq;
Jens Axboed3e9f732021-08-04 08:37:25 -0600320 acct = &wqe->acct[worker->create_index];
Jens Axboea9a4aa92021-08-30 06:33:08 -0600321 raw_spin_lock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800322 if (acct->nr_workers < acct->max_workers) {
Hao Xu21698272021-08-05 18:05:38 +0800323 acct->nr_workers++;
Hao Xu49e7f0c2021-08-08 21:54:33 +0800324 do_create = true;
325 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600326 raw_spin_unlock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800327 if (do_create) {
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600328 create_io_worker(wq, wqe, worker->create_index);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800329 } else {
330 atomic_dec(&acct->nr_running);
331 io_worker_ref_put(wq);
332 }
Jens Axboed3e9f732021-08-04 08:37:25 -0600333 clear_bit_unlock(0, &worker->create_state);
334 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700335}
336
Jens Axboe3146cba2021-09-01 11:20:10 -0600337static bool io_queue_worker_create(struct io_worker *worker,
338 struct io_wqe_acct *acct,
339 task_work_func_t func)
Jens Axboe685fe7f2021-03-08 09:37:51 -0700340{
Jens Axboe3146cba2021-09-01 11:20:10 -0600341 struct io_wqe *wqe = worker->wqe;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700342 struct io_wq *wq = wqe->wq;
343
344 /* raced with exit, just ignore create call */
345 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
346 goto fail;
Jens Axboed3e9f732021-08-04 08:37:25 -0600347 if (!io_worker_get(worker))
348 goto fail;
349 /*
350 * create_state manages ownership of create_work/index. We should
351 * only need one entry per worker, as the worker going to sleep
352 * will trigger the condition, and waking will clear it once it
353 * runs the task_work.
354 */
355 if (test_bit(0, &worker->create_state) ||
356 test_and_set_bit_lock(0, &worker->create_state))
357 goto fail_release;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700358
Jens Axboe3146cba2021-09-01 11:20:10 -0600359 init_task_work(&worker->create_work, func);
Jens Axboed3e9f732021-08-04 08:37:25 -0600360 worker->create_index = acct->index;
Bixuan Cui71e1cef2021-09-11 16:58:47 +0800361 if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL)) {
362 clear_bit_unlock(0, &worker->create_state);
Jens Axboe3146cba2021-09-01 11:20:10 -0600363 return true;
Bixuan Cui71e1cef2021-09-11 16:58:47 +0800364 }
Jens Axboed3e9f732021-08-04 08:37:25 -0600365 clear_bit_unlock(0, &worker->create_state);
366fail_release:
367 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700368fail:
369 atomic_dec(&acct->nr_running);
370 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600371 return false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700372}
373
Jens Axboe958234d2021-02-17 09:00:57 -0700374static void io_wqe_dec_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700375 __must_hold(wqe->lock)
376{
Jens Axboe958234d2021-02-17 09:00:57 -0700377 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
378 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700379
Jens Axboe685fe7f2021-03-08 09:37:51 -0700380 if (!(worker->flags & IO_WORKER_F_UP))
381 return;
382
Jens Axboef95dc202021-08-31 13:57:32 -0600383 if (atomic_dec_and_test(&acct->nr_running) && io_acct_run_queue(acct)) {
Jens Axboe685fe7f2021-03-08 09:37:51 -0700384 atomic_inc(&acct->nr_running);
385 atomic_inc(&wqe->wq->worker_refs);
Jens Axboe3146cba2021-09-01 11:20:10 -0600386 io_queue_worker_create(worker, acct, create_worker_cb);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700387 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700388}
389
Jens Axboe771b53d02019-10-22 10:25:58 -0600390/*
391 * Worker will start processing some work. Move it to the busy list, if
392 * it's currently on the freelist
393 */
394static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
395 struct io_wq_work *work)
396 __must_hold(wqe->lock)
397{
398 if (worker->flags & IO_WORKER_F_FREE) {
399 worker->flags &= ~IO_WORKER_F_FREE;
400 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600401 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600402}
403
404/*
405 * No work, worker going to sleep. Move to freelist, and unuse mm if we
406 * have one attached. Dropping the mm may potentially sleep, so we drop
407 * the lock in that case and return success. Since the caller has to
408 * retry the loop in that case (we changed task state), we don't regrab
409 * the lock if we return success.
410 */
Jens Axboec6d77d92021-02-15 13:26:34 -0700411static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600412 __must_hold(wqe->lock)
413{
414 if (!(worker->flags & IO_WORKER_F_FREE)) {
415 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700416 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600417 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600418}
419
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300420static inline unsigned int io_get_work_hash(struct io_wq_work *work)
421{
422 return work->flags >> IO_WQ_HASH_SHIFT;
423}
424
Jens Axboee9418942021-02-19 12:33:30 -0700425static void io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
426{
427 struct io_wq *wq = wqe->wq;
428
Jens Axboe08bdbd32021-08-31 06:57:25 -0600429 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700430 if (list_empty(&wqe->wait.entry)) {
431 __add_wait_queue(&wq->hash->wait, &wqe->wait);
432 if (!test_bit(hash, &wq->hash->map)) {
433 __set_current_state(TASK_RUNNING);
434 list_del_init(&wqe->wait.entry);
435 }
436 }
Jens Axboe08bdbd32021-08-31 06:57:25 -0600437 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700438}
439
Jens Axboef95dc202021-08-31 13:57:32 -0600440static struct io_wq_work *io_get_next_work(struct io_wqe_acct *acct,
Jens Axboe0242f642021-08-31 13:53:00 -0600441 struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600442 __must_hold(wqe->lock)
443{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700444 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300445 struct io_wq_work *work, *tail;
Jens Axboee9418942021-02-19 12:33:30 -0700446 unsigned int stall_hash = -1U;
Jens Axboef95dc202021-08-31 13:57:32 -0600447 struct io_wqe *wqe = worker->wqe;
Jens Axboe771b53d02019-10-22 10:25:58 -0600448
Jens Axboef95dc202021-08-31 13:57:32 -0600449 wq_list_for_each(node, prev, &acct->work_list) {
Jens Axboee9418942021-02-19 12:33:30 -0700450 unsigned int hash;
451
Jens Axboe6206f0e2019-11-26 11:59:32 -0700452 work = container_of(node, struct io_wq_work, list);
453
Jens Axboe771b53d02019-10-22 10:25:58 -0600454 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300455 if (!io_wq_is_hashed(work)) {
Jens Axboef95dc202021-08-31 13:57:32 -0600456 wq_list_del(&acct->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600457 return work;
458 }
459
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300460 hash = io_get_work_hash(work);
Jens Axboee9418942021-02-19 12:33:30 -0700461 /* all items with this hash lie in [work, tail] */
462 tail = wqe->hash_tail[hash];
463
464 /* hashed, can run if not already running */
465 if (!test_and_set_bit(hash, &wqe->wq->hash->map)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300466 wqe->hash_tail[hash] = NULL;
Jens Axboef95dc202021-08-31 13:57:32 -0600467 wq_list_cut(&acct->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600468 return work;
469 }
Jens Axboee9418942021-02-19 12:33:30 -0700470 if (stall_hash == -1U)
471 stall_hash = hash;
472 /* fast forward to a next hash, for-each will fix up @prev */
473 node = &tail->list;
474 }
475
476 if (stall_hash != -1U) {
Jens Axboe0242f642021-08-31 13:53:00 -0600477 /*
478 * Set this before dropping the lock to avoid racing with new
479 * work being added and clearing the stalled bit.
480 */
Jens Axboef95dc202021-08-31 13:57:32 -0600481 set_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboee9418942021-02-19 12:33:30 -0700482 raw_spin_unlock(&wqe->lock);
483 io_wait_on_hash(wqe, stall_hash);
484 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600485 }
486
487 return NULL;
488}
489
Jens Axboe00ddff42021-03-21 07:06:56 -0600490static bool io_flush_signals(void)
Jens Axboecccf0ee2020-01-27 16:34:48 -0700491{
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600492 if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL))) {
Jens Axboe00ddff42021-03-21 07:06:56 -0600493 __set_current_state(TASK_RUNNING);
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600494 tracehook_notify_signal();
Jens Axboe00ddff42021-03-21 07:06:56 -0600495 return true;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700496 }
Jens Axboe00ddff42021-03-21 07:06:56 -0600497 return false;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300498}
499
500static void io_assign_current_work(struct io_worker *worker,
501 struct io_wq_work *work)
502{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300503 if (work) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700504 io_flush_signals();
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300505 cond_resched();
506 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300507
Jens Axboea9a4aa92021-08-30 06:33:08 -0600508 spin_lock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300509 worker->cur_work = work;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600510 spin_unlock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300511}
512
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300513static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
514
Jens Axboe771b53d02019-10-22 10:25:58 -0600515static void io_worker_handle_work(struct io_worker *worker)
516 __releases(wqe->lock)
517{
Jens Axboef95dc202021-08-31 13:57:32 -0600518 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600519 struct io_wqe *wqe = worker->wqe;
520 struct io_wq *wq = wqe->wq;
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100521 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
Jens Axboe771b53d02019-10-22 10:25:58 -0600522
523 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300524 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300525get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600526 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600527 * If we got some work, mark us as busy. If we didn't, but
528 * the list isn't empty, it means we stalled on hashed work.
529 * Mark us stalled so we don't keep looking for work when we
530 * can't make progress, any work completion or insertion will
531 * clear the stalled flag.
532 */
Jens Axboef95dc202021-08-31 13:57:32 -0600533 work = io_get_next_work(acct, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600534 if (work)
535 __io_worker_busy(wqe, worker, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600536
Jens Axboea9a4aa92021-08-30 06:33:08 -0600537 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600538 if (!work)
539 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300540 io_assign_current_work(worker, work);
Jens Axboee9418942021-02-19 12:33:30 -0700541 __set_current_state(TASK_RUNNING);
Jens Axboe36c2f922019-11-13 09:43:34 -0700542
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300543 /* handle a whole dependent link */
544 do {
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000545 struct io_wq_work *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300546 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700547
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300548 next_hashed = wq_next_work(work);
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100549
550 if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
551 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000552 wq->do_work(work);
553 io_assign_current_work(worker, NULL);
Jens Axboe36c2f922019-11-13 09:43:34 -0700554
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000555 linked = wq->free_work(work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300556 work = next_hashed;
557 if (!work && linked && !io_wq_is_hashed(linked)) {
558 work = linked;
559 linked = NULL;
560 }
561 io_assign_current_work(worker, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300562 if (linked)
563 io_wqe_enqueue(wqe, linked);
564
565 if (hash != -1U && !next_hashed) {
Jens Axboee9418942021-02-19 12:33:30 -0700566 clear_bit(hash, &wq->hash->map);
Jens Axboef95dc202021-08-31 13:57:32 -0600567 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboee9418942021-02-19 12:33:30 -0700568 if (wq_has_sleeper(&wq->hash->wait))
569 wake_up(&wq->hash->wait);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600570 raw_spin_lock(&wqe->lock);
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300571 /* skip unnecessary unlock-lock wqe->lock */
572 if (!work)
573 goto get_next;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600574 raw_spin_unlock(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300575 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300576 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700577
Jens Axboea9a4aa92021-08-30 06:33:08 -0600578 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600579 } while (1);
580}
581
Jens Axboe771b53d02019-10-22 10:25:58 -0600582static int io_wqe_worker(void *data)
583{
584 struct io_worker *worker = data;
Jens Axboef95dc202021-08-31 13:57:32 -0600585 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600586 struct io_wqe *wqe = worker->wqe;
587 struct io_wq *wq = wqe->wq;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600588 bool last_timeout = false;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700589 char buf[TASK_COMM_LEN];
Jens Axboe771b53d02019-10-22 10:25:58 -0600590
Jens Axboe46fe18b2021-03-04 12:39:36 -0700591 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700592
Jens Axboe685fe7f2021-03-08 09:37:51 -0700593 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700594 set_task_comm(current, buf);
Jens Axboe771b53d02019-10-22 10:25:58 -0600595
596 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe16efa4f2021-03-12 20:26:13 -0700597 long ret;
598
Jens Axboe506d95f2019-12-07 21:03:59 -0700599 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700600loop:
Jens Axboea9a4aa92021-08-30 06:33:08 -0600601 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -0600602 if (io_acct_run_queue(acct)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600603 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700604 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600605 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600606 /* timed out, exit unless we're the last worker */
607 if (last_timeout && acct->nr_workers > 1) {
Hao Xu767a65e2021-09-12 03:40:52 +0800608 acct->nr_workers--;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600609 raw_spin_unlock(&wqe->lock);
610 __set_current_state(TASK_RUNNING);
611 break;
612 }
613 last_timeout = false;
Jens Axboec6d77d92021-02-15 13:26:34 -0700614 __io_worker_idle(wqe, worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600615 raw_spin_unlock(&wqe->lock);
Jens Axboe00ddff42021-03-21 07:06:56 -0600616 if (io_flush_signals())
617 continue;
Jens Axboe16efa4f2021-03-12 20:26:13 -0700618 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600619 if (signal_pending(current)) {
620 struct ksignal ksig;
621
622 if (!get_signal(&ksig))
623 continue;
Jens Axboe78f88762021-09-27 10:04:10 -0600624 break;
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600625 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600626 last_timeout = !ret;
Jens Axboe771b53d02019-10-22 10:25:58 -0600627 }
628
Jens Axboe771b53d02019-10-22 10:25:58 -0600629 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboea9a4aa92021-08-30 06:33:08 -0600630 raw_spin_lock(&wqe->lock);
Pavel Begunkove5872272021-06-14 02:36:17 +0100631 io_worker_handle_work(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600632 }
633
634 io_worker_exit(worker);
635 return 0;
636}
637
638/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600639 * Called when a worker is scheduled in. Mark us as currently running.
640 */
641void io_wq_worker_running(struct task_struct *tsk)
642{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700643 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600644
Jens Axboe3bfe6102021-02-16 14:15:30 -0700645 if (!worker)
646 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600647 if (!(worker->flags & IO_WORKER_F_UP))
648 return;
649 if (worker->flags & IO_WORKER_F_RUNNING)
650 return;
651 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboe958234d2021-02-17 09:00:57 -0700652 io_wqe_inc_running(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600653}
654
655/*
656 * Called when worker is going to sleep. If there are no workers currently
Jens Axboe685fe7f2021-03-08 09:37:51 -0700657 * running and we have work pending, wake up a free one or create a new one.
Jens Axboe771b53d02019-10-22 10:25:58 -0600658 */
659void io_wq_worker_sleeping(struct task_struct *tsk)
660{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700661 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600662
Jens Axboe3bfe6102021-02-16 14:15:30 -0700663 if (!worker)
664 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600665 if (!(worker->flags & IO_WORKER_F_UP))
666 return;
667 if (!(worker->flags & IO_WORKER_F_RUNNING))
668 return;
669
670 worker->flags &= ~IO_WORKER_F_RUNNING;
671
Jens Axboea9a4aa92021-08-30 06:33:08 -0600672 raw_spin_lock(&worker->wqe->lock);
Jens Axboe958234d2021-02-17 09:00:57 -0700673 io_wqe_dec_running(worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600674 raw_spin_unlock(&worker->wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600675}
676
Jens Axboe3146cba2021-09-01 11:20:10 -0600677static void io_init_new_worker(struct io_wqe *wqe, struct io_worker *worker,
678 struct task_struct *tsk)
Jens Axboe3bfe6102021-02-16 14:15:30 -0700679{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700680 tsk->pf_io_worker = worker;
681 worker->task = tsk;
Jens Axboe0e034962021-06-17 10:08:11 -0600682 set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
Jens Axboee22bc9b2021-03-09 19:49:02 -0700683 tsk->flags |= PF_NO_SETAFFINITY;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700684
Jens Axboea9a4aa92021-08-30 06:33:08 -0600685 raw_spin_lock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700686 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
687 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
688 worker->flags |= IO_WORKER_F_FREE;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600689 raw_spin_unlock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700690 wake_up_new_task(tsk);
Jens Axboe771b53d02019-10-22 10:25:58 -0600691}
692
Jens Axboe3146cba2021-09-01 11:20:10 -0600693static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
694{
695 return true;
696}
697
698static inline bool io_should_retry_thread(long err)
699{
700 switch (err) {
701 case -EAGAIN:
702 case -ERESTARTSYS:
703 case -ERESTARTNOINTR:
704 case -ERESTARTNOHAND:
705 return true;
706 default:
707 return false;
708 }
709}
710
711static void create_worker_cont(struct callback_head *cb)
712{
713 struct io_worker *worker;
714 struct task_struct *tsk;
715 struct io_wqe *wqe;
716
717 worker = container_of(cb, struct io_worker, create_work);
718 clear_bit_unlock(0, &worker->create_state);
719 wqe = worker->wqe;
720 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
721 if (!IS_ERR(tsk)) {
722 io_init_new_worker(wqe, worker, tsk);
723 io_worker_release(worker);
724 return;
725 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
726 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
727
728 atomic_dec(&acct->nr_running);
729 raw_spin_lock(&wqe->lock);
730 acct->nr_workers--;
731 if (!acct->nr_workers) {
732 struct io_cb_cancel_data match = {
733 .fn = io_wq_work_match_all,
734 .cancel_all = true,
735 };
736
737 while (io_acct_cancel_pending_work(wqe, acct, &match))
738 raw_spin_lock(&wqe->lock);
739 }
740 raw_spin_unlock(&wqe->lock);
741 io_worker_ref_put(wqe->wq);
Qiang.zhang66e70be2021-09-09 19:58:22 +0800742 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600743 return;
744 }
745
746 /* re-create attempts grab a new worker ref, drop the existing one */
747 io_worker_release(worker);
748 schedule_work(&worker->work);
749}
750
751static void io_workqueue_create(struct work_struct *work)
752{
753 struct io_worker *worker = container_of(work, struct io_worker, work);
754 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
755
Bixuan Cui71e1cef2021-09-11 16:58:47 +0800756 if (!io_queue_worker_create(worker, acct, create_worker_cont))
Qiang.zhang66e70be2021-09-09 19:58:22 +0800757 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600758}
759
760static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
761{
762 struct io_wqe_acct *acct = &wqe->acct[index];
763 struct io_worker *worker;
764 struct task_struct *tsk;
765
766 __set_current_state(TASK_RUNNING);
767
768 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
769 if (!worker) {
770fail:
771 atomic_dec(&acct->nr_running);
772 raw_spin_lock(&wqe->lock);
773 acct->nr_workers--;
774 raw_spin_unlock(&wqe->lock);
775 io_worker_ref_put(wq);
776 return false;
777 }
778
779 refcount_set(&worker->ref, 1);
780 worker->wqe = wqe;
781 spin_lock_init(&worker->lock);
782 init_completion(&worker->ref_done);
783
784 if (index == IO_WQ_ACCT_BOUND)
785 worker->flags |= IO_WORKER_F_BOUND;
786
787 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
788 if (!IS_ERR(tsk)) {
789 io_init_new_worker(wqe, worker, tsk);
790 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
Qiang.zhang66e70be2021-09-09 19:58:22 +0800791 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600792 goto fail;
793 } else {
794 INIT_WORK(&worker->work, io_workqueue_create);
795 schedule_work(&worker->work);
796 }
797
798 return true;
799}
800
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800801/*
802 * Iterate the passed in list and call the specific function for each
803 * worker that isn't exiting
804 */
805static bool io_wq_for_each_worker(struct io_wqe *wqe,
806 bool (*func)(struct io_worker *, void *),
807 void *data)
808{
809 struct io_worker *worker;
810 bool ret = false;
811
812 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
813 if (io_worker_get(worker)) {
814 /* no task if node is/was offline */
815 if (worker->task)
816 ret = func(worker, data);
817 io_worker_release(worker);
818 if (ret)
819 break;
820 }
821 }
822
823 return ret;
824}
825
826static bool io_wq_worker_wake(struct io_worker *worker, void *data)
827{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700828 set_notify_signal(worker->task);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800829 wake_up_process(worker->task);
830 return false;
831}
832
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300833static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300834{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300835 struct io_wq *wq = wqe->wq;
836
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300837 do {
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300838 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000839 wq->do_work(work);
840 work = wq->free_work(work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300841 } while (work);
842}
843
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300844static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
845{
Jens Axboef95dc202021-08-31 13:57:32 -0600846 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300847 unsigned int hash;
848 struct io_wq_work *tail;
849
850 if (!io_wq_is_hashed(work)) {
851append:
Jens Axboef95dc202021-08-31 13:57:32 -0600852 wq_list_add_tail(&work->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300853 return;
854 }
855
856 hash = io_get_work_hash(work);
857 tail = wqe->hash_tail[hash];
858 wqe->hash_tail[hash] = work;
859 if (!tail)
860 goto append;
861
Jens Axboef95dc202021-08-31 13:57:32 -0600862 wq_list_add_after(&work->list, &tail->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300863}
864
Pavel Begunkov713b9822021-09-08 10:09:29 +0100865static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
866{
867 return work == data;
868}
869
Jens Axboe771b53d02019-10-22 10:25:58 -0600870static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
871{
Jens Axboec5def4a2019-11-07 11:41:16 -0700872 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600873 unsigned work_flags = work->flags;
874 bool do_create;
Jens Axboe771b53d02019-10-22 10:25:58 -0600875
Jens Axboe991468d2021-07-23 11:53:54 -0600876 /*
877 * If io-wq is exiting for this task, or if the request has explicitly
878 * been marked as one that should not get executed, cancel it here.
879 */
880 if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
881 (work->flags & IO_WQ_WORK_CANCEL)) {
yangerkun70e35122021-03-09 11:04:10 +0800882 io_run_cancel(work, wqe);
Jens Axboe4fb6ac32021-02-25 10:17:09 -0700883 return;
884 }
885
Jens Axboea9a4aa92021-08-30 06:33:08 -0600886 raw_spin_lock(&wqe->lock);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300887 io_wqe_insert_work(wqe, work);
Jens Axboef95dc202021-08-31 13:57:32 -0600888 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600889
890 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -0600891 do_create = !io_wqe_activate_free_worker(wqe, acct);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600892 rcu_read_unlock();
893
Jens Axboea9a4aa92021-08-30 06:33:08 -0600894 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600895
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600896 if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
Jens Axboe3146cba2021-09-01 11:20:10 -0600897 !atomic_read(&acct->nr_running))) {
898 bool did_create;
899
900 did_create = io_wqe_create_worker(wqe, acct);
Pavel Begunkov713b9822021-09-08 10:09:29 +0100901 if (likely(did_create))
902 return;
903
904 raw_spin_lock(&wqe->lock);
905 /* fatal condition, failed to create the first worker */
906 if (!acct->nr_workers) {
907 struct io_cb_cancel_data match = {
908 .fn = io_wq_work_match_item,
909 .data = work,
910 .cancel_all = false,
911 };
912
913 if (io_acct_cancel_pending_work(wqe, acct, &match))
914 raw_spin_lock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600915 }
Pavel Begunkov713b9822021-09-08 10:09:29 +0100916 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600917 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600918}
919
920void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
921{
922 struct io_wqe *wqe = wq->wqes[numa_node_id()];
923
924 io_wqe_enqueue(wqe, work);
925}
926
927/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300928 * Work items that hash to the same value will not be done in parallel.
929 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600930 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300931void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600932{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300933 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600934
935 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
936 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600937}
938
Pavel Begunkov2293b412020-03-07 01:15:39 +0300939static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600940{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300941 struct io_cb_cancel_data *match = data;
Jens Axboe62755e32019-10-28 21:49:21 -0600942
943 /*
944 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700945 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600946 */
Jens Axboea9a4aa92021-08-30 06:33:08 -0600947 spin_lock(&worker->lock);
Jens Axboe62755e32019-10-28 21:49:21 -0600948 if (worker->cur_work &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300949 match->fn(worker->cur_work, match->data)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700950 set_notify_signal(worker->task);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300951 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600952 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600953 spin_unlock(&worker->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600954
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300955 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600956}
957
Pavel Begunkov204361a2020-08-23 20:33:10 +0300958static inline void io_wqe_remove_pending(struct io_wqe *wqe,
959 struct io_wq_work *work,
960 struct io_wq_work_node *prev)
961{
Jens Axboef95dc202021-08-31 13:57:32 -0600962 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov204361a2020-08-23 20:33:10 +0300963 unsigned int hash = io_get_work_hash(work);
964 struct io_wq_work *prev_work = NULL;
965
966 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
967 if (prev)
968 prev_work = container_of(prev, struct io_wq_work, list);
969 if (prev_work && io_get_work_hash(prev_work) == hash)
970 wqe->hash_tail[hash] = prev_work;
971 else
972 wqe->hash_tail[hash] = NULL;
973 }
Jens Axboef95dc202021-08-31 13:57:32 -0600974 wq_list_del(&acct->work_list, &work->list, prev);
Pavel Begunkov204361a2020-08-23 20:33:10 +0300975}
976
Jens Axboe3146cba2021-09-01 11:20:10 -0600977static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
978 struct io_wqe_acct *acct,
979 struct io_cb_cancel_data *match)
980 __releases(wqe->lock)
Jens Axboe771b53d02019-10-22 10:25:58 -0600981{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700982 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -0600983 struct io_wq_work *work;
Jens Axboe771b53d02019-10-22 10:25:58 -0600984
Jens Axboe3146cba2021-09-01 11:20:10 -0600985 wq_list_for_each(node, prev, &acct->work_list) {
986 work = container_of(node, struct io_wq_work, list);
987 if (!match->fn(work, match->data))
988 continue;
989 io_wqe_remove_pending(wqe, work, prev);
990 raw_spin_unlock(&wqe->lock);
991 io_run_cancel(work, wqe);
992 match->nr_pending++;
993 /* not safe to continue after unlock */
994 return true;
995 }
996
997 return false;
998}
999
1000static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
1001 struct io_cb_cancel_data *match)
1002{
1003 int i;
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001004retry:
Jens Axboea9a4aa92021-08-30 06:33:08 -06001005 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -06001006 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1007 struct io_wqe_acct *acct = io_get_acct(wqe, i == 0);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001008
Jens Axboe3146cba2021-09-01 11:20:10 -06001009 if (io_acct_cancel_pending_work(wqe, acct, match)) {
1010 if (match->cancel_all)
1011 goto retry;
1012 return;
Jens Axboef95dc202021-08-31 13:57:32 -06001013 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001014 }
Jens Axboea9a4aa92021-08-30 06:33:08 -06001015 raw_spin_unlock(&wqe->lock);
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001016}
Jens Axboe771b53d02019-10-22 10:25:58 -06001017
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001018static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001019 struct io_cb_cancel_data *match)
1020{
Jens Axboe771b53d02019-10-22 10:25:58 -06001021 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001022 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -06001023 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -06001024}
1025
Pavel Begunkov2293b412020-03-07 01:15:39 +03001026enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001027 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +03001028{
1029 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001030 .fn = cancel,
1031 .data = data,
1032 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +03001033 };
Pavel Begunkov2293b412020-03-07 01:15:39 +03001034 int node;
1035
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001036 /*
1037 * First check pending list, if we're lucky we can just remove it
1038 * from there. CANCEL_OK means that the work is returned as-new,
1039 * no completion will be posted for it.
1040 */
Pavel Begunkov2293b412020-03-07 01:15:39 +03001041 for_each_node(node) {
1042 struct io_wqe *wqe = wq->wqes[node];
1043
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001044 io_wqe_cancel_pending_work(wqe, &match);
1045 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001046 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001047 }
1048
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001049 /*
1050 * Now check if a free (going busy) or busy worker has the work
1051 * currently running. If we find it there, we'll return CANCEL_RUNNING
1052 * as an indication that we attempt to signal cancellation. The
1053 * completion will run normally in this case.
1054 */
1055 for_each_node(node) {
1056 struct io_wqe *wqe = wq->wqes[node];
1057
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001058 io_wqe_cancel_running_work(wqe, &match);
1059 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001060 return IO_WQ_CANCEL_RUNNING;
1061 }
1062
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001063 if (match.nr_running)
1064 return IO_WQ_CANCEL_RUNNING;
1065 if (match.nr_pending)
1066 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001067 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001068}
1069
Jens Axboee9418942021-02-19 12:33:30 -07001070static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1071 int sync, void *key)
1072{
1073 struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
Jens Axboef95dc202021-08-31 13:57:32 -06001074 int i;
Jens Axboee9418942021-02-19 12:33:30 -07001075
1076 list_del_init(&wait->entry);
1077
1078 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -06001079 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1080 struct io_wqe_acct *acct = &wqe->acct[i];
1081
1082 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1083 io_wqe_activate_free_worker(wqe, acct);
1084 }
Jens Axboee9418942021-02-19 12:33:30 -07001085 rcu_read_unlock();
Jens Axboee9418942021-02-19 12:33:30 -07001086 return 1;
1087}
1088
Jens Axboe576a3472019-11-25 08:49:20 -07001089struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -06001090{
Jens Axboef95dc202021-08-31 13:57:32 -06001091 int ret, node, i;
Jens Axboe771b53d02019-10-22 10:25:58 -06001092 struct io_wq *wq;
1093
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001094 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001095 return ERR_PTR(-EINVAL);
Pavel Begunkove6ab8992021-06-17 18:13:59 +01001096 if (WARN_ON_ONCE(!bounded))
1097 return ERR_PTR(-EINVAL);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001098
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001099 wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001100 if (!wq)
1101 return ERR_PTR(-ENOMEM);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001102 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1103 if (ret)
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001104 goto err_wq;
Jens Axboe771b53d02019-10-22 10:25:58 -06001105
Jens Axboee9418942021-02-19 12:33:30 -07001106 refcount_inc(&data->hash->refs);
1107 wq->hash = data->hash;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001108 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001109 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -07001110
Jens Axboe43c01fb2020-10-22 09:02:50 -06001111 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +01001112 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -06001113 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001114 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001115
Jens Axboe75634392020-02-11 06:30:06 -07001116 if (!node_online(alloc_node))
1117 alloc_node = NUMA_NO_NODE;
1118 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -06001119 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +01001120 goto err;
Jens Axboe0e034962021-06-17 10:08:11 -06001121 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
1122 goto err;
1123 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
Jann Horn3fc50ab2019-11-26 19:10:20 +01001124 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001125 wqe->node = alloc_node;
Jens Axboec5def4a2019-11-07 11:41:16 -07001126 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
Jens Axboe728f13e2021-02-21 16:02:53 -07001127 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
Jens Axboec5def4a2019-11-07 11:41:16 -07001128 task_rlimit(current, RLIMIT_NPROC);
Jens Axboee9418942021-02-19 12:33:30 -07001129 INIT_LIST_HEAD(&wqe->wait.entry);
Jens Axboef95dc202021-08-31 13:57:32 -06001130 wqe->wait.func = io_wqe_hash_wake;
1131 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1132 struct io_wqe_acct *acct = &wqe->acct[i];
1133
1134 acct->index = i;
1135 atomic_set(&acct->nr_running, 0);
1136 INIT_WQ_LIST(&acct->work_list);
1137 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001138 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001139 raw_spin_lock_init(&wqe->lock);
Jens Axboe021d1cd2019-11-14 08:00:41 -07001140 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -07001141 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -06001142 }
1143
Jens Axboe685fe7f2021-03-08 09:37:51 -07001144 wq->task = get_task_struct(data->task);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001145 atomic_set(&wq->worker_refs, 1);
1146 init_completion(&wq->worker_done);
1147 return wq;
Jens Axboeb60fda62019-11-19 08:37:07 -07001148err:
Jens Axboedc7bbc92021-03-01 09:09:56 -07001149 io_wq_put_hash(data->hash);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001150 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jens Axboe0e034962021-06-17 10:08:11 -06001151 for_each_node(node) {
1152 if (!wq->wqes[node])
1153 continue;
1154 free_cpumask_var(wq->wqes[node]->cpu_mask);
Jann Horn3fc50ab2019-11-26 19:10:20 +01001155 kfree(wq->wqes[node]);
Jens Axboe0e034962021-06-17 10:08:11 -06001156 }
Jens Axboe43c01fb2020-10-22 09:02:50 -06001157err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -07001158 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -06001159 return ERR_PTR(ret);
1160}
1161
Jens Axboec80ca472021-04-01 19:57:07 -06001162static bool io_task_work_match(struct callback_head *cb, void *data)
1163{
Jens Axboed3e9f732021-08-04 08:37:25 -06001164 struct io_worker *worker;
Jens Axboec80ca472021-04-01 19:57:07 -06001165
Jens Axboe3b33e3f2021-09-08 19:57:26 -06001166 if (cb->func != create_worker_cb && cb->func != create_worker_cont)
Jens Axboec80ca472021-04-01 19:57:07 -06001167 return false;
Jens Axboed3e9f732021-08-04 08:37:25 -06001168 worker = container_of(cb, struct io_worker, create_work);
1169 return worker->wqe->wq == data;
Jens Axboec80ca472021-04-01 19:57:07 -06001170}
1171
Pavel Begunkov17a91052021-05-23 15:48:39 +01001172void io_wq_exit_start(struct io_wq *wq)
1173{
1174 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1175}
1176
Jens Axboe685fe7f2021-03-08 09:37:51 -07001177static void io_wq_exit_workers(struct io_wq *wq)
Jens Axboeafcc4012021-02-26 13:48:19 -07001178{
Jens Axboe685fe7f2021-03-08 09:37:51 -07001179 struct callback_head *cb;
1180 int node;
1181
Jens Axboe685fe7f2021-03-08 09:37:51 -07001182 if (!wq->task)
1183 return;
1184
Jens Axboec80ca472021-04-01 19:57:07 -06001185 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
Jens Axboed3e9f732021-08-04 08:37:25 -06001186 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001187
Jens Axboed3e9f732021-08-04 08:37:25 -06001188 worker = container_of(cb, struct io_worker, create_work);
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +01001189 io_worker_cancel_cb(worker);
Jens Axboeafcc4012021-02-26 13:48:19 -07001190 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001191
1192 rcu_read_lock();
1193 for_each_node(node) {
1194 struct io_wqe *wqe = wq->wqes[node];
1195
1196 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001197 }
1198 rcu_read_unlock();
1199 io_worker_ref_put(wq);
1200 wait_for_completion(&wq->worker_done);
Zqiang3743c172021-05-26 13:08:26 +08001201
1202 for_each_node(node) {
1203 spin_lock_irq(&wq->hash->wait.lock);
1204 list_del_init(&wq->wqes[node]->wait.entry);
1205 spin_unlock_irq(&wq->hash->wait.lock);
1206 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001207 put_task_struct(wq->task);
1208 wq->task = NULL;
Jens Axboeafcc4012021-02-26 13:48:19 -07001209}
1210
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001211static void io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001212{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001213 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001214
Jens Axboe43c01fb2020-10-22 09:02:50 -06001215 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1216
Jens Axboee9418942021-02-19 12:33:30 -07001217 for_each_node(node) {
1218 struct io_wqe *wqe = wq->wqes[node];
Jens Axboef5d2d232021-03-25 10:16:12 -06001219 struct io_cb_cancel_data match = {
1220 .fn = io_wq_work_match_all,
1221 .cancel_all = true,
1222 };
1223 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboe0e034962021-06-17 10:08:11 -06001224 free_cpumask_var(wqe->cpu_mask);
Jens Axboee9418942021-02-19 12:33:30 -07001225 kfree(wqe);
1226 }
Jens Axboee9418942021-02-19 12:33:30 -07001227 io_wq_put_hash(wq->hash);
Jens Axboe771b53d02019-10-22 10:25:58 -06001228 kfree(wq);
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001229}
1230
Jens Axboeafcc4012021-02-26 13:48:19 -07001231void io_wq_put_and_exit(struct io_wq *wq)
1232{
Pavel Begunkov17a91052021-05-23 15:48:39 +01001233 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1234
Jens Axboe685fe7f2021-03-08 09:37:51 -07001235 io_wq_exit_workers(wq);
Pavel Begunkov382cb032021-06-14 02:36:13 +01001236 io_wq_destroy(wq);
Jens Axboeafcc4012021-02-26 13:48:19 -07001237}
1238
Jens Axboe0e034962021-06-17 10:08:11 -06001239struct online_data {
1240 unsigned int cpu;
1241 bool online;
1242};
1243
Jens Axboe43c01fb2020-10-22 09:02:50 -06001244static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1245{
Jens Axboe0e034962021-06-17 10:08:11 -06001246 struct online_data *od = data;
Jens Axboe43c01fb2020-10-22 09:02:50 -06001247
Jens Axboe0e034962021-06-17 10:08:11 -06001248 if (od->online)
1249 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1250 else
1251 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001252 return false;
1253}
1254
Jens Axboe0e034962021-06-17 10:08:11 -06001255static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1256{
1257 struct online_data od = {
1258 .cpu = cpu,
1259 .online = online
1260 };
1261 int i;
1262
1263 rcu_read_lock();
1264 for_each_node(i)
1265 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1266 rcu_read_unlock();
1267 return 0;
1268}
1269
Jens Axboe43c01fb2020-10-22 09:02:50 -06001270static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1271{
1272 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001273
Jens Axboe0e034962021-06-17 10:08:11 -06001274 return __io_wq_cpu_online(wq, cpu, true);
1275}
1276
1277static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1278{
1279 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1280
1281 return __io_wq_cpu_online(wq, cpu, false);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001282}
1283
Jens Axboefe764212021-06-17 10:19:54 -06001284int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1285{
1286 int i;
1287
1288 rcu_read_lock();
1289 for_each_node(i) {
1290 struct io_wqe *wqe = wq->wqes[i];
1291
1292 if (mask)
1293 cpumask_copy(wqe->cpu_mask, mask);
1294 else
1295 cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1296 }
1297 rcu_read_unlock();
1298 return 0;
1299}
1300
Jens Axboe2e480052021-08-27 11:33:19 -06001301/*
1302 * Set max number of unbounded workers, returns old value. If new_count is 0,
1303 * then just return the old value.
1304 */
1305int io_wq_max_workers(struct io_wq *wq, int *new_count)
1306{
1307 int i, node, prev = 0;
1308
Eugene Syromiatnikovdd47c102021-09-13 17:44:15 +02001309 BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND != (int) IO_WQ_BOUND);
1310 BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1311 BUILD_BUG_ON((int) IO_WQ_ACCT_NR != 2);
1312
Jens Axboe2e480052021-08-27 11:33:19 -06001313 for (i = 0; i < 2; i++) {
1314 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1315 new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1316 }
1317
1318 rcu_read_lock();
1319 for_each_node(node) {
1320 struct io_wqe_acct *acct;
1321
Jens Axboef95dc202021-08-31 13:57:32 -06001322 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
Jens Axboe2e480052021-08-27 11:33:19 -06001323 acct = &wq->wqes[node]->acct[i];
1324 prev = max_t(int, acct->max_workers, prev);
1325 if (new_count[i])
1326 acct->max_workers = new_count[i];
1327 new_count[i] = prev;
1328 }
1329 }
1330 rcu_read_unlock();
1331 return 0;
1332}
1333
Jens Axboe43c01fb2020-10-22 09:02:50 -06001334static __init int io_wq_init(void)
1335{
1336 int ret;
1337
1338 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
Jens Axboe0e034962021-06-17 10:08:11 -06001339 io_wq_cpu_online, io_wq_cpu_offline);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001340 if (ret < 0)
1341 return ret;
1342 io_wq_online = ret;
1343 return 0;
1344}
1345subsys_initcall(io_wq_init);