diff options
author | Dylan Yudaken <dylany@meta.com> | 2022-11-24 01:35:56 -0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-11-25 06:10:04 -0700 |
commit | a77ab745f28d5ab2ce51d0e44e85af942bb77d47 (patch) | |
tree | 7315f496d68c8e5bb9b234905e62dd1491afc416 /io_uring/io_uring.c | |
parent | 9b8c54755a2b16d4f23c0ea184b75e2edf77d906 (diff) |
io_uring: make io_fill_cqe_aux static
This is only used in io_uring.c
Signed-off-by: Dylan Yudaken <dylany@meta.com>
Link: https://lore.kernel.org/r/20221124093559.3780686-7-dylany@meta.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/io_uring.c')
-rw-r--r-- | io_uring/io_uring.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c index 056aea917cd6..fea84e51e56f 100644 --- a/io_uring/io_uring.c +++ b/io_uring/io_uring.c @@ -770,8 +770,8 @@ struct io_uring_cqe *__io_get_cqe(struct io_ring_ctx *ctx, bool overflow) return &rings->cqes[off]; } -bool io_fill_cqe_aux(struct io_ring_ctx *ctx, u64 user_data, s32 res, u32 cflags, - bool allow_overflow) +static bool io_fill_cqe_aux(struct io_ring_ctx *ctx, u64 user_data, s32 res, u32 cflags, + bool allow_overflow) { struct io_uring_cqe *cqe; |