summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Hellwig2009-06-08 10:08:21 +0200
committerAl Viro2009-06-12 03:36:16 +0200
commitd579ed00aa96a7f7486978540a0d7cecaff742ae (patch)
treea1c988e4f97ea9e3750779ff9cfa0f12d95386e4
parentufs: add ->sync_fs (diff)
downloadkernel-qcow2-linux-d579ed00aa96a7f7486978540a0d7cecaff742ae.tar.gz
kernel-qcow2-linux-d579ed00aa96a7f7486978540a0d7cecaff742ae.tar.xz
kernel-qcow2-linux-d579ed00aa96a7f7486978540a0d7cecaff742ae.zip
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>
-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 f7bfd3ac8bfa..07a22caf2687 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);