From: Pavel Begunkov Date: Tue, 12 Sep 2023 13:57:04 +0000 (+0100) Subject: io_uring: revert "io_uring fix multishot accept ordering" X-Git-Tag: v6.1.61~1191 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5afbf7fdb730c4e2734a9f502ea9b9750a3c745b;p=platform%2Fkernel%2Flinux-starfive.git io_uring: revert "io_uring fix multishot accept ordering" From: Dylan Yudaken [ upstream commit 515e26961295bee9da5e26916c27739dca6c10e1 ] This is no longer needed after commit aa1df3a360a0 ("io_uring: fix CQE reordering"), since all reordering is now taken care of. This reverts commit cbd25748545c ("io_uring: fix multishot accept ordering"). Signed-off-by: Dylan Yudaken Link: https://lore.kernel.org/r/20221107125236.260132-2-dylany@meta.com Signed-off-by: Jens Axboe Signed-off-by: Pavel Begunkov Signed-off-by: Greg Kroah-Hartman --- diff --git a/io_uring/net.c b/io_uring/net.c index 2b44126..00b4433 100644 --- a/io_uring/net.c +++ b/io_uring/net.c @@ -1337,12 +1337,12 @@ retry: return IOU_OK; } - if (ret >= 0 && - io_post_aux_cqe(ctx, req->cqe.user_data, ret, IORING_CQE_F_MORE, false)) + if (ret < 0) + return ret; + if (io_post_aux_cqe(ctx, req->cqe.user_data, ret, IORING_CQE_F_MORE, true)) goto retry; - io_req_set_res(req, ret, 0); - return (issue_flags & IO_URING_F_MULTISHOT) ? IOU_STOP_MULTISHOT : IOU_OK; + return -ECANCELED; } int io_socket_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)