mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-25 12:00:22 +09:00
f2fs: inject fault in inc_valid_node_count
This patch adds missing fault injection in inc_valid_node_count. Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
@@ -1831,6 +1831,13 @@ static inline int inc_valid_node_count(struct f2fs_sb_info *sbi,
|
||||
return ret;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_F2FS_FAULT_INJECTION
|
||||
if (time_to_inject(sbi, FAULT_BLOCK)) {
|
||||
f2fs_show_injection_info(FAULT_BLOCK);
|
||||
goto enospc;
|
||||
}
|
||||
#endif
|
||||
|
||||
spin_lock(&sbi->stat_lock);
|
||||
|
||||
valid_block_count = sbi->total_valid_block_count + 1;
|
||||
|
||||
Reference in New Issue
Block a user