diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2017-02-20 16:51:23 +0100 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2017-02-20 16:51:23 +0100 |
commit | 0eb8af4916a540c362a2950e5ab54eca32eb7d58 (patch) | |
tree | f1ef4ae3f3d190f5614aa6fd1411d3e497810d29 /fs/sync.c | |
parent | f74ac01520c9f6d89bbc3c6931a72f757b742f86 (diff) | |
download | linux-0eb8af4916a540c362a2950e5ab54eca32eb7d58.tar.gz linux-0eb8af4916a540c362a2950e5ab54eca32eb7d58.tar.bz2 linux-0eb8af4916a540c362a2950e5ab54eca32eb7d58.zip |
vfs: use helper for calling f_op->fsync()
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/sync.c')
-rw-r--r-- | fs/sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sync.c b/fs/sync.c index 2a54c1f22035..11ba023434b1 100644 --- a/fs/sync.c +++ b/fs/sync.c @@ -192,7 +192,7 @@ int vfs_fsync_range(struct file *file, loff_t start, loff_t end, int datasync) spin_unlock(&inode->i_lock); mark_inode_dirty_sync(inode); } - return file->f_op->fsync(file, start, end, datasync); + return call_fsync(file, start, end, datasync); } EXPORT_SYMBOL(vfs_fsync_range); |