From: Jaegeuk Kim Date: Sun, 13 Aug 2017 04:33:23 +0000 (-0700) Subject: f2fs: check hot_data for roll-forward recovery X-Git-Tag: C0P2-H0.0--20200415~7530 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=cc9618c9fffe6bd362f048928e15effe04e5b6cd;p=linux.git f2fs: check hot_data for roll-forward recovery commit 125c9fb1ccb53eb2ea9380df40f3c743f3fb2fed upstream. We need to check HOT_DATA to truncate any previous data block when doing roll-forward recovery. Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c index 66395f7c0309..98c1a63a4614 100644 --- a/fs/f2fs/recovery.c +++ b/fs/f2fs/recovery.c @@ -316,7 +316,7 @@ static int check_index_in_prev_nodes(struct f2fs_sb_info *sbi, return 0; /* Get the previous summary */ - for (i = CURSEG_WARM_DATA; i <= CURSEG_COLD_DATA; i++) { + for (i = CURSEG_HOT_DATA; i <= CURSEG_COLD_DATA; i++) { struct curseg_info *curseg = CURSEG_I(sbi, i); if (curseg->segno == segno) { sum = curseg->sum_blk->entries[blkoff];