From: Pavel Begunkov Date: Sun, 28 Feb 2021 22:35:16 +0000 (+0000) Subject: io_uring: refactor out send/recv async setup X-Git-Tag: accepted/tizen/unified/20230118.172025~7355^2~149 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e052d443df15d71277f6b8509badae4310ebd92;p=platform%2Fkernel%2Flinux-rpi.git io_uring: refactor out send/recv async setup IORING_OP_[SEND,RECV] don't need async setup neither will get into io_req_prep_async(). Remove them from io_req_prep_async() and remove needs_async_data checks from the related setup functions. Signed-off-by: Pavel Begunkov Signed-off-by: Jens Axboe --- diff --git a/fs/io_uring.c b/fs/io_uring.c index bb49751..7833ccd 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -4349,8 +4349,6 @@ static int io_sendmsg_prep_async(struct io_kiocb *req) { int ret; - if (!io_op_defs[req->opcode].needs_async_data) - return 0; ret = io_sendmsg_copy_hdr(req, req->async_data); if (!ret) req->flags |= REQ_F_NEED_CLEANUP; @@ -4578,8 +4576,6 @@ static int io_recvmsg_prep_async(struct io_kiocb *req) { int ret; - if (!io_op_defs[req->opcode].needs_async_data) - return 0; ret = io_recvmsg_copy_hdr(req, req->async_data); if (!ret) req->flags |= REQ_F_NEED_CLEANUP; @@ -5892,10 +5888,8 @@ static int io_req_prep_async(struct io_kiocb *req) case IORING_OP_WRITE: return io_rw_prep_async(req, WRITE); case IORING_OP_SENDMSG: - case IORING_OP_SEND: return io_sendmsg_prep_async(req); case IORING_OP_RECVMSG: - case IORING_OP_RECV: return io_recvmsg_prep_async(req); case IORING_OP_CONNECT: return io_connect_prep_async(req);