Commit 52da40ae authored by Al Viro's avatar Al Viro

dump_emit(): use __kernel_write(), not vfs_write()

the caller has already done file_start_write()...
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent db51242d
......@@ -695,7 +695,7 @@ int dump_emit(struct coredump_params *cprm, const void *addr, int nr)
while (nr) {
if (dump_interrupted())
return 0;
n = vfs_write(file, addr, nr, &pos);
n = __kernel_write(file, addr, nr, &pos);
if (n <= 0)
return 0;
file->f_pos = pos;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment