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

Commit 3b9b10f9 authored by Jaegeuk Kim's avatar Jaegeuk Kim
Browse files

f2fs: avoid f2fs_bug_on during recovery



We don't need to use f2fs_bug_on() to treat with any error case when allocating
a block during recovery.

Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 652be551
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -460,8 +460,7 @@ static int do_recover_data(struct f2fs_sb_info *sbi, struct inode *inode,
		 */
		if (dest == NEW_ADDR) {
			truncate_data_blocks_range(&dn, 1);
			err = reserve_new_block(&dn);
			f2fs_bug_on(sbi, err);
			reserve_new_block(&dn);
			continue;
		}