diff options
author | 2024-02-20 12:48:44 -0800 | |
---|---|---|
committer | 2024-02-27 09:41:15 -0800 | |
commit | 4e0197f9932f70cc7be8744aa0ed4dd9b5d97d85 (patch) | |
tree | 9a309aae7e9c99cc2dcd8a9a4b6ca5eb75db6c8f /fs/f2fs/gc.c | |
parent | f2fs: doc: Fix bouncing email address for Sahitya Tummala (diff) | |
download | wireguard-linux-4e0197f9932f70cc7be8744aa0ed4dd9b5d97d85.tar.xz wireguard-linux-4e0197f9932f70cc7be8744aa0ed4dd9b5d97d85.zip |
f2fs: kill heap-based allocation
No one uses this feature. Let's kill it.
Reviewed-by: Daeho Jeong <daehojeong@google.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/gc.c')
-rw-r--r-- | fs/f2fs/gc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c index 7222876229ea..c97d80e3b726 100644 --- a/fs/f2fs/gc.c +++ b/fs/f2fs/gc.c @@ -280,12 +280,11 @@ static void select_policy(struct f2fs_sb_info *sbi, int gc_type, p->max_search > sbi->max_victim_search) p->max_search = sbi->max_victim_search; - /* let's select beginning hot/small space first in no_heap mode*/ + /* let's select beginning hot/small space first. */ if (f2fs_need_rand_seg(sbi)) p->offset = get_random_u32_below(MAIN_SECS(sbi) * SEGS_PER_SEC(sbi)); - else if (test_opt(sbi, NOHEAP) && - (type == CURSEG_HOT_DATA || IS_NODESEG(type))) + else if (type == CURSEG_HOT_DATA || IS_NODESEG(type)) p->offset = 0; else p->offset = SIT_I(sbi)->last_victim[p->gc_mode]; |