Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

io_uring: delete misleading comment in io_fill_cqe_aux()

io_fill_cqe_aux() doesn't overflow completions, however it might fail
them and lets the caller handle it. Remove the comment, which doesn't
make any sense.

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/021aa8c1d8f20ef2b66da6aeabb6b511938fd2c5.1745843119.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>

authored by

Pavel Begunkov and committed by
Jens Axboe
27d2fed7 f6da4fee

-5
-5
io_uring/io_uring.c
··· 814 814 815 815 ctx->cq_extra++; 816 816 817 - /* 818 - * If we can't get a cq entry, userspace overflowed the 819 - * submission (by quite a lot). Increment the overflow count in 820 - * the ring. 821 - */ 822 817 if (likely(io_get_cqe(ctx, &cqe))) { 823 818 WRITE_ONCE(cqe->user_data, user_data); 824 819 WRITE_ONCE(cqe->res, res);