aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2012-05-07 12:56:50 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-05-30 21:04:51 -0400
commit3a0c0e26b64505522b8bce8578a6e61609c31318 (patch)
treeea64458463045c261d56cd88c1e6e2a8eb304607 /fs
parentbb8ac181a5cf50458a0d83b4460790badc9fdc16 (diff)
jffs2: remove lock_super
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>
Diffstat (limited to 'fs')
-rw-r--r--fs/jffs2/super.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c
index f9916f312bd..3422a2db2ba 100644
--- a/fs/jffs2/super.c
+++ b/fs/jffs2/super.c
@@ -67,15 +67,12 @@ static void jffs2_write_super(struct super_block *sb)
67{ 67{
68 struct jffs2_sb_info *c = JFFS2_SB_INFO(sb); 68 struct jffs2_sb_info *c = JFFS2_SB_INFO(sb);
69 69
70 lock_super(sb);
71 sb->s_dirt = 0; 70 sb->s_dirt = 0;
72 71
73 if (!(sb->s_flags & MS_RDONLY)) { 72 if (!(sb->s_flags & MS_RDONLY)) {
74 jffs2_dbg(1, "%s()\n", __func__); 73 jffs2_dbg(1, "%s()\n", __func__);
75 jffs2_flush_wbuf_gc(c, 0); 74 jffs2_flush_wbuf_gc(c, 0);
76 } 75 }
77
78 unlock_super(sb);
79} 76}
80 77
81static const char *jffs2_compr_name(unsigned int compr) 78static const char *jffs2_compr_name(unsigned int compr)