io_uring: kill REQ_F_COMPLETE_INLINE
authorPavel Begunkov <asml.silence@gmail.com>
Thu, 16 Jun 2022 09:21:58 +0000 (10:21 +0100)
committerJens Axboe <axboe@kernel.dk>
Mon, 25 Jul 2022 00:39:13 +0000 (18:39 -0600)
commit75d7b3aec13be557f15d099dc612dd658d670d1d
tree2cf8c0ce5cb6b268eab2169f197277e4287635bf
parentdf9830d883b914296beb17e4f75017faac9c4312
io_uring: kill REQ_F_COMPLETE_INLINE

REQ_F_COMPLETE_INLINE is only needed to delay queueing into the
completion list to io_queue_sqe() as __io_req_complete() is inlined and
we don't want to bloat the kernel.

As now we complete in a more centralised fashion in io_issue_sqe() we
can get rid of the flag and queue to the list directly.

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/600ba20a9338b8a39b249b23d3d177803613dde4.1655371007.git.asml.silence@gmail.com
Reviewed-by: Hao Xu <howeyxu@tencent.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/io_uring.c
io_uring/io_uring.h
io_uring/io_uring_types.h