Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348150
b: refs/heads/master
c: 30f0c75
h: refs/heads/master
v: v3
  • Loading branch information
Jaegeuk Kim committed Dec 26, 2012
1 parent a225777 commit 463d65f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 398b1ac5a57219823f942a8d3665b27ab99354de
refs/heads/master: 30f0c75858c46a0273ccb838de401b1f5fdebe6f
6 changes: 2 additions & 4 deletions trunk/fs/f2fs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -528,8 +528,7 @@ static int f2fs_fill_super(struct super_block *sb, void *data, int silent)

/* if there are nt orphan nodes free them */
err = -EINVAL;
if (!is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG) &&
recover_orphan_inodes(sbi))
if (recover_orphan_inodes(sbi))
goto free_node_inode;

/* read root inode and dentry */
Expand All @@ -548,8 +547,7 @@ static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
}

/* recover fsynced data */
if (!is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG) &&
!test_opt(sbi, DISABLE_ROLL_FORWARD))
if (!test_opt(sbi, DISABLE_ROLL_FORWARD))
recover_fsync_data(sbi);

/* After POR, we can run background GC thread */
Expand Down

0 comments on commit 463d65f

Please sign in to comment.