mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
f2fs: allow dirty sections with zero valid block for checkpoint disabled
Following the semantic for dirty segments in checkpoint disabled mode, apply the same rule to dirty sections. Signed-off-by: Daeho Jeong <daehojeong@google.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
29ed2b5dd5
commit
f2526c5cf1
@ -771,8 +771,10 @@ static void __locate_dirty_segment(struct f2fs_sb_info *sbi, unsigned int segno,
|
||||
block_t valid_blocks =
|
||||
get_valid_blocks(sbi, segno, true);
|
||||
|
||||
f2fs_bug_on(sbi, unlikely(!valid_blocks ||
|
||||
valid_blocks == CAP_BLKS_PER_SEC(sbi)));
|
||||
f2fs_bug_on(sbi,
|
||||
(!is_sbi_flag_set(sbi, SBI_CP_DISABLED) &&
|
||||
!valid_blocks) ||
|
||||
valid_blocks == CAP_BLKS_PER_SEC(sbi));
|
||||
|
||||
if (!IS_CURSEC(sbi, secno))
|
||||
set_bit(secno, dirty_i->dirty_secmap);
|
||||
|
Loading…
Reference in New Issue
Block a user