diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2023-08-28 17:13:18 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2024-04-15 16:03:25 -0400 |
commit | 7c98f7cb8fda964fbc60b9307ad35e94735fa35f (patch) | |
tree | aa35c5755f2d02d94670f9bdec314ac82252ca23 /include/linux/fs.h | |
parent | 0f4a2cebe256dab4e9b8836b87ce4c909cd585eb (diff) | |
download | linux-7c98f7cb8fda964fbc60b9307ad35e94735fa35f.tar.gz linux-7c98f7cb8fda964fbc60b9307ad35e94735fa35f.tar.bz2 linux-7c98f7cb8fda964fbc60b9307ad35e94735fa35f.zip |
remove call_{read,write}_iter() functions
These have no clear purpose. This is effectively a revert of commit
bb7462b6fd64 ("vfs: use helpers for calling f_op->{read,write}_iter()").
The patch was created with the help of a coccinelle script.
Fixes: bb7462b6fd64 ("vfs: use helpers for calling f_op->{read,write}_iter()")
Reviewed-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 143e967a3af2..a94343f567cb 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2096,18 +2096,6 @@ struct inode_operations { struct offset_ctx *(*get_offset_ctx)(struct inode *inode); } ____cacheline_aligned; -static inline ssize_t call_read_iter(struct file *file, struct kiocb *kio, - struct iov_iter *iter) -{ - return file->f_op->read_iter(kio, iter); -} - -static inline ssize_t call_write_iter(struct file *file, struct kiocb *kio, - struct iov_iter *iter) -{ - return file->f_op->write_iter(kio, iter); -} - static inline int call_mmap(struct file *file, struct vm_area_struct *vma) { return file->f_op->mmap(file, vma); |