From: Al Viro Date: Fri, 3 Apr 2015 19:09:18 +0000 (-0400) Subject: export __vfs_read() X-Git-Tag: Ubuntu-5.2.0-15.16~11543^2~12 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=3d04c8a17f1a0041a6851cf64f3da8c40deed837;p=mirror_ubuntu-eoan-kernel.git export __vfs_read() Signed-off-by: Al Viro --- diff --git a/fs/read_write.c b/fs/read_write.c index 9d7952a6829b..c75e6ef0952c 100644 --- a/fs/read_write.c +++ b/fs/read_write.c @@ -450,19 +450,16 @@ EXPORT_SYMBOL(new_sync_read); ssize_t __vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos) { - ssize_t ret; - if (file->f_op->read) - ret = file->f_op->read(file, buf, count, pos); + return file->f_op->read(file, buf, count, pos); else if (file->f_op->aio_read) - ret = do_sync_read(file, buf, count, pos); + return do_sync_read(file, buf, count, pos); else if (file->f_op->read_iter) - ret = new_sync_read(file, buf, count, pos); + return new_sync_read(file, buf, count, pos); else - ret = -EINVAL; - - return ret; + return -EINVAL; } +EXPORT_SYMBOL(__vfs_read); ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos) {