fs/sysv: remove useless write_super call
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Tue, 3 Jul 2012 13:43:26 +0000 (16:43 +0300)
committerAl Viro <viro@zeniv.linux.org.uk>
Sun, 22 Jul 2012 19:58:10 +0000 (23:58 +0400)
We do not need to call 'sysv_write_super()' from 'sysv_put_super()',
because VFS has called 'sysv_sync_fs()' before calling '->put_super()'.
So remove it.

Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/sysv/inode.c

index 08d0b2568cd35e060a9e6b8ffda87d7d6569cbdb..af13d1342f233e937b64e4f41ea95ef0b1085e6d 100644 (file)
@@ -81,9 +81,6 @@ static void sysv_put_super(struct super_block *sb)
 {
        struct sysv_sb_info *sbi = SYSV_SB(sb);
 
-       if (sb->s_dirt)
-               sysv_write_super(sb);
-
        if (!(sb->s_flags & MS_RDONLY)) {
                /* XXX ext2 also updates the state here */
                mark_buffer_dirty(sbi->s_bh1);