commit | 7c6607313f032b73638a6f752cb4adf50ba947cf | [log] [tgz] |
---|---|---|
author | Pavel Begunkov <asml.silence@gmail.com> | Mon Jan 25 11:42:21 2021 +0000 |
committer | Jens Axboe <axboe@kernel.dk> | Mon Feb 01 10:02:43 2021 -0700 |
tree | 975f312989c780df7ff48443a392a5df06c11d5d | |
parent | ecfc8492820732be652146280912554ced62c32b [diff] |
io_uring: consolidate putting reqs task We grab a task for each request and while putting it it also have to do extra work like inflight accounting and waking up that task. This sequence is duplicated several time, it's good time to add a helper. More to that, the helper generates better code due to better locality and so not failing alias analysis. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>