summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2009-06-08 10:08:21 +0200
committerAl Viro <viro@zeniv.linux.org.uk>2009-06-11 21:36:16 -0400
commitd579ed00aa96a7f7486978540a0d7cecaff742ae (patch)
treea1c988e4f97ea9e3750779ff9cfa0f12d95386e4 /fs
parent8c8006564a58d0ea912bf7f2d0a758d97e4b464f (diff)
jffs2: call jffs2_write_super from jffs2_sync_fs
The call to ->write_super from __sync_filesystem will go away, so make sure jffs2 performs the same actions from inside ->sync_fs. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r--fs/jffs2/super.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c
index f7bfd3ac8bf..07a22caf268 100644
--- a/fs/jffs2/super.c
+++ b/fs/jffs2/super.c
@@ -74,6 +74,8 @@ static int jffs2_sync_fs(struct super_block *sb, int wait)
{
struct jffs2_sb_info *c = JFFS2_SB_INFO(sb);
+ jffs2_write_super(sb);
+
mutex_lock(&c->alloc_sem);
jffs2_flush_wbuf_pad(c);
mutex_unlock(&c->alloc_sem);