summaryrefslogtreecommitdiffstats
path: root/fs/read_write.c
diff options
context:
space:
mode:
authorDarrick J. Wong2015-12-19 09:55:52 +0100
committerAl Viro2016-01-01 08:36:02 +0100
commitd79bdd52d8be70d0e7024ac6715eee860a19834a (patch)
tree42925fd7b132336675c8857e916856ebe0a434b9 /fs/read_write.c
parentcifs: avoid unused variable and label (diff)
downloadkernel-qcow2-linux-d79bdd52d8be70d0e7024ac6715eee860a19834a.tar.gz
kernel-qcow2-linux-d79bdd52d8be70d0e7024ac6715eee860a19834a.tar.xz
kernel-qcow2-linux-d79bdd52d8be70d0e7024ac6715eee860a19834a.zip
vfs: wire up compat ioctl for CLONE/CLONE_RANGE
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/read_write.c')
-rw-r--r--fs/read_write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/read_write.c b/fs/read_write.c
index c75d02cb13ec..60ee26941231 100644
--- a/fs/read_write.c
+++ b/fs/read_write.c
@@ -1489,7 +1489,7 @@ int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
return -EISDIR;
if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
- return -EOPNOTSUPP;
+ return -EINVAL;
if (!(file_in->f_mode & FMODE_READ) ||
!(file_out->f_mode & FMODE_WRITE) ||