Skip to content

Commit

Permalink
fs/sysv: remove useless write_super call
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Artem Bityutskiy authored and Al Viro committed Jul 22, 2012
1 parent 5687b57 commit a4d05d3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions fs/sysv/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a4d05d3

Please sign in to comment.