commit | 0df8ea602b3fe80819a34361027ad40485e78909 | [log] [tgz] |
---|---|---|
author | Pavel Begunkov <asml.silence@gmail.com> | Thu Mar 11 23:29:36 2021 +0000 |
committer | Jens Axboe <axboe@kernel.dk> | Fri Mar 12 07:23:01 2021 -0700 |
tree | 5891c0e97d996e224d468ff974ec8295c722f9cb | |
parent | e1915f76a8981f0a750cf56515df42582a37c4b0 [diff] |
io_uring: remove useless ->startup completion We always do complete(&sqd->startup) almost right after sqd->thread creation, either in the success path or in io_sq_thread_finish(). It's specifically created not started for us to be able to set some stuff like sqd->thread and io_uring_alloc_task_context() before following right after wake_up_new_task(). Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>