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