From: Chao Yu Date: Tue, 18 Jan 2022 03:48:02 +0000 (+0800) Subject: f2fs: fix to enable ATGC correctly via gc_idle sysfs interface X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d8c8dd97bb8cd5d1ab2857850e6166e51417435e;p=linux.git f2fs: fix to enable ATGC correctly via gc_idle sysfs interface [ Upstream commit 7d19e3dab0002e527052b0aaf986e8c32e5537bf ] It needs to assign sbi->gc_mode with GC_IDLE_AT rather than GC_AT when user tries to enable ATGC via gc_idle sysfs interface, fix it. Fixes: 093749e296e2 ("f2fs: support age threshold based garbage collection") Cc: Zhipeng Tan Signed-off-by: Jicheng Shao Signed-off-by: Chao Yu Signed-off-by: Jaegeuk Kim Signed-off-by: Sasha Levin --- diff --git a/fs/f2fs/sysfs.c b/fs/f2fs/sysfs.c index abc4344fba394..8b36e61fe7edb 100644 --- a/fs/f2fs/sysfs.c +++ b/fs/f2fs/sysfs.c @@ -473,7 +473,7 @@ out: } else if (t == GC_IDLE_AT) { if (!sbi->am.atgc_enabled) return -EINVAL; - sbi->gc_mode = GC_AT; + sbi->gc_mode = GC_IDLE_AT; } else { sbi->gc_mode = GC_NORMAL; }