From: Al Viro Date: Sun, 7 Jun 2009 19:44:50 +0000 (-0400) Subject: switch omfs to simple_fsync() X-Git-Tag: Ubuntu-goldfish-3.4.0-4.27~11426^2~22 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=bea6b64c277f0824cdaea6190209b26a164419d6;p=mirror_ubuntu-zesty-kernel.git switch omfs to simple_fsync() Signed-off-by: Al Viro --- diff --git a/fs/omfs/file.c b/fs/omfs/file.c index 834b2331f6b3..d17e774eaf45 100644 --- a/fs/omfs/file.c +++ b/fs/omfs/file.c @@ -11,21 +11,6 @@ #include #include "omfs.h" -static int omfs_sync_file(struct file *file, struct dentry *dentry, - int datasync) -{ - struct inode *inode = dentry->d_inode; - int err; - - err = sync_mapping_buffers(inode->i_mapping); - if (!(inode->i_state & I_DIRTY)) - return err; - if (datasync && !(inode->i_state & I_DIRTY_DATASYNC)) - return err; - err |= omfs_sync_inode(inode); - return err ? -EIO : 0; -} - static u32 omfs_max_extents(struct omfs_sb_info *sbi, int offset) { return (sbi->s_sys_blocksize - offset - @@ -344,7 +329,7 @@ struct file_operations omfs_file_operations = { .aio_read = generic_file_aio_read, .aio_write = generic_file_aio_write, .mmap = generic_file_mmap, - .fsync = omfs_sync_file, + .fsync = simple_fsync, .splice_read = generic_file_splice_read, };