1 // SPDX-License-Identifier: GPL-2.0
3 * Basic worker thread pool for io_uring
5 * Copyright (C) 2019 Jens Axboe
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/task_work.h>
17 #include <linux/audit.h>
18 #include <linux/mmu_context.h>
19 #include <uapi/linux/io_uring.h>
25 #define WORKER_IDLE_TIMEOUT (5 * HZ)
26 #define WORKER_INIT_LIMIT 3
29 IO_WORKER_F_UP = 0, /* up and active */
30 IO_WORKER_F_RUNNING = 1, /* account as running */
31 IO_WORKER_F_FREE = 2, /* worker on free list */
32 IO_WORKER_F_BOUND = 3, /* is doing bounded work */
36 IO_WQ_BIT_EXIT = 0, /* wq exiting */
40 IO_ACCT_STALLED_BIT = 0, /* stalled on hash */
44 * One for each thread in a wq pool
50 struct hlist_nulls_node nulls_node;
51 struct list_head all_list;
52 struct task_struct *task;
55 struct io_wq_work *cur_work;
58 struct completion ref_done;
60 unsigned long create_state;
61 struct callback_head create_work;
66 struct work_struct work;
70 #if BITS_PER_LONG == 64
71 #define IO_WQ_HASH_ORDER 6
73 #define IO_WQ_HASH_ORDER 5
76 #define IO_WQ_NR_HASH_BUCKETS (1u << IO_WQ_HASH_ORDER)
84 struct io_wq_work_list work_list;
100 free_work_fn *free_work;
101 io_wq_work_fn *do_work;
103 struct io_wq_hash *hash;
105 atomic_t worker_refs;
106 struct completion worker_done;
108 struct hlist_node cpuhp_node;
110 struct task_struct *task;
112 struct io_wq_acct acct[IO_WQ_ACCT_NR];
114 /* lock protects access to elements below */
117 struct hlist_nulls_head free_list;
118 struct list_head all_list;
120 struct wait_queue_entry wait;
122 struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
124 cpumask_var_t cpu_mask;
127 static enum cpuhp_state io_wq_online;
129 struct io_cb_cancel_data {
137 static bool create_io_worker(struct io_wq *wq, int index);
138 static void io_wq_dec_running(struct io_worker *worker);
139 static bool io_acct_cancel_pending_work(struct io_wq *wq,
140 struct io_wq_acct *acct,
141 struct io_cb_cancel_data *match);
142 static void create_worker_cb(struct callback_head *cb);
143 static void io_wq_cancel_tw_create(struct io_wq *wq);
145 static bool io_worker_get(struct io_worker *worker)
147 return refcount_inc_not_zero(&worker->ref);
150 static void io_worker_release(struct io_worker *worker)
152 if (refcount_dec_and_test(&worker->ref))
153 complete(&worker->ref_done);
156 static inline struct io_wq_acct *io_get_acct(struct io_wq *wq, bool bound)
158 return &wq->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
161 static inline struct io_wq_acct *io_work_get_acct(struct io_wq *wq,
162 struct io_wq_work *work)
164 return io_get_acct(wq, !(atomic_read(&work->flags) & IO_WQ_WORK_UNBOUND));
167 static inline struct io_wq_acct *io_wq_get_acct(struct io_worker *worker)
169 return io_get_acct(worker->wq, test_bit(IO_WORKER_F_BOUND, &worker->flags));
172 static void io_worker_ref_put(struct io_wq *wq)
174 if (atomic_dec_and_test(&wq->worker_refs))
175 complete(&wq->worker_done);
178 bool io_wq_worker_stopped(void)
180 struct io_worker *worker = current->worker_private;
182 if (WARN_ON_ONCE(!io_wq_current_is_worker()))
185 return test_bit(IO_WQ_BIT_EXIT, &worker->wq->state);
188 static void io_worker_cancel_cb(struct io_worker *worker)
190 struct io_wq_acct *acct = io_wq_get_acct(worker);
191 struct io_wq *wq = worker->wq;
193 atomic_dec(&acct->nr_running);
194 raw_spin_lock(&wq->lock);
196 raw_spin_unlock(&wq->lock);
197 io_worker_ref_put(wq);
198 clear_bit_unlock(0, &worker->create_state);
199 io_worker_release(worker);
202 static bool io_task_worker_match(struct callback_head *cb, void *data)
204 struct io_worker *worker;
206 if (cb->func != create_worker_cb)
208 worker = container_of(cb, struct io_worker, create_work);
209 return worker == data;
212 static void io_worker_exit(struct io_worker *worker)
214 struct io_wq *wq = worker->wq;
217 struct callback_head *cb = task_work_cancel_match(wq->task,
218 io_task_worker_match, worker);
222 io_worker_cancel_cb(worker);
225 io_worker_release(worker);
226 wait_for_completion(&worker->ref_done);
228 raw_spin_lock(&wq->lock);
229 if (test_bit(IO_WORKER_F_FREE, &worker->flags))
230 hlist_nulls_del_rcu(&worker->nulls_node);
231 list_del_rcu(&worker->all_list);
232 raw_spin_unlock(&wq->lock);
233 io_wq_dec_running(worker);
235 * this worker is a goner, clear ->worker_private to avoid any
236 * inc/dec running calls that could happen as part of exit from
239 current->worker_private = NULL;
241 kfree_rcu(worker, rcu);
242 io_worker_ref_put(wq);
246 static inline bool __io_acct_run_queue(struct io_wq_acct *acct)
248 return !test_bit(IO_ACCT_STALLED_BIT, &acct->flags) &&
249 !wq_list_empty(&acct->work_list);
253 * If there's work to do, returns true with acct->lock acquired. If not,
254 * returns false with no lock held.
256 static inline bool io_acct_run_queue(struct io_wq_acct *acct)
257 __acquires(&acct->lock)
259 raw_spin_lock(&acct->lock);
260 if (__io_acct_run_queue(acct))
263 raw_spin_unlock(&acct->lock);
268 * Check head of free list for an available worker. If one isn't available,
269 * caller must create one.
271 static bool io_wq_activate_free_worker(struct io_wq *wq,
272 struct io_wq_acct *acct)
275 struct hlist_nulls_node *n;
276 struct io_worker *worker;
279 * Iterate free_list and see if we can find an idle worker to
280 * activate. If a given worker is on the free_list but in the process
281 * of exiting, keep trying.
283 hlist_nulls_for_each_entry_rcu(worker, n, &wq->free_list, nulls_node) {
284 if (!io_worker_get(worker))
286 if (io_wq_get_acct(worker) != acct) {
287 io_worker_release(worker);
291 * If the worker is already running, it's either already
292 * starting work or finishing work. In either case, if it does
293 * to go sleep, we'll kick off a new task for this work anyway.
295 wake_up_process(worker->task);
296 io_worker_release(worker);
304 * We need a worker. If we find a free one, we're good. If not, and we're
305 * below the max number of workers, create one.
307 static bool io_wq_create_worker(struct io_wq *wq, struct io_wq_acct *acct)
310 * Most likely an attempt to queue unbounded work on an io_wq that
311 * wasn't setup with any unbounded workers.
313 if (unlikely(!acct->max_workers))
314 pr_warn_once("io-wq is not configured for unbound workers");
316 raw_spin_lock(&wq->lock);
317 if (acct->nr_workers >= acct->max_workers) {
318 raw_spin_unlock(&wq->lock);
322 raw_spin_unlock(&wq->lock);
323 atomic_inc(&acct->nr_running);
324 atomic_inc(&wq->worker_refs);
325 return create_io_worker(wq, acct->index);
328 static void io_wq_inc_running(struct io_worker *worker)
330 struct io_wq_acct *acct = io_wq_get_acct(worker);
332 atomic_inc(&acct->nr_running);
335 static void create_worker_cb(struct callback_head *cb)
337 struct io_worker *worker;
340 struct io_wq_acct *acct;
341 bool do_create = false;
343 worker = container_of(cb, struct io_worker, create_work);
345 acct = &wq->acct[worker->create_index];
346 raw_spin_lock(&wq->lock);
348 if (acct->nr_workers < acct->max_workers) {
352 raw_spin_unlock(&wq->lock);
354 create_io_worker(wq, worker->create_index);
356 atomic_dec(&acct->nr_running);
357 io_worker_ref_put(wq);
359 clear_bit_unlock(0, &worker->create_state);
360 io_worker_release(worker);
363 static bool io_queue_worker_create(struct io_worker *worker,
364 struct io_wq_acct *acct,
365 task_work_func_t func)
367 struct io_wq *wq = worker->wq;
369 /* raced with exit, just ignore create call */
370 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
372 if (!io_worker_get(worker))
375 * create_state manages ownership of create_work/index. We should
376 * only need one entry per worker, as the worker going to sleep
377 * will trigger the condition, and waking will clear it once it
378 * runs the task_work.
380 if (test_bit(0, &worker->create_state) ||
381 test_and_set_bit_lock(0, &worker->create_state))
384 atomic_inc(&wq->worker_refs);
385 init_task_work(&worker->create_work, func);
386 worker->create_index = acct->index;
387 if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL)) {
389 * EXIT may have been set after checking it above, check after
390 * adding the task_work and remove any creation item if it is
391 * now set. wq exit does that too, but we can have added this
392 * work item after we canceled in io_wq_exit_workers().
394 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
395 io_wq_cancel_tw_create(wq);
396 io_worker_ref_put(wq);
399 io_worker_ref_put(wq);
400 clear_bit_unlock(0, &worker->create_state);
402 io_worker_release(worker);
404 atomic_dec(&acct->nr_running);
405 io_worker_ref_put(wq);
409 static void io_wq_dec_running(struct io_worker *worker)
411 struct io_wq_acct *acct = io_wq_get_acct(worker);
412 struct io_wq *wq = worker->wq;
414 if (!test_bit(IO_WORKER_F_UP, &worker->flags))
417 if (!atomic_dec_and_test(&acct->nr_running))
419 if (!io_acct_run_queue(acct))
422 raw_spin_unlock(&acct->lock);
423 atomic_inc(&acct->nr_running);
424 atomic_inc(&wq->worker_refs);
425 io_queue_worker_create(worker, acct, create_worker_cb);
429 * Worker will start processing some work. Move it to the busy list, if
430 * it's currently on the freelist
432 static void __io_worker_busy(struct io_wq *wq, struct io_worker *worker)
434 if (test_bit(IO_WORKER_F_FREE, &worker->flags)) {
435 clear_bit(IO_WORKER_F_FREE, &worker->flags);
436 raw_spin_lock(&wq->lock);
437 hlist_nulls_del_init_rcu(&worker->nulls_node);
438 raw_spin_unlock(&wq->lock);
443 * No work, worker going to sleep. Move to freelist.
445 static void __io_worker_idle(struct io_wq *wq, struct io_worker *worker)
446 __must_hold(wq->lock)
448 if (!test_bit(IO_WORKER_F_FREE, &worker->flags)) {
449 set_bit(IO_WORKER_F_FREE, &worker->flags);
450 hlist_nulls_add_head_rcu(&worker->nulls_node, &wq->free_list);
454 static inline unsigned int io_get_work_hash(struct io_wq_work *work)
456 return atomic_read(&work->flags) >> IO_WQ_HASH_SHIFT;
459 static bool io_wait_on_hash(struct io_wq *wq, unsigned int hash)
463 spin_lock_irq(&wq->hash->wait.lock);
464 if (list_empty(&wq->wait.entry)) {
465 __add_wait_queue(&wq->hash->wait, &wq->wait);
466 if (!test_bit(hash, &wq->hash->map)) {
467 __set_current_state(TASK_RUNNING);
468 list_del_init(&wq->wait.entry);
472 spin_unlock_irq(&wq->hash->wait.lock);
476 static struct io_wq_work *io_get_next_work(struct io_wq_acct *acct,
477 struct io_worker *worker)
478 __must_hold(acct->lock)
480 struct io_wq_work_node *node, *prev;
481 struct io_wq_work *work, *tail;
482 unsigned int stall_hash = -1U;
483 struct io_wq *wq = worker->wq;
485 wq_list_for_each(node, prev, &acct->work_list) {
488 work = container_of(node, struct io_wq_work, list);
490 /* not hashed, can run anytime */
491 if (!io_wq_is_hashed(work)) {
492 wq_list_del(&acct->work_list, node, prev);
496 hash = io_get_work_hash(work);
497 /* all items with this hash lie in [work, tail] */
498 tail = wq->hash_tail[hash];
500 /* hashed, can run if not already running */
501 if (!test_and_set_bit(hash, &wq->hash->map)) {
502 wq->hash_tail[hash] = NULL;
503 wq_list_cut(&acct->work_list, &tail->list, prev);
506 if (stall_hash == -1U)
508 /* fast forward to a next hash, for-each will fix up @prev */
512 if (stall_hash != -1U) {
516 * Set this before dropping the lock to avoid racing with new
517 * work being added and clearing the stalled bit.
519 set_bit(IO_ACCT_STALLED_BIT, &acct->flags);
520 raw_spin_unlock(&acct->lock);
521 unstalled = io_wait_on_hash(wq, stall_hash);
522 raw_spin_lock(&acct->lock);
524 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
525 if (wq_has_sleeper(&wq->hash->wait))
526 wake_up(&wq->hash->wait);
533 static void io_assign_current_work(struct io_worker *worker,
534 struct io_wq_work *work)
541 raw_spin_lock(&worker->lock);
542 worker->cur_work = work;
543 raw_spin_unlock(&worker->lock);
547 * Called with acct->lock held, drops it before returning
549 static void io_worker_handle_work(struct io_wq_acct *acct,
550 struct io_worker *worker)
551 __releases(&acct->lock)
553 struct io_wq *wq = worker->wq;
554 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
557 struct io_wq_work *work;
560 * If we got some work, mark us as busy. If we didn't, but
561 * the list isn't empty, it means we stalled on hashed work.
562 * Mark us stalled so we don't keep looking for work when we
563 * can't make progress, any work completion or insertion will
564 * clear the stalled flag.
566 work = io_get_next_work(acct, worker);
569 * Make sure cancelation can find this, even before
570 * it becomes the active work. That avoids a window
571 * where the work has been removed from our general
572 * work list, but isn't yet discoverable as the
573 * current work item for this worker.
575 raw_spin_lock(&worker->lock);
576 worker->cur_work = work;
577 raw_spin_unlock(&worker->lock);
580 raw_spin_unlock(&acct->lock);
585 __io_worker_busy(wq, worker);
587 io_assign_current_work(worker, work);
588 __set_current_state(TASK_RUNNING);
590 /* handle a whole dependent link */
592 struct io_wq_work *next_hashed, *linked;
593 unsigned int hash = io_get_work_hash(work);
595 next_hashed = wq_next_work(work);
598 (atomic_read(&work->flags) & IO_WQ_WORK_UNBOUND))
599 atomic_or(IO_WQ_WORK_CANCEL, &work->flags);
601 io_assign_current_work(worker, NULL);
603 linked = wq->free_work(work);
605 if (!work && linked && !io_wq_is_hashed(linked)) {
609 io_assign_current_work(worker, work);
611 io_wq_enqueue(wq, linked);
613 if (hash != -1U && !next_hashed) {
614 /* serialize hash clear with wake_up() */
615 spin_lock_irq(&wq->hash->wait.lock);
616 clear_bit(hash, &wq->hash->map);
617 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
618 spin_unlock_irq(&wq->hash->wait.lock);
619 if (wq_has_sleeper(&wq->hash->wait))
620 wake_up(&wq->hash->wait);
624 if (!__io_acct_run_queue(acct))
626 raw_spin_lock(&acct->lock);
630 static int io_wq_worker(void *data)
632 struct io_worker *worker = data;
633 struct io_wq_acct *acct = io_wq_get_acct(worker);
634 struct io_wq *wq = worker->wq;
635 bool exit_mask = false, last_timeout = false;
636 char buf[TASK_COMM_LEN];
638 set_mask_bits(&worker->flags, 0,
639 BIT(IO_WORKER_F_UP) | BIT(IO_WORKER_F_RUNNING));
641 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
642 set_task_comm(current, buf);
644 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
647 set_current_state(TASK_INTERRUPTIBLE);
650 * If we have work to do, io_acct_run_queue() returns with
651 * the acct->lock held. If not, it will drop it.
653 while (io_acct_run_queue(acct))
654 io_worker_handle_work(acct, worker);
656 raw_spin_lock(&wq->lock);
658 * Last sleep timed out. Exit if we're not the last worker,
659 * or if someone modified our affinity.
661 if (last_timeout && (exit_mask || acct->nr_workers > 1)) {
663 raw_spin_unlock(&wq->lock);
664 __set_current_state(TASK_RUNNING);
667 last_timeout = false;
668 __io_worker_idle(wq, worker);
669 raw_spin_unlock(&wq->lock);
670 if (io_run_task_work())
672 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
673 if (signal_pending(current)) {
676 if (!get_signal(&ksig))
682 exit_mask = !cpumask_test_cpu(raw_smp_processor_id(),
687 if (test_bit(IO_WQ_BIT_EXIT, &wq->state) && io_acct_run_queue(acct))
688 io_worker_handle_work(acct, worker);
690 io_worker_exit(worker);
695 * Called when a worker is scheduled in. Mark us as currently running.
697 void io_wq_worker_running(struct task_struct *tsk)
699 struct io_worker *worker = tsk->worker_private;
703 if (!test_bit(IO_WORKER_F_UP, &worker->flags))
705 if (test_bit(IO_WORKER_F_RUNNING, &worker->flags))
707 set_bit(IO_WORKER_F_RUNNING, &worker->flags);
708 io_wq_inc_running(worker);
712 * Called when worker is going to sleep. If there are no workers currently
713 * running and we have work pending, wake up a free one or create a new one.
715 void io_wq_worker_sleeping(struct task_struct *tsk)
717 struct io_worker *worker = tsk->worker_private;
721 if (!test_bit(IO_WORKER_F_UP, &worker->flags))
723 if (!test_bit(IO_WORKER_F_RUNNING, &worker->flags))
726 clear_bit(IO_WORKER_F_RUNNING, &worker->flags);
727 io_wq_dec_running(worker);
730 static void io_init_new_worker(struct io_wq *wq, struct io_worker *worker,
731 struct task_struct *tsk)
733 tsk->worker_private = worker;
735 set_cpus_allowed_ptr(tsk, wq->cpu_mask);
737 raw_spin_lock(&wq->lock);
738 hlist_nulls_add_head_rcu(&worker->nulls_node, &wq->free_list);
739 list_add_tail_rcu(&worker->all_list, &wq->all_list);
740 set_bit(IO_WORKER_F_FREE, &worker->flags);
741 raw_spin_unlock(&wq->lock);
742 wake_up_new_task(tsk);
745 static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
750 static inline bool io_should_retry_thread(struct io_worker *worker, long err)
753 * Prevent perpetual task_work retry, if the task (or its group) is
756 if (fatal_signal_pending(current))
758 if (worker->init_retries++ >= WORKER_INIT_LIMIT)
764 case -ERESTARTNOINTR:
765 case -ERESTARTNOHAND:
772 static void create_worker_cont(struct callback_head *cb)
774 struct io_worker *worker;
775 struct task_struct *tsk;
778 worker = container_of(cb, struct io_worker, create_work);
779 clear_bit_unlock(0, &worker->create_state);
781 tsk = create_io_thread(io_wq_worker, worker, NUMA_NO_NODE);
783 io_init_new_worker(wq, worker, tsk);
784 io_worker_release(worker);
786 } else if (!io_should_retry_thread(worker, PTR_ERR(tsk))) {
787 struct io_wq_acct *acct = io_wq_get_acct(worker);
789 atomic_dec(&acct->nr_running);
790 raw_spin_lock(&wq->lock);
792 if (!acct->nr_workers) {
793 struct io_cb_cancel_data match = {
794 .fn = io_wq_work_match_all,
798 raw_spin_unlock(&wq->lock);
799 while (io_acct_cancel_pending_work(wq, acct, &match))
802 raw_spin_unlock(&wq->lock);
804 io_worker_ref_put(wq);
809 /* re-create attempts grab a new worker ref, drop the existing one */
810 io_worker_release(worker);
811 schedule_work(&worker->work);
814 static void io_workqueue_create(struct work_struct *work)
816 struct io_worker *worker = container_of(work, struct io_worker, work);
817 struct io_wq_acct *acct = io_wq_get_acct(worker);
819 if (!io_queue_worker_create(worker, acct, create_worker_cont))
823 static bool create_io_worker(struct io_wq *wq, int index)
825 struct io_wq_acct *acct = &wq->acct[index];
826 struct io_worker *worker;
827 struct task_struct *tsk;
829 __set_current_state(TASK_RUNNING);
831 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
834 atomic_dec(&acct->nr_running);
835 raw_spin_lock(&wq->lock);
837 raw_spin_unlock(&wq->lock);
838 io_worker_ref_put(wq);
842 refcount_set(&worker->ref, 1);
844 raw_spin_lock_init(&worker->lock);
845 init_completion(&worker->ref_done);
847 if (index == IO_WQ_ACCT_BOUND)
848 set_bit(IO_WORKER_F_BOUND, &worker->flags);
850 tsk = create_io_thread(io_wq_worker, worker, NUMA_NO_NODE);
852 io_init_new_worker(wq, worker, tsk);
853 } else if (!io_should_retry_thread(worker, PTR_ERR(tsk))) {
857 INIT_WORK(&worker->work, io_workqueue_create);
858 schedule_work(&worker->work);
865 * Iterate the passed in list and call the specific function for each
866 * worker that isn't exiting
868 static bool io_wq_for_each_worker(struct io_wq *wq,
869 bool (*func)(struct io_worker *, void *),
872 struct io_worker *worker;
875 list_for_each_entry_rcu(worker, &wq->all_list, all_list) {
876 if (io_worker_get(worker)) {
877 /* no task if node is/was offline */
879 ret = func(worker, data);
880 io_worker_release(worker);
889 static bool io_wq_worker_wake(struct io_worker *worker, void *data)
891 __set_notify_signal(worker->task);
892 wake_up_process(worker->task);
896 static void io_run_cancel(struct io_wq_work *work, struct io_wq *wq)
899 atomic_or(IO_WQ_WORK_CANCEL, &work->flags);
901 work = wq->free_work(work);
905 static void io_wq_insert_work(struct io_wq *wq, struct io_wq_work *work)
907 struct io_wq_acct *acct = io_work_get_acct(wq, work);
909 struct io_wq_work *tail;
911 if (!io_wq_is_hashed(work)) {
913 wq_list_add_tail(&work->list, &acct->work_list);
917 hash = io_get_work_hash(work);
918 tail = wq->hash_tail[hash];
919 wq->hash_tail[hash] = work;
923 wq_list_add_after(&work->list, &tail->list, &acct->work_list);
926 static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
931 void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
933 struct io_wq_acct *acct = io_work_get_acct(wq, work);
934 unsigned int work_flags = atomic_read(&work->flags);
935 struct io_cb_cancel_data match = {
936 .fn = io_wq_work_match_item,
943 * If io-wq is exiting for this task, or if the request has explicitly
944 * been marked as one that should not get executed, cancel it here.
946 if (test_bit(IO_WQ_BIT_EXIT, &wq->state) ||
947 (work_flags & IO_WQ_WORK_CANCEL)) {
948 io_run_cancel(work, wq);
952 raw_spin_lock(&acct->lock);
953 io_wq_insert_work(wq, work);
954 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
955 raw_spin_unlock(&acct->lock);
958 do_create = !io_wq_activate_free_worker(wq, acct);
961 if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
962 !atomic_read(&acct->nr_running))) {
965 did_create = io_wq_create_worker(wq, acct);
966 if (likely(did_create))
969 raw_spin_lock(&wq->lock);
970 if (acct->nr_workers) {
971 raw_spin_unlock(&wq->lock);
974 raw_spin_unlock(&wq->lock);
976 /* fatal condition, failed to create the first worker */
977 io_acct_cancel_pending_work(wq, acct, &match);
982 * Work items that hash to the same value will not be done in parallel.
983 * Used to limit concurrent writes, generally hashed by inode.
985 void io_wq_hash_work(struct io_wq_work *work, void *val)
989 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
990 atomic_or(IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT), &work->flags);
993 static bool __io_wq_worker_cancel(struct io_worker *worker,
994 struct io_cb_cancel_data *match,
995 struct io_wq_work *work)
997 if (work && match->fn(work, match->data)) {
998 atomic_or(IO_WQ_WORK_CANCEL, &work->flags);
999 __set_notify_signal(worker->task);
1006 static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
1008 struct io_cb_cancel_data *match = data;
1011 * Hold the lock to avoid ->cur_work going out of scope, caller
1012 * may dereference the passed in work.
1014 raw_spin_lock(&worker->lock);
1015 if (__io_wq_worker_cancel(worker, match, worker->cur_work))
1016 match->nr_running++;
1017 raw_spin_unlock(&worker->lock);
1019 return match->nr_running && !match->cancel_all;
1022 static inline void io_wq_remove_pending(struct io_wq *wq,
1023 struct io_wq_work *work,
1024 struct io_wq_work_node *prev)
1026 struct io_wq_acct *acct = io_work_get_acct(wq, work);
1027 unsigned int hash = io_get_work_hash(work);
1028 struct io_wq_work *prev_work = NULL;
1030 if (io_wq_is_hashed(work) && work == wq->hash_tail[hash]) {
1032 prev_work = container_of(prev, struct io_wq_work, list);
1033 if (prev_work && io_get_work_hash(prev_work) == hash)
1034 wq->hash_tail[hash] = prev_work;
1036 wq->hash_tail[hash] = NULL;
1038 wq_list_del(&acct->work_list, &work->list, prev);
1041 static bool io_acct_cancel_pending_work(struct io_wq *wq,
1042 struct io_wq_acct *acct,
1043 struct io_cb_cancel_data *match)
1045 struct io_wq_work_node *node, *prev;
1046 struct io_wq_work *work;
1048 raw_spin_lock(&acct->lock);
1049 wq_list_for_each(node, prev, &acct->work_list) {
1050 work = container_of(node, struct io_wq_work, list);
1051 if (!match->fn(work, match->data))
1053 io_wq_remove_pending(wq, work, prev);
1054 raw_spin_unlock(&acct->lock);
1055 io_run_cancel(work, wq);
1056 match->nr_pending++;
1057 /* not safe to continue after unlock */
1060 raw_spin_unlock(&acct->lock);
1065 static void io_wq_cancel_pending_work(struct io_wq *wq,
1066 struct io_cb_cancel_data *match)
1070 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1071 struct io_wq_acct *acct = io_get_acct(wq, i == 0);
1073 if (io_acct_cancel_pending_work(wq, acct, match)) {
1074 if (match->cancel_all)
1081 static void io_wq_cancel_running_work(struct io_wq *wq,
1082 struct io_cb_cancel_data *match)
1085 io_wq_for_each_worker(wq, io_wq_worker_cancel, match);
1089 enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
1090 void *data, bool cancel_all)
1092 struct io_cb_cancel_data match = {
1095 .cancel_all = cancel_all,
1099 * First check pending list, if we're lucky we can just remove it
1100 * from there. CANCEL_OK means that the work is returned as-new,
1101 * no completion will be posted for it.
1103 * Then check if a free (going busy) or busy worker has the work
1104 * currently running. If we find it there, we'll return CANCEL_RUNNING
1105 * as an indication that we attempt to signal cancellation. The
1106 * completion will run normally in this case.
1108 * Do both of these while holding the wq->lock, to ensure that
1109 * we'll find a work item regardless of state.
1111 io_wq_cancel_pending_work(wq, &match);
1112 if (match.nr_pending && !match.cancel_all)
1113 return IO_WQ_CANCEL_OK;
1115 raw_spin_lock(&wq->lock);
1116 io_wq_cancel_running_work(wq, &match);
1117 raw_spin_unlock(&wq->lock);
1118 if (match.nr_running && !match.cancel_all)
1119 return IO_WQ_CANCEL_RUNNING;
1121 if (match.nr_running)
1122 return IO_WQ_CANCEL_RUNNING;
1123 if (match.nr_pending)
1124 return IO_WQ_CANCEL_OK;
1125 return IO_WQ_CANCEL_NOTFOUND;
1128 static int io_wq_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1129 int sync, void *key)
1131 struct io_wq *wq = container_of(wait, struct io_wq, wait);
1134 list_del_init(&wait->entry);
1137 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1138 struct io_wq_acct *acct = &wq->acct[i];
1140 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1141 io_wq_activate_free_worker(wq, acct);
1147 struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
1152 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
1153 return ERR_PTR(-EINVAL);
1154 if (WARN_ON_ONCE(!bounded))
1155 return ERR_PTR(-EINVAL);
1157 wq = kzalloc(sizeof(struct io_wq), GFP_KERNEL);
1159 return ERR_PTR(-ENOMEM);
1161 refcount_inc(&data->hash->refs);
1162 wq->hash = data->hash;
1163 wq->free_work = data->free_work;
1164 wq->do_work = data->do_work;
1168 if (!alloc_cpumask_var(&wq->cpu_mask, GFP_KERNEL))
1170 cpumask_copy(wq->cpu_mask, cpu_possible_mask);
1171 wq->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
1172 wq->acct[IO_WQ_ACCT_UNBOUND].max_workers =
1173 task_rlimit(current, RLIMIT_NPROC);
1174 INIT_LIST_HEAD(&wq->wait.entry);
1175 wq->wait.func = io_wq_hash_wake;
1176 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1177 struct io_wq_acct *acct = &wq->acct[i];
1180 atomic_set(&acct->nr_running, 0);
1181 INIT_WQ_LIST(&acct->work_list);
1182 raw_spin_lock_init(&acct->lock);
1185 raw_spin_lock_init(&wq->lock);
1186 INIT_HLIST_NULLS_HEAD(&wq->free_list, 0);
1187 INIT_LIST_HEAD(&wq->all_list);
1189 wq->task = get_task_struct(data->task);
1190 atomic_set(&wq->worker_refs, 1);
1191 init_completion(&wq->worker_done);
1192 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1198 io_wq_put_hash(data->hash);
1199 free_cpumask_var(wq->cpu_mask);
1201 return ERR_PTR(ret);
1204 static bool io_task_work_match(struct callback_head *cb, void *data)
1206 struct io_worker *worker;
1208 if (cb->func != create_worker_cb && cb->func != create_worker_cont)
1210 worker = container_of(cb, struct io_worker, create_work);
1211 return worker->wq == data;
1214 void io_wq_exit_start(struct io_wq *wq)
1216 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1219 static void io_wq_cancel_tw_create(struct io_wq *wq)
1221 struct callback_head *cb;
1223 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
1224 struct io_worker *worker;
1226 worker = container_of(cb, struct io_worker, create_work);
1227 io_worker_cancel_cb(worker);
1229 * Only the worker continuation helper has worker allocated and
1230 * hence needs freeing.
1232 if (cb->func == create_worker_cont)
1237 static void io_wq_exit_workers(struct io_wq *wq)
1242 io_wq_cancel_tw_create(wq);
1245 io_wq_for_each_worker(wq, io_wq_worker_wake, NULL);
1247 io_worker_ref_put(wq);
1248 wait_for_completion(&wq->worker_done);
1250 spin_lock_irq(&wq->hash->wait.lock);
1251 list_del_init(&wq->wait.entry);
1252 spin_unlock_irq(&wq->hash->wait.lock);
1254 put_task_struct(wq->task);
1258 static void io_wq_destroy(struct io_wq *wq)
1260 struct io_cb_cancel_data match = {
1261 .fn = io_wq_work_match_all,
1265 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1266 io_wq_cancel_pending_work(wq, &match);
1267 free_cpumask_var(wq->cpu_mask);
1268 io_wq_put_hash(wq->hash);
1272 void io_wq_put_and_exit(struct io_wq *wq)
1274 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1276 io_wq_exit_workers(wq);
1280 struct online_data {
1285 static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1287 struct online_data *od = data;
1290 cpumask_set_cpu(od->cpu, worker->wq->cpu_mask);
1292 cpumask_clear_cpu(od->cpu, worker->wq->cpu_mask);
1296 static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1298 struct online_data od = {
1304 io_wq_for_each_worker(wq, io_wq_worker_affinity, &od);
1309 static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1311 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1313 return __io_wq_cpu_online(wq, cpu, true);
1316 static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1318 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1320 return __io_wq_cpu_online(wq, cpu, false);
1323 int io_wq_cpu_affinity(struct io_uring_task *tctx, cpumask_var_t mask)
1325 if (!tctx || !tctx->io_wq)
1330 cpumask_copy(tctx->io_wq->cpu_mask, mask);
1332 cpumask_copy(tctx->io_wq->cpu_mask, cpu_possible_mask);
1339 * Set max number of unbounded workers, returns old value. If new_count is 0,
1340 * then just return the old value.
1342 int io_wq_max_workers(struct io_wq *wq, int *new_count)
1344 struct io_wq_acct *acct;
1345 int prev[IO_WQ_ACCT_NR];
1348 BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND != (int) IO_WQ_BOUND);
1349 BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1350 BUILD_BUG_ON((int) IO_WQ_ACCT_NR != 2);
1352 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1353 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1354 new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1357 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1362 raw_spin_lock(&wq->lock);
1363 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1364 acct = &wq->acct[i];
1365 prev[i] = max_t(int, acct->max_workers, prev[i]);
1367 acct->max_workers = new_count[i];
1369 raw_spin_unlock(&wq->lock);
1372 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1373 new_count[i] = prev[i];
1378 static __init int io_wq_init(void)
1382 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
1383 io_wq_cpu_online, io_wq_cpu_offline);
1389 subsys_initcall(io_wq_init);