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