Skip to content

Commit

Permalink
jffs2: remove lock_super
Browse files Browse the repository at this point in the history
We do not need 'lock_super()'/'unlock_super()' in JFFS2 - kill them.

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 May 31, 2012
1 parent bb8ac18 commit 3a0c0e2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions fs/jffs2/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,12 @@ static void jffs2_write_super(struct super_block *sb)
{
struct jffs2_sb_info *c = JFFS2_SB_INFO(sb);

lock_super(sb);
sb->s_dirt = 0;

if (!(sb->s_flags & MS_RDONLY)) {
jffs2_dbg(1, "%s()\n", __func__);
jffs2_flush_wbuf_gc(c, 0);
}

unlock_super(sb);
}

static const char *jffs2_compr_name(unsigned int compr)
Expand Down

0 comments on commit 3a0c0e2

Please sign in to comment.