diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2023-08-25 01:53:30 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-08-25 02:16:19 +0300 |
commit | 093a650b757210bc856ca7f5349fb5a4bb9d4bd6 (patch) | |
tree | 2d39abfb4120d3d6e71ec87b904397da9f5af8d5 /io_uring | |
parent | ec26c225f06f5993f8891fa6c79fab3c92981181 (diff) | |
download | linux-093a650b757210bc856ca7f5349fb5a4bb9d4bd6.tar.xz |
io_uring: force inline io_fill_cqe_req
There are only 2 callers of io_fill_cqe_req left, and one of them is
extremely hot. Force inline the function.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/ffce4fc5e3521966def848a4d930586dfe33ae11.1692916914.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring')
-rw-r--r-- | io_uring/io_uring.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/io_uring/io_uring.h b/io_uring/io_uring.h index 07fd185064d2..547c30582fb8 100644 --- a/io_uring/io_uring.h +++ b/io_uring/io_uring.h @@ -132,7 +132,8 @@ static inline bool io_get_cqe(struct io_ring_ctx *ctx, struct io_uring_cqe **ret return io_get_cqe_overflow(ctx, ret, false); } -static inline bool io_fill_cqe_req(struct io_ring_ctx *ctx, struct io_kiocb *req) +static __always_inline bool io_fill_cqe_req(struct io_ring_ctx *ctx, + struct io_kiocb *req) { struct io_uring_cqe *cqe; |