Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3a0c0e26 authored by Artem Bityutskiy's avatar Artem Bityutskiy Committed by Al Viro
Browse files

jffs2: remove lock_super



We do not need 'lock_super()'/'unlock_super()' in JFFS2 - kill them.

Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent bb8ac181
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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)