blob: 3d5fc76b92d0143f121fc91b43dc8fbefeca92df [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>
12#include <linux/mm.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060013#include <linux/sched/mm.h>
14#include <linux/percpu.h>
15#include <linux/slab.h>
16#include <linux/kthread.h>
17#include <linux/rculist_nulls.h>
Jens Axboe9392a272020-02-06 21:42:51 -070018#include <linux/fs_struct.h>
Jens Axboeaa96bf82020-04-03 11:26:26 -060019#include <linux/task_work.h>
Dennis Zhou91d8f512020-09-16 13:41:05 -070020#include <linux/blk-cgroup.h>
Jens Axboe4ea33a92020-10-15 13:46:44 -060021#include <linux/audit.h>
Jens Axboe43c01fb2020-10-22 09:02:50 -060022#include <linux/cpu.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060023
Jens Axboe43c01fb2020-10-22 09:02:50 -060024#include "../kernel/sched/sched.h"
Jens Axboe771b53d02019-10-22 10:25:58 -060025#include "io-wq.h"
26
27#define WORKER_IDLE_TIMEOUT (5 * HZ)
28
29enum {
30 IO_WORKER_F_UP = 1, /* up and active */
31 IO_WORKER_F_RUNNING = 2, /* account as running */
32 IO_WORKER_F_FREE = 4, /* worker on free list */
Jens Axboe145cc8c2020-09-26 12:37:46 -060033 IO_WORKER_F_FIXED = 8, /* static idle worker */
34 IO_WORKER_F_BOUND = 16, /* is doing bounded work */
Jens Axboe771b53d02019-10-22 10:25:58 -060035};
36
37enum {
38 IO_WQ_BIT_EXIT = 0, /* wq exiting */
39 IO_WQ_BIT_CANCEL = 1, /* cancel work on list */
Jens Axboeb60fda62019-11-19 08:37:07 -070040 IO_WQ_BIT_ERROR = 2, /* error on setup */
Jens Axboe771b53d02019-10-22 10:25:58 -060041};
42
43enum {
44 IO_WQE_FLAG_STALLED = 1, /* stalled on hash */
45};
46
47/*
48 * One for each thread in a wqe pool
49 */
50struct io_worker {
51 refcount_t ref;
52 unsigned flags;
53 struct hlist_nulls_node nulls_node;
Jens Axboee61df662019-11-13 13:54:49 -070054 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060055 struct task_struct *task;
Jens Axboe771b53d02019-10-22 10:25:58 -060056 struct io_wqe *wqe;
Jens Axboe36c2f922019-11-13 09:43:34 -070057
Jens Axboe771b53d02019-10-22 10:25:58 -060058 struct io_wq_work *cur_work;
Jens Axboe36c2f922019-11-13 09:43:34 -070059 spinlock_t lock;
Jens Axboe771b53d02019-10-22 10:25:58 -060060
61 struct rcu_head rcu;
62 struct mm_struct *mm;
Dennis Zhou91d8f512020-09-16 13:41:05 -070063#ifdef CONFIG_BLK_CGROUP
64 struct cgroup_subsys_state *blkcg_css;
65#endif
Jens Axboecccf0ee2020-01-27 16:34:48 -070066 const struct cred *cur_creds;
67 const struct cred *saved_creds;
Jens Axboefcb323c2019-10-24 12:39:47 -060068 struct files_struct *restore_files;
Jens Axboe9b828492020-09-18 20:13:06 -060069 struct nsproxy *restore_nsproxy;
Jens Axboe9392a272020-02-06 21:42:51 -070070 struct fs_struct *restore_fs;
Jens Axboe771b53d02019-10-22 10:25:58 -060071};
72
Jens Axboe771b53d02019-10-22 10:25:58 -060073#if BITS_PER_LONG == 64
74#define IO_WQ_HASH_ORDER 6
75#else
76#define IO_WQ_HASH_ORDER 5
77#endif
78
Pavel Begunkov86f3cd12020-03-23 22:57:22 +030079#define IO_WQ_NR_HASH_BUCKETS (1u << IO_WQ_HASH_ORDER)
80
Jens Axboec5def4a2019-11-07 11:41:16 -070081struct io_wqe_acct {
82 unsigned nr_workers;
83 unsigned max_workers;
84 atomic_t nr_running;
85};
86
87enum {
88 IO_WQ_ACCT_BOUND,
89 IO_WQ_ACCT_UNBOUND,
90};
91
Jens Axboe771b53d02019-10-22 10:25:58 -060092/*
93 * Per-node worker thread pool
94 */
95struct io_wqe {
96 struct {
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +020097 raw_spinlock_t lock;
Jens Axboe6206f0e2019-11-26 11:59:32 -070098 struct io_wq_work_list work_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060099 unsigned long hash_map;
100 unsigned flags;
101 } ____cacheline_aligned_in_smp;
102
103 int node;
Jens Axboec5def4a2019-11-07 11:41:16 -0700104 struct io_wqe_acct acct[2];
Jens Axboe771b53d02019-10-22 10:25:58 -0600105
Jens Axboe021d1cd2019-11-14 08:00:41 -0700106 struct hlist_nulls_head free_list;
Jens Axboee61df662019-11-13 13:54:49 -0700107 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -0600108
109 struct io_wq *wq;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300110 struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
Jens Axboe771b53d02019-10-22 10:25:58 -0600111};
112
113/*
114 * Per io_wq state
115 */
116struct io_wq {
117 struct io_wqe **wqes;
118 unsigned long state;
Jens Axboe771b53d02019-10-22 10:25:58 -0600119
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300120 free_work_fn *free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300121 io_wq_work_fn *do_work;
Jens Axboe7d723062019-11-12 22:31:31 -0700122
Jens Axboe771b53d02019-10-22 10:25:58 -0600123 struct task_struct *manager;
Jens Axboec5def4a2019-11-07 11:41:16 -0700124 struct user_struct *user;
Jens Axboe771b53d02019-10-22 10:25:58 -0600125 refcount_t refs;
126 struct completion done;
Jens Axboe848f7e12020-01-23 15:33:32 -0700127
Jens Axboe43c01fb2020-10-22 09:02:50 -0600128 struct hlist_node cpuhp_node;
129
Jens Axboe848f7e12020-01-23 15:33:32 -0700130 refcount_t use_refs;
Jens Axboe771b53d02019-10-22 10:25:58 -0600131};
132
Jens Axboe43c01fb2020-10-22 09:02:50 -0600133static enum cpuhp_state io_wq_online;
134
Jens Axboe771b53d02019-10-22 10:25:58 -0600135static bool io_worker_get(struct io_worker *worker)
136{
137 return refcount_inc_not_zero(&worker->ref);
138}
139
140static void io_worker_release(struct io_worker *worker)
141{
142 if (refcount_dec_and_test(&worker->ref))
143 wake_up_process(worker->task);
144}
145
146/*
147 * Note: drops the wqe->lock if returning true! The caller must re-acquire
148 * the lock in that case. Some callers need to restart handling if this
149 * happens, so we can't just re-acquire the lock on behalf of the caller.
150 */
151static bool __io_worker_unuse(struct io_wqe *wqe, struct io_worker *worker)
152{
Jens Axboefcb323c2019-10-24 12:39:47 -0600153 bool dropped_lock = false;
154
Jens Axboecccf0ee2020-01-27 16:34:48 -0700155 if (worker->saved_creds) {
156 revert_creds(worker->saved_creds);
157 worker->cur_creds = worker->saved_creds = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -0700158 }
159
Jens Axboefcb323c2019-10-24 12:39:47 -0600160 if (current->files != worker->restore_files) {
161 __acquire(&wqe->lock);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200162 raw_spin_unlock_irq(&wqe->lock);
Jens Axboefcb323c2019-10-24 12:39:47 -0600163 dropped_lock = true;
164
165 task_lock(current);
166 current->files = worker->restore_files;
Jens Axboe9b828492020-09-18 20:13:06 -0600167 current->nsproxy = worker->restore_nsproxy;
Jens Axboefcb323c2019-10-24 12:39:47 -0600168 task_unlock(current);
169 }
170
Jens Axboe9392a272020-02-06 21:42:51 -0700171 if (current->fs != worker->restore_fs)
172 current->fs = worker->restore_fs;
173
Jens Axboe771b53d02019-10-22 10:25:58 -0600174 /*
175 * If we have an active mm, we need to drop the wq lock before unusing
176 * it. If we do, return true and let the caller retry the idle loop.
177 */
178 if (worker->mm) {
Jens Axboefcb323c2019-10-24 12:39:47 -0600179 if (!dropped_lock) {
180 __acquire(&wqe->lock);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200181 raw_spin_unlock_irq(&wqe->lock);
Jens Axboefcb323c2019-10-24 12:39:47 -0600182 dropped_lock = true;
183 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600184 __set_current_state(TASK_RUNNING);
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700185 kthread_unuse_mm(worker->mm);
Jens Axboe771b53d02019-10-22 10:25:58 -0600186 mmput(worker->mm);
187 worker->mm = NULL;
Jens Axboe771b53d02019-10-22 10:25:58 -0600188 }
189
Dennis Zhou91d8f512020-09-16 13:41:05 -0700190#ifdef CONFIG_BLK_CGROUP
191 if (worker->blkcg_css) {
192 kthread_associate_blkcg(NULL);
193 worker->blkcg_css = NULL;
194 }
195#endif
Jens Axboe69228332020-10-20 14:28:41 -0600196 if (current->signal->rlim[RLIMIT_FSIZE].rlim_cur != RLIM_INFINITY)
197 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboefcb323c2019-10-24 12:39:47 -0600198 return dropped_lock;
Jens Axboe771b53d02019-10-22 10:25:58 -0600199}
200
Jens Axboec5def4a2019-11-07 11:41:16 -0700201static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
202 struct io_wq_work *work)
203{
204 if (work->flags & IO_WQ_WORK_UNBOUND)
205 return &wqe->acct[IO_WQ_ACCT_UNBOUND];
206
207 return &wqe->acct[IO_WQ_ACCT_BOUND];
208}
209
210static inline struct io_wqe_acct *io_wqe_get_acct(struct io_wqe *wqe,
211 struct io_worker *worker)
212{
213 if (worker->flags & IO_WORKER_F_BOUND)
214 return &wqe->acct[IO_WQ_ACCT_BOUND];
215
216 return &wqe->acct[IO_WQ_ACCT_UNBOUND];
217}
218
Jens Axboe771b53d02019-10-22 10:25:58 -0600219static void io_worker_exit(struct io_worker *worker)
220{
221 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700222 struct io_wqe_acct *acct = io_wqe_get_acct(wqe, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600223
224 /*
225 * If we're not at zero, someone else is holding a brief reference
226 * to the worker. Wait for that to go away.
227 */
228 set_current_state(TASK_INTERRUPTIBLE);
229 if (!refcount_dec_and_test(&worker->ref))
230 schedule();
231 __set_current_state(TASK_RUNNING);
232
233 preempt_disable();
234 current->flags &= ~PF_IO_WORKER;
235 if (worker->flags & IO_WORKER_F_RUNNING)
Jens Axboec5def4a2019-11-07 11:41:16 -0700236 atomic_dec(&acct->nr_running);
237 if (!(worker->flags & IO_WORKER_F_BOUND))
238 atomic_dec(&wqe->wq->user->processes);
Jens Axboe771b53d02019-10-22 10:25:58 -0600239 worker->flags = 0;
240 preempt_enable();
241
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200242 raw_spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600243 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700244 list_del_rcu(&worker->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600245 if (__io_worker_unuse(wqe, worker)) {
246 __release(&wqe->lock);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200247 raw_spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600248 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700249 acct->nr_workers--;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200250 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600251
YueHaibing364b05f2019-11-02 15:55:01 +0800252 kfree_rcu(worker, rcu);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800253 if (refcount_dec_and_test(&wqe->wq->refs))
254 complete(&wqe->wq->done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600255}
256
Jens Axboec5def4a2019-11-07 11:41:16 -0700257static inline bool io_wqe_run_queue(struct io_wqe *wqe)
258 __must_hold(wqe->lock)
259{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700260 if (!wq_list_empty(&wqe->work_list) &&
261 !(wqe->flags & IO_WQE_FLAG_STALLED))
Jens Axboec5def4a2019-11-07 11:41:16 -0700262 return true;
263 return false;
264}
265
266/*
267 * Check head of free list for an available worker. If one isn't available,
268 * caller must wake up the wq manager to create one.
269 */
270static bool io_wqe_activate_free_worker(struct io_wqe *wqe)
271 __must_hold(RCU)
272{
273 struct hlist_nulls_node *n;
274 struct io_worker *worker;
275
Jens Axboe021d1cd2019-11-14 08:00:41 -0700276 n = rcu_dereference(hlist_nulls_first_rcu(&wqe->free_list));
Jens Axboec5def4a2019-11-07 11:41:16 -0700277 if (is_a_nulls(n))
278 return false;
279
280 worker = hlist_nulls_entry(n, struct io_worker, nulls_node);
281 if (io_worker_get(worker)) {
Jens Axboe506d95f2019-12-07 21:03:59 -0700282 wake_up_process(worker->task);
Jens Axboec5def4a2019-11-07 11:41:16 -0700283 io_worker_release(worker);
284 return true;
285 }
286
287 return false;
288}
289
290/*
291 * We need a worker. If we find a free one, we're good. If not, and we're
292 * below the max number of workers, wake up the manager to create one.
293 */
294static void io_wqe_wake_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
295{
296 bool ret;
297
298 /*
299 * Most likely an attempt to queue unbounded work on an io_wq that
300 * wasn't setup with any unbounded workers.
301 */
Pavel Begunkov932be4c2021-06-17 18:13:59 +0100302 if (unlikely(!acct->max_workers))
303 pr_warn_once("io-wq is not configured for unbound workers");
Jens Axboec5def4a2019-11-07 11:41:16 -0700304
305 rcu_read_lock();
306 ret = io_wqe_activate_free_worker(wqe);
307 rcu_read_unlock();
308
309 if (!ret && acct->nr_workers < acct->max_workers)
310 wake_up_process(wqe->wq->manager);
311}
312
313static void io_wqe_inc_running(struct io_wqe *wqe, struct io_worker *worker)
314{
315 struct io_wqe_acct *acct = io_wqe_get_acct(wqe, worker);
316
317 atomic_inc(&acct->nr_running);
318}
319
320static void io_wqe_dec_running(struct io_wqe *wqe, struct io_worker *worker)
321 __must_hold(wqe->lock)
322{
323 struct io_wqe_acct *acct = io_wqe_get_acct(wqe, worker);
324
325 if (atomic_dec_and_test(&acct->nr_running) && io_wqe_run_queue(wqe))
326 io_wqe_wake_worker(wqe, acct);
327}
328
Jens Axboe771b53d02019-10-22 10:25:58 -0600329static void io_worker_start(struct io_wqe *wqe, struct io_worker *worker)
330{
331 allow_kernel_signal(SIGINT);
332
333 current->flags |= PF_IO_WORKER;
334
335 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboefcb323c2019-10-24 12:39:47 -0600336 worker->restore_files = current->files;
Jens Axboe9b828492020-09-18 20:13:06 -0600337 worker->restore_nsproxy = current->nsproxy;
Jens Axboe9392a272020-02-06 21:42:51 -0700338 worker->restore_fs = current->fs;
Jens Axboec5def4a2019-11-07 11:41:16 -0700339 io_wqe_inc_running(wqe, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600340}
341
342/*
343 * Worker will start processing some work. Move it to the busy list, if
344 * it's currently on the freelist
345 */
346static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
347 struct io_wq_work *work)
348 __must_hold(wqe->lock)
349{
Jens Axboec5def4a2019-11-07 11:41:16 -0700350 bool worker_bound, work_bound;
351
Jens Axboe771b53d02019-10-22 10:25:58 -0600352 if (worker->flags & IO_WORKER_F_FREE) {
353 worker->flags &= ~IO_WORKER_F_FREE;
354 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600355 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700356
357 /*
358 * If worker is moving from bound to unbound (or vice versa), then
359 * ensure we update the running accounting.
360 */
Dan Carpenterb2e9c7d62019-11-19 09:22:16 +0300361 worker_bound = (worker->flags & IO_WORKER_F_BOUND) != 0;
362 work_bound = (work->flags & IO_WQ_WORK_UNBOUND) == 0;
363 if (worker_bound != work_bound) {
Jens Axboec5def4a2019-11-07 11:41:16 -0700364 io_wqe_dec_running(wqe, worker);
365 if (work_bound) {
366 worker->flags |= IO_WORKER_F_BOUND;
367 wqe->acct[IO_WQ_ACCT_UNBOUND].nr_workers--;
368 wqe->acct[IO_WQ_ACCT_BOUND].nr_workers++;
369 atomic_dec(&wqe->wq->user->processes);
370 } else {
371 worker->flags &= ~IO_WORKER_F_BOUND;
372 wqe->acct[IO_WQ_ACCT_UNBOUND].nr_workers++;
373 wqe->acct[IO_WQ_ACCT_BOUND].nr_workers--;
374 atomic_inc(&wqe->wq->user->processes);
375 }
376 io_wqe_inc_running(wqe, worker);
377 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600378}
379
380/*
381 * No work, worker going to sleep. Move to freelist, and unuse mm if we
382 * have one attached. Dropping the mm may potentially sleep, so we drop
383 * the lock in that case and return success. Since the caller has to
384 * retry the loop in that case (we changed task state), we don't regrab
385 * the lock if we return success.
386 */
387static bool __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
388 __must_hold(wqe->lock)
389{
390 if (!(worker->flags & IO_WORKER_F_FREE)) {
391 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700392 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600393 }
394
395 return __io_worker_unuse(wqe, worker);
396}
397
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300398static inline unsigned int io_get_work_hash(struct io_wq_work *work)
399{
400 return work->flags >> IO_WQ_HASH_SHIFT;
401}
402
403static struct io_wq_work *io_get_next_work(struct io_wqe *wqe)
Jens Axboe771b53d02019-10-22 10:25:58 -0600404 __must_hold(wqe->lock)
405{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700406 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300407 struct io_wq_work *work, *tail;
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300408 unsigned int hash;
Jens Axboe771b53d02019-10-22 10:25:58 -0600409
Jens Axboe6206f0e2019-11-26 11:59:32 -0700410 wq_list_for_each(node, prev, &wqe->work_list) {
411 work = container_of(node, struct io_wq_work, list);
412
Jens Axboe771b53d02019-10-22 10:25:58 -0600413 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300414 if (!io_wq_is_hashed(work)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300415 wq_list_del(&wqe->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600416 return work;
417 }
418
419 /* hashed, can run if not already running */
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300420 hash = io_get_work_hash(work);
421 if (!(wqe->hash_map & BIT(hash))) {
422 wqe->hash_map |= BIT(hash);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300423 /* all items with this hash lie in [work, tail] */
424 tail = wqe->hash_tail[hash];
425 wqe->hash_tail[hash] = NULL;
426 wq_list_cut(&wqe->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600427 return work;
428 }
429 }
430
431 return NULL;
432}
433
Jens Axboecccf0ee2020-01-27 16:34:48 -0700434static void io_wq_switch_mm(struct io_worker *worker, struct io_wq_work *work)
435{
436 if (worker->mm) {
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700437 kthread_unuse_mm(worker->mm);
Jens Axboecccf0ee2020-01-27 16:34:48 -0700438 mmput(worker->mm);
439 worker->mm = NULL;
440 }
Christoph Hellwig37c54f92020-06-10 18:42:10 -0700441
Jens Axboe98447d62020-10-14 10:48:51 -0600442 if (mmget_not_zero(work->identity->mm)) {
443 kthread_use_mm(work->identity->mm);
444 worker->mm = work->identity->mm;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700445 return;
446 }
447
448 /* failed grabbing mm, ensure work gets cancelled */
449 work->flags |= IO_WQ_WORK_CANCEL;
450}
451
Dennis Zhou91d8f512020-09-16 13:41:05 -0700452static inline void io_wq_switch_blkcg(struct io_worker *worker,
453 struct io_wq_work *work)
454{
455#ifdef CONFIG_BLK_CGROUP
Jens Axboe0f203762020-10-14 09:23:55 -0600456 if (!(work->flags & IO_WQ_WORK_BLKCG))
457 return;
Jens Axboe98447d62020-10-14 10:48:51 -0600458 if (work->identity->blkcg_css != worker->blkcg_css) {
459 kthread_associate_blkcg(work->identity->blkcg_css);
460 worker->blkcg_css = work->identity->blkcg_css;
Dennis Zhou91d8f512020-09-16 13:41:05 -0700461 }
462#endif
463}
464
Jens Axboecccf0ee2020-01-27 16:34:48 -0700465static void io_wq_switch_creds(struct io_worker *worker,
466 struct io_wq_work *work)
467{
Jens Axboe98447d62020-10-14 10:48:51 -0600468 const struct cred *old_creds = override_creds(work->identity->creds);
Jens Axboecccf0ee2020-01-27 16:34:48 -0700469
Jens Axboe98447d62020-10-14 10:48:51 -0600470 worker->cur_creds = work->identity->creds;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700471 if (worker->saved_creds)
472 put_cred(old_creds); /* creds set by previous switch */
473 else
474 worker->saved_creds = old_creds;
475}
476
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300477static void io_impersonate_work(struct io_worker *worker,
478 struct io_wq_work *work)
479{
Jens Axboe98447d62020-10-14 10:48:51 -0600480 if ((work->flags & IO_WQ_WORK_FILES) &&
481 current->files != work->identity->files) {
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300482 task_lock(current);
Jens Axboe98447d62020-10-14 10:48:51 -0600483 current->files = work->identity->files;
484 current->nsproxy = work->identity->nsproxy;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300485 task_unlock(current);
Jens Axboe3dd16802020-10-30 09:36:41 -0600486 if (!work->identity->files) {
487 /* failed grabbing files, ensure work gets cancelled */
488 work->flags |= IO_WQ_WORK_CANCEL;
489 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300490 }
Jens Axboe98447d62020-10-14 10:48:51 -0600491 if ((work->flags & IO_WQ_WORK_FS) && current->fs != work->identity->fs)
492 current->fs = work->identity->fs;
493 if ((work->flags & IO_WQ_WORK_MM) && work->identity->mm != worker->mm)
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300494 io_wq_switch_mm(worker, work);
Jens Axboe98447d62020-10-14 10:48:51 -0600495 if ((work->flags & IO_WQ_WORK_CREDS) &&
496 worker->cur_creds != work->identity->creds)
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300497 io_wq_switch_creds(worker, work);
Jens Axboe69228332020-10-20 14:28:41 -0600498 if (work->flags & IO_WQ_WORK_FSIZE)
499 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = work->identity->fsize;
500 else if (current->signal->rlim[RLIMIT_FSIZE].rlim_cur != RLIM_INFINITY)
501 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Dennis Zhou91d8f512020-09-16 13:41:05 -0700502 io_wq_switch_blkcg(worker, work);
Jens Axboe4ea33a92020-10-15 13:46:44 -0600503#ifdef CONFIG_AUDIT
504 current->loginuid = work->identity->loginuid;
505 current->sessionid = work->identity->sessionid;
506#endif
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300507}
508
509static void io_assign_current_work(struct io_worker *worker,
510 struct io_wq_work *work)
511{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300512 if (work) {
513 /* flush pending signals before assigning new work */
514 if (signal_pending(current))
515 flush_signals(current);
516 cond_resched();
517 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300518
Jens Axboe4ea33a92020-10-15 13:46:44 -0600519#ifdef CONFIG_AUDIT
520 current->loginuid = KUIDT_INIT(AUDIT_UID_UNSET);
521 current->sessionid = AUDIT_SID_UNSET;
522#endif
523
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300524 spin_lock_irq(&worker->lock);
525 worker->cur_work = work;
526 spin_unlock_irq(&worker->lock);
527}
528
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300529static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
530
Jens Axboe771b53d02019-10-22 10:25:58 -0600531static void io_worker_handle_work(struct io_worker *worker)
532 __releases(wqe->lock)
533{
Jens Axboe771b53d02019-10-22 10:25:58 -0600534 struct io_wqe *wqe = worker->wqe;
535 struct io_wq *wq = wqe->wq;
536
537 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300538 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300539get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600540 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600541 * If we got some work, mark us as busy. If we didn't, but
542 * the list isn't empty, it means we stalled on hashed work.
543 * Mark us stalled so we don't keep looking for work when we
544 * can't make progress, any work completion or insertion will
545 * clear the stalled flag.
546 */
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300547 work = io_get_next_work(wqe);
Jens Axboe771b53d02019-10-22 10:25:58 -0600548 if (work)
549 __io_worker_busy(wqe, worker, work);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700550 else if (!wq_list_empty(&wqe->work_list))
Jens Axboe771b53d02019-10-22 10:25:58 -0600551 wqe->flags |= IO_WQE_FLAG_STALLED;
552
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200553 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600554 if (!work)
555 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300556 io_assign_current_work(worker, work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700557
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300558 /* handle a whole dependent link */
559 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300560 struct io_wq_work *old_work, *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300561 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700562
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300563 next_hashed = wq_next_work(work);
Pavel Begunkov58e39312020-03-04 16:14:10 +0300564 io_impersonate_work(worker, work);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300565 /*
566 * OK to set IO_WQ_WORK_CANCEL even for uncancellable
567 * work, the worker function will do the right thing.
568 */
569 if (test_bit(IO_WQ_BIT_CANCEL, &wq->state))
570 work->flags |= IO_WQ_WORK_CANCEL;
Jens Axboe36c2f922019-11-13 09:43:34 -0700571
Pavel Begunkovf4db7182020-06-25 18:20:54 +0300572 old_work = work;
573 linked = wq->do_work(work);
Pavel Begunkovf2cf1142020-03-22 19:14:26 +0300574
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300575 work = next_hashed;
576 if (!work && linked && !io_wq_is_hashed(linked)) {
577 work = linked;
578 linked = NULL;
579 }
580 io_assign_current_work(worker, work);
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300581 wq->free_work(old_work);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300582
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300583 if (linked)
584 io_wqe_enqueue(wqe, linked);
585
586 if (hash != -1U && !next_hashed) {
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200587 raw_spin_lock_irq(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300588 wqe->hash_map &= ~BIT_ULL(hash);
589 wqe->flags &= ~IO_WQE_FLAG_STALLED;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300590 /* skip unnecessary unlock-lock wqe->lock */
591 if (!work)
592 goto get_next;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200593 raw_spin_unlock_irq(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300594 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300595 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700596
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200597 raw_spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600598 } while (1);
599}
600
Jens Axboe771b53d02019-10-22 10:25:58 -0600601static int io_wqe_worker(void *data)
602{
603 struct io_worker *worker = data;
604 struct io_wqe *wqe = worker->wqe;
605 struct io_wq *wq = wqe->wq;
Jens Axboe771b53d02019-10-22 10:25:58 -0600606
607 io_worker_start(wqe, worker);
608
609 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe506d95f2019-12-07 21:03:59 -0700610 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700611loop:
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200612 raw_spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600613 if (io_wqe_run_queue(wqe)) {
614 __set_current_state(TASK_RUNNING);
615 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700616 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600617 }
618 /* drops the lock on success, retry */
619 if (__io_worker_idle(wqe, worker)) {
620 __release(&wqe->lock);
Jens Axboee995d512019-12-07 21:06:46 -0700621 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600622 }
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200623 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600624 if (signal_pending(current))
625 flush_signals(current);
626 if (schedule_timeout(WORKER_IDLE_TIMEOUT))
627 continue;
628 /* timed out, exit unless we're the fixed worker */
629 if (test_bit(IO_WQ_BIT_EXIT, &wq->state) ||
630 !(worker->flags & IO_WORKER_F_FIXED))
631 break;
632 }
633
Jens Axboe771b53d02019-10-22 10:25:58 -0600634 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200635 raw_spin_lock_irq(&wqe->lock);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700636 if (!wq_list_empty(&wqe->work_list))
Jens Axboe771b53d02019-10-22 10:25:58 -0600637 io_worker_handle_work(worker);
638 else
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200639 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600640 }
641
642 io_worker_exit(worker);
643 return 0;
644}
645
646/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600647 * Called when a worker is scheduled in. Mark us as currently running.
648 */
649void io_wq_worker_running(struct task_struct *tsk)
650{
651 struct io_worker *worker = kthread_data(tsk);
652 struct io_wqe *wqe = worker->wqe;
653
654 if (!(worker->flags & IO_WORKER_F_UP))
655 return;
656 if (worker->flags & IO_WORKER_F_RUNNING)
657 return;
658 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboec5def4a2019-11-07 11:41:16 -0700659 io_wqe_inc_running(wqe, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600660}
661
662/*
663 * Called when worker is going to sleep. If there are no workers currently
664 * running and we have work pending, wake up a free one or have the manager
665 * set one up.
666 */
667void io_wq_worker_sleeping(struct task_struct *tsk)
668{
669 struct io_worker *worker = kthread_data(tsk);
670 struct io_wqe *wqe = worker->wqe;
671
672 if (!(worker->flags & IO_WORKER_F_UP))
673 return;
674 if (!(worker->flags & IO_WORKER_F_RUNNING))
675 return;
676
677 worker->flags &= ~IO_WORKER_F_RUNNING;
678
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200679 raw_spin_lock_irq(&wqe->lock);
Jens Axboec5def4a2019-11-07 11:41:16 -0700680 io_wqe_dec_running(wqe, worker);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200681 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600682}
683
Jens Axboeb60fda62019-11-19 08:37:07 -0700684static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
Jens Axboe771b53d02019-10-22 10:25:58 -0600685{
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800686 struct io_wqe_acct *acct = &wqe->acct[index];
Jens Axboe771b53d02019-10-22 10:25:58 -0600687 struct io_worker *worker;
688
Jann Hornad6e0052019-11-26 17:39:45 +0100689 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600690 if (!worker)
Jens Axboeb60fda62019-11-19 08:37:07 -0700691 return false;
Jens Axboe771b53d02019-10-22 10:25:58 -0600692
693 refcount_set(&worker->ref, 1);
694 worker->nulls_node.pprev = NULL;
Jens Axboe771b53d02019-10-22 10:25:58 -0600695 worker->wqe = wqe;
Jens Axboe36c2f922019-11-13 09:43:34 -0700696 spin_lock_init(&worker->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600697
698 worker->task = kthread_create_on_node(io_wqe_worker, worker, wqe->node,
Jens Axboec5def4a2019-11-07 11:41:16 -0700699 "io_wqe_worker-%d/%d", index, wqe->node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600700 if (IS_ERR(worker->task)) {
701 kfree(worker);
Jens Axboeb60fda62019-11-19 08:37:07 -0700702 return false;
Jens Axboe771b53d02019-10-22 10:25:58 -0600703 }
Jens Axboea8b595b2020-10-15 10:13:07 -0600704 kthread_bind_mask(worker->task, cpumask_of_node(wqe->node));
Jens Axboe771b53d02019-10-22 10:25:58 -0600705
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200706 raw_spin_lock_irq(&wqe->lock);
Jens Axboe021d1cd2019-11-14 08:00:41 -0700707 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboee61df662019-11-13 13:54:49 -0700708 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600709 worker->flags |= IO_WORKER_F_FREE;
Jens Axboec5def4a2019-11-07 11:41:16 -0700710 if (index == IO_WQ_ACCT_BOUND)
711 worker->flags |= IO_WORKER_F_BOUND;
712 if (!acct->nr_workers && (worker->flags & IO_WORKER_F_BOUND))
Jens Axboe771b53d02019-10-22 10:25:58 -0600713 worker->flags |= IO_WORKER_F_FIXED;
Jens Axboec5def4a2019-11-07 11:41:16 -0700714 acct->nr_workers++;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200715 raw_spin_unlock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600716
Jens Axboec5def4a2019-11-07 11:41:16 -0700717 if (index == IO_WQ_ACCT_UNBOUND)
718 atomic_inc(&wq->user->processes);
719
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800720 refcount_inc(&wq->refs);
Jens Axboe771b53d02019-10-22 10:25:58 -0600721 wake_up_process(worker->task);
Jens Axboeb60fda62019-11-19 08:37:07 -0700722 return true;
Jens Axboe771b53d02019-10-22 10:25:58 -0600723}
724
Jens Axboec5def4a2019-11-07 11:41:16 -0700725static inline bool io_wqe_need_worker(struct io_wqe *wqe, int index)
Jens Axboe771b53d02019-10-22 10:25:58 -0600726 __must_hold(wqe->lock)
727{
Jens Axboec5def4a2019-11-07 11:41:16 -0700728 struct io_wqe_acct *acct = &wqe->acct[index];
Jens Axboe771b53d02019-10-22 10:25:58 -0600729
Jens Axboec5def4a2019-11-07 11:41:16 -0700730 /* if we have available workers or no work, no need */
Jens Axboe021d1cd2019-11-14 08:00:41 -0700731 if (!hlist_nulls_empty(&wqe->free_list) || !io_wqe_run_queue(wqe))
Jens Axboec5def4a2019-11-07 11:41:16 -0700732 return false;
733 return acct->nr_workers < acct->max_workers;
Jens Axboe771b53d02019-10-22 10:25:58 -0600734}
735
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800736static bool io_wqe_worker_send_sig(struct io_worker *worker, void *data)
737{
738 send_sig(SIGINT, worker->task, 1);
739 return false;
740}
741
742/*
743 * Iterate the passed in list and call the specific function for each
744 * worker that isn't exiting
745 */
746static bool io_wq_for_each_worker(struct io_wqe *wqe,
747 bool (*func)(struct io_worker *, void *),
748 void *data)
749{
750 struct io_worker *worker;
751 bool ret = false;
752
753 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
754 if (io_worker_get(worker)) {
755 /* no task if node is/was offline */
756 if (worker->task)
757 ret = func(worker, data);
758 io_worker_release(worker);
759 if (ret)
760 break;
761 }
762 }
763
764 return ret;
765}
766
767static bool io_wq_worker_wake(struct io_worker *worker, void *data)
768{
769 wake_up_process(worker->task);
770 return false;
771}
772
Jens Axboe771b53d02019-10-22 10:25:58 -0600773/*
774 * Manager thread. Tasked with creating new workers, if we need them.
775 */
776static int io_wq_manager(void *data)
777{
778 struct io_wq *wq = data;
Jann Horn3fc50ab2019-11-26 19:10:20 +0100779 int node;
Jens Axboeb60fda62019-11-19 08:37:07 -0700780
781 /* create fixed workers */
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800782 refcount_set(&wq->refs, 1);
Jann Horn3fc50ab2019-11-26 19:10:20 +0100783 for_each_node(node) {
Jens Axboe75634392020-02-11 06:30:06 -0700784 if (!node_online(node))
785 continue;
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800786 if (create_io_worker(wq, wq->wqes[node], IO_WQ_ACCT_BOUND))
787 continue;
788 set_bit(IO_WQ_BIT_ERROR, &wq->state);
789 set_bit(IO_WQ_BIT_EXIT, &wq->state);
790 goto out;
Jens Axboeb60fda62019-11-19 08:37:07 -0700791 }
792
793 complete(&wq->done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600794
795 while (!kthread_should_stop()) {
Jens Axboeaa96bf82020-04-03 11:26:26 -0600796 if (current->task_works)
797 task_work_run();
798
Jann Horn3fc50ab2019-11-26 19:10:20 +0100799 for_each_node(node) {
800 struct io_wqe *wqe = wq->wqes[node];
Jens Axboec5def4a2019-11-07 11:41:16 -0700801 bool fork_worker[2] = { false, false };
Jens Axboe771b53d02019-10-22 10:25:58 -0600802
Jens Axboe75634392020-02-11 06:30:06 -0700803 if (!node_online(node))
804 continue;
805
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200806 raw_spin_lock_irq(&wqe->lock);
Jens Axboec5def4a2019-11-07 11:41:16 -0700807 if (io_wqe_need_worker(wqe, IO_WQ_ACCT_BOUND))
808 fork_worker[IO_WQ_ACCT_BOUND] = true;
809 if (io_wqe_need_worker(wqe, IO_WQ_ACCT_UNBOUND))
810 fork_worker[IO_WQ_ACCT_UNBOUND] = true;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200811 raw_spin_unlock_irq(&wqe->lock);
Jens Axboec5def4a2019-11-07 11:41:16 -0700812 if (fork_worker[IO_WQ_ACCT_BOUND])
813 create_io_worker(wq, wqe, IO_WQ_ACCT_BOUND);
814 if (fork_worker[IO_WQ_ACCT_UNBOUND])
815 create_io_worker(wq, wqe, IO_WQ_ACCT_UNBOUND);
Jens Axboe771b53d02019-10-22 10:25:58 -0600816 }
817 set_current_state(TASK_INTERRUPTIBLE);
818 schedule_timeout(HZ);
819 }
820
Jens Axboeaa96bf82020-04-03 11:26:26 -0600821 if (current->task_works)
822 task_work_run();
823
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800824out:
825 if (refcount_dec_and_test(&wq->refs)) {
Jens Axboeb60fda62019-11-19 08:37:07 -0700826 complete(&wq->done);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800827 return 0;
828 }
829 /* if ERROR is set and we get here, we have workers to wake */
830 if (test_bit(IO_WQ_BIT_ERROR, &wq->state)) {
831 rcu_read_lock();
832 for_each_node(node)
833 io_wq_for_each_worker(wq->wqes[node], io_wq_worker_wake, NULL);
834 rcu_read_unlock();
835 }
Jens Axboeb60fda62019-11-19 08:37:07 -0700836 return 0;
Jens Axboe771b53d02019-10-22 10:25:58 -0600837}
838
Jens Axboec5def4a2019-11-07 11:41:16 -0700839static bool io_wq_can_queue(struct io_wqe *wqe, struct io_wqe_acct *acct,
840 struct io_wq_work *work)
841{
842 bool free_worker;
843
844 if (!(work->flags & IO_WQ_WORK_UNBOUND))
845 return true;
846 if (atomic_read(&acct->nr_running))
847 return true;
848
849 rcu_read_lock();
Jens Axboe021d1cd2019-11-14 08:00:41 -0700850 free_worker = !hlist_nulls_empty(&wqe->free_list);
Jens Axboec5def4a2019-11-07 11:41:16 -0700851 rcu_read_unlock();
852 if (free_worker)
853 return true;
854
855 if (atomic_read(&wqe->wq->user->processes) >= acct->max_workers &&
856 !(capable(CAP_SYS_RESOURCE) || capable(CAP_SYS_ADMIN)))
857 return false;
858
859 return true;
860}
861
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300862static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300863{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300864 struct io_wq *wq = wqe->wq;
865
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300866 do {
867 struct io_wq_work *old_work = work;
868
869 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkovf4db7182020-06-25 18:20:54 +0300870 work = wq->do_work(work);
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300871 wq->free_work(old_work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300872 } while (work);
873}
874
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300875static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
876{
877 unsigned int hash;
878 struct io_wq_work *tail;
879
880 if (!io_wq_is_hashed(work)) {
881append:
882 wq_list_add_tail(&work->list, &wqe->work_list);
883 return;
884 }
885
886 hash = io_get_work_hash(work);
887 tail = wqe->hash_tail[hash];
888 wqe->hash_tail[hash] = work;
889 if (!tail)
890 goto append;
891
892 wq_list_add_after(&work->list, &tail->list, &wqe->work_list);
893}
894
Jens Axboe771b53d02019-10-22 10:25:58 -0600895static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
896{
Jens Axboec5def4a2019-11-07 11:41:16 -0700897 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe9ac21862021-09-13 09:20:44 -0600898 bool do_wake;
Jens Axboe771b53d02019-10-22 10:25:58 -0600899 unsigned long flags;
900
Jens Axboec5def4a2019-11-07 11:41:16 -0700901 /*
902 * Do early check to see if we need a new unbound worker, and if we do,
903 * if we're allowed to do so. This isn't 100% accurate as there's a
904 * gap between this check and incrementing the value, but that's OK.
905 * It's close enough to not be an issue, fork() has the same delay.
906 */
907 if (unlikely(!io_wq_can_queue(wqe, acct, work))) {
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300908 io_run_cancel(work, wqe);
Jens Axboec5def4a2019-11-07 11:41:16 -0700909 return;
910 }
911
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200912 raw_spin_lock_irqsave(&wqe->lock, flags);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300913 io_wqe_insert_work(wqe, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600914 wqe->flags &= ~IO_WQE_FLAG_STALLED;
Jens Axboe9ac21862021-09-13 09:20:44 -0600915 do_wake = (work->flags & IO_WQ_WORK_CONCURRENT) ||
916 !atomic_read(&acct->nr_running);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +0200917 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Jens Axboe771b53d02019-10-22 10:25:58 -0600918
Jens Axboe9ac21862021-09-13 09:20:44 -0600919 if (do_wake)
Jens Axboec5def4a2019-11-07 11:41:16 -0700920 io_wqe_wake_worker(wqe, acct);
Jens Axboe771b53d02019-10-22 10:25:58 -0600921}
922
923void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
924{
925 struct io_wqe *wqe = wq->wqes[numa_node_id()];
926
927 io_wqe_enqueue(wqe, work);
928}
929
930/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300931 * Work items that hash to the same value will not be done in parallel.
932 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600933 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300934void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600935{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300936 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600937
938 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
939 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600940}
941
Jens Axboe771b53d02019-10-22 10:25:58 -0600942void io_wq_cancel_all(struct io_wq *wq)
943{
Jann Horn3fc50ab2019-11-26 19:10:20 +0100944 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -0600945
946 set_bit(IO_WQ_BIT_CANCEL, &wq->state);
947
Jens Axboe771b53d02019-10-22 10:25:58 -0600948 rcu_read_lock();
Jann Horn3fc50ab2019-11-26 19:10:20 +0100949 for_each_node(node) {
950 struct io_wqe *wqe = wq->wqes[node];
Jens Axboe771b53d02019-10-22 10:25:58 -0600951
Jens Axboee61df662019-11-13 13:54:49 -0700952 io_wq_for_each_worker(wqe, io_wqe_worker_send_sig, NULL);
Jens Axboe771b53d02019-10-22 10:25:58 -0600953 }
954 rcu_read_unlock();
955}
956
Jens Axboe62755e32019-10-28 21:49:21 -0600957struct io_cb_cancel_data {
Pavel Begunkov2293b412020-03-07 01:15:39 +0300958 work_cancel_fn *fn;
959 void *data;
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300960 int nr_running;
961 int nr_pending;
962 bool cancel_all;
Jens Axboe62755e32019-10-28 21:49:21 -0600963};
964
Pavel Begunkov2293b412020-03-07 01:15:39 +0300965static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600966{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300967 struct io_cb_cancel_data *match = data;
Jens Axboe6f726532019-11-05 13:51:51 -0700968 unsigned long flags;
Jens Axboe62755e32019-10-28 21:49:21 -0600969
970 /*
971 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700972 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600973 */
Jens Axboe36c2f922019-11-13 09:43:34 -0700974 spin_lock_irqsave(&worker->lock, flags);
Jens Axboe62755e32019-10-28 21:49:21 -0600975 if (worker->cur_work &&
Jens Axboe0c9d5cc2019-12-11 19:29:43 -0700976 !(worker->cur_work->flags & IO_WQ_WORK_NO_CANCEL) &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300977 match->fn(worker->cur_work, match->data)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600978 send_sig(SIGINT, worker->task, 1);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300979 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600980 }
Jens Axboe36c2f922019-11-13 09:43:34 -0700981 spin_unlock_irqrestore(&worker->lock, flags);
Jens Axboe771b53d02019-10-22 10:25:58 -0600982
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300983 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600984}
985
Pavel Begunkov204361a2020-08-23 20:33:10 +0300986static inline void io_wqe_remove_pending(struct io_wqe *wqe,
987 struct io_wq_work *work,
988 struct io_wq_work_node *prev)
989{
990 unsigned int hash = io_get_work_hash(work);
991 struct io_wq_work *prev_work = NULL;
992
993 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
994 if (prev)
995 prev_work = container_of(prev, struct io_wq_work, list);
996 if (prev_work && io_get_work_hash(prev_work) == hash)
997 wqe->hash_tail[hash] = prev_work;
998 else
999 wqe->hash_tail[hash] = NULL;
1000 }
1001 wq_list_del(&wqe->work_list, &work->list, prev);
1002}
1003
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001004static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001005 struct io_cb_cancel_data *match)
Jens Axboe771b53d02019-10-22 10:25:58 -06001006{
Jens Axboe6206f0e2019-11-26 11:59:32 -07001007 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -06001008 struct io_wq_work *work;
Jens Axboe6f726532019-11-05 13:51:51 -07001009 unsigned long flags;
Jens Axboe771b53d02019-10-22 10:25:58 -06001010
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001011retry:
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001012 raw_spin_lock_irqsave(&wqe->lock, flags);
Jens Axboe6206f0e2019-11-26 11:59:32 -07001013 wq_list_for_each(node, prev, &wqe->work_list) {
1014 work = container_of(node, struct io_wq_work, list);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001015 if (!match->fn(work, match->data))
1016 continue;
Pavel Begunkov204361a2020-08-23 20:33:10 +03001017 io_wqe_remove_pending(wqe, work, prev);
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001018 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001019 io_run_cancel(work, wqe);
1020 match->nr_pending++;
1021 if (!match->cancel_all)
1022 return;
1023
1024 /* not safe to continue after unlock */
1025 goto retry;
Jens Axboe771b53d02019-10-22 10:25:58 -06001026 }
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001027 raw_spin_unlock_irqrestore(&wqe->lock, flags);
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001028}
Jens Axboe771b53d02019-10-22 10:25:58 -06001029
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001030static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001031 struct io_cb_cancel_data *match)
1032{
Jens Axboe771b53d02019-10-22 10:25:58 -06001033 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001034 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -06001035 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -06001036}
1037
Pavel Begunkov2293b412020-03-07 01:15:39 +03001038enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001039 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +03001040{
1041 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001042 .fn = cancel,
1043 .data = data,
1044 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +03001045 };
Pavel Begunkov2293b412020-03-07 01:15:39 +03001046 int node;
1047
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001048 /*
1049 * First check pending list, if we're lucky we can just remove it
1050 * from there. CANCEL_OK means that the work is returned as-new,
1051 * no completion will be posted for it.
1052 */
Pavel Begunkov2293b412020-03-07 01:15:39 +03001053 for_each_node(node) {
1054 struct io_wqe *wqe = wq->wqes[node];
1055
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001056 io_wqe_cancel_pending_work(wqe, &match);
1057 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001058 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001059 }
1060
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001061 /*
1062 * Now check if a free (going busy) or busy worker has the work
1063 * currently running. If we find it there, we'll return CANCEL_RUNNING
1064 * as an indication that we attempt to signal cancellation. The
1065 * completion will run normally in this case.
1066 */
1067 for_each_node(node) {
1068 struct io_wqe *wqe = wq->wqes[node];
1069
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001070 io_wqe_cancel_running_work(wqe, &match);
1071 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001072 return IO_WQ_CANCEL_RUNNING;
1073 }
1074
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001075 if (match.nr_running)
1076 return IO_WQ_CANCEL_RUNNING;
1077 if (match.nr_pending)
1078 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001079 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001080}
1081
Jens Axboe576a3472019-11-25 08:49:20 -07001082struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -06001083{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001084 int ret = -ENOMEM, node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001085 struct io_wq *wq;
1086
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001087 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001088 return ERR_PTR(-EINVAL);
Pavel Begunkov932be4c2021-06-17 18:13:59 +01001089 if (WARN_ON_ONCE(!bounded))
1090 return ERR_PTR(-EINVAL);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001091
Jann Hornad6e0052019-11-26 17:39:45 +01001092 wq = kzalloc(sizeof(*wq), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001093 if (!wq)
1094 return ERR_PTR(-ENOMEM);
1095
Jann Horn3fc50ab2019-11-26 19:10:20 +01001096 wq->wqes = kcalloc(nr_node_ids, sizeof(struct io_wqe *), GFP_KERNEL);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001097 if (!wq->wqes)
1098 goto err_wq;
1099
1100 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1101 if (ret)
1102 goto err_wqes;
Jens Axboe771b53d02019-10-22 10:25:58 -06001103
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001104 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001105 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -07001106
Jens Axboec5def4a2019-11-07 11:41:16 -07001107 /* caller must already hold a reference to this */
Jens Axboe576a3472019-11-25 08:49:20 -07001108 wq->user = data->user;
Jens Axboec5def4a2019-11-07 11:41:16 -07001109
Jens Axboe43c01fb2020-10-22 09:02:50 -06001110 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +01001111 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -06001112 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001113 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001114
Jens Axboe75634392020-02-11 06:30:06 -07001115 if (!node_online(alloc_node))
1116 alloc_node = NUMA_NO_NODE;
1117 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -06001118 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +01001119 goto err;
1120 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001121 wqe->node = alloc_node;
Jens Axboec5def4a2019-11-07 11:41:16 -07001122 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
1123 atomic_set(&wqe->acct[IO_WQ_ACCT_BOUND].nr_running, 0);
Jens Axboe576a3472019-11-25 08:49:20 -07001124 if (wq->user) {
Jens Axboec5def4a2019-11-07 11:41:16 -07001125 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
1126 task_rlimit(current, RLIMIT_NPROC);
1127 }
1128 atomic_set(&wqe->acct[IO_WQ_ACCT_UNBOUND].nr_running, 0);
Jens Axboe771b53d02019-10-22 10:25:58 -06001129 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001130 raw_spin_lock_init(&wqe->lock);
Jens Axboe6206f0e2019-11-26 11:59:32 -07001131 INIT_WQ_LIST(&wqe->work_list);
Jens Axboe021d1cd2019-11-14 08:00:41 -07001132 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -07001133 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -06001134 }
1135
1136 init_completion(&wq->done);
1137
Jens Axboe771b53d02019-10-22 10:25:58 -06001138 wq->manager = kthread_create(io_wq_manager, wq, "io_wq_manager");
1139 if (!IS_ERR(wq->manager)) {
1140 wake_up_process(wq->manager);
Jens Axboeb60fda62019-11-19 08:37:07 -07001141 wait_for_completion(&wq->done);
1142 if (test_bit(IO_WQ_BIT_ERROR, &wq->state)) {
1143 ret = -ENOMEM;
1144 goto err;
1145 }
Jens Axboe848f7e12020-01-23 15:33:32 -07001146 refcount_set(&wq->use_refs, 1);
Jens Axboeb60fda62019-11-19 08:37:07 -07001147 reinit_completion(&wq->done);
Jens Axboe771b53d02019-10-22 10:25:58 -06001148 return wq;
1149 }
1150
1151 ret = PTR_ERR(wq->manager);
Jens Axboe771b53d02019-10-22 10:25:58 -06001152 complete(&wq->done);
Jens Axboeb60fda62019-11-19 08:37:07 -07001153err:
Jens Axboe43c01fb2020-10-22 09:02:50 -06001154 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jann Horn3fc50ab2019-11-26 19:10:20 +01001155 for_each_node(node)
1156 kfree(wq->wqes[node]);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001157err_wqes:
Jens Axboeb60fda62019-11-19 08:37:07 -07001158 kfree(wq->wqes);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001159err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -07001160 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -06001161 return ERR_PTR(ret);
1162}
1163
Pavel Begunkoveba6f5a2020-01-28 03:15:47 +03001164bool io_wq_get(struct io_wq *wq, struct io_wq_data *data)
1165{
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001166 if (data->free_work != wq->free_work || data->do_work != wq->do_work)
Pavel Begunkoveba6f5a2020-01-28 03:15:47 +03001167 return false;
1168
1169 return refcount_inc_not_zero(&wq->use_refs);
1170}
1171
Jens Axboe848f7e12020-01-23 15:33:32 -07001172static void __io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001173{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001174 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001175
Jens Axboe43c01fb2020-10-22 09:02:50 -06001176 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1177
Jens Axboeb60fda62019-11-19 08:37:07 -07001178 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1179 if (wq->manager)
Jens Axboe771b53d02019-10-22 10:25:58 -06001180 kthread_stop(wq->manager);
Jens Axboe771b53d02019-10-22 10:25:58 -06001181
1182 rcu_read_lock();
Jann Horn3fc50ab2019-11-26 19:10:20 +01001183 for_each_node(node)
1184 io_wq_for_each_worker(wq->wqes[node], io_wq_worker_wake, NULL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001185 rcu_read_unlock();
1186
1187 wait_for_completion(&wq->done);
1188
Jann Horn3fc50ab2019-11-26 19:10:20 +01001189 for_each_node(node)
1190 kfree(wq->wqes[node]);
Jens Axboe771b53d02019-10-22 10:25:58 -06001191 kfree(wq->wqes);
1192 kfree(wq);
1193}
Jens Axboe848f7e12020-01-23 15:33:32 -07001194
1195void io_wq_destroy(struct io_wq *wq)
1196{
1197 if (refcount_dec_and_test(&wq->use_refs))
1198 __io_wq_destroy(wq);
1199}
Jens Axboeaa96bf82020-04-03 11:26:26 -06001200
1201struct task_struct *io_wq_get_task(struct io_wq *wq)
1202{
1203 return wq->manager;
1204}
Jens Axboe43c01fb2020-10-22 09:02:50 -06001205
1206static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1207{
1208 struct task_struct *task = worker->task;
1209 struct rq_flags rf;
1210 struct rq *rq;
1211
1212 rq = task_rq_lock(task, &rf);
1213 do_set_cpus_allowed(task, cpumask_of_node(worker->wqe->node));
1214 task->flags |= PF_NO_SETAFFINITY;
1215 task_rq_unlock(rq, task, &rf);
1216 return false;
1217}
1218
1219static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1220{
1221 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1222 int i;
1223
1224 rcu_read_lock();
1225 for_each_node(i)
1226 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, NULL);
1227 rcu_read_unlock();
1228 return 0;
1229}
1230
1231static __init int io_wq_init(void)
1232{
1233 int ret;
1234
1235 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
1236 io_wq_cpu_online, NULL);
1237 if (ret < 0)
1238 return ret;
1239 io_wq_online = ret;
1240 return 0;
1241}
1242subsys_initcall(io_wq_init);