When the proportion of dirty segments within a section exceeds the valid_thresh_ratio, the gc_cost of that section is set to UINT_MAX, indicating that these sections should not be released. However, if all section costs within the scanning range of get_victim() are UINT_MAX, background GC will still occur. Add a condition to prevent this situation.
Signed-off-by: Liao Yuanhong <liaoyuanh...@vivo.com> --- fs/f2fs/gc.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c index 4a8c08f970e3..ffc3188416f4 100644 --- a/fs/f2fs/gc.c +++ b/fs/f2fs/gc.c @@ -936,6 +936,11 @@ int f2fs_get_victim(struct f2fs_sb_info *sbi, unsigned int *result, } } + if (f2fs_sb_has_blkzoned(sbi) && p.min_cost == UINT_MAX) { + ret = -ENODATA; + goto out; + } + /* get victim for GC_AT/AT_SSR */ if (is_atgc) { lookup_victim_by_age(sbi, &p); -- 2.34.1 _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel