mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
f2fs: atgc: fix to set default age threshold
Default age threshold value is missed to set, fix it.
Fixes: 093749e296
("f2fs: support age threshold based garbage collection")
Reported-by: Sahitya Tummala <stummala@codeaurora.org>
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
d927ccfccb
commit
89e53ff165
@ -1822,6 +1822,7 @@ static void init_atgc_management(struct f2fs_sb_info *sbi)
|
|||||||
am->candidate_ratio = DEF_GC_THREAD_CANDIDATE_RATIO;
|
am->candidate_ratio = DEF_GC_THREAD_CANDIDATE_RATIO;
|
||||||
am->max_candidate_count = DEF_GC_THREAD_MAX_CANDIDATE_COUNT;
|
am->max_candidate_count = DEF_GC_THREAD_MAX_CANDIDATE_COUNT;
|
||||||
am->age_weight = DEF_GC_THREAD_AGE_WEIGHT;
|
am->age_weight = DEF_GC_THREAD_AGE_WEIGHT;
|
||||||
|
am->age_threshold = DEF_GC_THREAD_AGE_THRESHOLD;
|
||||||
}
|
}
|
||||||
|
|
||||||
void f2fs_build_gc_manager(struct f2fs_sb_info *sbi)
|
void f2fs_build_gc_manager(struct f2fs_sb_info *sbi)
|
||||||
|
Loading…
Reference in New Issue
Block a user