diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-07-03 09:43:26 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-07-22 15:58:10 -0400 |
commit | a4d05d315a4fdf5ccb0dbf0ce38bac12d522d33e (patch) | |
tree | d286fc3beb56c0a3a64f4dcf578cd442d967ddce /fs/sysv | |
parent | 5687b5780e90278a62d4cd916a3632087066f59d (diff) |
fs/sysv: remove useless write_super call
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>
Diffstat (limited to 'fs/sysv')
-rw-r--r-- | fs/sysv/inode.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/sysv/inode.c b/fs/sysv/inode.c index 08d0b2568cd3..af13d1342f23 100644 --- a/fs/sysv/inode.c +++ b/fs/sysv/inode.c | |||
@@ -81,9 +81,6 @@ static void sysv_put_super(struct super_block *sb) | |||
81 | { | 81 | { |
82 | struct sysv_sb_info *sbi = SYSV_SB(sb); | 82 | struct sysv_sb_info *sbi = SYSV_SB(sb); |
83 | 83 | ||
84 | if (sb->s_dirt) | ||
85 | sysv_write_super(sb); | ||
86 | |||
87 | if (!(sb->s_flags & MS_RDONLY)) { | 84 | if (!(sb->s_flags & MS_RDONLY)) { |
88 | /* XXX ext2 also updates the state here */ | 85 | /* XXX ext2 also updates the state here */ |
89 | mark_buffer_dirty(sbi->s_bh1); | 86 | mark_buffer_dirty(sbi->s_bh1); |