Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d64f8047 authored by Jaegeuk Kim's avatar Jaegeuk Kim
Browse files

f2fs: write checkpoint before starting FG_GC



In order to be aware of prefree and free sections during FG_GC, let's start with
write_checkpoint().

Signed-off-by: default avatarJaegeuk Kim <jaegeuk.kim@samsung.com>
parent 3315101f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -669,8 +669,10 @@ int f2fs_gc(struct f2fs_sb_info *sbi)
	if (!(sbi->sb->s_flags & MS_ACTIVE))
		goto stop;

	if (gc_type == BG_GC && has_not_enough_free_secs(sbi, nfree))
	if (gc_type == BG_GC && has_not_enough_free_secs(sbi, nfree)) {
		gc_type = FG_GC;
		write_checkpoint(sbi, false);
	}

	if (!__get_victim(sbi, &segno, gc_type, NO_CHECK_TYPE))
		goto stop;