mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
io_uring: revert "io_uring fix multishot accept ordering"
This is no longer needed after commitaa1df3a360
("io_uring: fix CQE reordering"), since all reordering is now taken care of. This reverts commitcbd2574854
("io_uring: fix multishot accept ordering"). Signed-off-by: Dylan Yudaken <dylany@meta.com> Link: https://lore.kernel.org/r/20221107125236.260132-2-dylany@meta.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
ef67fcb41d
commit
515e269612
@ -1322,12 +1322,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)
|
||||
|
Loading…
Reference in New Issue
Block a user