aboutsummaryrefslogtreecommitdiffstats
path: root/fs/io-wq.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2021-09-02io-wq: make worker creation resilient against signalsJens Axboe1-57/+166
2021-09-02io-wq: get rid of FIXED worker flagJens Axboe1-19/+16
2021-09-01io-wq: only exit on fatal signalsJens Axboe1-1/+3
2021-09-01io-wq: split bounded and unbounded work into separate listsJens Axboe1-88/+68
2021-08-31io-wq: fix queue stalling raceJens Axboe1-8/+7
2021-08-31io-wq: ensure that hash wait lock is IRQ disablingJens Axboe1-2/+2
2021-08-31io-wq: fix race between adding work and activating a free workerJens Axboe1-27/+24
2021-08-30io-wq: fix wakeup race when adding new workJens Axboe1-4/+4
2021-08-30io-wq: wqe and worker locks no longer need to be IRQ safeJens Axboe1-31/+28
2021-08-30io-wq: check max_worker limits if a worker transitions bound stateJens Axboe1-3/+30
2021-08-29io-wq: provide a way to limit max number of workersJens Axboe1-0/+29
2021-08-23io-wq: move nr_running and worker_refs out of wqe->lock protectionHao Xu1-3/+4
2021-08-23io-wq: remove GFP_ATOMIC allocation off schedule out pathJens Axboe1-32/+40
2021-08-09io-wq: fix IO_WORKER_F_FIXED issue in create_io_worker()Hao Xu1-7/+11
2021-08-09io-wq: fix bug of creating io-wokers unconditionallyHao Xu1-2/+10
2021-08-06io-wq: fix lack of acct->nr_workers < acct->max_workers judgementHao Xu1-1/+9
2021-08-06io-wq: fix no lock protection of acct->nr_workerHao Xu1-6/+17
2021-08-04io-wq: fix race between worker exiting and activating free workerJens Axboe1-19/+19
2021-07-23io_uring: explicitly catch any illegal async queue attemptJens Axboe1-1/+6
2021-06-18io_uring: fix false WARN_ONCEPavel Begunkov1-1/+4
2021-06-17io_uring: allow user configurable IO thread CPU affinityJens Axboe1-0/+17
2021-06-17io-wq: use private CPU maskJens Axboe1-7/+43
2021-06-16io-wq: remove header files not needed anymoreOlivier Langlois1-2/+0
2021-06-15io-wq: remove redundant initialization of variable retColin Ian King1-1/+1
2021-06-14io-wq: simplify worker exitingPavel Begunkov1-4/+1
2021-06-14io-wq: don't repeat IO_WQ_BIT_EXIT check by workerPavel Begunkov1-2/+1
2021-06-14io-wq: remove unused io-wq refcountingPavel Begunkov1-5/+1
2021-06-14io-wq: embed wqe ptr array into struct io_wqPavel Begunkov1-11/+4
2021-05-26io-wq: Fix UAF when wakeup wqe in hash waitqueueZqiang1-3/+6
2021-05-25io_uring/io-wq: close io-wq full-stop gapPavel Begunkov1-11/+9
2021-04-20io-wq: remove unused io_wqe_need_worker() functionJens Axboe1-13/+0
2021-04-11io-wq: Fix io_wq_worker_affinity()Peter Zijlstra1-9/+2
2021-04-11io-wq: simplify code in __io_worker_busy()Hao Xu1-9/+6
2021-04-11io-wq: cancel task_work on exit only targeting the current 'wq'Jens Axboe1-1/+11
2021-04-11io-wq: eliminate the need for a manager threadJens Axboe1-157/+115
2021-04-11io-wq: refactor *_get_acct()Pavel Begunkov1-10/+7
2021-04-08io-wq: cancel unbounded works on io-wq destroyPavel Begunkov1-0/+4
2021-04-01io_uring/io-wq: protect against sprintf overflowPavel Begunkov1-2/+2
2021-03-27io_uring: handle signals for IO threads like a normal threadJens Axboe1-6/+14
2021-03-25io-wq: fix race around pending work on teardownJens Axboe1-1/+5
2021-03-21io_uring: don't use {test,clear}_tsk_thread_flag() for currentJens Axboe1-4/+2
2021-03-21io-wq: ensure task is running before processing task_workJens Axboe1-2/+6
2021-03-12io_uring: allow IO worker threads to be frozenJens Axboe1-1/+5
2021-03-10kernel: make IO threads unfreezable by defaultJens Axboe1-2/+1
2021-03-10io-wq: fix ref leak for req in case of exit cancelationsyangerkun1-2/+1
2021-03-10io-wq: remove unused 'user' member of io_wqJens Axboe1-1/+0
2021-03-07io-wq: warn on creating manager while exitingPavel Begunkov1-0/+2
2021-03-06io-wq: fix race in freeing 'wq' and worker accessJens Axboe1-8/+8
2021-03-05io-wq: kill hashed waitqueue before manager exitsJens Axboe1-4/+5
2021-03-05io_uring: move to using create_io_thread()Jens Axboe1-88/+35