[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1442862777-22537-1-git-send-email-jaegeuk@kernel.org>
Date: Mon, 21 Sep 2015 12:12:57 -0700
From: Jaegeuk Kim <jaegeuk@...nel.org>
To: linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org,
linux-f2fs-devel@...ts.sourceforge.net
Cc: Jaegeuk Kim <jaegeuk@...nel.org>
Subject: [PATCH] f2fs: should get a victim from retrials
If we do not call get_victim first, we cannot get a new victim for retrial
path.
Signed-off-by: Jaegeuk Kim <jaegeuk@...nel.org>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists