Re: [f2fs-dev] [PATCH] f2fs: fix to avoid potential panic during recovery

2024-01-30 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Wed, 24 Jan 2024 22:49:15 +0800 you wrote: > During recovery, if FAULT_BLOCK is on, it is possible that > f2fs_reserve_new_block() will return -ENOSPC during recovery, > then it may trigger panic. > > Also, if fault inje

[f2fs-dev] [PATCH] f2fs: fix to avoid potential panic during recovery

2024-01-24 Thread Chao Yu
During recovery, if FAULT_BLOCK is on, it is possible that f2fs_reserve_new_block() will return -ENOSPC during recovery, then it may trigger panic. Also, if fault injection rate is 1 and only FAULT_BLOCK fault type is on, it may encounter deadloop in loop of block reservation. Let's change as bel