[PATCH] f2fs: should get a victim from retrials

From: Jaegeuk Kim
Date: Mon Sep 21 2015 - 15:12:57 EST


If we do not call get_victim first, we cannot get a new victim for retrial
path.

Signed-off-by: Jaegeuk Kim <jaegeuk@xxxxxxxxxx>
---
fs/f2fs/gc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index 782b8e7..e932740 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -823,7 +823,8 @@ gc_more:
write_checkpoint(sbi, &cpc);
}

- if (segno == NULL_SEGNO && !__get_victim(sbi, &segno, gc_type))
+ /* should call __get_victim first to get a victim from retrial path */
+ if (!__get_victim(sbi, &segno, gc_type) && segno == NULL_SEGNO)
goto stop;
ret = 0;

--
2.1.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/