Loading fs/io_uring.c +6 −8 Original line number Diff line number Diff line Loading @@ -5831,17 +5831,15 @@ static int io_issue_sqe(struct io_kiocb *req, bool force_nonblock, ret = io_sync_file_range(req, force_nonblock); break; case IORING_OP_SENDMSG: case IORING_OP_SEND: if (req->opcode == IORING_OP_SENDMSG) ret = io_sendmsg(req, force_nonblock, cs); else break; case IORING_OP_SEND: ret = io_send(req, force_nonblock, cs); break; case IORING_OP_RECVMSG: case IORING_OP_RECV: if (req->opcode == IORING_OP_RECVMSG) ret = io_recvmsg(req, force_nonblock, cs); else break; case IORING_OP_RECV: ret = io_recv(req, force_nonblock, cs); break; case IORING_OP_TIMEOUT: Loading Loading
fs/io_uring.c +6 −8 Original line number Diff line number Diff line Loading @@ -5831,17 +5831,15 @@ static int io_issue_sqe(struct io_kiocb *req, bool force_nonblock, ret = io_sync_file_range(req, force_nonblock); break; case IORING_OP_SENDMSG: case IORING_OP_SEND: if (req->opcode == IORING_OP_SENDMSG) ret = io_sendmsg(req, force_nonblock, cs); else break; case IORING_OP_SEND: ret = io_send(req, force_nonblock, cs); break; case IORING_OP_RECVMSG: case IORING_OP_RECV: if (req->opcode == IORING_OP_RECVMSG) ret = io_recvmsg(req, force_nonblock, cs); else break; case IORING_OP_RECV: ret = io_recv(req, force_nonblock, cs); break; case IORING_OP_TIMEOUT: Loading