From: Pavel Begunkov Date: Fri, 11 Aug 2023 12:53:41 +0000 (+0100) Subject: io_uring/net: don't overflow multishot accept X-Git-Tag: v6.6.17~4088^2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1bfed23349716a7811645336a7ce42c4b8f250bc;p=platform%2Fkernel%2Flinux-rpi.git io_uring/net: don't overflow multishot accept Don't allow overflowing multishot accept CQEs, we want to limit the grows of the overflow list. Cc: stable@vger.kernel.org Fixes: 4e86a2c980137 ("io_uring: implement multishot mode for accept") Signed-off-by: Pavel Begunkov Link: https://lore.kernel.org/r/7d0d749649244873772623dd7747966f516fe6e2.1691757663.git.asml.silence@gmail.com Signed-off-by: Jens Axboe --- diff --git a/io_uring/net.c b/io_uring/net.c index eb1f51d..1599493 100644 --- a/io_uring/net.c +++ b/io_uring/net.c @@ -1367,7 +1367,7 @@ retry: if (ret < 0) return ret; if (io_aux_cqe(req, issue_flags & IO_URING_F_COMPLETE_DEFER, ret, - IORING_CQE_F_MORE, true)) + IORING_CQE_F_MORE, false)) goto retry; return -ECANCELED;