]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/f2fs/gc.h
f2fs: support zone capacity less than zone size
[mirror_ubuntu-jammy-kernel.git] / fs / f2fs / gc.h
CommitLineData
d29fbcdb 1/* SPDX-License-Identifier: GPL-2.0 */
0a8165d7 2/*
7bc09003
JK
3 * fs/f2fs/gc.h
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
7bc09003 7 */
7bc09003
JK
8#define GC_THREAD_MIN_WB_PAGES 1 /*
9 * a threshold to determine
10 * whether IO subsystem is idle
11 * or not
12 */
d9872a69 13#define DEF_GC_THREAD_URGENT_SLEEP_TIME 500 /* 500 ms */
b59d0bae
NJ
14#define DEF_GC_THREAD_MIN_SLEEP_TIME 30000 /* milliseconds */
15#define DEF_GC_THREAD_MAX_SLEEP_TIME 60000
16#define DEF_GC_THREAD_NOGC_SLEEP_TIME 300000 /* wait 5 min */
7bc09003
JK
17#define LIMIT_INVALID_BLOCK 40 /* percentage over total user space */
18#define LIMIT_FREE_BLOCK 40 /* percentage over invalid + free space */
19
1ad71a27
JK
20#define DEF_GC_FAILED_PINNED_FILES 2048
21
7bc09003 22/* Search max. number of dirty segments to select a victim segment */
b1c57c1c 23#define DEF_MAX_VICTIM_SEARCH 4096 /* covers 8GB */
7bc09003 24
7bc09003
JK
25struct f2fs_gc_kthread {
26 struct task_struct *f2fs_gc_task;
27 wait_queue_head_t gc_wait_queue_head;
b59d0bae
NJ
28
29 /* for gc sleep time */
d9872a69 30 unsigned int urgent_sleep_time;
b59d0bae
NJ
31 unsigned int min_sleep_time;
32 unsigned int max_sleep_time;
33 unsigned int no_gc_sleep_time;
d2dc095f
NJ
34
35 /* for changing gc mode */
d9872a69 36 unsigned int gc_wake;
7bc09003
JK
37};
38
7dda2af8
CL
39struct gc_inode_list {
40 struct list_head ilist;
41 struct radix_tree_root iroot;
42};
43
0a8165d7 44/*
7bc09003
JK
45 * inline functions
46 */
de881df9
AR
47
48/*
49 * On a Zoned device zone-capacity can be less than zone-size and if
50 * zone-capacity is not aligned to f2fs segment size(2MB), then the segment
51 * starting just before zone-capacity has some blocks spanning across the
52 * zone-capacity, these blocks are not usable.
53 * Such spanning segments can be in free list so calculate the sum of usable
54 * blocks in currently free segments including normal and spanning segments.
55 */
56static inline block_t free_segs_blk_count_zoned(struct f2fs_sb_info *sbi)
57{
58 block_t free_seg_blks = 0;
59 struct free_segmap_info *free_i = FREE_I(sbi);
60 int j;
61
62 spin_lock(&free_i->segmap_lock);
63 for (j = 0; j < MAIN_SEGS(sbi); j++)
64 if (!test_bit(j, free_i->free_segmap))
65 free_seg_blks += f2fs_usable_blks_in_seg(sbi, j);
66 spin_unlock(&free_i->segmap_lock);
67
68 return free_seg_blks;
69}
70
71static inline block_t free_segs_blk_count(struct f2fs_sb_info *sbi)
72{
73 if (f2fs_sb_has_blkzoned(sbi))
74 return free_segs_blk_count_zoned(sbi);
75
76 return free_segments(sbi) << sbi->log_blocks_per_seg;
77}
78
7bc09003
JK
79static inline block_t free_user_blocks(struct f2fs_sb_info *sbi)
80{
de881df9
AR
81 block_t free_blks, ovp_blks;
82
83 free_blks = free_segs_blk_count(sbi);
84 ovp_blks = overprovision_segments(sbi) << sbi->log_blocks_per_seg;
85
86 if (free_blks < ovp_blks)
7bc09003 87 return 0;
de881df9
AR
88
89 return free_blks - ovp_blks;
7bc09003
JK
90}
91
92static inline block_t limit_invalid_user_blocks(struct f2fs_sb_info *sbi)
93{
94 return (long)(sbi->user_block_count * LIMIT_INVALID_BLOCK) / 100;
95}
96
97static inline block_t limit_free_user_blocks(struct f2fs_sb_info *sbi)
98{
99 block_t reclaimable_user_blocks = sbi->user_block_count -
100 written_block_count(sbi);
101 return (long)(reclaimable_user_blocks * LIMIT_FREE_BLOCK) / 100;
102}
103
88dd8934 104static inline void increase_sleep_time(struct f2fs_gc_kthread *gc_th,
b8c502b8 105 unsigned int *wait)
7bc09003 106{
b8c502b8
CY
107 unsigned int min_time = gc_th->min_sleep_time;
108 unsigned int max_time = gc_th->max_sleep_time;
109
88dd8934
CY
110 if (*wait == gc_th->no_gc_sleep_time)
111 return;
6cb968d9 112
b8c502b8
CY
113 if ((long long)*wait + (long long)min_time > (long long)max_time)
114 *wait = max_time;
115 else
116 *wait += min_time;
7bc09003
JK
117}
118
88dd8934 119static inline void decrease_sleep_time(struct f2fs_gc_kthread *gc_th,
b8c502b8 120 unsigned int *wait)
7bc09003 121{
b8c502b8
CY
122 unsigned int min_time = gc_th->min_sleep_time;
123
88dd8934
CY
124 if (*wait == gc_th->no_gc_sleep_time)
125 *wait = gc_th->max_sleep_time;
6cb968d9 126
b8c502b8
CY
127 if ((long long)*wait - (long long)min_time < (long long)min_time)
128 *wait = min_time;
129 else
130 *wait -= min_time;
7bc09003
JK
131}
132
133static inline bool has_enough_invalid_blocks(struct f2fs_sb_info *sbi)
134{
135 block_t invalid_user_blocks = sbi->user_block_count -
136 written_block_count(sbi);
137 /*
e1c42045 138 * Background GC is triggered with the following conditions.
7bc09003
JK
139 * 1. There are a number of invalid blocks.
140 * 2. There is not enough free space.
141 */
142 if (invalid_user_blocks > limit_invalid_user_blocks(sbi) &&
143 free_user_blocks(sbi) < limit_free_user_blocks(sbi))
144 return true;
145 return false;
146}