OSDN Git Service

Merge tag 'write-page-prefaulting' of git://git.kernel.org/pub/scm/linux/kernel/git...
[uclinux-h8/linux.git] / fs / io-wq.c
1 // 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/percpu.h>
13 #include <linux/slab.h>
14 #include <linux/rculist_nulls.h>
15 #include <linux/cpu.h>
16 #include <linux/tracehook.h>
17 #include <linux/audit.h>
18 #include <uapi/linux/io_uring.h>
19
20 #include "io-wq.h"
21
22 #define WORKER_IDLE_TIMEOUT     (5 * HZ)
23
24 enum {
25         IO_WORKER_F_UP          = 1,    /* up and active */
26         IO_WORKER_F_RUNNING     = 2,    /* account as running */
27         IO_WORKER_F_FREE        = 4,    /* worker on free list */
28         IO_WORKER_F_BOUND       = 8,    /* is doing bounded work */
29 };
30
31 enum {
32         IO_WQ_BIT_EXIT          = 0,    /* wq exiting */
33 };
34
35 enum {
36         IO_ACCT_STALLED_BIT     = 0,    /* stalled on hash */
37 };
38
39 /*
40  * One for each thread in a wqe pool
41  */
42 struct io_worker {
43         refcount_t ref;
44         unsigned flags;
45         struct hlist_nulls_node nulls_node;
46         struct list_head all_list;
47         struct task_struct *task;
48         struct io_wqe *wqe;
49
50         struct io_wq_work *cur_work;
51         struct io_wq_work *next_work;
52         raw_spinlock_t lock;
53
54         struct completion ref_done;
55
56         unsigned long create_state;
57         struct callback_head create_work;
58         int create_index;
59
60         union {
61                 struct rcu_head rcu;
62                 struct work_struct work;
63         };
64 };
65
66 #if BITS_PER_LONG == 64
67 #define IO_WQ_HASH_ORDER        6
68 #else
69 #define IO_WQ_HASH_ORDER        5
70 #endif
71
72 #define IO_WQ_NR_HASH_BUCKETS   (1u << IO_WQ_HASH_ORDER)
73
74 struct io_wqe_acct {
75         unsigned nr_workers;
76         unsigned max_workers;
77         int index;
78         atomic_t nr_running;
79         raw_spinlock_t lock;
80         struct io_wq_work_list work_list;
81         unsigned long flags;
82 };
83
84 enum {
85         IO_WQ_ACCT_BOUND,
86         IO_WQ_ACCT_UNBOUND,
87         IO_WQ_ACCT_NR,
88 };
89
90 /*
91  * Per-node worker thread pool
92  */
93 struct io_wqe {
94         raw_spinlock_t lock;
95         struct io_wqe_acct acct[IO_WQ_ACCT_NR];
96
97         int node;
98
99         struct hlist_nulls_head free_list;
100         struct list_head all_list;
101
102         struct wait_queue_entry wait;
103
104         struct io_wq *wq;
105         struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
106
107         cpumask_var_t cpu_mask;
108 };
109
110 /*
111  * Per io_wq state
112   */
113 struct io_wq {
114         unsigned long state;
115
116         free_work_fn *free_work;
117         io_wq_work_fn *do_work;
118
119         struct io_wq_hash *hash;
120
121         atomic_t worker_refs;
122         struct completion worker_done;
123
124         struct hlist_node cpuhp_node;
125
126         struct task_struct *task;
127
128         struct io_wqe *wqes[];
129 };
130
131 static enum cpuhp_state io_wq_online;
132
133 struct io_cb_cancel_data {
134         work_cancel_fn *fn;
135         void *data;
136         int nr_running;
137         int nr_pending;
138         bool cancel_all;
139 };
140
141 static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index);
142 static void io_wqe_dec_running(struct io_worker *worker);
143 static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
144                                         struct io_wqe_acct *acct,
145                                         struct io_cb_cancel_data *match);
146 static void create_worker_cb(struct callback_head *cb);
147 static void io_wq_cancel_tw_create(struct io_wq *wq);
148
149 static bool io_worker_get(struct io_worker *worker)
150 {
151         return refcount_inc_not_zero(&worker->ref);
152 }
153
154 static void io_worker_release(struct io_worker *worker)
155 {
156         if (refcount_dec_and_test(&worker->ref))
157                 complete(&worker->ref_done);
158 }
159
160 static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
161 {
162         return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
163 }
164
165 static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
166                                                    struct io_wq_work *work)
167 {
168         return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
169 }
170
171 static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
172 {
173         return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
174 }
175
176 static void io_worker_ref_put(struct io_wq *wq)
177 {
178         if (atomic_dec_and_test(&wq->worker_refs))
179                 complete(&wq->worker_done);
180 }
181
182 static void io_worker_cancel_cb(struct io_worker *worker)
183 {
184         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
185         struct io_wqe *wqe = worker->wqe;
186         struct io_wq *wq = wqe->wq;
187
188         atomic_dec(&acct->nr_running);
189         raw_spin_lock(&worker->wqe->lock);
190         acct->nr_workers--;
191         raw_spin_unlock(&worker->wqe->lock);
192         io_worker_ref_put(wq);
193         clear_bit_unlock(0, &worker->create_state);
194         io_worker_release(worker);
195 }
196
197 static bool io_task_worker_match(struct callback_head *cb, void *data)
198 {
199         struct io_worker *worker;
200
201         if (cb->func != create_worker_cb)
202                 return false;
203         worker = container_of(cb, struct io_worker, create_work);
204         return worker == data;
205 }
206
207 static void io_worker_exit(struct io_worker *worker)
208 {
209         struct io_wqe *wqe = worker->wqe;
210         struct io_wq *wq = wqe->wq;
211
212         while (1) {
213                 struct callback_head *cb = task_work_cancel_match(wq->task,
214                                                 io_task_worker_match, worker);
215
216                 if (!cb)
217                         break;
218                 io_worker_cancel_cb(worker);
219         }
220
221         io_worker_release(worker);
222         wait_for_completion(&worker->ref_done);
223
224         raw_spin_lock(&wqe->lock);
225         if (worker->flags & IO_WORKER_F_FREE)
226                 hlist_nulls_del_rcu(&worker->nulls_node);
227         list_del_rcu(&worker->all_list);
228         raw_spin_unlock(&wqe->lock);
229         io_wqe_dec_running(worker);
230         worker->flags = 0;
231         preempt_disable();
232         current->flags &= ~PF_IO_WORKER;
233         preempt_enable();
234
235         kfree_rcu(worker, rcu);
236         io_worker_ref_put(wqe->wq);
237         do_exit(0);
238 }
239
240 static inline bool io_acct_run_queue(struct io_wqe_acct *acct)
241 {
242         bool ret = false;
243
244         raw_spin_lock(&acct->lock);
245         if (!wq_list_empty(&acct->work_list) &&
246             !test_bit(IO_ACCT_STALLED_BIT, &acct->flags))
247                 ret = true;
248         raw_spin_unlock(&acct->lock);
249
250         return ret;
251 }
252
253 /*
254  * Check head of free list for an available worker. If one isn't available,
255  * caller must create one.
256  */
257 static bool io_wqe_activate_free_worker(struct io_wqe *wqe,
258                                         struct io_wqe_acct *acct)
259         __must_hold(RCU)
260 {
261         struct hlist_nulls_node *n;
262         struct io_worker *worker;
263
264         /*
265          * Iterate free_list and see if we can find an idle worker to
266          * activate. If a given worker is on the free_list but in the process
267          * of exiting, keep trying.
268          */
269         hlist_nulls_for_each_entry_rcu(worker, n, &wqe->free_list, nulls_node) {
270                 if (!io_worker_get(worker))
271                         continue;
272                 if (io_wqe_get_acct(worker) != acct) {
273                         io_worker_release(worker);
274                         continue;
275                 }
276                 if (wake_up_process(worker->task)) {
277                         io_worker_release(worker);
278                         return true;
279                 }
280                 io_worker_release(worker);
281         }
282
283         return false;
284 }
285
286 /*
287  * We need a worker. If we find a free one, we're good. If not, and we're
288  * below the max number of workers, create one.
289  */
290 static bool io_wqe_create_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
291 {
292         /*
293          * Most likely an attempt to queue unbounded work on an io_wq that
294          * wasn't setup with any unbounded workers.
295          */
296         if (unlikely(!acct->max_workers))
297                 pr_warn_once("io-wq is not configured for unbound workers");
298
299         raw_spin_lock(&wqe->lock);
300         if (acct->nr_workers >= acct->max_workers) {
301                 raw_spin_unlock(&wqe->lock);
302                 return true;
303         }
304         acct->nr_workers++;
305         raw_spin_unlock(&wqe->lock);
306         atomic_inc(&acct->nr_running);
307         atomic_inc(&wqe->wq->worker_refs);
308         return create_io_worker(wqe->wq, wqe, acct->index);
309 }
310
311 static void io_wqe_inc_running(struct io_worker *worker)
312 {
313         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
314
315         atomic_inc(&acct->nr_running);
316 }
317
318 static void create_worker_cb(struct callback_head *cb)
319 {
320         struct io_worker *worker;
321         struct io_wq *wq;
322         struct io_wqe *wqe;
323         struct io_wqe_acct *acct;
324         bool do_create = false;
325
326         worker = container_of(cb, struct io_worker, create_work);
327         wqe = worker->wqe;
328         wq = wqe->wq;
329         acct = &wqe->acct[worker->create_index];
330         raw_spin_lock(&wqe->lock);
331         if (acct->nr_workers < acct->max_workers) {
332                 acct->nr_workers++;
333                 do_create = true;
334         }
335         raw_spin_unlock(&wqe->lock);
336         if (do_create) {
337                 create_io_worker(wq, wqe, worker->create_index);
338         } else {
339                 atomic_dec(&acct->nr_running);
340                 io_worker_ref_put(wq);
341         }
342         clear_bit_unlock(0, &worker->create_state);
343         io_worker_release(worker);
344 }
345
346 static bool io_queue_worker_create(struct io_worker *worker,
347                                    struct io_wqe_acct *acct,
348                                    task_work_func_t func)
349 {
350         struct io_wqe *wqe = worker->wqe;
351         struct io_wq *wq = wqe->wq;
352
353         /* raced with exit, just ignore create call */
354         if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
355                 goto fail;
356         if (!io_worker_get(worker))
357                 goto fail;
358         /*
359          * create_state manages ownership of create_work/index. We should
360          * only need one entry per worker, as the worker going to sleep
361          * will trigger the condition, and waking will clear it once it
362          * runs the task_work.
363          */
364         if (test_bit(0, &worker->create_state) ||
365             test_and_set_bit_lock(0, &worker->create_state))
366                 goto fail_release;
367
368         atomic_inc(&wq->worker_refs);
369         init_task_work(&worker->create_work, func);
370         worker->create_index = acct->index;
371         if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL)) {
372                 /*
373                  * EXIT may have been set after checking it above, check after
374                  * adding the task_work and remove any creation item if it is
375                  * now set. wq exit does that too, but we can have added this
376                  * work item after we canceled in io_wq_exit_workers().
377                  */
378                 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
379                         io_wq_cancel_tw_create(wq);
380                 io_worker_ref_put(wq);
381                 return true;
382         }
383         io_worker_ref_put(wq);
384         clear_bit_unlock(0, &worker->create_state);
385 fail_release:
386         io_worker_release(worker);
387 fail:
388         atomic_dec(&acct->nr_running);
389         io_worker_ref_put(wq);
390         return false;
391 }
392
393 static void io_wqe_dec_running(struct io_worker *worker)
394 {
395         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
396         struct io_wqe *wqe = worker->wqe;
397
398         if (!(worker->flags & IO_WORKER_F_UP))
399                 return;
400
401         if (!atomic_dec_and_test(&acct->nr_running))
402                 return;
403         if (!io_acct_run_queue(acct))
404                 return;
405
406         atomic_inc(&acct->nr_running);
407         atomic_inc(&wqe->wq->worker_refs);
408         io_queue_worker_create(worker, acct, create_worker_cb);
409 }
410
411 /*
412  * Worker will start processing some work. Move it to the busy list, if
413  * it's currently on the freelist
414  */
415 static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker)
416 {
417         if (worker->flags & IO_WORKER_F_FREE) {
418                 worker->flags &= ~IO_WORKER_F_FREE;
419                 raw_spin_lock(&wqe->lock);
420                 hlist_nulls_del_init_rcu(&worker->nulls_node);
421                 raw_spin_unlock(&wqe->lock);
422         }
423 }
424
425 /*
426  * No work, worker going to sleep. Move to freelist, and unuse mm if we
427  * have one attached. Dropping the mm may potentially sleep, so we drop
428  * the lock in that case and return success. Since the caller has to
429  * retry the loop in that case (we changed task state), we don't regrab
430  * the lock if we return success.
431  */
432 static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
433         __must_hold(wqe->lock)
434 {
435         if (!(worker->flags & IO_WORKER_F_FREE)) {
436                 worker->flags |= IO_WORKER_F_FREE;
437                 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
438         }
439 }
440
441 static inline unsigned int io_get_work_hash(struct io_wq_work *work)
442 {
443         return work->flags >> IO_WQ_HASH_SHIFT;
444 }
445
446 static bool io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
447 {
448         struct io_wq *wq = wqe->wq;
449         bool ret = false;
450
451         spin_lock_irq(&wq->hash->wait.lock);
452         if (list_empty(&wqe->wait.entry)) {
453                 __add_wait_queue(&wq->hash->wait, &wqe->wait);
454                 if (!test_bit(hash, &wq->hash->map)) {
455                         __set_current_state(TASK_RUNNING);
456                         list_del_init(&wqe->wait.entry);
457                         ret = true;
458                 }
459         }
460         spin_unlock_irq(&wq->hash->wait.lock);
461         return ret;
462 }
463
464 static struct io_wq_work *io_get_next_work(struct io_wqe_acct *acct,
465                                            struct io_worker *worker)
466         __must_hold(acct->lock)
467 {
468         struct io_wq_work_node *node, *prev;
469         struct io_wq_work *work, *tail;
470         unsigned int stall_hash = -1U;
471         struct io_wqe *wqe = worker->wqe;
472
473         wq_list_for_each(node, prev, &acct->work_list) {
474                 unsigned int hash;
475
476                 work = container_of(node, struct io_wq_work, list);
477
478                 /* not hashed, can run anytime */
479                 if (!io_wq_is_hashed(work)) {
480                         wq_list_del(&acct->work_list, node, prev);
481                         return work;
482                 }
483
484                 hash = io_get_work_hash(work);
485                 /* all items with this hash lie in [work, tail] */
486                 tail = wqe->hash_tail[hash];
487
488                 /* hashed, can run if not already running */
489                 if (!test_and_set_bit(hash, &wqe->wq->hash->map)) {
490                         wqe->hash_tail[hash] = NULL;
491                         wq_list_cut(&acct->work_list, &tail->list, prev);
492                         return work;
493                 }
494                 if (stall_hash == -1U)
495                         stall_hash = hash;
496                 /* fast forward to a next hash, for-each will fix up @prev */
497                 node = &tail->list;
498         }
499
500         if (stall_hash != -1U) {
501                 bool unstalled;
502
503                 /*
504                  * Set this before dropping the lock to avoid racing with new
505                  * work being added and clearing the stalled bit.
506                  */
507                 set_bit(IO_ACCT_STALLED_BIT, &acct->flags);
508                 raw_spin_unlock(&acct->lock);
509                 unstalled = io_wait_on_hash(wqe, stall_hash);
510                 raw_spin_lock(&acct->lock);
511                 if (unstalled) {
512                         clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
513                         if (wq_has_sleeper(&wqe->wq->hash->wait))
514                                 wake_up(&wqe->wq->hash->wait);
515                 }
516         }
517
518         return NULL;
519 }
520
521 static bool io_flush_signals(void)
522 {
523         if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL))) {
524                 __set_current_state(TASK_RUNNING);
525                 tracehook_notify_signal();
526                 return true;
527         }
528         return false;
529 }
530
531 static void io_assign_current_work(struct io_worker *worker,
532                                    struct io_wq_work *work)
533 {
534         if (work) {
535                 io_flush_signals();
536                 cond_resched();
537         }
538
539         raw_spin_lock(&worker->lock);
540         worker->cur_work = work;
541         worker->next_work = NULL;
542         raw_spin_unlock(&worker->lock);
543 }
544
545 static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
546
547 static void io_worker_handle_work(struct io_worker *worker)
548 {
549         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
550         struct io_wqe *wqe = worker->wqe;
551         struct io_wq *wq = wqe->wq;
552         bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
553
554         do {
555                 struct io_wq_work *work;
556
557                 /*
558                  * If we got some work, mark us as busy. If we didn't, but
559                  * the list isn't empty, it means we stalled on hashed work.
560                  * Mark us stalled so we don't keep looking for work when we
561                  * can't make progress, any work completion or insertion will
562                  * clear the stalled flag.
563                  */
564                 raw_spin_lock(&acct->lock);
565                 work = io_get_next_work(acct, worker);
566                 raw_spin_unlock(&acct->lock);
567                 if (work) {
568                         __io_worker_busy(wqe, worker);
569
570                         /*
571                          * Make sure cancelation can find this, even before
572                          * it becomes the active work. That avoids a window
573                          * where the work has been removed from our general
574                          * work list, but isn't yet discoverable as the
575                          * current work item for this worker.
576                          */
577                         raw_spin_lock(&worker->lock);
578                         worker->next_work = work;
579                         raw_spin_unlock(&worker->lock);
580                 } else {
581                         break;
582                 }
583                 io_assign_current_work(worker, work);
584                 __set_current_state(TASK_RUNNING);
585
586                 /* handle a whole dependent link */
587                 do {
588                         struct io_wq_work *next_hashed, *linked;
589                         unsigned int hash = io_get_work_hash(work);
590
591                         next_hashed = wq_next_work(work);
592
593                         if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
594                                 work->flags |= IO_WQ_WORK_CANCEL;
595                         wq->do_work(work);
596                         io_assign_current_work(worker, NULL);
597
598                         linked = wq->free_work(work);
599                         work = next_hashed;
600                         if (!work && linked && !io_wq_is_hashed(linked)) {
601                                 work = linked;
602                                 linked = NULL;
603                         }
604                         io_assign_current_work(worker, work);
605                         if (linked)
606                                 io_wqe_enqueue(wqe, linked);
607
608                         if (hash != -1U && !next_hashed) {
609                                 /* serialize hash clear with wake_up() */
610                                 spin_lock_irq(&wq->hash->wait.lock);
611                                 clear_bit(hash, &wq->hash->map);
612                                 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
613                                 spin_unlock_irq(&wq->hash->wait.lock);
614                                 if (wq_has_sleeper(&wq->hash->wait))
615                                         wake_up(&wq->hash->wait);
616                         }
617                 } while (work);
618         } while (1);
619 }
620
621 static int io_wqe_worker(void *data)
622 {
623         struct io_worker *worker = data;
624         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
625         struct io_wqe *wqe = worker->wqe;
626         struct io_wq *wq = wqe->wq;
627         bool last_timeout = false;
628         char buf[TASK_COMM_LEN];
629
630         worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
631
632         snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
633         set_task_comm(current, buf);
634
635         audit_alloc_kernel(current);
636
637         while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
638                 long ret;
639
640                 set_current_state(TASK_INTERRUPTIBLE);
641                 while (io_acct_run_queue(acct))
642                         io_worker_handle_work(worker);
643
644                 raw_spin_lock(&wqe->lock);
645                 /* timed out, exit unless we're the last worker */
646                 if (last_timeout && acct->nr_workers > 1) {
647                         acct->nr_workers--;
648                         raw_spin_unlock(&wqe->lock);
649                         __set_current_state(TASK_RUNNING);
650                         break;
651                 }
652                 last_timeout = false;
653                 __io_worker_idle(wqe, worker);
654                 raw_spin_unlock(&wqe->lock);
655                 if (io_flush_signals())
656                         continue;
657                 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
658                 if (signal_pending(current)) {
659                         struct ksignal ksig;
660
661                         if (!get_signal(&ksig))
662                                 continue;
663                         break;
664                 }
665                 last_timeout = !ret;
666         }
667
668         if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
669                 io_worker_handle_work(worker);
670
671         audit_free(current);
672         io_worker_exit(worker);
673         return 0;
674 }
675
676 /*
677  * Called when a worker is scheduled in. Mark us as currently running.
678  */
679 void io_wq_worker_running(struct task_struct *tsk)
680 {
681         struct io_worker *worker = tsk->worker_private;
682
683         if (!worker)
684                 return;
685         if (!(worker->flags & IO_WORKER_F_UP))
686                 return;
687         if (worker->flags & IO_WORKER_F_RUNNING)
688                 return;
689         worker->flags |= IO_WORKER_F_RUNNING;
690         io_wqe_inc_running(worker);
691 }
692
693 /*
694  * Called when worker is going to sleep. If there are no workers currently
695  * running and we have work pending, wake up a free one or create a new one.
696  */
697 void io_wq_worker_sleeping(struct task_struct *tsk)
698 {
699         struct io_worker *worker = tsk->worker_private;
700
701         if (!worker)
702                 return;
703         if (!(worker->flags & IO_WORKER_F_UP))
704                 return;
705         if (!(worker->flags & IO_WORKER_F_RUNNING))
706                 return;
707
708         worker->flags &= ~IO_WORKER_F_RUNNING;
709         io_wqe_dec_running(worker);
710 }
711
712 static void io_init_new_worker(struct io_wqe *wqe, struct io_worker *worker,
713                                struct task_struct *tsk)
714 {
715         tsk->worker_private = worker;
716         worker->task = tsk;
717         set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
718         tsk->flags |= PF_NO_SETAFFINITY;
719
720         raw_spin_lock(&wqe->lock);
721         hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
722         list_add_tail_rcu(&worker->all_list, &wqe->all_list);
723         worker->flags |= IO_WORKER_F_FREE;
724         raw_spin_unlock(&wqe->lock);
725         wake_up_new_task(tsk);
726 }
727
728 static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
729 {
730         return true;
731 }
732
733 static inline bool io_should_retry_thread(long err)
734 {
735         /*
736          * Prevent perpetual task_work retry, if the task (or its group) is
737          * exiting.
738          */
739         if (fatal_signal_pending(current))
740                 return false;
741
742         switch (err) {
743         case -EAGAIN:
744         case -ERESTARTSYS:
745         case -ERESTARTNOINTR:
746         case -ERESTARTNOHAND:
747                 return true;
748         default:
749                 return false;
750         }
751 }
752
753 static void create_worker_cont(struct callback_head *cb)
754 {
755         struct io_worker *worker;
756         struct task_struct *tsk;
757         struct io_wqe *wqe;
758
759         worker = container_of(cb, struct io_worker, create_work);
760         clear_bit_unlock(0, &worker->create_state);
761         wqe = worker->wqe;
762         tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
763         if (!IS_ERR(tsk)) {
764                 io_init_new_worker(wqe, worker, tsk);
765                 io_worker_release(worker);
766                 return;
767         } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
768                 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
769
770                 atomic_dec(&acct->nr_running);
771                 raw_spin_lock(&wqe->lock);
772                 acct->nr_workers--;
773                 if (!acct->nr_workers) {
774                         struct io_cb_cancel_data match = {
775                                 .fn             = io_wq_work_match_all,
776                                 .cancel_all     = true,
777                         };
778
779                         raw_spin_unlock(&wqe->lock);
780                         while (io_acct_cancel_pending_work(wqe, acct, &match))
781                                 ;
782                 } else {
783                         raw_spin_unlock(&wqe->lock);
784                 }
785                 io_worker_ref_put(wqe->wq);
786                 kfree(worker);
787                 return;
788         }
789
790         /* re-create attempts grab a new worker ref, drop the existing one */
791         io_worker_release(worker);
792         schedule_work(&worker->work);
793 }
794
795 static void io_workqueue_create(struct work_struct *work)
796 {
797         struct io_worker *worker = container_of(work, struct io_worker, work);
798         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
799
800         if (!io_queue_worker_create(worker, acct, create_worker_cont))
801                 kfree(worker);
802 }
803
804 static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
805 {
806         struct io_wqe_acct *acct = &wqe->acct[index];
807         struct io_worker *worker;
808         struct task_struct *tsk;
809
810         __set_current_state(TASK_RUNNING);
811
812         worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
813         if (!worker) {
814 fail:
815                 atomic_dec(&acct->nr_running);
816                 raw_spin_lock(&wqe->lock);
817                 acct->nr_workers--;
818                 raw_spin_unlock(&wqe->lock);
819                 io_worker_ref_put(wq);
820                 return false;
821         }
822
823         refcount_set(&worker->ref, 1);
824         worker->wqe = wqe;
825         raw_spin_lock_init(&worker->lock);
826         init_completion(&worker->ref_done);
827
828         if (index == IO_WQ_ACCT_BOUND)
829                 worker->flags |= IO_WORKER_F_BOUND;
830
831         tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
832         if (!IS_ERR(tsk)) {
833                 io_init_new_worker(wqe, worker, tsk);
834         } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
835                 kfree(worker);
836                 goto fail;
837         } else {
838                 INIT_WORK(&worker->work, io_workqueue_create);
839                 schedule_work(&worker->work);
840         }
841
842         return true;
843 }
844
845 /*
846  * Iterate the passed in list and call the specific function for each
847  * worker that isn't exiting
848  */
849 static bool io_wq_for_each_worker(struct io_wqe *wqe,
850                                   bool (*func)(struct io_worker *, void *),
851                                   void *data)
852 {
853         struct io_worker *worker;
854         bool ret = false;
855
856         list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
857                 if (io_worker_get(worker)) {
858                         /* no task if node is/was offline */
859                         if (worker->task)
860                                 ret = func(worker, data);
861                         io_worker_release(worker);
862                         if (ret)
863                                 break;
864                 }
865         }
866
867         return ret;
868 }
869
870 static bool io_wq_worker_wake(struct io_worker *worker, void *data)
871 {
872         set_notify_signal(worker->task);
873         wake_up_process(worker->task);
874         return false;
875 }
876
877 static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
878 {
879         struct io_wq *wq = wqe->wq;
880
881         do {
882                 work->flags |= IO_WQ_WORK_CANCEL;
883                 wq->do_work(work);
884                 work = wq->free_work(work);
885         } while (work);
886 }
887
888 static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
889 {
890         struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
891         unsigned int hash;
892         struct io_wq_work *tail;
893
894         if (!io_wq_is_hashed(work)) {
895 append:
896                 wq_list_add_tail(&work->list, &acct->work_list);
897                 return;
898         }
899
900         hash = io_get_work_hash(work);
901         tail = wqe->hash_tail[hash];
902         wqe->hash_tail[hash] = work;
903         if (!tail)
904                 goto append;
905
906         wq_list_add_after(&work->list, &tail->list, &acct->work_list);
907 }
908
909 static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
910 {
911         return work == data;
912 }
913
914 static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
915 {
916         struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
917         struct io_cb_cancel_data match;
918         unsigned work_flags = work->flags;
919         bool do_create;
920
921         /*
922          * If io-wq is exiting for this task, or if the request has explicitly
923          * been marked as one that should not get executed, cancel it here.
924          */
925         if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
926             (work->flags & IO_WQ_WORK_CANCEL)) {
927                 io_run_cancel(work, wqe);
928                 return;
929         }
930
931         raw_spin_lock(&acct->lock);
932         io_wqe_insert_work(wqe, work);
933         clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
934         raw_spin_unlock(&acct->lock);
935
936         raw_spin_lock(&wqe->lock);
937         rcu_read_lock();
938         do_create = !io_wqe_activate_free_worker(wqe, acct);
939         rcu_read_unlock();
940
941         raw_spin_unlock(&wqe->lock);
942
943         if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
944             !atomic_read(&acct->nr_running))) {
945                 bool did_create;
946
947                 did_create = io_wqe_create_worker(wqe, acct);
948                 if (likely(did_create))
949                         return;
950
951                 raw_spin_lock(&wqe->lock);
952                 if (acct->nr_workers) {
953                         raw_spin_unlock(&wqe->lock);
954                         return;
955                 }
956                 raw_spin_unlock(&wqe->lock);
957
958                 /* fatal condition, failed to create the first worker */
959                 match.fn                = io_wq_work_match_item,
960                 match.data              = work,
961                 match.cancel_all        = false,
962
963                 io_acct_cancel_pending_work(wqe, acct, &match);
964         }
965 }
966
967 void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
968 {
969         struct io_wqe *wqe = wq->wqes[numa_node_id()];
970
971         io_wqe_enqueue(wqe, work);
972 }
973
974 /*
975  * Work items that hash to the same value will not be done in parallel.
976  * Used to limit concurrent writes, generally hashed by inode.
977  */
978 void io_wq_hash_work(struct io_wq_work *work, void *val)
979 {
980         unsigned int bit;
981
982         bit = hash_ptr(val, IO_WQ_HASH_ORDER);
983         work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
984 }
985
986 static bool __io_wq_worker_cancel(struct io_worker *worker,
987                                   struct io_cb_cancel_data *match,
988                                   struct io_wq_work *work)
989 {
990         if (work && match->fn(work, match->data)) {
991                 work->flags |= IO_WQ_WORK_CANCEL;
992                 set_notify_signal(worker->task);
993                 return true;
994         }
995
996         return false;
997 }
998
999 static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
1000 {
1001         struct io_cb_cancel_data *match = data;
1002
1003         /*
1004          * Hold the lock to avoid ->cur_work going out of scope, caller
1005          * may dereference the passed in work.
1006          */
1007         raw_spin_lock(&worker->lock);
1008         if (__io_wq_worker_cancel(worker, match, worker->cur_work) ||
1009             __io_wq_worker_cancel(worker, match, worker->next_work))
1010                 match->nr_running++;
1011         raw_spin_unlock(&worker->lock);
1012
1013         return match->nr_running && !match->cancel_all;
1014 }
1015
1016 static inline void io_wqe_remove_pending(struct io_wqe *wqe,
1017                                          struct io_wq_work *work,
1018                                          struct io_wq_work_node *prev)
1019 {
1020         struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
1021         unsigned int hash = io_get_work_hash(work);
1022         struct io_wq_work *prev_work = NULL;
1023
1024         if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
1025                 if (prev)
1026                         prev_work = container_of(prev, struct io_wq_work, list);
1027                 if (prev_work && io_get_work_hash(prev_work) == hash)
1028                         wqe->hash_tail[hash] = prev_work;
1029                 else
1030                         wqe->hash_tail[hash] = NULL;
1031         }
1032         wq_list_del(&acct->work_list, &work->list, prev);
1033 }
1034
1035 static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
1036                                         struct io_wqe_acct *acct,
1037                                         struct io_cb_cancel_data *match)
1038 {
1039         struct io_wq_work_node *node, *prev;
1040         struct io_wq_work *work;
1041
1042         raw_spin_lock(&acct->lock);
1043         wq_list_for_each(node, prev, &acct->work_list) {
1044                 work = container_of(node, struct io_wq_work, list);
1045                 if (!match->fn(work, match->data))
1046                         continue;
1047                 io_wqe_remove_pending(wqe, work, prev);
1048                 raw_spin_unlock(&acct->lock);
1049                 io_run_cancel(work, wqe);
1050                 match->nr_pending++;
1051                 /* not safe to continue after unlock */
1052                 return true;
1053         }
1054         raw_spin_unlock(&acct->lock);
1055
1056         return false;
1057 }
1058
1059 static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
1060                                        struct io_cb_cancel_data *match)
1061 {
1062         int i;
1063 retry:
1064         for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1065                 struct io_wqe_acct *acct = io_get_acct(wqe, i == 0);
1066
1067                 if (io_acct_cancel_pending_work(wqe, acct, match)) {
1068                         if (match->cancel_all)
1069                                 goto retry;
1070                         break;
1071                 }
1072         }
1073 }
1074
1075 static void io_wqe_cancel_running_work(struct io_wqe *wqe,
1076                                        struct io_cb_cancel_data *match)
1077 {
1078         rcu_read_lock();
1079         io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
1080         rcu_read_unlock();
1081 }
1082
1083 enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
1084                                   void *data, bool cancel_all)
1085 {
1086         struct io_cb_cancel_data match = {
1087                 .fn             = cancel,
1088                 .data           = data,
1089                 .cancel_all     = cancel_all,
1090         };
1091         int node;
1092
1093         /*
1094          * First check pending list, if we're lucky we can just remove it
1095          * from there. CANCEL_OK means that the work is returned as-new,
1096          * no completion will be posted for it.
1097          *
1098          * Then check if a free (going busy) or busy worker has the work
1099          * currently running. If we find it there, we'll return CANCEL_RUNNING
1100          * as an indication that we attempt to signal cancellation. The
1101          * completion will run normally in this case.
1102          *
1103          * Do both of these while holding the wqe->lock, to ensure that
1104          * we'll find a work item regardless of state.
1105          */
1106         for_each_node(node) {
1107                 struct io_wqe *wqe = wq->wqes[node];
1108
1109                 io_wqe_cancel_pending_work(wqe, &match);
1110                 if (match.nr_pending && !match.cancel_all)
1111                         return IO_WQ_CANCEL_OK;
1112
1113                 raw_spin_lock(&wqe->lock);
1114                 io_wqe_cancel_running_work(wqe, &match);
1115                 raw_spin_unlock(&wqe->lock);
1116                 if (match.nr_running && !match.cancel_all)
1117                         return IO_WQ_CANCEL_RUNNING;
1118         }
1119
1120         if (match.nr_running)
1121                 return IO_WQ_CANCEL_RUNNING;
1122         if (match.nr_pending)
1123                 return IO_WQ_CANCEL_OK;
1124         return IO_WQ_CANCEL_NOTFOUND;
1125 }
1126
1127 static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1128                             int sync, void *key)
1129 {
1130         struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
1131         int i;
1132
1133         list_del_init(&wait->entry);
1134
1135         rcu_read_lock();
1136         for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1137                 struct io_wqe_acct *acct = &wqe->acct[i];
1138
1139                 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1140                         io_wqe_activate_free_worker(wqe, acct);
1141         }
1142         rcu_read_unlock();
1143         return 1;
1144 }
1145
1146 struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
1147 {
1148         int ret, node, i;
1149         struct io_wq *wq;
1150
1151         if (WARN_ON_ONCE(!data->free_work || !data->do_work))
1152                 return ERR_PTR(-EINVAL);
1153         if (WARN_ON_ONCE(!bounded))
1154                 return ERR_PTR(-EINVAL);
1155
1156         wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
1157         if (!wq)
1158                 return ERR_PTR(-ENOMEM);
1159         ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1160         if (ret)
1161                 goto err_wq;
1162
1163         refcount_inc(&data->hash->refs);
1164         wq->hash = data->hash;
1165         wq->free_work = data->free_work;
1166         wq->do_work = data->do_work;
1167
1168         ret = -ENOMEM;
1169         for_each_node(node) {
1170                 struct io_wqe *wqe;
1171                 int alloc_node = node;
1172
1173                 if (!node_online(alloc_node))
1174                         alloc_node = NUMA_NO_NODE;
1175                 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
1176                 if (!wqe)
1177                         goto err;
1178                 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
1179                         goto err;
1180                 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
1181                 wq->wqes[node] = wqe;
1182                 wqe->node = alloc_node;
1183                 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
1184                 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
1185                                         task_rlimit(current, RLIMIT_NPROC);
1186                 INIT_LIST_HEAD(&wqe->wait.entry);
1187                 wqe->wait.func = io_wqe_hash_wake;
1188                 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1189                         struct io_wqe_acct *acct = &wqe->acct[i];
1190
1191                         acct->index = i;
1192                         atomic_set(&acct->nr_running, 0);
1193                         INIT_WQ_LIST(&acct->work_list);
1194                         raw_spin_lock_init(&acct->lock);
1195                 }
1196                 wqe->wq = wq;
1197                 raw_spin_lock_init(&wqe->lock);
1198                 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
1199                 INIT_LIST_HEAD(&wqe->all_list);
1200         }
1201
1202         wq->task = get_task_struct(data->task);
1203         atomic_set(&wq->worker_refs, 1);
1204         init_completion(&wq->worker_done);
1205         return wq;
1206 err:
1207         io_wq_put_hash(data->hash);
1208         cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1209         for_each_node(node) {
1210                 if (!wq->wqes[node])
1211                         continue;
1212                 free_cpumask_var(wq->wqes[node]->cpu_mask);
1213                 kfree(wq->wqes[node]);
1214         }
1215 err_wq:
1216         kfree(wq);
1217         return ERR_PTR(ret);
1218 }
1219
1220 static bool io_task_work_match(struct callback_head *cb, void *data)
1221 {
1222         struct io_worker *worker;
1223
1224         if (cb->func != create_worker_cb && cb->func != create_worker_cont)
1225                 return false;
1226         worker = container_of(cb, struct io_worker, create_work);
1227         return worker->wqe->wq == data;
1228 }
1229
1230 void io_wq_exit_start(struct io_wq *wq)
1231 {
1232         set_bit(IO_WQ_BIT_EXIT, &wq->state);
1233 }
1234
1235 static void io_wq_cancel_tw_create(struct io_wq *wq)
1236 {
1237         struct callback_head *cb;
1238
1239         while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
1240                 struct io_worker *worker;
1241
1242                 worker = container_of(cb, struct io_worker, create_work);
1243                 io_worker_cancel_cb(worker);
1244         }
1245 }
1246
1247 static void io_wq_exit_workers(struct io_wq *wq)
1248 {
1249         int node;
1250
1251         if (!wq->task)
1252                 return;
1253
1254         io_wq_cancel_tw_create(wq);
1255
1256         rcu_read_lock();
1257         for_each_node(node) {
1258                 struct io_wqe *wqe = wq->wqes[node];
1259
1260                 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
1261         }
1262         rcu_read_unlock();
1263         io_worker_ref_put(wq);
1264         wait_for_completion(&wq->worker_done);
1265
1266         for_each_node(node) {
1267                 spin_lock_irq(&wq->hash->wait.lock);
1268                 list_del_init(&wq->wqes[node]->wait.entry);
1269                 spin_unlock_irq(&wq->hash->wait.lock);
1270         }
1271         put_task_struct(wq->task);
1272         wq->task = NULL;
1273 }
1274
1275 static void io_wq_destroy(struct io_wq *wq)
1276 {
1277         int node;
1278
1279         cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1280
1281         for_each_node(node) {
1282                 struct io_wqe *wqe = wq->wqes[node];
1283                 struct io_cb_cancel_data match = {
1284                         .fn             = io_wq_work_match_all,
1285                         .cancel_all     = true,
1286                 };
1287                 io_wqe_cancel_pending_work(wqe, &match);
1288                 free_cpumask_var(wqe->cpu_mask);
1289                 kfree(wqe);
1290         }
1291         io_wq_put_hash(wq->hash);
1292         kfree(wq);
1293 }
1294
1295 void io_wq_put_and_exit(struct io_wq *wq)
1296 {
1297         WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1298
1299         io_wq_exit_workers(wq);
1300         io_wq_destroy(wq);
1301 }
1302
1303 struct online_data {
1304         unsigned int cpu;
1305         bool online;
1306 };
1307
1308 static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1309 {
1310         struct online_data *od = data;
1311
1312         if (od->online)
1313                 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1314         else
1315                 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
1316         return false;
1317 }
1318
1319 static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1320 {
1321         struct online_data od = {
1322                 .cpu = cpu,
1323                 .online = online
1324         };
1325         int i;
1326
1327         rcu_read_lock();
1328         for_each_node(i)
1329                 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1330         rcu_read_unlock();
1331         return 0;
1332 }
1333
1334 static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1335 {
1336         struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1337
1338         return __io_wq_cpu_online(wq, cpu, true);
1339 }
1340
1341 static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1342 {
1343         struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1344
1345         return __io_wq_cpu_online(wq, cpu, false);
1346 }
1347
1348 int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1349 {
1350         int i;
1351
1352         rcu_read_lock();
1353         for_each_node(i) {
1354                 struct io_wqe *wqe = wq->wqes[i];
1355
1356                 if (mask)
1357                         cpumask_copy(wqe->cpu_mask, mask);
1358                 else
1359                         cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1360         }
1361         rcu_read_unlock();
1362         return 0;
1363 }
1364
1365 /*
1366  * Set max number of unbounded workers, returns old value. If new_count is 0,
1367  * then just return the old value.
1368  */
1369 int io_wq_max_workers(struct io_wq *wq, int *new_count)
1370 {
1371         int prev[IO_WQ_ACCT_NR];
1372         bool first_node = true;
1373         int i, node;
1374
1375         BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND   != (int) IO_WQ_BOUND);
1376         BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1377         BUILD_BUG_ON((int) IO_WQ_ACCT_NR      != 2);
1378
1379         for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1380                 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1381                         new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1382         }
1383
1384         for (i = 0; i < IO_WQ_ACCT_NR; i++)
1385                 prev[i] = 0;
1386
1387         rcu_read_lock();
1388         for_each_node(node) {
1389                 struct io_wqe *wqe = wq->wqes[node];
1390                 struct io_wqe_acct *acct;
1391
1392                 raw_spin_lock(&wqe->lock);
1393                 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1394                         acct = &wqe->acct[i];
1395                         if (first_node)
1396                                 prev[i] = max_t(int, acct->max_workers, prev[i]);
1397                         if (new_count[i])
1398                                 acct->max_workers = new_count[i];
1399                 }
1400                 raw_spin_unlock(&wqe->lock);
1401                 first_node = false;
1402         }
1403         rcu_read_unlock();
1404
1405         for (i = 0; i < IO_WQ_ACCT_NR; i++)
1406                 new_count[i] = prev[i];
1407
1408         return 0;
1409 }
1410
1411 static __init int io_wq_init(void)
1412 {
1413         int ret;
1414
1415         ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
1416                                         io_wq_cpu_online, io_wq_cpu_offline);
1417         if (ret < 0)
1418                 return ret;
1419         io_wq_online = ret;
1420         return 0;
1421 }
1422 subsys_initcall(io_wq_init);