提交 03cc0789 编写于 作者: A Al Viro

do_splice_to(): cap the size before passing to ->splice_read()

pipe capacity won't exceed 2G anyway.
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 7500c38a
......@@ -1143,6 +1143,9 @@ static long do_splice_to(struct file *in, loff_t *ppos,
if (unlikely(ret < 0))
return ret;
if (unlikely(len > MAX_RW_COUNT))
len = MAX_RW_COUNT;
if (in->f_op->splice_read)
splice_read = in->f_op->splice_read;
else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册