mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
f2fs: avoid gc in cp_error case
Otherwise, we can hit f2fs_bug_on(sbi, !PageUptodate(sum_page)); Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
f6fe2be3c6
commit
646e759a4d
@ -847,7 +847,8 @@ static int do_garbage_collect(struct f2fs_sb_info *sbi,
|
||||
|
||||
for (segno = start_segno; segno < end_segno; segno++) {
|
||||
|
||||
if (get_valid_blocks(sbi, segno, 1) == 0)
|
||||
if (get_valid_blocks(sbi, segno, 1) == 0 ||
|
||||
unlikely(f2fs_cp_error(sbi)))
|
||||
goto next;
|
||||
|
||||
/* find segment summary of victim */
|
||||
|
Loading…
Reference in New Issue
Block a user