fix disorder of nilfs_write_super in nilfs_sync_fs. commiting super block must be the end of the function so that every chanages are reflected.
Signed-off-by: Jiro SEKIBA <[email protected]> --- fs/nilfs2/super.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 8e2ec43..ba69601 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c @@ -388,11 +388,12 @@ static int nilfs_sync_fs(struct super_block *sb, int wait) { int err = 0; - nilfs_write_super(sb); - /* This function is called when super block should be written back */ if (wait) err = nilfs_construct_segment(sb); + + nilfs_write_super(sb); + return err; } -- 1.5.6.5 _______________________________________________ users mailing list [email protected] https://www.nilfs.org/mailman/listinfo/users
