]> git.ipfire.org Git - people/ms/linux.git/blame - fs/f2fs/gc.c
Merge branch 'for-6.0/dax' into libnvdimm-fixes
[people/ms/linux.git] / fs / f2fs / gc.c
CommitLineData
7c1a000d 1// SPDX-License-Identifier: GPL-2.0
0a8165d7 2/*
7bc09003
JK
3 * fs/f2fs/gc.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
7bc09003
JK
7 */
8#include <linux/fs.h>
9#include <linux/module.h>
7bc09003
JK
10#include <linux/init.h>
11#include <linux/f2fs_fs.h>
12#include <linux/kthread.h>
13#include <linux/delay.h>
14#include <linux/freezer.h>
b4b10061 15#include <linux/sched/signal.h>
6691d940 16#include <linux/random.h>
4034247a 17#include <linux/sched/mm.h>
7bc09003
JK
18
19#include "f2fs.h"
20#include "node.h"
21#include "segment.h"
22#include "gc.h"
52118743 23#include "iostat.h"
8e46b3ed 24#include <trace/events/f2fs.h>
7bc09003 25
093749e2
CY
26static struct kmem_cache *victim_entry_slab;
27
da52f8ad
JQ
28static unsigned int count_bits(const unsigned long *addr,
29 unsigned int offset, unsigned int len);
30
7bc09003
JK
31static int gc_thread_func(void *data)
32{
33 struct f2fs_sb_info *sbi = data;
b59d0bae 34 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
7bc09003 35 wait_queue_head_t *wq = &sbi->gc_thread->gc_wait_queue_head;
5911d2d1 36 wait_queue_head_t *fggc_wq = &sbi->gc_thread->fggc_wq;
b8c502b8 37 unsigned int wait_ms;
d147ea4a
JK
38 struct f2fs_gc_control gc_control = {
39 .victim_segno = NULL_SEGNO,
c58d7c55
JK
40 .should_migrate_blocks = false,
41 .err_gc_skipped = false };
7bc09003 42
b59d0bae 43 wait_ms = gc_th->min_sleep_time;
7bc09003 44
1d7be270 45 set_freezable();
7bc09003 46 do {
5911d2d1 47 bool sync_mode, foreground = false;
bbbc34fd 48
1d7be270 49 wait_event_interruptible_timeout(*wq,
d9872a69 50 kthread_should_stop() || freezing(current) ||
5911d2d1 51 waitqueue_active(fggc_wq) ||
d9872a69 52 gc_th->gc_wake,
1d7be270
JK
53 msecs_to_jiffies(wait_ms));
54
5911d2d1
CY
55 if (test_opt(sbi, GC_MERGE) && waitqueue_active(fggc_wq))
56 foreground = true;
57
d9872a69
JK
58 /* give it a try one time */
59 if (gc_th->gc_wake)
60 gc_th->gc_wake = 0;
61
274bd9ba
CY
62 if (try_to_freeze()) {
63 stat_other_skip_bggc_count(sbi);
7bc09003 64 continue;
274bd9ba 65 }
7bc09003
JK
66 if (kthread_should_stop())
67 break;
68
d6212a5f 69 if (sbi->sb->s_writers.frozen >= SB_FREEZE_WRITE) {
88dd8934 70 increase_sleep_time(gc_th, &wait_ms);
274bd9ba 71 stat_other_skip_bggc_count(sbi);
d6212a5f
CL
72 continue;
73 }
74
55523519 75 if (time_to_inject(sbi, FAULT_CHECKPOINT)) {
c45d6002 76 f2fs_show_injection_info(sbi, FAULT_CHECKPOINT);
0f348028 77 f2fs_stop_checkpoint(sbi, false);
55523519 78 }
0f348028 79
274bd9ba
CY
80 if (!sb_start_write_trylock(sbi->sb)) {
81 stat_other_skip_bggc_count(sbi);
dc6febb6 82 continue;
274bd9ba 83 }
dc6febb6 84
7bc09003
JK
85 /*
86 * [GC triggering condition]
87 * 0. GC is not conducted currently.
88 * 1. There are enough dirty segments.
89 * 2. IO subsystem is idle by checking the # of writeback pages.
90 * 3. IO subsystem is idle by checking the # of requests in
91 * bdev's request list.
92 *
e1c42045 93 * Note) We have to avoid triggering GCs frequently.
7bc09003
JK
94 * Because it is possible that some segments can be
95 * invalidated soon after by user update or deletion.
96 * So, I'd like to wait some time to collect dirty segments.
97 */
0e5e8111 98 if (sbi->gc_mode == GC_URGENT_HIGH) {
325163e9
DJ
99 spin_lock(&sbi->gc_urgent_high_lock);
100 if (sbi->gc_urgent_high_limited) {
101 if (!sbi->gc_urgent_high_remaining) {
102 sbi->gc_urgent_high_limited = false;
103 spin_unlock(&sbi->gc_urgent_high_lock);
104 sbi->gc_mode = GC_NORMAL;
105 continue;
106 }
107 sbi->gc_urgent_high_remaining--;
108 }
109 spin_unlock(&sbi->gc_urgent_high_lock);
d98af5f4 110 }
325163e9 111
d98af5f4
DJ
112 if (sbi->gc_mode == GC_URGENT_HIGH ||
113 sbi->gc_mode == GC_URGENT_MID) {
d9872a69 114 wait_ms = gc_th->urgent_sleep_time;
e4544b63 115 f2fs_down_write(&sbi->gc_lock);
d9872a69
JK
116 goto do_gc;
117 }
118
5911d2d1 119 if (foreground) {
e4544b63 120 f2fs_down_write(&sbi->gc_lock);
5911d2d1 121 goto do_gc;
e4544b63 122 } else if (!f2fs_down_write_trylock(&sbi->gc_lock)) {
274bd9ba 123 stat_other_skip_bggc_count(sbi);
69babac0 124 goto next;
274bd9ba 125 }
69babac0 126
a7d10cf3 127 if (!is_idle(sbi, GC_TIME)) {
88dd8934 128 increase_sleep_time(gc_th, &wait_ms);
e4544b63 129 f2fs_up_write(&sbi->gc_lock);
274bd9ba 130 stat_io_skip_bggc_count(sbi);
dc6febb6 131 goto next;
7bc09003
JK
132 }
133
134 if (has_enough_invalid_blocks(sbi))
88dd8934 135 decrease_sleep_time(gc_th, &wait_ms);
7bc09003 136 else
88dd8934 137 increase_sleep_time(gc_th, &wait_ms);
d9872a69 138do_gc:
5911d2d1
CY
139 if (!foreground)
140 stat_inc_bggc_count(sbi->stat_info);
7bc09003 141
bbbc34fd
CY
142 sync_mode = F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC;
143
5911d2d1
CY
144 /* foreground GC was been triggered via f2fs_balance_fs() */
145 if (foreground)
146 sync_mode = false;
147
d147ea4a
JK
148 gc_control.init_gc_type = sync_mode ? FG_GC : BG_GC;
149 gc_control.no_bg_gc = foreground;
c81d5bae 150 gc_control.nr_free_secs = foreground ? 1 : 0;
d147ea4a 151
43727527 152 /* if return value is not zero, no victim was selected */
1adaa71e 153 if (f2fs_gc(sbi, &gc_control)) {
154 /* don't bother wait_ms by foreground gc */
155 if (!foreground)
156 wait_ms = gc_th->no_gc_sleep_time;
157 }
81eb8d6e 158
5911d2d1
CY
159 if (foreground)
160 wake_up_all(&gc_th->fggc_wq);
161
84e4214f
JK
162 trace_f2fs_background_gc(sbi->sb, wait_ms,
163 prefree_segments(sbi), free_segments(sbi));
164
4660f9c0 165 /* balancing f2fs's metadata periodically */
7bcd0cfa 166 f2fs_balance_fs_bg(sbi, true);
dc6febb6
CY
167next:
168 sb_end_write(sbi->sb);
81eb8d6e 169
7bc09003
JK
170 } while (!kthread_should_stop());
171 return 0;
172}
173
4d57b86d 174int f2fs_start_gc_thread(struct f2fs_sb_info *sbi)
7bc09003 175{
1042d60f 176 struct f2fs_gc_kthread *gc_th;
ec7b1f2d 177 dev_t dev = sbi->sb->s_bdev->bd_dev;
7a267f8d 178 int err = 0;
7bc09003 179
1ecc0c5c 180 gc_th = f2fs_kmalloc(sbi, sizeof(struct f2fs_gc_kthread), GFP_KERNEL);
7a267f8d
NJ
181 if (!gc_th) {
182 err = -ENOMEM;
183 goto out;
184 }
7bc09003 185
d9872a69 186 gc_th->urgent_sleep_time = DEF_GC_THREAD_URGENT_SLEEP_TIME;
b59d0bae
NJ
187 gc_th->min_sleep_time = DEF_GC_THREAD_MIN_SLEEP_TIME;
188 gc_th->max_sleep_time = DEF_GC_THREAD_MAX_SLEEP_TIME;
189 gc_th->no_gc_sleep_time = DEF_GC_THREAD_NOGC_SLEEP_TIME;
190
5f029c04 191 gc_th->gc_wake = 0;
d2dc095f 192
7bc09003
JK
193 sbi->gc_thread = gc_th;
194 init_waitqueue_head(&sbi->gc_thread->gc_wait_queue_head);
5911d2d1 195 init_waitqueue_head(&sbi->gc_thread->fggc_wq);
7bc09003 196 sbi->gc_thread->f2fs_gc_task = kthread_run(gc_thread_func, sbi,
ec7b1f2d 197 "f2fs_gc-%u:%u", MAJOR(dev), MINOR(dev));
7bc09003 198 if (IS_ERR(gc_th->f2fs_gc_task)) {
7a267f8d 199 err = PTR_ERR(gc_th->f2fs_gc_task);
c8eb7024 200 kfree(gc_th);
25718423 201 sbi->gc_thread = NULL;
7bc09003 202 }
7a267f8d
NJ
203out:
204 return err;
7bc09003
JK
205}
206
4d57b86d 207void f2fs_stop_gc_thread(struct f2fs_sb_info *sbi)
7bc09003
JK
208{
209 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
5f029c04 210
7bc09003
JK
211 if (!gc_th)
212 return;
213 kthread_stop(gc_th->f2fs_gc_task);
5911d2d1 214 wake_up_all(&gc_th->fggc_wq);
c8eb7024 215 kfree(gc_th);
7bc09003
JK
216 sbi->gc_thread = NULL;
217}
218
5b0e9539 219static int select_gc_type(struct f2fs_sb_info *sbi, int gc_type)
7bc09003 220{
093749e2
CY
221 int gc_mode;
222
223 if (gc_type == BG_GC) {
224 if (sbi->am.atgc_enabled)
225 gc_mode = GC_AT;
226 else
227 gc_mode = GC_CB;
228 } else {
229 gc_mode = GC_GREEDY;
230 }
d2dc095f 231
5b0e9539
JK
232 switch (sbi->gc_mode) {
233 case GC_IDLE_CB:
234 gc_mode = GC_CB;
235 break;
236 case GC_IDLE_GREEDY:
0e5e8111 237 case GC_URGENT_HIGH:
b27bc809 238 gc_mode = GC_GREEDY;
5b0e9539 239 break;
093749e2
CY
240 case GC_IDLE_AT:
241 gc_mode = GC_AT;
242 break;
5b0e9539 243 }
093749e2 244
d2dc095f 245 return gc_mode;
7bc09003
JK
246}
247
248static void select_policy(struct f2fs_sb_info *sbi, int gc_type,
249 int type, struct victim_sel_policy *p)
250{
251 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
252
4ebefc44 253 if (p->alloc_mode == SSR) {
7bc09003 254 p->gc_mode = GC_GREEDY;
da52f8ad 255 p->dirty_bitmap = dirty_i->dirty_segmap[type];
a26b7c8a 256 p->max_search = dirty_i->nr_dirty[type];
7bc09003 257 p->ofs_unit = 1;
093749e2
CY
258 } else if (p->alloc_mode == AT_SSR) {
259 p->gc_mode = GC_GREEDY;
260 p->dirty_bitmap = dirty_i->dirty_segmap[type];
261 p->max_search = dirty_i->nr_dirty[type];
262 p->ofs_unit = 1;
7bc09003 263 } else {
5b0e9539 264 p->gc_mode = select_gc_type(sbi, gc_type);
7bc09003 265 p->ofs_unit = sbi->segs_per_sec;
da52f8ad
JQ
266 if (__is_large_section(sbi)) {
267 p->dirty_bitmap = dirty_i->dirty_secmap;
268 p->max_search = count_bits(p->dirty_bitmap,
269 0, MAIN_SECS(sbi));
270 } else {
271 p->dirty_bitmap = dirty_i->dirty_segmap[DIRTY];
272 p->max_search = dirty_i->nr_dirty[DIRTY];
273 }
7bc09003 274 }
a26b7c8a 275
7a88ddb5
CY
276 /*
277 * adjust candidates range, should select all dirty segments for
278 * foreground GC and urgent GC cases.
279 */
b27bc809 280 if (gc_type != FG_GC &&
0e5e8111 281 (sbi->gc_mode != GC_URGENT_HIGH) &&
093749e2 282 (p->gc_mode != GC_AT && p->alloc_mode != AT_SSR) &&
b27bc809 283 p->max_search > sbi->max_victim_search)
b1c57c1c 284 p->max_search = sbi->max_victim_search;
a26b7c8a 285
b94929d9 286 /* let's select beginning hot/small space first in no_heap mode*/
6691d940
DJ
287 if (f2fs_need_rand_seg(sbi))
288 p->offset = prandom_u32() % (MAIN_SECS(sbi) * sbi->segs_per_sec);
289 else if (test_opt(sbi, NOHEAP) &&
b94929d9 290 (type == CURSEG_HOT_DATA || IS_NODESEG(type)))
7a20b8a6
JK
291 p->offset = 0;
292 else
e066b83c 293 p->offset = SIT_I(sbi)->last_victim[p->gc_mode];
7bc09003
JK
294}
295
296static unsigned int get_max_cost(struct f2fs_sb_info *sbi,
297 struct victim_sel_policy *p)
298{
b7250d2d
JK
299 /* SSR allocates in a segment unit */
300 if (p->alloc_mode == SSR)
3519e3f9 301 return sbi->blocks_per_seg;
093749e2
CY
302 else if (p->alloc_mode == AT_SSR)
303 return UINT_MAX;
304
305 /* LFS */
7bc09003 306 if (p->gc_mode == GC_GREEDY)
c541a51b 307 return 2 * sbi->blocks_per_seg * p->ofs_unit;
7bc09003
JK
308 else if (p->gc_mode == GC_CB)
309 return UINT_MAX;
093749e2
CY
310 else if (p->gc_mode == GC_AT)
311 return UINT_MAX;
7bc09003
JK
312 else /* No other gc_mode */
313 return 0;
314}
315
316static unsigned int check_bg_victims(struct f2fs_sb_info *sbi)
317{
318 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
5ec4e49f 319 unsigned int secno;
7bc09003
JK
320
321 /*
322 * If the gc_type is FG_GC, we can select victim segments
323 * selected by background GC before.
324 * Those segments guarantee they have small valid blocks.
325 */
7cd8558b 326 for_each_set_bit(secno, dirty_i->victim_secmap, MAIN_SECS(sbi)) {
5ec4e49f 327 if (sec_usage_check(sbi, secno))
b65ee148 328 continue;
5ec4e49f 329 clear_bit(secno, dirty_i->victim_secmap);
4ddb1a4d 330 return GET_SEG_FROM_SEC(sbi, secno);
7bc09003
JK
331 }
332 return NULL_SEGNO;
333}
334
335static unsigned int get_cb_cost(struct f2fs_sb_info *sbi, unsigned int segno)
336{
337 struct sit_info *sit_i = SIT_I(sbi);
4ddb1a4d
JK
338 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
339 unsigned int start = GET_SEG_FROM_SEC(sbi, secno);
7bc09003
JK
340 unsigned long long mtime = 0;
341 unsigned int vblocks;
342 unsigned char age = 0;
343 unsigned char u;
344 unsigned int i;
de881df9 345 unsigned int usable_segs_per_sec = f2fs_usable_segs_in_sec(sbi, segno);
7bc09003 346
de881df9 347 for (i = 0; i < usable_segs_per_sec; i++)
7bc09003 348 mtime += get_seg_entry(sbi, start + i)->mtime;
302bd348 349 vblocks = get_valid_blocks(sbi, segno, true);
7bc09003 350
de881df9
AR
351 mtime = div_u64(mtime, usable_segs_per_sec);
352 vblocks = div_u64(vblocks, usable_segs_per_sec);
7bc09003
JK
353
354 u = (vblocks * 100) >> sbi->log_blocks_per_seg;
355
e1c42045 356 /* Handle if the system time has changed by the user */
7bc09003
JK
357 if (mtime < sit_i->min_mtime)
358 sit_i->min_mtime = mtime;
359 if (mtime > sit_i->max_mtime)
360 sit_i->max_mtime = mtime;
361 if (sit_i->max_mtime != sit_i->min_mtime)
362 age = 100 - div64_u64(100 * (mtime - sit_i->min_mtime),
363 sit_i->max_mtime - sit_i->min_mtime);
364
365 return UINT_MAX - ((100 * (100 - u) * age) / (100 + u));
366}
367
a57e564d
JX
368static inline unsigned int get_gc_cost(struct f2fs_sb_info *sbi,
369 unsigned int segno, struct victim_sel_policy *p)
7bc09003
JK
370{
371 if (p->alloc_mode == SSR)
2afce76a 372 return get_seg_entry(sbi, segno)->ckpt_valid_blocks;
7bc09003
JK
373
374 /* alloc_mode == LFS */
375 if (p->gc_mode == GC_GREEDY)
91f4382b 376 return get_valid_blocks(sbi, segno, true);
093749e2 377 else if (p->gc_mode == GC_CB)
7bc09003 378 return get_cb_cost(sbi, segno);
093749e2
CY
379
380 f2fs_bug_on(sbi, 1);
381 return 0;
7bc09003
JK
382}
383
688159b6
FL
384static unsigned int count_bits(const unsigned long *addr,
385 unsigned int offset, unsigned int len)
386{
387 unsigned int end = offset + len, sum = 0;
388
389 while (offset < end) {
390 if (test_bit(offset++, addr))
391 ++sum;
392 }
393 return sum;
394}
395
093749e2
CY
396static struct victim_entry *attach_victim_entry(struct f2fs_sb_info *sbi,
397 unsigned long long mtime, unsigned int segno,
398 struct rb_node *parent, struct rb_node **p,
399 bool left_most)
400{
401 struct atgc_management *am = &sbi->am;
402 struct victim_entry *ve;
403
32410577
CY
404 ve = f2fs_kmem_cache_alloc(victim_entry_slab,
405 GFP_NOFS, true, NULL);
093749e2
CY
406
407 ve->mtime = mtime;
408 ve->segno = segno;
409
410 rb_link_node(&ve->rb_node, parent, p);
411 rb_insert_color_cached(&ve->rb_node, &am->root, left_most);
412
413 list_add_tail(&ve->list, &am->victim_list);
414
415 am->victim_count++;
416
417 return ve;
418}
419
420static void insert_victim_entry(struct f2fs_sb_info *sbi,
421 unsigned long long mtime, unsigned int segno)
422{
423 struct atgc_management *am = &sbi->am;
424 struct rb_node **p;
425 struct rb_node *parent = NULL;
426 bool left_most = true;
427
428 p = f2fs_lookup_rb_tree_ext(sbi, &am->root, &parent, mtime, &left_most);
429 attach_victim_entry(sbi, mtime, segno, parent, p, left_most);
430}
431
432static void add_victim_entry(struct f2fs_sb_info *sbi,
433 struct victim_sel_policy *p, unsigned int segno)
434{
435 struct sit_info *sit_i = SIT_I(sbi);
436 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
437 unsigned int start = GET_SEG_FROM_SEC(sbi, secno);
438 unsigned long long mtime = 0;
439 unsigned int i;
440
441 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
442 if (p->gc_mode == GC_AT &&
443 get_valid_blocks(sbi, segno, true) == 0)
444 return;
093749e2
CY
445 }
446
447 for (i = 0; i < sbi->segs_per_sec; i++)
448 mtime += get_seg_entry(sbi, start + i)->mtime;
449 mtime = div_u64(mtime, sbi->segs_per_sec);
450
451 /* Handle if the system time has changed by the user */
452 if (mtime < sit_i->min_mtime)
453 sit_i->min_mtime = mtime;
454 if (mtime > sit_i->max_mtime)
455 sit_i->max_mtime = mtime;
456 if (mtime < sit_i->dirty_min_mtime)
457 sit_i->dirty_min_mtime = mtime;
458 if (mtime > sit_i->dirty_max_mtime)
459 sit_i->dirty_max_mtime = mtime;
460
461 /* don't choose young section as candidate */
462 if (sit_i->dirty_max_mtime - mtime < p->age_threshold)
463 return;
464
465 insert_victim_entry(sbi, mtime, segno);
466}
467
468static struct rb_node *lookup_central_victim(struct f2fs_sb_info *sbi,
469 struct victim_sel_policy *p)
470{
471 struct atgc_management *am = &sbi->am;
472 struct rb_node *parent = NULL;
473 bool left_most;
474
475 f2fs_lookup_rb_tree_ext(sbi, &am->root, &parent, p->age, &left_most);
476
477 return parent;
478}
479
480static void atgc_lookup_victim(struct f2fs_sb_info *sbi,
481 struct victim_sel_policy *p)
482{
483 struct sit_info *sit_i = SIT_I(sbi);
484 struct atgc_management *am = &sbi->am;
485 struct rb_root_cached *root = &am->root;
486 struct rb_node *node;
487 struct rb_entry *re;
488 struct victim_entry *ve;
489 unsigned long long total_time;
490 unsigned long long age, u, accu;
491 unsigned long long max_mtime = sit_i->dirty_max_mtime;
492 unsigned long long min_mtime = sit_i->dirty_min_mtime;
074b5ea2 493 unsigned int sec_blocks = CAP_BLKS_PER_SEC(sbi);
093749e2
CY
494 unsigned int vblocks;
495 unsigned int dirty_threshold = max(am->max_candidate_count,
496 am->candidate_ratio *
497 am->victim_count / 100);
498 unsigned int age_weight = am->age_weight;
499 unsigned int cost;
500 unsigned int iter = 0;
501
502 if (max_mtime < min_mtime)
503 return;
504
505 max_mtime += 1;
506 total_time = max_mtime - min_mtime;
507
508 accu = div64_u64(ULLONG_MAX, total_time);
509 accu = min_t(unsigned long long, div_u64(accu, 100),
510 DEFAULT_ACCURACY_CLASS);
511
512 node = rb_first_cached(root);
513next:
514 re = rb_entry_safe(node, struct rb_entry, rb_node);
515 if (!re)
516 return;
517
518 ve = (struct victim_entry *)re;
519
520 if (ve->mtime >= max_mtime || ve->mtime < min_mtime)
521 goto skip;
522
523 /* age = 10000 * x% * 60 */
524 age = div64_u64(accu * (max_mtime - ve->mtime), total_time) *
525 age_weight;
526
527 vblocks = get_valid_blocks(sbi, ve->segno, true);
528 f2fs_bug_on(sbi, !vblocks || vblocks == sec_blocks);
529
530 /* u = 10000 * x% * 40 */
531 u = div64_u64(accu * (sec_blocks - vblocks), sec_blocks) *
532 (100 - age_weight);
533
534 f2fs_bug_on(sbi, age + u >= UINT_MAX);
535
536 cost = UINT_MAX - (age + u);
537 iter++;
538
539 if (cost < p->min_cost ||
540 (cost == p->min_cost && age > p->oldest_age)) {
541 p->min_cost = cost;
542 p->oldest_age = age;
543 p->min_segno = ve->segno;
544 }
545skip:
546 if (iter < dirty_threshold) {
547 node = rb_next(node);
548 goto next;
549 }
550}
551
552/*
553 * select candidates around source section in range of
554 * [target - dirty_threshold, target + dirty_threshold]
555 */
556static void atssr_lookup_victim(struct f2fs_sb_info *sbi,
557 struct victim_sel_policy *p)
558{
559 struct sit_info *sit_i = SIT_I(sbi);
560 struct atgc_management *am = &sbi->am;
561 struct rb_node *node;
562 struct rb_entry *re;
563 struct victim_entry *ve;
564 unsigned long long age;
565 unsigned long long max_mtime = sit_i->dirty_max_mtime;
566 unsigned long long min_mtime = sit_i->dirty_min_mtime;
567 unsigned int seg_blocks = sbi->blocks_per_seg;
568 unsigned int vblocks;
569 unsigned int dirty_threshold = max(am->max_candidate_count,
570 am->candidate_ratio *
571 am->victim_count / 100);
572 unsigned int cost;
573 unsigned int iter = 0;
574 int stage = 0;
575
576 if (max_mtime < min_mtime)
577 return;
578 max_mtime += 1;
579next_stage:
580 node = lookup_central_victim(sbi, p);
581next_node:
582 re = rb_entry_safe(node, struct rb_entry, rb_node);
583 if (!re) {
584 if (stage == 0)
585 goto skip_stage;
586 return;
587 }
588
589 ve = (struct victim_entry *)re;
590
591 if (ve->mtime >= max_mtime || ve->mtime < min_mtime)
592 goto skip_node;
593
594 age = max_mtime - ve->mtime;
595
596 vblocks = get_seg_entry(sbi, ve->segno)->ckpt_valid_blocks;
597 f2fs_bug_on(sbi, !vblocks);
598
599 /* rare case */
600 if (vblocks == seg_blocks)
601 goto skip_node;
602
603 iter++;
604
605 age = max_mtime - abs(p->age - age);
606 cost = UINT_MAX - vblocks;
607
608 if (cost < p->min_cost ||
609 (cost == p->min_cost && age > p->oldest_age)) {
610 p->min_cost = cost;
611 p->oldest_age = age;
612 p->min_segno = ve->segno;
613 }
614skip_node:
615 if (iter < dirty_threshold) {
616 if (stage == 0)
617 node = rb_prev(node);
618 else if (stage == 1)
619 node = rb_next(node);
620 goto next_node;
621 }
622skip_stage:
623 if (stage < 1) {
624 stage++;
625 iter = 0;
626 goto next_stage;
627 }
628}
629static void lookup_victim_by_age(struct f2fs_sb_info *sbi,
630 struct victim_sel_policy *p)
631{
632 f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi,
633 &sbi->am.root, true));
634
635 if (p->gc_mode == GC_AT)
636 atgc_lookup_victim(sbi, p);
637 else if (p->alloc_mode == AT_SSR)
638 atssr_lookup_victim(sbi, p);
639 else
640 f2fs_bug_on(sbi, 1);
641}
642
643static void release_victim_entry(struct f2fs_sb_info *sbi)
644{
645 struct atgc_management *am = &sbi->am;
646 struct victim_entry *ve, *tmp;
647
648 list_for_each_entry_safe(ve, tmp, &am->victim_list, list) {
649 list_del(&ve->list);
650 kmem_cache_free(victim_entry_slab, ve);
651 am->victim_count--;
652 }
653
654 am->root = RB_ROOT_CACHED;
655
656 f2fs_bug_on(sbi, am->victim_count);
657 f2fs_bug_on(sbi, !list_empty(&am->victim_list));
658}
659
71419129
CY
660static bool f2fs_pin_section(struct f2fs_sb_info *sbi, unsigned int segno)
661{
662 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
663 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
664
665 if (!dirty_i->enable_pin_section)
666 return false;
667 if (!test_and_set_bit(secno, dirty_i->pinned_secmap))
668 dirty_i->pinned_secmap_cnt++;
669 return true;
670}
671
672static bool f2fs_pinned_section_exists(struct dirty_seglist_info *dirty_i)
673{
674 return dirty_i->pinned_secmap_cnt;
675}
676
677static bool f2fs_section_is_pinned(struct dirty_seglist_info *dirty_i,
678 unsigned int secno)
679{
680 return dirty_i->enable_pin_section &&
681 f2fs_pinned_section_exists(dirty_i) &&
682 test_bit(secno, dirty_i->pinned_secmap);
683}
684
685static void f2fs_unpin_all_sections(struct f2fs_sb_info *sbi, bool enable)
686{
687 unsigned int bitmap_size = f2fs_bitmap_size(MAIN_SECS(sbi));
688
689 if (f2fs_pinned_section_exists(DIRTY_I(sbi))) {
690 memset(DIRTY_I(sbi)->pinned_secmap, 0, bitmap_size);
691 DIRTY_I(sbi)->pinned_secmap_cnt = 0;
692 }
693 DIRTY_I(sbi)->enable_pin_section = enable;
694}
695
696static int f2fs_gc_pinned_control(struct inode *inode, int gc_type,
697 unsigned int segno)
698{
699 if (!f2fs_is_pinned_file(inode))
700 return 0;
701 if (gc_type != FG_GC)
702 return -EBUSY;
703 if (!f2fs_pin_section(F2FS_I_SB(inode), segno))
704 f2fs_pin_file_control(inode, true);
705 return -EAGAIN;
706}
707
0a8165d7 708/*
111d2495 709 * This function is called from two paths.
7bc09003
JK
710 * One is garbage collection and the other is SSR segment selection.
711 * When it is called during GC, it just gets a victim segment
712 * and it does not remove it from dirty seglist.
713 * When it is called from SSR segment selection, it finds a segment
714 * which has minimum valid blocks and removes it from dirty seglist.
715 */
716static int get_victim_by_default(struct f2fs_sb_info *sbi,
093749e2
CY
717 unsigned int *result, int gc_type, int type,
718 char alloc_mode, unsigned long long age)
7bc09003
JK
719{
720 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
e066b83c 721 struct sit_info *sm = SIT_I(sbi);
7bc09003 722 struct victim_sel_policy p;
3fa56503 723 unsigned int secno, last_victim;
04f0b2ea 724 unsigned int last_segment;
093749e2
CY
725 unsigned int nsearched;
726 bool is_atgc;
97767500 727 int ret = 0;
7bc09003 728
210f41bc 729 mutex_lock(&dirty_i->seglist_lock);
04f0b2ea 730 last_segment = MAIN_SECS(sbi) * sbi->segs_per_sec;
210f41bc 731
7bc09003 732 p.alloc_mode = alloc_mode;
093749e2
CY
733 p.age = age;
734 p.age_threshold = sbi->am.age_threshold;
7bc09003 735
093749e2
CY
736retry:
737 select_policy(sbi, gc_type, type, &p);
7bc09003 738 p.min_segno = NULL_SEGNO;
093749e2 739 p.oldest_age = 0;
3fa56503 740 p.min_cost = get_max_cost(sbi, &p);
7bc09003 741
093749e2
CY
742 is_atgc = (p.gc_mode == GC_AT || p.alloc_mode == AT_SSR);
743 nsearched = 0;
744
745 if (is_atgc)
746 SIT_I(sbi)->dirty_min_mtime = ULLONG_MAX;
747
e066b83c 748 if (*result != NULL_SEGNO) {
97767500
QZ
749 if (!get_valid_blocks(sbi, *result, false)) {
750 ret = -ENODATA;
751 goto out;
752 }
753
754 if (sec_usage_check(sbi, GET_SEC_FROM_SEG(sbi, *result)))
755 ret = -EBUSY;
756 else
e066b83c
JK
757 p.min_segno = *result;
758 goto out;
759 }
760
97767500 761 ret = -ENODATA;
3342bb30
CY
762 if (p.max_search == 0)
763 goto out;
764
e3080b01
CY
765 if (__is_large_section(sbi) && p.alloc_mode == LFS) {
766 if (sbi->next_victim_seg[BG_GC] != NULL_SEGNO) {
767 p.min_segno = sbi->next_victim_seg[BG_GC];
768 *result = p.min_segno;
769 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
770 goto got_result;
771 }
772 if (gc_type == FG_GC &&
773 sbi->next_victim_seg[FG_GC] != NULL_SEGNO) {
774 p.min_segno = sbi->next_victim_seg[FG_GC];
775 *result = p.min_segno;
776 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
777 goto got_result;
778 }
779 }
780
e066b83c 781 last_victim = sm->last_victim[p.gc_mode];
7bc09003
JK
782 if (p.alloc_mode == LFS && gc_type == FG_GC) {
783 p.min_segno = check_bg_victims(sbi);
784 if (p.min_segno != NULL_SEGNO)
785 goto got_it;
786 }
787
788 while (1) {
da52f8ad
JQ
789 unsigned long cost, *dirty_bitmap;
790 unsigned int unit_no, segno;
791
792 dirty_bitmap = p.dirty_bitmap;
793 unit_no = find_next_bit(dirty_bitmap,
794 last_segment / p.ofs_unit,
795 p.offset / p.ofs_unit);
796 segno = unit_no * p.ofs_unit;
a43f7ec3 797 if (segno >= last_segment) {
e066b83c
JK
798 if (sm->last_victim[p.gc_mode]) {
799 last_segment =
800 sm->last_victim[p.gc_mode];
801 sm->last_victim[p.gc_mode] = 0;
7bc09003
JK
802 p.offset = 0;
803 continue;
804 }
805 break;
806 }
a57e564d
JX
807
808 p.offset = segno + p.ofs_unit;
da52f8ad 809 nsearched++;
688159b6 810
bbf9f7d9
ST
811#ifdef CONFIG_F2FS_CHECK_FS
812 /*
813 * skip selecting the invalid segno (that is failed due to block
814 * validity check failure during GC) to avoid endless GC loop in
815 * such cases.
816 */
817 if (test_bit(segno, sm->invalid_segmap))
818 goto next;
819#endif
820
4ddb1a4d 821 secno = GET_SEC_FROM_SEG(sbi, segno);
7bc09003 822
5ec4e49f 823 if (sec_usage_check(sbi, secno))
688159b6 824 goto next;
61461fc9 825
4354994f 826 /* Don't touch checkpointed data */
61461fc9
CY
827 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
828 if (p.alloc_mode == LFS) {
829 /*
830 * LFS is set to find source section during GC.
831 * The victim should have no checkpointed data.
832 */
833 if (get_ckpt_valid_blocks(sbi, segno, true))
834 goto next;
835 } else {
836 /*
837 * SSR | AT_SSR are set to find target segment
838 * for writes which can be full by checkpointed
839 * and newly written blocks.
840 */
841 if (!f2fs_segment_has_free_slot(sbi, segno))
842 goto next;
843 }
844 }
845
5ec4e49f 846 if (gc_type == BG_GC && test_bit(secno, dirty_i->victim_secmap))
688159b6 847 goto next;
7bc09003 848
71419129
CY
849 if (gc_type == FG_GC && f2fs_section_is_pinned(dirty_i, secno))
850 goto next;
851
093749e2
CY
852 if (is_atgc) {
853 add_victim_entry(sbi, &p, segno);
854 goto next;
855 }
856
7bc09003
JK
857 cost = get_gc_cost(sbi, segno, &p);
858
859 if (p.min_cost > cost) {
860 p.min_segno = segno;
861 p.min_cost = cost;
a57e564d 862 }
688159b6
FL
863next:
864 if (nsearched >= p.max_search) {
e066b83c 865 if (!sm->last_victim[p.gc_mode] && segno <= last_victim)
da52f8ad
JQ
866 sm->last_victim[p.gc_mode] =
867 last_victim + p.ofs_unit;
4ce53776 868 else
da52f8ad 869 sm->last_victim[p.gc_mode] = segno + p.ofs_unit;
04f0b2ea
QS
870 sm->last_victim[p.gc_mode] %=
871 (MAIN_SECS(sbi) * sbi->segs_per_sec);
7bc09003
JK
872 break;
873 }
874 }
093749e2
CY
875
876 /* get victim for GC_AT/AT_SSR */
877 if (is_atgc) {
878 lookup_victim_by_age(sbi, &p);
879 release_victim_entry(sbi);
880 }
881
882 if (is_atgc && p.min_segno == NULL_SEGNO &&
883 sm->elapsed_time < p.age_threshold) {
884 p.age_threshold = 0;
885 goto retry;
886 }
887
7bc09003 888 if (p.min_segno != NULL_SEGNO) {
b2b3460a 889got_it:
e3080b01
CY
890 *result = (p.min_segno / p.ofs_unit) * p.ofs_unit;
891got_result:
7bc09003 892 if (p.alloc_mode == LFS) {
4ddb1a4d 893 secno = GET_SEC_FROM_SEG(sbi, p.min_segno);
5ec4e49f
JK
894 if (gc_type == FG_GC)
895 sbi->cur_victim_sec = secno;
896 else
897 set_bit(secno, dirty_i->victim_secmap);
7bc09003 898 }
97767500 899 ret = 0;
8e46b3ed 900
e3c59108
ST
901 }
902out:
903 if (p.min_segno != NULL_SEGNO)
8e46b3ed
NJ
904 trace_f2fs_get_victim(sbi->sb, type, gc_type, &p,
905 sbi->cur_victim_sec,
906 prefree_segments(sbi), free_segments(sbi));
7bc09003
JK
907 mutex_unlock(&dirty_i->seglist_lock);
908
97767500 909 return ret;
7bc09003
JK
910}
911
912static const struct victim_selection default_v_ops = {
913 .get_victim = get_victim_by_default,
914};
915
7dda2af8 916static struct inode *find_gc_inode(struct gc_inode_list *gc_list, nid_t ino)
7bc09003 917{
7bc09003
JK
918 struct inode_entry *ie;
919
7dda2af8
CL
920 ie = radix_tree_lookup(&gc_list->iroot, ino);
921 if (ie)
922 return ie->inode;
7bc09003
JK
923 return NULL;
924}
925
7dda2af8 926static void add_gc_inode(struct gc_inode_list *gc_list, struct inode *inode)
7bc09003 927{
6cc4af56
GZ
928 struct inode_entry *new_ie;
929
7dda2af8 930 if (inode == find_gc_inode(gc_list, inode->i_ino)) {
6cc4af56
GZ
931 iput(inode);
932 return;
7bc09003 933 }
32410577
CY
934 new_ie = f2fs_kmem_cache_alloc(f2fs_inode_entry_slab,
935 GFP_NOFS, true, NULL);
7bc09003 936 new_ie->inode = inode;
f28e5034
CY
937
938 f2fs_radix_tree_insert(&gc_list->iroot, inode->i_ino, new_ie);
7dda2af8 939 list_add_tail(&new_ie->list, &gc_list->ilist);
7bc09003
JK
940}
941
7dda2af8 942static void put_gc_inode(struct gc_inode_list *gc_list)
7bc09003
JK
943{
944 struct inode_entry *ie, *next_ie;
5f029c04 945
7dda2af8
CL
946 list_for_each_entry_safe(ie, next_ie, &gc_list->ilist, list) {
947 radix_tree_delete(&gc_list->iroot, ie->inode->i_ino);
7bc09003
JK
948 iput(ie->inode);
949 list_del(&ie->list);
4d57b86d 950 kmem_cache_free(f2fs_inode_entry_slab, ie);
7bc09003
JK
951 }
952}
953
954static int check_valid_map(struct f2fs_sb_info *sbi,
955 unsigned int segno, int offset)
956{
957 struct sit_info *sit_i = SIT_I(sbi);
958 struct seg_entry *sentry;
959 int ret;
960
3d26fa6b 961 down_read(&sit_i->sentry_lock);
7bc09003
JK
962 sentry = get_seg_entry(sbi, segno);
963 ret = f2fs_test_bit(offset, sentry->cur_valid_map);
3d26fa6b 964 up_read(&sit_i->sentry_lock);
43727527 965 return ret;
7bc09003
JK
966}
967
0a8165d7 968/*
7bc09003
JK
969 * This function compares node address got in summary with that in NAT.
970 * On validity, copy that node with cold status, otherwise (invalid node)
971 * ignore that.
972 */
48018b4c 973static int gc_node_segment(struct f2fs_sb_info *sbi,
7bc09003
JK
974 struct f2fs_summary *sum, unsigned int segno, int gc_type)
975{
7bc09003 976 struct f2fs_summary *entry;
26d58599 977 block_t start_addr;
7bc09003 978 int off;
7ea984b0 979 int phase = 0;
c29fd0c0 980 bool fggc = (gc_type == FG_GC);
48018b4c 981 int submitted = 0;
de881df9 982 unsigned int usable_blks_in_seg = f2fs_usable_blks_in_seg(sbi, segno);
7bc09003 983
26d58599
JK
984 start_addr = START_BLOCK(sbi, segno);
985
7bc09003
JK
986next_step:
987 entry = sum;
c718379b 988
c29fd0c0
CY
989 if (fggc && phase == 2)
990 atomic_inc(&sbi->wb_sync_req[NODE]);
991
de881df9 992 for (off = 0; off < usable_blks_in_seg; off++, entry++) {
7bc09003
JK
993 nid_t nid = le32_to_cpu(entry->nid);
994 struct page *node_page;
26d58599 995 struct node_info ni;
48018b4c 996 int err;
7bc09003 997
43727527 998 /* stop BG_GC if there is not enough free sections. */
7f3037a5 999 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0))
48018b4c 1000 return submitted;
7bc09003 1001
43727527 1002 if (check_valid_map(sbi, segno, off) == 0)
7bc09003
JK
1003 continue;
1004
7ea984b0 1005 if (phase == 0) {
4d57b86d 1006 f2fs_ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), 1,
7ea984b0
CY
1007 META_NAT, true);
1008 continue;
1009 }
1010
1011 if (phase == 1) {
4d57b86d 1012 f2fs_ra_node_page(sbi, nid);
7bc09003
JK
1013 continue;
1014 }
7ea984b0
CY
1015
1016 /* phase == 2 */
4d57b86d 1017 node_page = f2fs_get_node_page(sbi, nid);
7bc09003
JK
1018 if (IS_ERR(node_page))
1019 continue;
1020
4d57b86d 1021 /* block may become invalid during f2fs_get_node_page */
9a01b56b
HY
1022 if (check_valid_map(sbi, segno, off) == 0) {
1023 f2fs_put_page(node_page, 1);
1024 continue;
26d58599
JK
1025 }
1026
a9419b63 1027 if (f2fs_get_node_info(sbi, nid, &ni, false)) {
7735730d
CY
1028 f2fs_put_page(node_page, 1);
1029 continue;
1030 }
1031
26d58599
JK
1032 if (ni.blk_addr != start_addr + off) {
1033 f2fs_put_page(node_page, 1);
1034 continue;
9a01b56b
HY
1035 }
1036
48018b4c
CY
1037 err = f2fs_move_node_page(node_page, gc_type);
1038 if (!err && gc_type == FG_GC)
1039 submitted++;
e1235983 1040 stat_inc_node_blk_count(sbi, 1, gc_type);
7bc09003 1041 }
c718379b 1042
7ea984b0 1043 if (++phase < 3)
7bc09003 1044 goto next_step;
c29fd0c0
CY
1045
1046 if (fggc)
1047 atomic_dec(&sbi->wb_sync_req[NODE]);
48018b4c 1048 return submitted;
7bc09003
JK
1049}
1050
0a8165d7 1051/*
9af45ef5
JK
1052 * Calculate start block index indicating the given node offset.
1053 * Be careful, caller should give this node offset only indicating direct node
1054 * blocks. If any node offsets, which point the other types of node blocks such
1055 * as indirect or double indirect node blocks, are given, it must be a caller's
1056 * bug.
7bc09003 1057 */
4d57b86d 1058block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode)
7bc09003 1059{
ce19a5d4
JK
1060 unsigned int indirect_blks = 2 * NIDS_PER_BLOCK + 4;
1061 unsigned int bidx;
7bc09003 1062
ce19a5d4
JK
1063 if (node_ofs == 0)
1064 return 0;
7bc09003 1065
ce19a5d4 1066 if (node_ofs <= 2) {
7bc09003
JK
1067 bidx = node_ofs - 1;
1068 } else if (node_ofs <= indirect_blks) {
ce19a5d4 1069 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
5f029c04 1070
7bc09003
JK
1071 bidx = node_ofs - 2 - dec;
1072 } else {
ce19a5d4 1073 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
5f029c04 1074
7bc09003
JK
1075 bidx = node_ofs - 5 - dec;
1076 }
d02a6e61 1077 return bidx * ADDRS_PER_BLOCK(inode) + ADDRS_PER_INODE(inode);
7bc09003
JK
1078}
1079
c1079892 1080static bool is_alive(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
7bc09003
JK
1081 struct node_info *dni, block_t blkaddr, unsigned int *nofs)
1082{
1083 struct page *node_page;
1084 nid_t nid;
1085 unsigned int ofs_in_node;
1086 block_t source_blkaddr;
1087
1088 nid = le32_to_cpu(sum->nid);
1089 ofs_in_node = le16_to_cpu(sum->ofs_in_node);
1090
4d57b86d 1091 node_page = f2fs_get_node_page(sbi, nid);
7bc09003 1092 if (IS_ERR(node_page))
c1079892 1093 return false;
7bc09003 1094
a9419b63 1095 if (f2fs_get_node_info(sbi, nid, dni, false)) {
7735730d
CY
1096 f2fs_put_page(node_page, 1);
1097 return false;
1098 }
7bc09003
JK
1099
1100 if (sum->version != dni->version) {
dcbb4c10
JP
1101 f2fs_warn(sbi, "%s: valid data with mismatched node version.",
1102 __func__);
c13ff37e 1103 set_sbi_flag(sbi, SBI_NEED_FSCK);
7bc09003
JK
1104 }
1105
6d18762e
CY
1106 if (f2fs_check_nid_range(sbi, dni->ino)) {
1107 f2fs_put_page(node_page, 1);
77900c45 1108 return false;
6d18762e 1109 }
77900c45 1110
7bc09003 1111 *nofs = ofs_of_node(node_page);
a2ced1ce 1112 source_blkaddr = data_blkaddr(NULL, node_page, ofs_in_node);
7bc09003
JK
1113 f2fs_put_page(node_page, 1);
1114
bbf9f7d9
ST
1115 if (source_blkaddr != blkaddr) {
1116#ifdef CONFIG_F2FS_CHECK_FS
1117 unsigned int segno = GET_SEGNO(sbi, blkaddr);
1118 unsigned long offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
1119
1120 if (unlikely(check_valid_map(sbi, segno, offset))) {
1121 if (!test_and_set_bit(segno, SIT_I(sbi)->invalid_segmap)) {
833dcd35
JP
1122 f2fs_err(sbi, "mismatched blkaddr %u (source_blkaddr %u) in seg %u",
1123 blkaddr, source_blkaddr, segno);
f6db4307 1124 set_sbi_flag(sbi, SBI_NEED_FSCK);
bbf9f7d9
ST
1125 }
1126 }
1127#endif
c1079892 1128 return false;
bbf9f7d9 1129 }
c1079892 1130 return true;
7bc09003
JK
1131}
1132
6aa58d8a
CY
1133static int ra_data_block(struct inode *inode, pgoff_t index)
1134{
1135 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1136 struct address_space *mapping = inode->i_mapping;
1137 struct dnode_of_data dn;
1138 struct page *page;
1139 struct extent_info ei = {0, 0, 0};
1140 struct f2fs_io_info fio = {
1141 .sbi = sbi,
1142 .ino = inode->i_ino,
1143 .type = DATA,
1144 .temp = COLD,
1145 .op = REQ_OP_READ,
1146 .op_flags = 0,
1147 .encrypted_page = NULL,
1148 .in_list = false,
1149 .retry = false,
1150 };
1151 int err;
1152
1153 page = f2fs_grab_cache_page(mapping, index, true);
1154 if (!page)
1155 return -ENOMEM;
1156
1157 if (f2fs_lookup_extent_cache(inode, index, &ei)) {
1158 dn.data_blkaddr = ei.blk + index - ei.fofs;
93770ab7
CY
1159 if (unlikely(!f2fs_is_valid_blkaddr(sbi, dn.data_blkaddr,
1160 DATA_GENERIC_ENHANCE_READ))) {
10f966bb 1161 err = -EFSCORRUPTED;
93770ab7
CY
1162 goto put_page;
1163 }
6aa58d8a
CY
1164 goto got_it;
1165 }
1166
1167 set_new_dnode(&dn, inode, NULL, NULL, 0);
1168 err = f2fs_get_dnode_of_data(&dn, index, LOOKUP_NODE);
1169 if (err)
1170 goto put_page;
1171 f2fs_put_dnode(&dn);
1172
93770ab7
CY
1173 if (!__is_valid_data_blkaddr(dn.data_blkaddr)) {
1174 err = -ENOENT;
1175 goto put_page;
1176 }
6aa58d8a 1177 if (unlikely(!f2fs_is_valid_blkaddr(sbi, dn.data_blkaddr,
93770ab7 1178 DATA_GENERIC_ENHANCE))) {
10f966bb 1179 err = -EFSCORRUPTED;
6aa58d8a
CY
1180 goto put_page;
1181 }
1182got_it:
1183 /* read page */
1184 fio.page = page;
1185 fio.new_blkaddr = fio.old_blkaddr = dn.data_blkaddr;
1186
9bf1a3f7
YS
1187 /*
1188 * don't cache encrypted data into meta inode until previous dirty
1189 * data were writebacked to avoid racing between GC and flush.
1190 */
bae0ee7a 1191 f2fs_wait_on_page_writeback(page, DATA, true, true);
9bf1a3f7
YS
1192
1193 f2fs_wait_on_block_writeback(inode, dn.data_blkaddr);
1194
6aa58d8a
CY
1195 fio.encrypted_page = f2fs_pagecache_get_page(META_MAPPING(sbi),
1196 dn.data_blkaddr,
1197 FGP_LOCK | FGP_CREAT, GFP_NOFS);
1198 if (!fio.encrypted_page) {
1199 err = -ENOMEM;
1200 goto put_page;
1201 }
1202
1203 err = f2fs_submit_page_bio(&fio);
1204 if (err)
1205 goto put_encrypted_page;
1206 f2fs_put_page(fio.encrypted_page, 0);
1207 f2fs_put_page(page, 1);
8b83ac81
CY
1208
1209 f2fs_update_iostat(sbi, FS_DATA_READ_IO, F2FS_BLKSIZE);
9c122384 1210 f2fs_update_iostat(sbi, FS_GDATA_READ_IO, F2FS_BLKSIZE);
8b83ac81 1211
6aa58d8a
CY
1212 return 0;
1213put_encrypted_page:
1214 f2fs_put_page(fio.encrypted_page, 1);
1215put_page:
1216 f2fs_put_page(page, 1);
1217 return err;
1218}
1219
d4c759ee
JK
1220/*
1221 * Move data block via META_MAPPING while keeping locked data page.
1222 * This can be used to move blocks, aka LBAs, directly on disk.
1223 */
48018b4c 1224static int move_data_block(struct inode *inode, block_t bidx,
2ef79ecb 1225 int gc_type, unsigned int segno, int off)
4375a336
JK
1226{
1227 struct f2fs_io_info fio = {
1228 .sbi = F2FS_I_SB(inode),
39d787be 1229 .ino = inode->i_ino,
4375a336 1230 .type = DATA,
a912b54d 1231 .temp = COLD,
04d328de 1232 .op = REQ_OP_READ,
70fd7614 1233 .op_flags = 0,
4375a336 1234 .encrypted_page = NULL,
fb830fc5 1235 .in_list = false,
fe16efe6 1236 .retry = false,
4375a336
JK
1237 };
1238 struct dnode_of_data dn;
1239 struct f2fs_summary sum;
1240 struct node_info ni;
6aa58d8a 1241 struct page *page, *mpage;
4356e48e 1242 block_t newaddr;
48018b4c 1243 int err = 0;
b0332a0f 1244 bool lfs_mode = f2fs_lfs_mode(fio.sbi);
ac2d750b
WG
1245 int type = fio.sbi->am.atgc_enabled && (gc_type == BG_GC) &&
1246 (fio.sbi->gc_mode != GC_URGENT_HIGH) ?
093749e2 1247 CURSEG_ALL_DATA_ATGC : CURSEG_COLD_DATA;
4375a336
JK
1248
1249 /* do not read out */
a56c7c6f 1250 page = f2fs_grab_cache_page(inode->i_mapping, bidx, false);
4375a336 1251 if (!page)
48018b4c 1252 return -ENOMEM;
4375a336 1253
48018b4c
CY
1254 if (!check_valid_map(F2FS_I_SB(inode), segno, off)) {
1255 err = -ENOENT;
20614711 1256 goto out;
48018b4c 1257 }
20614711 1258
71419129
CY
1259 err = f2fs_gc_pinned_control(inode, gc_type, segno);
1260 if (err)
1ad71a27 1261 goto out;
1ad71a27 1262
4375a336 1263 set_new_dnode(&dn, inode, NULL, NULL, 0);
4d57b86d 1264 err = f2fs_get_dnode_of_data(&dn, bidx, LOOKUP_NODE);
4375a336
JK
1265 if (err)
1266 goto out;
1267
08b39fbd
CY
1268 if (unlikely(dn.data_blkaddr == NULL_ADDR)) {
1269 ClearPageUptodate(page);
48018b4c 1270 err = -ENOENT;
4375a336 1271 goto put_out;
08b39fbd
CY
1272 }
1273
1274 /*
1275 * don't cache encrypted data into meta inode until previous dirty
1276 * data were writebacked to avoid racing between GC and flush.
1277 */
bae0ee7a 1278 f2fs_wait_on_page_writeback(page, DATA, true, true);
4375a336 1279
9bf1a3f7
YS
1280 f2fs_wait_on_block_writeback(inode, dn.data_blkaddr);
1281
a9419b63 1282 err = f2fs_get_node_info(fio.sbi, dn.nid, &ni, false);
7735730d
CY
1283 if (err)
1284 goto put_out;
1285
4375a336
JK
1286 /* read page */
1287 fio.page = page;
7a9d7548 1288 fio.new_blkaddr = fio.old_blkaddr = dn.data_blkaddr;
4375a336 1289
107a805d 1290 if (lfs_mode)
e4544b63 1291 f2fs_down_write(&fio.sbi->io_order_lock);
107a805d 1292
543b8c46
JK
1293 mpage = f2fs_grab_cache_page(META_MAPPING(fio.sbi),
1294 fio.old_blkaddr, false);
d7cd3702
CY
1295 if (!mpage) {
1296 err = -ENOMEM;
543b8c46 1297 goto up_out;
d7cd3702 1298 }
543b8c46
JK
1299
1300 fio.encrypted_page = mpage;
1301
1302 /* read source block in mpage */
1303 if (!PageUptodate(mpage)) {
1304 err = f2fs_submit_page_bio(&fio);
1305 if (err) {
1306 f2fs_put_page(mpage, 1);
1307 goto up_out;
1308 }
8b83ac81
CY
1309
1310 f2fs_update_iostat(fio.sbi, FS_DATA_READ_IO, F2FS_BLKSIZE);
9c122384 1311 f2fs_update_iostat(fio.sbi, FS_GDATA_READ_IO, F2FS_BLKSIZE);
8b83ac81 1312
543b8c46
JK
1313 lock_page(mpage);
1314 if (unlikely(mpage->mapping != META_MAPPING(fio.sbi) ||
1315 !PageUptodate(mpage))) {
1316 err = -EIO;
1317 f2fs_put_page(mpage, 1);
1318 goto up_out;
1319 }
1320 }
1321
cf740403
CY
1322 set_summary(&sum, dn.nid, dn.ofs_in_node, ni.version);
1323
1324 /* allocate block address */
4d57b86d 1325 f2fs_allocate_data_block(fio.sbi, NULL, fio.old_blkaddr, &newaddr,
093749e2 1326 &sum, type, NULL);
4356e48e 1327
01eccef7
CY
1328 fio.encrypted_page = f2fs_pagecache_get_page(META_MAPPING(fio.sbi),
1329 newaddr, FGP_LOCK | FGP_CREAT, GFP_NOFS);
4356e48e
CY
1330 if (!fio.encrypted_page) {
1331 err = -ENOMEM;
6aa58d8a 1332 f2fs_put_page(mpage, 1);
543b8c46 1333 goto recover_block;
4356e48e 1334 }
548aedac 1335
543b8c46 1336 /* write target block */
bae0ee7a 1337 f2fs_wait_on_page_writeback(fio.encrypted_page, DATA, true, true);
543b8c46
JK
1338 memcpy(page_address(fio.encrypted_page),
1339 page_address(mpage), PAGE_SIZE);
1340 f2fs_put_page(mpage, 1);
1341 invalidate_mapping_pages(META_MAPPING(fio.sbi),
1342 fio.old_blkaddr, fio.old_blkaddr);
6ce19aff 1343 f2fs_invalidate_compress_page(fio.sbi, fio.old_blkaddr);
543b8c46 1344
8d64d365 1345 set_page_dirty(fio.encrypted_page);
6282adbf
JK
1346 if (clear_page_dirty_for_io(fio.encrypted_page))
1347 dec_page_count(fio.sbi, F2FS_DIRTY_META);
1348
548aedac 1349 set_page_writeback(fio.encrypted_page);
17c50035 1350 ClearPageError(page);
4375a336 1351
04d328de 1352 fio.op = REQ_OP_WRITE;
70fd7614 1353 fio.op_flags = REQ_SYNC;
4356e48e 1354 fio.new_blkaddr = newaddr;
fe16efe6
CY
1355 f2fs_submit_page_write(&fio);
1356 if (fio.retry) {
48018b4c 1357 err = -EAGAIN;
a9d572c7
SY
1358 if (PageWriteback(fio.encrypted_page))
1359 end_page_writeback(fio.encrypted_page);
1360 goto put_page_out;
1361 }
4375a336 1362
b0af6d49
CY
1363 f2fs_update_iostat(fio.sbi, FS_GC_DATA_IO, F2FS_BLKSIZE);
1364
f28b3434 1365 f2fs_update_data_blkaddr(&dn, newaddr);
91942321 1366 set_inode_flag(inode, FI_APPEND_WRITE);
4375a336 1367 if (page->index == 0)
91942321 1368 set_inode_flag(inode, FI_FIRST_BLOCK_WRITTEN);
548aedac 1369put_page_out:
4375a336 1370 f2fs_put_page(fio.encrypted_page, 1);
4356e48e
CY
1371recover_block:
1372 if (err)
4d57b86d 1373 f2fs_do_replace_block(fio.sbi, &sum, newaddr, fio.old_blkaddr,
c5d02785 1374 true, true, true);
543b8c46
JK
1375up_out:
1376 if (lfs_mode)
e4544b63 1377 f2fs_up_write(&fio.sbi->io_order_lock);
4375a336
JK
1378put_out:
1379 f2fs_put_dnode(&dn);
1380out:
1381 f2fs_put_page(page, 1);
48018b4c 1382 return err;
4375a336
JK
1383}
1384
48018b4c 1385static int move_data_page(struct inode *inode, block_t bidx, int gc_type,
20614711 1386 unsigned int segno, int off)
7bc09003 1387{
c879f90d 1388 struct page *page;
48018b4c 1389 int err = 0;
c879f90d 1390
4d57b86d 1391 page = f2fs_get_lock_data_page(inode, bidx, true);
c879f90d 1392 if (IS_ERR(page))
48018b4c 1393 return PTR_ERR(page);
63a0b7cb 1394
48018b4c
CY
1395 if (!check_valid_map(F2FS_I_SB(inode), segno, off)) {
1396 err = -ENOENT;
20614711 1397 goto out;
48018b4c 1398 }
20614711 1399
71419129
CY
1400 err = f2fs_gc_pinned_control(inode, gc_type, segno);
1401 if (err)
1ad71a27 1402 goto out;
5fe45743 1403
7bc09003 1404 if (gc_type == BG_GC) {
48018b4c
CY
1405 if (PageWriteback(page)) {
1406 err = -EAGAIN;
4ebefc44 1407 goto out;
48018b4c 1408 }
7bc09003 1409 set_page_dirty(page);
b763f3be 1410 set_page_private_gcing(page);
7bc09003 1411 } else {
c879f90d
JK
1412 struct f2fs_io_info fio = {
1413 .sbi = F2FS_I_SB(inode),
39d787be 1414 .ino = inode->i_ino,
c879f90d 1415 .type = DATA,
a912b54d 1416 .temp = COLD,
04d328de 1417 .op = REQ_OP_WRITE,
70fd7614 1418 .op_flags = REQ_SYNC,
e959c8f5 1419 .old_blkaddr = NULL_ADDR,
c879f90d 1420 .page = page,
4375a336 1421 .encrypted_page = NULL,
cc15620b 1422 .need_lock = LOCK_REQ,
b0af6d49 1423 .io_type = FS_GC_DATA_IO,
c879f90d 1424 };
72e1c797 1425 bool is_dirty = PageDirty(page);
72e1c797
CY
1426
1427retry:
bae0ee7a 1428 f2fs_wait_on_page_writeback(page, DATA, true, true);
8d64d365
CY
1429
1430 set_page_dirty(page);
933439c8 1431 if (clear_page_dirty_for_io(page)) {
a7ffdbe2 1432 inode_dec_dirty_pages(inode);
4d57b86d 1433 f2fs_remove_dirty_inode(inode);
933439c8 1434 }
72e1c797 1435
b763f3be 1436 set_page_private_gcing(page);
72e1c797 1437
4d57b86d 1438 err = f2fs_do_write_data_page(&fio);
14a28559 1439 if (err) {
b763f3be 1440 clear_page_private_gcing(page);
14a28559 1441 if (err == -ENOMEM) {
4034247a 1442 memalloc_retry_wait(GFP_NOFS);
14a28559
CY
1443 goto retry;
1444 }
1445 if (is_dirty)
1446 set_page_dirty(page);
72e1c797 1447 }
7bc09003
JK
1448 }
1449out:
1450 f2fs_put_page(page, 1);
48018b4c 1451 return err;
7bc09003
JK
1452}
1453
0a8165d7 1454/*
7bc09003
JK
1455 * This function tries to get parent node of victim data block, and identifies
1456 * data block validity. If the block is valid, copy that with cold status and
1457 * modify parent node.
1458 * If the parent node is not valid or the data block address is different,
1459 * the victim data block is ignored.
1460 */
48018b4c 1461static int gc_data_segment(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
7dede886
CY
1462 struct gc_inode_list *gc_list, unsigned int segno, int gc_type,
1463 bool force_migrate)
7bc09003
JK
1464{
1465 struct super_block *sb = sbi->sb;
1466 struct f2fs_summary *entry;
1467 block_t start_addr;
43727527 1468 int off;
7bc09003 1469 int phase = 0;
48018b4c 1470 int submitted = 0;
de881df9 1471 unsigned int usable_blks_in_seg = f2fs_usable_blks_in_seg(sbi, segno);
7bc09003
JK
1472
1473 start_addr = START_BLOCK(sbi, segno);
1474
1475next_step:
1476 entry = sum;
c718379b 1477
de881df9 1478 for (off = 0; off < usable_blks_in_seg; off++, entry++) {
7bc09003
JK
1479 struct page *data_page;
1480 struct inode *inode;
1481 struct node_info dni; /* dnode info for the data */
1482 unsigned int ofs_in_node, nofs;
1483 block_t start_bidx;
7ea984b0 1484 nid_t nid = le32_to_cpu(entry->nid);
7bc09003 1485
803e74be
JK
1486 /*
1487 * stop BG_GC if there is not enough free sections.
1488 * Or, stop GC if the segment becomes fully valid caused by
1489 * race condition along with SSR block allocation.
1490 */
1491 if ((gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0)) ||
7dede886 1492 (!force_migrate && get_valid_blocks(sbi, segno, true) ==
074b5ea2 1493 CAP_BLKS_PER_SEC(sbi)))
48018b4c 1494 return submitted;
7bc09003 1495
43727527 1496 if (check_valid_map(sbi, segno, off) == 0)
7bc09003
JK
1497 continue;
1498
1499 if (phase == 0) {
4d57b86d 1500 f2fs_ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), 1,
7ea984b0
CY
1501 META_NAT, true);
1502 continue;
1503 }
1504
1505 if (phase == 1) {
4d57b86d 1506 f2fs_ra_node_page(sbi, nid);
7bc09003
JK
1507 continue;
1508 }
1509
1510 /* Get an inode by ino with checking validity */
c1079892 1511 if (!is_alive(sbi, entry, &dni, start_addr + off, &nofs))
7bc09003
JK
1512 continue;
1513
7ea984b0 1514 if (phase == 2) {
4d57b86d 1515 f2fs_ra_node_page(sbi, dni.ino);
7bc09003
JK
1516 continue;
1517 }
1518
7bc09003
JK
1519 ofs_in_node = le16_to_cpu(entry->ofs_in_node);
1520
7ea984b0 1521 if (phase == 3) {
71419129
CY
1522 int err;
1523
d4686d56 1524 inode = f2fs_iget(sb, dni.ino);
9056d648
CY
1525 if (IS_ERR(inode) || is_bad_inode(inode) ||
1526 special_file(inode->i_mode))
7bc09003
JK
1527 continue;
1528
71419129
CY
1529 err = f2fs_gc_pinned_control(inode, gc_type, segno);
1530 if (err == -EAGAIN) {
a22bb552
CY
1531 iput(inode);
1532 return submitted;
1533 }
1534
e4544b63 1535 if (!f2fs_down_write_trylock(
b2532c69 1536 &F2FS_I(inode)->i_gc_rwsem[WRITE])) {
bb06664a 1537 iput(inode);
6f8d4455 1538 sbi->skipped_gc_rwsem++;
bb06664a
CY
1539 continue;
1540 }
1541
6aa58d8a
CY
1542 start_bidx = f2fs_start_bidx_of_node(nofs, inode) +
1543 ofs_in_node;
1544
1545 if (f2fs_post_read_required(inode)) {
1546 int err = ra_data_block(inode, start_bidx);
1547
e4544b63 1548 f2fs_up_write(&F2FS_I(inode)->i_gc_rwsem[WRITE]);
6aa58d8a
CY
1549 if (err) {
1550 iput(inode);
1551 continue;
1552 }
1553 add_gc_inode(gc_list, inode);
1554 continue;
1555 }
1556
4d57b86d 1557 data_page = f2fs_get_read_data_page(inode,
6aa58d8a 1558 start_bidx, REQ_RAHEAD, true);
e4544b63 1559 f2fs_up_write(&F2FS_I(inode)->i_gc_rwsem[WRITE]);
31a32688
CL
1560 if (IS_ERR(data_page)) {
1561 iput(inode);
1562 continue;
1563 }
7bc09003
JK
1564
1565 f2fs_put_page(data_page, 0);
7dda2af8 1566 add_gc_inode(gc_list, inode);
31a32688
CL
1567 continue;
1568 }
1569
7ea984b0 1570 /* phase 4 */
7dda2af8 1571 inode = find_gc_inode(gc_list, dni.ino);
31a32688 1572 if (inode) {
82e0a5aa
CY
1573 struct f2fs_inode_info *fi = F2FS_I(inode);
1574 bool locked = false;
48018b4c 1575 int err;
82e0a5aa
CY
1576
1577 if (S_ISREG(inode->i_mode)) {
e4544b63 1578 if (!f2fs_down_write_trylock(&fi->i_gc_rwsem[READ])) {
ad126ebd 1579 sbi->skipped_gc_rwsem++;
82e0a5aa 1580 continue;
ad126ebd 1581 }
e4544b63 1582 if (!f2fs_down_write_trylock(
b2532c69 1583 &fi->i_gc_rwsem[WRITE])) {
6f8d4455 1584 sbi->skipped_gc_rwsem++;
e4544b63 1585 f2fs_up_write(&fi->i_gc_rwsem[READ]);
82e0a5aa
CY
1586 continue;
1587 }
1588 locked = true;
73ac2f4e
CY
1589
1590 /* wait for all inflight aio data */
1591 inode_dio_wait(inode);
82e0a5aa
CY
1592 }
1593
4d57b86d 1594 start_bidx = f2fs_start_bidx_of_node(nofs, inode)
c879f90d 1595 + ofs_in_node;
6dbb1796 1596 if (f2fs_post_read_required(inode))
48018b4c
CY
1597 err = move_data_block(inode, start_bidx,
1598 gc_type, segno, off);
4375a336 1599 else
48018b4c 1600 err = move_data_page(inode, start_bidx, gc_type,
d4c759ee 1601 segno, off);
82e0a5aa 1602
48018b4c
CY
1603 if (!err && (gc_type == FG_GC ||
1604 f2fs_post_read_required(inode)))
1605 submitted++;
1606
82e0a5aa 1607 if (locked) {
e4544b63
TM
1608 f2fs_up_write(&fi->i_gc_rwsem[WRITE]);
1609 f2fs_up_write(&fi->i_gc_rwsem[READ]);
82e0a5aa
CY
1610 }
1611
e1235983 1612 stat_inc_data_blk_count(sbi, 1, gc_type);
7bc09003 1613 }
7bc09003 1614 }
c718379b 1615
7ea984b0 1616 if (++phase < 5)
7bc09003 1617 goto next_step;
48018b4c
CY
1618
1619 return submitted;
7bc09003
JK
1620}
1621
1622static int __get_victim(struct f2fs_sb_info *sbi, unsigned int *victim,
8a2d0ace 1623 int gc_type)
7bc09003
JK
1624{
1625 struct sit_info *sit_i = SIT_I(sbi);
1626 int ret;
8a2d0ace 1627
3d26fa6b 1628 down_write(&sit_i->sentry_lock);
8a2d0ace 1629 ret = DIRTY_I(sbi)->v_ops->get_victim(sbi, victim, gc_type,
093749e2 1630 NO_CHECK_TYPE, LFS, 0);
3d26fa6b 1631 up_write(&sit_i->sentry_lock);
7bc09003
JK
1632 return ret;
1633}
1634
718e53fa
CY
1635static int do_garbage_collect(struct f2fs_sb_info *sbi,
1636 unsigned int start_segno,
7dede886
CY
1637 struct gc_inode_list *gc_list, int gc_type,
1638 bool force_migrate)
7bc09003
JK
1639{
1640 struct page *sum_page;
1641 struct f2fs_summary_block *sum;
c718379b 1642 struct blk_plug plug;
718e53fa
CY
1643 unsigned int segno = start_segno;
1644 unsigned int end_segno = start_segno + sbi->segs_per_sec;
e3080b01 1645 int seg_freed = 0, migrated = 0;
718e53fa
CY
1646 unsigned char type = IS_DATASEG(get_seg_entry(sbi, segno)->type) ?
1647 SUM_TYPE_DATA : SUM_TYPE_NODE;
48018b4c 1648 int submitted = 0;
7bc09003 1649
e3080b01
CY
1650 if (__is_large_section(sbi))
1651 end_segno = rounddown(end_segno, sbi->segs_per_sec);
1652
de881df9
AR
1653 /*
1654 * zone-capacity can be less than zone-size in zoned devices,
1655 * resulting in less than expected usable segments in the zone,
1656 * calculate the end segno in the zone which can be garbage collected
1657 */
1658 if (f2fs_sb_has_blkzoned(sbi))
1659 end_segno -= sbi->segs_per_sec -
1660 f2fs_usable_segs_in_sec(sbi, segno);
1661
093749e2
CY
1662 sanity_check_seg_type(sbi, get_seg_entry(sbi, segno)->type);
1663
718e53fa 1664 /* readahead multi ssa blocks those have contiguous address */
2c70c5e3 1665 if (__is_large_section(sbi))
4d57b86d 1666 f2fs_ra_meta_pages(sbi, GET_SUM_BLOCK(sbi, segno),
e3080b01 1667 end_segno - segno, META_SSA, true);
718e53fa
CY
1668
1669 /* reference all summary page */
1670 while (segno < end_segno) {
4d57b86d 1671 sum_page = f2fs_get_sum_page(sbi, segno++);
edc55aaf
JK
1672 if (IS_ERR(sum_page)) {
1673 int err = PTR_ERR(sum_page);
1674
1675 end_segno = segno - 1;
1676 for (segno = start_segno; segno < end_segno; segno++) {
1677 sum_page = find_get_page(META_MAPPING(sbi),
1678 GET_SUM_BLOCK(sbi, segno));
1679 f2fs_put_page(sum_page, 0);
1680 f2fs_put_page(sum_page, 0);
1681 }
1682 return err;
1683 }
718e53fa
CY
1684 unlock_page(sum_page);
1685 }
7bc09003 1686
c718379b
JK
1687 blk_start_plug(&plug);
1688
718e53fa 1689 for (segno = start_segno; segno < end_segno; segno++) {
aa987273 1690
718e53fa
CY
1691 /* find segment summary of victim */
1692 sum_page = find_get_page(META_MAPPING(sbi),
1693 GET_SUM_BLOCK(sbi, segno));
718e53fa 1694 f2fs_put_page(sum_page, 0);
7bc09003 1695
d6c66cd1
YS
1696 if (get_valid_blocks(sbi, segno, false) == 0)
1697 goto freed;
dabfbbc8 1698 if (gc_type == BG_GC && __is_large_section(sbi) &&
e3080b01
CY
1699 migrated >= sbi->migration_granularity)
1700 goto skip;
d6c66cd1 1701 if (!PageUptodate(sum_page) || unlikely(f2fs_cp_error(sbi)))
e3080b01 1702 goto skip;
de0dcc40 1703
718e53fa 1704 sum = page_address(sum_page);
10d255c3 1705 if (type != GET_SUM_TYPE((&sum->footer))) {
dcbb4c10
JP
1706 f2fs_err(sbi, "Inconsistent segment (%u) type [%d, %d] in SSA and SIT",
1707 segno, type, GET_SUM_TYPE((&sum->footer)));
10d255c3 1708 set_sbi_flag(sbi, SBI_NEED_FSCK);
793ab1c8 1709 f2fs_stop_checkpoint(sbi, false);
e3080b01 1710 goto skip;
10d255c3 1711 }
718e53fa
CY
1712
1713 /*
1714 * this is to avoid deadlock:
1715 * - lock_page(sum_page) - f2fs_replace_block
3d26fa6b
CY
1716 * - check_valid_map() - down_write(sentry_lock)
1717 * - down_read(sentry_lock) - change_curseg()
718e53fa
CY
1718 * - lock_page(sum_page)
1719 */
718e53fa 1720 if (type == SUM_TYPE_NODE)
48018b4c 1721 submitted += gc_node_segment(sbi, sum->entries, segno,
718e53fa 1722 gc_type);
48018b4c
CY
1723 else
1724 submitted += gc_data_segment(sbi, sum->entries, gc_list,
7dede886
CY
1725 segno, gc_type,
1726 force_migrate);
718e53fa
CY
1727
1728 stat_inc_seg_count(sbi, type, gc_type);
07c6b593 1729 sbi->gc_reclaimed_segs[sbi->gc_mode]++;
8c7b9ac1 1730 migrated++;
c56f16da 1731
d6c66cd1 1732freed:
c56f16da
CY
1733 if (gc_type == FG_GC &&
1734 get_valid_blocks(sbi, segno, false) == 0)
1735 seg_freed++;
e3080b01
CY
1736
1737 if (__is_large_section(sbi) && segno + 1 < end_segno)
1738 sbi->next_victim_seg[gc_type] = segno + 1;
1739skip:
718e53fa
CY
1740 f2fs_put_page(sum_page, 0);
1741 }
1742
48018b4c 1743 if (submitted)
b9109b0e
JK
1744 f2fs_submit_merged_write(sbi,
1745 (type == SUM_TYPE_NODE) ? NODE : DATA);
c718379b 1746
718e53fa 1747 blk_finish_plug(&plug);
7bc09003 1748
17d899df
CY
1749 stat_inc_call_count(sbi->stat_info);
1750
c56f16da 1751 return seg_freed;
7bc09003
JK
1752}
1753
d147ea4a 1754int f2fs_gc(struct f2fs_sb_info *sbi, struct f2fs_gc_control *gc_control)
7bc09003 1755{
d147ea4a
JK
1756 int gc_type = gc_control->init_gc_type;
1757 unsigned int segno = gc_control->victim_segno;
c56f16da
CY
1758 int sec_freed = 0, seg_freed = 0, total_freed = 0;
1759 int ret = 0;
d5053a34 1760 struct cp_control cpc;
7dda2af8
CL
1761 struct gc_inode_list gc_list = {
1762 .ilist = LIST_HEAD_INIT(gc_list.ilist),
f6bb2a2c 1763 .iroot = RADIX_TREE_INIT(gc_list.iroot, GFP_NOFS),
7dda2af8 1764 };
2ef79ecb 1765 unsigned int skipped_round = 0, round = 0;
d5053a34 1766
d147ea4a 1767 trace_f2fs_gc_begin(sbi->sb, gc_type, gc_control->no_bg_gc,
c81d5bae 1768 gc_control->nr_free_secs,
c56f16da
CY
1769 get_pages(sbi, F2FS_DIRTY_NODES),
1770 get_pages(sbi, F2FS_DIRTY_DENTS),
1771 get_pages(sbi, F2FS_DIRTY_IMETA),
1772 free_sections(sbi),
1773 free_segments(sbi),
1774 reserved_segments(sbi),
1775 prefree_segments(sbi));
1776
119ee914 1777 cpc.reason = __get_cp_reason(sbi);
6f8d4455 1778 sbi->skipped_gc_rwsem = 0;
7bc09003 1779gc_more:
1751e8a6 1780 if (unlikely(!(sbi->sb->s_flags & SB_ACTIVE))) {
e5dbd956 1781 ret = -EINVAL;
408e9375 1782 goto stop;
e5dbd956 1783 }
6d5a1495
CY
1784 if (unlikely(f2fs_cp_error(sbi))) {
1785 ret = -EIO;
203681f6 1786 goto stop;
6d5a1495 1787 }
7bc09003 1788
19f4e688 1789 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0)) {
6e17bfbc 1790 /*
19f4e688
HP
1791 * For example, if there are many prefree_segments below given
1792 * threshold, we can make them free by checkpoint. Then, we
1793 * secure free segments which doesn't need fggc any more.
6e17bfbc 1794 */
d147ea4a 1795 if (prefree_segments(sbi)) {
4d57b86d 1796 ret = f2fs_write_checkpoint(sbi, &cpc);
8fd5a37e
JK
1797 if (ret)
1798 goto stop;
1799 }
19f4e688
HP
1800 if (has_not_enough_free_secs(sbi, 0, 0))
1801 gc_type = FG_GC;
d64f8047 1802 }
7bc09003 1803
19f4e688 1804 /* f2fs_balance_fs doesn't need to do BG_GC in critical path. */
d147ea4a 1805 if (gc_type == BG_GC && gc_control->no_bg_gc) {
c56f16da 1806 ret = -EINVAL;
19f4e688 1807 goto stop;
c56f16da 1808 }
71419129 1809retry:
97767500 1810 ret = __get_victim(sbi, &segno, gc_type);
71419129
CY
1811 if (ret) {
1812 /* allow to search victim from sections has pinned data */
1813 if (ret == -ENODATA && gc_type == FG_GC &&
1814 f2fs_pinned_section_exists(DIRTY_I(sbi))) {
1815 f2fs_unpin_all_sections(sbi, false);
1816 goto retry;
1817 }
408e9375 1818 goto stop;
71419129 1819 }
7bc09003 1820
d147ea4a
JK
1821 seg_freed = do_garbage_collect(sbi, segno, &gc_list, gc_type,
1822 gc_control->should_migrate_blocks);
c56f16da 1823 total_freed += seg_freed;
43727527 1824
d147ea4a
JK
1825 if (seg_freed == f2fs_usable_segs_in_sec(sbi, segno))
1826 sec_freed++;
2ef79ecb 1827
10d0786b 1828 if (gc_type == FG_GC)
5ec4e49f 1829 sbi->cur_victim_sec = NULL_SEGNO;
43727527 1830
c81d5bae
JK
1831 if (gc_control->init_gc_type == FG_GC ||
1832 !has_not_enough_free_secs(sbi,
1833 (gc_type == FG_GC) ? sec_freed : 0, 0)) {
1834 if (gc_type == FG_GC && sec_freed < gc_control->nr_free_secs)
1835 goto go_gc_more;
a9163b94 1836 goto stop;
c81d5bae 1837 }
43727527 1838
d147ea4a
JK
1839 /* FG_GC stops GC by skip_count */
1840 if (gc_type == FG_GC) {
1841 if (sbi->skipped_gc_rwsem)
1842 skipped_round++;
1843 round++;
1844 if (skipped_round > MAX_SKIP_GC_COUNT &&
1845 skipped_round * 2 >= round) {
4d57b86d 1846 ret = f2fs_write_checkpoint(sbi, &cpc);
d147ea4a 1847 goto stop;
a9163b94 1848 }
a9163b94 1849 }
d147ea4a
JK
1850
1851 /* Write checkpoint to reclaim prefree segments */
1852 if (free_sections(sbi) < NR_CURSEG_PERSIST_TYPE &&
1853 prefree_segments(sbi)) {
a9163b94 1854 ret = f2fs_write_checkpoint(sbi, &cpc);
d147ea4a
JK
1855 if (ret)
1856 goto stop;
1857 }
c81d5bae 1858go_gc_more:
d147ea4a
JK
1859 segno = NULL_SEGNO;
1860 goto gc_more;
1861
408e9375 1862stop:
e066b83c 1863 SIT_I(sbi)->last_victim[ALLOC_NEXT] = 0;
d147ea4a 1864 SIT_I(sbi)->last_victim[FLUSH_DEVICE] = gc_control->victim_segno;
c56f16da 1865
71419129
CY
1866 if (gc_type == FG_GC)
1867 f2fs_unpin_all_sections(sbi, true);
1868
c56f16da
CY
1869 trace_f2fs_gc_end(sbi->sb, ret, total_freed, sec_freed,
1870 get_pages(sbi, F2FS_DIRTY_NODES),
1871 get_pages(sbi, F2FS_DIRTY_DENTS),
1872 get_pages(sbi, F2FS_DIRTY_IMETA),
1873 free_sections(sbi),
1874 free_segments(sbi),
1875 reserved_segments(sbi),
1876 prefree_segments(sbi));
1877
e4544b63 1878 f2fs_up_write(&sbi->gc_lock);
7bc09003 1879
7dda2af8 1880 put_gc_inode(&gc_list);
d530d4d8 1881
d147ea4a 1882 if (gc_control->err_gc_skipped && !ret)
d530d4d8 1883 ret = sec_freed ? 0 : -EAGAIN;
43727527 1884 return ret;
7bc09003
JK
1885}
1886
093749e2
CY
1887int __init f2fs_create_garbage_collection_cache(void)
1888{
1889 victim_entry_slab = f2fs_kmem_cache_create("f2fs_victim_entry",
1890 sizeof(struct victim_entry));
1891 if (!victim_entry_slab)
1892 return -ENOMEM;
1893 return 0;
1894}
1895
1896void f2fs_destroy_garbage_collection_cache(void)
1897{
1898 kmem_cache_destroy(victim_entry_slab);
1899}
1900
1901static void init_atgc_management(struct f2fs_sb_info *sbi)
1902{
1903 struct atgc_management *am = &sbi->am;
1904
1905 if (test_opt(sbi, ATGC) &&
1906 SIT_I(sbi)->elapsed_time >= DEF_GC_THREAD_AGE_THRESHOLD)
1907 am->atgc_enabled = true;
1908
1909 am->root = RB_ROOT_CACHED;
1910 INIT_LIST_HEAD(&am->victim_list);
1911 am->victim_count = 0;
1912
1913 am->candidate_ratio = DEF_GC_THREAD_CANDIDATE_RATIO;
1914 am->max_candidate_count = DEF_GC_THREAD_MAX_CANDIDATE_COUNT;
1915 am->age_weight = DEF_GC_THREAD_AGE_WEIGHT;
89e53ff1 1916 am->age_threshold = DEF_GC_THREAD_AGE_THRESHOLD;
093749e2
CY
1917}
1918
4d57b86d 1919void f2fs_build_gc_manager(struct f2fs_sb_info *sbi)
7bc09003
JK
1920{
1921 DIRTY_I(sbi)->v_ops = &default_v_ops;
e93b9865 1922
1ad71a27 1923 sbi->gc_pin_file_threshold = DEF_GC_FAILED_PINNED_FILES;
d5793249
JK
1924
1925 /* give warm/cold data area from slower device */
0916878d 1926 if (f2fs_is_multi_device(sbi) && !__is_large_section(sbi))
d5793249
JK
1927 SIT_I(sbi)->last_victim[ALLOC_NEXT] =
1928 GET_SEGNO(sbi, FDEV(0).end_blk) + 1;
093749e2
CY
1929
1930 init_atgc_management(sbi);
7bc09003 1931}
04f0b2ea 1932
b4b10061
JK
1933static int free_segment_range(struct f2fs_sb_info *sbi,
1934 unsigned int secs, bool gc_only)
04f0b2ea 1935{
b4b10061
JK
1936 unsigned int segno, next_inuse, start, end;
1937 struct cp_control cpc = { CP_RESIZE, 0, 0, 0 };
1938 int gc_mode, gc_type;
04f0b2ea 1939 int err = 0;
b4b10061
JK
1940 int type;
1941
1942 /* Force block allocation for GC */
1943 MAIN_SECS(sbi) -= secs;
1944 start = MAIN_SECS(sbi) * sbi->segs_per_sec;
1945 end = MAIN_SEGS(sbi) - 1;
1946
1947 mutex_lock(&DIRTY_I(sbi)->seglist_lock);
1948 for (gc_mode = 0; gc_mode < MAX_GC_POLICY; gc_mode++)
1949 if (SIT_I(sbi)->last_victim[gc_mode] >= start)
1950 SIT_I(sbi)->last_victim[gc_mode] = 0;
1951
1952 for (gc_type = BG_GC; gc_type <= FG_GC; gc_type++)
1953 if (sbi->next_victim_seg[gc_type] >= start)
1954 sbi->next_victim_seg[gc_type] = NULL_SEGNO;
1955 mutex_unlock(&DIRTY_I(sbi)->seglist_lock);
04f0b2ea
QS
1956
1957 /* Move out cursegs from the target range */
d0b9e42a 1958 for (type = CURSEG_HOT_DATA; type < NR_CURSEG_PERSIST_TYPE; type++)
0ef81833 1959 f2fs_allocate_segment_for_resize(sbi, type, start, end);
04f0b2ea
QS
1960
1961 /* do GC to move out valid blocks in the range */
1962 for (segno = start; segno <= end; segno += sbi->segs_per_sec) {
1963 struct gc_inode_list gc_list = {
1964 .ilist = LIST_HEAD_INIT(gc_list.ilist),
1965 .iroot = RADIX_TREE_INIT(gc_list.iroot, GFP_NOFS),
1966 };
1967
7dede886 1968 do_garbage_collect(sbi, segno, &gc_list, FG_GC, true);
04f0b2ea
QS
1969 put_gc_inode(&gc_list);
1970
b4b10061
JK
1971 if (!gc_only && get_valid_blocks(sbi, segno, true)) {
1972 err = -EAGAIN;
1973 goto out;
1974 }
1975 if (fatal_signal_pending(current)) {
1976 err = -ERESTARTSYS;
1977 goto out;
1978 }
04f0b2ea 1979 }
b4b10061
JK
1980 if (gc_only)
1981 goto out;
04f0b2ea 1982
b4b10061 1983 err = f2fs_write_checkpoint(sbi, &cpc);
04f0b2ea 1984 if (err)
b4b10061 1985 goto out;
04f0b2ea
QS
1986
1987 next_inuse = find_next_inuse(FREE_I(sbi), end + 1, start);
1988 if (next_inuse <= end) {
dcbb4c10
JP
1989 f2fs_err(sbi, "segno %u should be free but still inuse!",
1990 next_inuse);
04f0b2ea
QS
1991 f2fs_bug_on(sbi, 1);
1992 }
b4b10061
JK
1993out:
1994 MAIN_SECS(sbi) += secs;
04f0b2ea
QS
1995 return err;
1996}
1997
1998static void update_sb_metadata(struct f2fs_sb_info *sbi, int secs)
1999{
2000 struct f2fs_super_block *raw_sb = F2FS_RAW_SUPER(sbi);
a4ba5dfc
CY
2001 int section_count;
2002 int segment_count;
2003 int segment_count_main;
2004 long long block_count;
04f0b2ea
QS
2005 int segs = secs * sbi->segs_per_sec;
2006
e4544b63 2007 f2fs_down_write(&sbi->sb_lock);
a4ba5dfc
CY
2008
2009 section_count = le32_to_cpu(raw_sb->section_count);
2010 segment_count = le32_to_cpu(raw_sb->segment_count);
2011 segment_count_main = le32_to_cpu(raw_sb->segment_count_main);
2012 block_count = le64_to_cpu(raw_sb->block_count);
2013
04f0b2ea
QS
2014 raw_sb->section_count = cpu_to_le32(section_count + secs);
2015 raw_sb->segment_count = cpu_to_le32(segment_count + segs);
2016 raw_sb->segment_count_main = cpu_to_le32(segment_count_main + segs);
2017 raw_sb->block_count = cpu_to_le64(block_count +
2018 (long long)segs * sbi->blocks_per_seg);
46d9ce19
QS
2019 if (f2fs_is_multi_device(sbi)) {
2020 int last_dev = sbi->s_ndevs - 1;
2021 int dev_segs =
2022 le32_to_cpu(raw_sb->devs[last_dev].total_segments);
2023
2024 raw_sb->devs[last_dev].total_segments =
2025 cpu_to_le32(dev_segs + segs);
2026 }
a4ba5dfc 2027
e4544b63 2028 f2fs_up_write(&sbi->sb_lock);
04f0b2ea
QS
2029}
2030
2031static void update_fs_metadata(struct f2fs_sb_info *sbi, int secs)
2032{
2033 int segs = secs * sbi->segs_per_sec;
46d9ce19 2034 long long blks = (long long)segs * sbi->blocks_per_seg;
04f0b2ea
QS
2035 long long user_block_count =
2036 le64_to_cpu(F2FS_CKPT(sbi)->user_block_count);
2037
2038 SM_I(sbi)->segment_count = (int)SM_I(sbi)->segment_count + segs;
2039 MAIN_SEGS(sbi) = (int)MAIN_SEGS(sbi) + segs;
b4b10061 2040 MAIN_SECS(sbi) += secs;
04f0b2ea
QS
2041 FREE_I(sbi)->free_sections = (int)FREE_I(sbi)->free_sections + secs;
2042 FREE_I(sbi)->free_segments = (int)FREE_I(sbi)->free_segments + segs;
46d9ce19
QS
2043 F2FS_CKPT(sbi)->user_block_count = cpu_to_le64(user_block_count + blks);
2044
2045 if (f2fs_is_multi_device(sbi)) {
2046 int last_dev = sbi->s_ndevs - 1;
2047
2048 FDEV(last_dev).total_segments =
2049 (int)FDEV(last_dev).total_segments + segs;
2050 FDEV(last_dev).end_blk =
2051 (long long)FDEV(last_dev).end_blk + blks;
2052#ifdef CONFIG_BLK_DEV_ZONED
2053 FDEV(last_dev).nr_blkz = (int)FDEV(last_dev).nr_blkz +
2054 (int)(blks >> sbi->log_blocks_per_blkz);
2055#endif
2056 }
04f0b2ea
QS
2057}
2058
2059int f2fs_resize_fs(struct f2fs_sb_info *sbi, __u64 block_count)
2060{
2061 __u64 old_block_count, shrunk_blocks;
b4b10061 2062 struct cp_control cpc = { CP_RESIZE, 0, 0, 0 };
04f0b2ea 2063 unsigned int secs;
04f0b2ea
QS
2064 int err = 0;
2065 __u32 rem;
2066
2067 old_block_count = le64_to_cpu(F2FS_RAW_SUPER(sbi)->block_count);
2068 if (block_count > old_block_count)
2069 return -EINVAL;
2070
46d9ce19
QS
2071 if (f2fs_is_multi_device(sbi)) {
2072 int last_dev = sbi->s_ndevs - 1;
2073 __u64 last_segs = FDEV(last_dev).total_segments;
2074
2075 if (block_count + last_segs * sbi->blocks_per_seg <=
2076 old_block_count)
2077 return -EINVAL;
2078 }
2079
04f0b2ea
QS
2080 /* new fs size should align to section size */
2081 div_u64_rem(block_count, BLKS_PER_SEC(sbi), &rem);
2082 if (rem)
2083 return -EINVAL;
2084
2085 if (block_count == old_block_count)
2086 return 0;
2087
2088 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
dcbb4c10 2089 f2fs_err(sbi, "Should run fsck to repair first.");
10f966bb 2090 return -EFSCORRUPTED;
04f0b2ea
QS
2091 }
2092
2093 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
dcbb4c10 2094 f2fs_err(sbi, "Checkpoint should be enabled.");
04f0b2ea
QS
2095 return -EINVAL;
2096 }
2097
04f0b2ea
QS
2098 shrunk_blocks = old_block_count - block_count;
2099 secs = div_u64(shrunk_blocks, BLKS_PER_SEC(sbi));
b4b10061
JK
2100
2101 /* stop other GC */
e4544b63 2102 if (!f2fs_down_write_trylock(&sbi->gc_lock))
b4b10061
JK
2103 return -EAGAIN;
2104
2105 /* stop CP to protect MAIN_SEC in free_segment_range */
2106 f2fs_lock_op(sbi);
3ab0598e
CY
2107
2108 spin_lock(&sbi->stat_lock);
2109 if (shrunk_blocks + valid_user_blocks(sbi) +
2110 sbi->current_reserved_blocks + sbi->unusable_block_count +
2111 F2FS_OPTION(sbi).root_reserved_blocks > sbi->user_block_count)
2112 err = -ENOSPC;
2113 spin_unlock(&sbi->stat_lock);
2114
2115 if (err)
2116 goto out_unlock;
2117
b4b10061 2118 err = free_segment_range(sbi, secs, true);
3ab0598e
CY
2119
2120out_unlock:
b4b10061 2121 f2fs_unlock_op(sbi);
e4544b63 2122 f2fs_up_write(&sbi->gc_lock);
b4b10061
JK
2123 if (err)
2124 return err;
2125
2126 set_sbi_flag(sbi, SBI_IS_RESIZEFS);
2127
2128 freeze_super(sbi->sb);
e4544b63
TM
2129 f2fs_down_write(&sbi->gc_lock);
2130 f2fs_down_write(&sbi->cp_global_sem);
b4b10061 2131
04f0b2ea
QS
2132 spin_lock(&sbi->stat_lock);
2133 if (shrunk_blocks + valid_user_blocks(sbi) +
2134 sbi->current_reserved_blocks + sbi->unusable_block_count +
2135 F2FS_OPTION(sbi).root_reserved_blocks > sbi->user_block_count)
2136 err = -ENOSPC;
2137 else
2138 sbi->user_block_count -= shrunk_blocks;
2139 spin_unlock(&sbi->stat_lock);
b4b10061
JK
2140 if (err)
2141 goto out_err;
04f0b2ea 2142
b4b10061 2143 err = free_segment_range(sbi, secs, false);
04f0b2ea 2144 if (err)
b4b10061 2145 goto recover_out;
04f0b2ea
QS
2146
2147 update_sb_metadata(sbi, -secs);
2148
2149 err = f2fs_commit_super(sbi, false);
2150 if (err) {
2151 update_sb_metadata(sbi, secs);
b4b10061 2152 goto recover_out;
04f0b2ea
QS
2153 }
2154
2155 update_fs_metadata(sbi, -secs);
2156 clear_sbi_flag(sbi, SBI_IS_RESIZEFS);
68275682 2157 set_sbi_flag(sbi, SBI_IS_DIRTY);
68275682 2158
b4b10061 2159 err = f2fs_write_checkpoint(sbi, &cpc);
04f0b2ea
QS
2160 if (err) {
2161 update_fs_metadata(sbi, secs);
2162 update_sb_metadata(sbi, secs);
2163 f2fs_commit_super(sbi, false);
2164 }
b4b10061 2165recover_out:
04f0b2ea
QS
2166 if (err) {
2167 set_sbi_flag(sbi, SBI_NEED_FSCK);
dcbb4c10 2168 f2fs_err(sbi, "resize_fs failed, should run fsck to repair!");
04f0b2ea 2169
04f0b2ea
QS
2170 spin_lock(&sbi->stat_lock);
2171 sbi->user_block_count += shrunk_blocks;
2172 spin_unlock(&sbi->stat_lock);
2173 }
b4b10061 2174out_err:
e4544b63
TM
2175 f2fs_up_write(&sbi->cp_global_sem);
2176 f2fs_up_write(&sbi->gc_lock);
b4b10061 2177 thaw_super(sbi->sb);
04f0b2ea 2178 clear_sbi_flag(sbi, SBI_IS_RESIZEFS);
04f0b2ea
QS
2179 return err;
2180}