提交 79b6f8c6 编写于 作者: D David Laight 提交者: Zheng Zengkai

fs/io_uring Don't use the return value from import_iovec().

stable inclusion
from stable-5.10.67
commit 6930a2a5be5cbb0c202fcfa2773c95bd10a19197
bugzilla: 182619 https://gitee.com/openeuler/kernel/issues/I4EWO7

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=6930a2a5be5cbb0c202fcfa2773c95bd10a19197

--------------------------------

[ Upstream commit 10fc72e4 ]

This is the only code that relies on import_iovec() returning
iter.count on success.
This allows a better interface to import_iovec().
Signed-off-by: NDavid Laight <david.laight@aculab.com>
Signed-off-by: NPavel Begunkov <asml.silence@gmail.com>
Reviewed-by: NPavel Begunkov <asml.silence@gmail.com>
Signed-off-by: NJens Axboe <axboe@kernel.dk>
Signed-off-by: NSasha Levin <sashal@kernel.org>
Signed-off-by: NChen Jun <chenjun102@huawei.com>
Acked-by: NWeilong Chen <chenweilong@huawei.com>
Signed-off-by: NChen Jun <chenjun102@huawei.com>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 5bc9d0f2
......@@ -3128,7 +3128,7 @@ static ssize_t __io_import_iovec(int rw, struct io_kiocb *req,
ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
*iovec = NULL;
return ret < 0 ? ret : sqe_len;
return ret;
}
if (req->flags & REQ_F_BUFFER_SELECT) {
......@@ -3154,7 +3154,7 @@ static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
if (!iorw)
return __io_import_iovec(rw, req, iovec, iter, needs_lock);
*iovec = NULL;
return iov_iter_count(&iorw->iter);
return 0;
}
static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
......@@ -3426,7 +3426,7 @@ static int io_read(struct io_kiocb *req, bool force_nonblock,
if (ret < 0)
return ret;
iov_count = iov_iter_count(iter);
io_size = ret;
io_size = iov_count;
req->result = io_size;
ret = 0;
......@@ -3555,7 +3555,7 @@ static int io_write(struct io_kiocb *req, bool force_nonblock,
if (ret < 0)
return ret;
iov_count = iov_iter_count(iter);
io_size = ret;
io_size = iov_count;
req->result = io_size;
/* Ensure we clear previously set non-block flag */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册