blob: 6b240b71d2e835ce18541bc4d945a24694f94eda [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * fs/f2fs/gc.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 */
8#include <linux/fs.h>
9#include <linux/module.h>
10#include <linux/backing-dev.h>
11#include <linux/init.h>
12#include <linux/f2fs_fs.h>
13#include <linux/kthread.h>
14#include <linux/delay.h>
15#include <linux/freezer.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020016#include <linux/sched/signal.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017
18#include "f2fs.h"
19#include "node.h"
20#include "segment.h"
21#include "gc.h"
22#include <trace/events/f2fs.h>
23
Olivier Deprez157378f2022-04-04 15:47:50 +020024static struct kmem_cache *victim_entry_slab;
25
26static unsigned int count_bits(const unsigned long *addr,
27 unsigned int offset, unsigned int len);
28
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000029static int gc_thread_func(void *data)
30{
31 struct f2fs_sb_info *sbi = data;
32 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
33 wait_queue_head_t *wq = &sbi->gc_thread->gc_wait_queue_head;
34 unsigned int wait_ms;
35
36 wait_ms = gc_th->min_sleep_time;
37
38 set_freezable();
39 do {
Olivier Deprez157378f2022-04-04 15:47:50 +020040 bool sync_mode;
41
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000042 wait_event_interruptible_timeout(*wq,
43 kthread_should_stop() || freezing(current) ||
44 gc_th->gc_wake,
45 msecs_to_jiffies(wait_ms));
46
47 /* give it a try one time */
48 if (gc_th->gc_wake)
49 gc_th->gc_wake = 0;
50
David Brazdil0f672f62019-12-10 10:32:29 +000051 if (try_to_freeze()) {
52 stat_other_skip_bggc_count(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000053 continue;
David Brazdil0f672f62019-12-10 10:32:29 +000054 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000055 if (kthread_should_stop())
56 break;
57
58 if (sbi->sb->s_writers.frozen >= SB_FREEZE_WRITE) {
59 increase_sleep_time(gc_th, &wait_ms);
David Brazdil0f672f62019-12-10 10:32:29 +000060 stat_other_skip_bggc_count(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000061 continue;
62 }
63
64 if (time_to_inject(sbi, FAULT_CHECKPOINT)) {
Olivier Deprez0e641232021-09-23 10:07:05 +020065 f2fs_show_injection_info(sbi, FAULT_CHECKPOINT);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000066 f2fs_stop_checkpoint(sbi, false);
67 }
68
David Brazdil0f672f62019-12-10 10:32:29 +000069 if (!sb_start_write_trylock(sbi->sb)) {
70 stat_other_skip_bggc_count(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000071 continue;
David Brazdil0f672f62019-12-10 10:32:29 +000072 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000073
74 /*
75 * [GC triggering condition]
76 * 0. GC is not conducted currently.
77 * 1. There are enough dirty segments.
78 * 2. IO subsystem is idle by checking the # of writeback pages.
79 * 3. IO subsystem is idle by checking the # of requests in
80 * bdev's request list.
81 *
82 * Note) We have to avoid triggering GCs frequently.
83 * Because it is possible that some segments can be
84 * invalidated soon after by user update or deletion.
85 * So, I'd like to wait some time to collect dirty segments.
86 */
Olivier Deprez157378f2022-04-04 15:47:50 +020087 if (sbi->gc_mode == GC_URGENT_HIGH) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000088 wait_ms = gc_th->urgent_sleep_time;
Olivier Deprez157378f2022-04-04 15:47:50 +020089 down_write(&sbi->gc_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000090 goto do_gc;
91 }
92
Olivier Deprez157378f2022-04-04 15:47:50 +020093 if (!down_write_trylock(&sbi->gc_lock)) {
David Brazdil0f672f62019-12-10 10:32:29 +000094 stat_other_skip_bggc_count(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000095 goto next;
David Brazdil0f672f62019-12-10 10:32:29 +000096 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000097
David Brazdil0f672f62019-12-10 10:32:29 +000098 if (!is_idle(sbi, GC_TIME)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000099 increase_sleep_time(gc_th, &wait_ms);
Olivier Deprez157378f2022-04-04 15:47:50 +0200100 up_write(&sbi->gc_lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000101 stat_io_skip_bggc_count(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000102 goto next;
103 }
104
105 if (has_enough_invalid_blocks(sbi))
106 decrease_sleep_time(gc_th, &wait_ms);
107 else
108 increase_sleep_time(gc_th, &wait_ms);
109do_gc:
Olivier Deprez157378f2022-04-04 15:47:50 +0200110 stat_inc_bggc_count(sbi->stat_info);
111
112 sync_mode = F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000113
114 /* if return value is not zero, no victim was selected */
Olivier Deprez157378f2022-04-04 15:47:50 +0200115 if (f2fs_gc(sbi, sync_mode, true, false, NULL_SEGNO))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000116 wait_ms = gc_th->no_gc_sleep_time;
117
118 trace_f2fs_background_gc(sbi->sb, wait_ms,
119 prefree_segments(sbi), free_segments(sbi));
120
121 /* balancing f2fs's metadata periodically */
Olivier Deprez157378f2022-04-04 15:47:50 +0200122 f2fs_balance_fs_bg(sbi, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000123next:
124 sb_end_write(sbi->sb);
125
126 } while (!kthread_should_stop());
127 return 0;
128}
129
130int f2fs_start_gc_thread(struct f2fs_sb_info *sbi)
131{
132 struct f2fs_gc_kthread *gc_th;
133 dev_t dev = sbi->sb->s_bdev->bd_dev;
134 int err = 0;
135
136 gc_th = f2fs_kmalloc(sbi, sizeof(struct f2fs_gc_kthread), GFP_KERNEL);
137 if (!gc_th) {
138 err = -ENOMEM;
139 goto out;
140 }
141
142 gc_th->urgent_sleep_time = DEF_GC_THREAD_URGENT_SLEEP_TIME;
143 gc_th->min_sleep_time = DEF_GC_THREAD_MIN_SLEEP_TIME;
144 gc_th->max_sleep_time = DEF_GC_THREAD_MAX_SLEEP_TIME;
145 gc_th->no_gc_sleep_time = DEF_GC_THREAD_NOGC_SLEEP_TIME;
146
147 gc_th->gc_wake= 0;
148
149 sbi->gc_thread = gc_th;
150 init_waitqueue_head(&sbi->gc_thread->gc_wait_queue_head);
151 sbi->gc_thread->f2fs_gc_task = kthread_run(gc_thread_func, sbi,
152 "f2fs_gc-%u:%u", MAJOR(dev), MINOR(dev));
153 if (IS_ERR(gc_th->f2fs_gc_task)) {
154 err = PTR_ERR(gc_th->f2fs_gc_task);
Olivier Deprez157378f2022-04-04 15:47:50 +0200155 kfree(gc_th);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000156 sbi->gc_thread = NULL;
157 }
158out:
159 return err;
160}
161
162void f2fs_stop_gc_thread(struct f2fs_sb_info *sbi)
163{
164 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
165 if (!gc_th)
166 return;
167 kthread_stop(gc_th->f2fs_gc_task);
Olivier Deprez157378f2022-04-04 15:47:50 +0200168 kfree(gc_th);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000169 sbi->gc_thread = NULL;
170}
171
172static int select_gc_type(struct f2fs_sb_info *sbi, int gc_type)
173{
Olivier Deprez157378f2022-04-04 15:47:50 +0200174 int gc_mode;
175
176 if (gc_type == BG_GC) {
177 if (sbi->am.atgc_enabled)
178 gc_mode = GC_AT;
179 else
180 gc_mode = GC_CB;
181 } else {
182 gc_mode = GC_GREEDY;
183 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000184
185 switch (sbi->gc_mode) {
186 case GC_IDLE_CB:
187 gc_mode = GC_CB;
188 break;
189 case GC_IDLE_GREEDY:
Olivier Deprez157378f2022-04-04 15:47:50 +0200190 case GC_URGENT_HIGH:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000191 gc_mode = GC_GREEDY;
192 break;
Olivier Deprez157378f2022-04-04 15:47:50 +0200193 case GC_IDLE_AT:
194 gc_mode = GC_AT;
195 break;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000196 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200197
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000198 return gc_mode;
199}
200
201static void select_policy(struct f2fs_sb_info *sbi, int gc_type,
202 int type, struct victim_sel_policy *p)
203{
204 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
205
206 if (p->alloc_mode == SSR) {
207 p->gc_mode = GC_GREEDY;
Olivier Deprez157378f2022-04-04 15:47:50 +0200208 p->dirty_bitmap = dirty_i->dirty_segmap[type];
209 p->max_search = dirty_i->nr_dirty[type];
210 p->ofs_unit = 1;
211 } else if (p->alloc_mode == AT_SSR) {
212 p->gc_mode = GC_GREEDY;
213 p->dirty_bitmap = dirty_i->dirty_segmap[type];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000214 p->max_search = dirty_i->nr_dirty[type];
215 p->ofs_unit = 1;
216 } else {
217 p->gc_mode = select_gc_type(sbi, gc_type);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000218 p->ofs_unit = sbi->segs_per_sec;
Olivier Deprez157378f2022-04-04 15:47:50 +0200219 if (__is_large_section(sbi)) {
220 p->dirty_bitmap = dirty_i->dirty_secmap;
221 p->max_search = count_bits(p->dirty_bitmap,
222 0, MAIN_SECS(sbi));
223 } else {
224 p->dirty_bitmap = dirty_i->dirty_segmap[DIRTY];
225 p->max_search = dirty_i->nr_dirty[DIRTY];
226 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000227 }
228
Olivier Deprez157378f2022-04-04 15:47:50 +0200229 /*
230 * adjust candidates range, should select all dirty segments for
231 * foreground GC and urgent GC cases.
232 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000233 if (gc_type != FG_GC &&
Olivier Deprez157378f2022-04-04 15:47:50 +0200234 (sbi->gc_mode != GC_URGENT_HIGH) &&
235 (p->gc_mode != GC_AT && p->alloc_mode != AT_SSR) &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000236 p->max_search > sbi->max_victim_search)
237 p->max_search = sbi->max_victim_search;
238
239 /* let's select beginning hot/small space first in no_heap mode*/
240 if (test_opt(sbi, NOHEAP) &&
241 (type == CURSEG_HOT_DATA || IS_NODESEG(type)))
242 p->offset = 0;
243 else
244 p->offset = SIT_I(sbi)->last_victim[p->gc_mode];
245}
246
247static unsigned int get_max_cost(struct f2fs_sb_info *sbi,
248 struct victim_sel_policy *p)
249{
250 /* SSR allocates in a segment unit */
251 if (p->alloc_mode == SSR)
252 return sbi->blocks_per_seg;
Olivier Deprez157378f2022-04-04 15:47:50 +0200253 else if (p->alloc_mode == AT_SSR)
254 return UINT_MAX;
255
256 /* LFS */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000257 if (p->gc_mode == GC_GREEDY)
258 return 2 * sbi->blocks_per_seg * p->ofs_unit;
259 else if (p->gc_mode == GC_CB)
260 return UINT_MAX;
Olivier Deprez157378f2022-04-04 15:47:50 +0200261 else if (p->gc_mode == GC_AT)
262 return UINT_MAX;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000263 else /* No other gc_mode */
264 return 0;
265}
266
267static unsigned int check_bg_victims(struct f2fs_sb_info *sbi)
268{
269 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
270 unsigned int secno;
271
272 /*
273 * If the gc_type is FG_GC, we can select victim segments
274 * selected by background GC before.
275 * Those segments guarantee they have small valid blocks.
276 */
277 for_each_set_bit(secno, dirty_i->victim_secmap, MAIN_SECS(sbi)) {
278 if (sec_usage_check(sbi, secno))
279 continue;
280 clear_bit(secno, dirty_i->victim_secmap);
281 return GET_SEG_FROM_SEC(sbi, secno);
282 }
283 return NULL_SEGNO;
284}
285
286static unsigned int get_cb_cost(struct f2fs_sb_info *sbi, unsigned int segno)
287{
288 struct sit_info *sit_i = SIT_I(sbi);
289 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
290 unsigned int start = GET_SEG_FROM_SEC(sbi, secno);
291 unsigned long long mtime = 0;
292 unsigned int vblocks;
293 unsigned char age = 0;
294 unsigned char u;
295 unsigned int i;
Olivier Deprez157378f2022-04-04 15:47:50 +0200296 unsigned int usable_segs_per_sec = f2fs_usable_segs_in_sec(sbi, segno);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000297
Olivier Deprez157378f2022-04-04 15:47:50 +0200298 for (i = 0; i < usable_segs_per_sec; i++)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000299 mtime += get_seg_entry(sbi, start + i)->mtime;
300 vblocks = get_valid_blocks(sbi, segno, true);
301
Olivier Deprez157378f2022-04-04 15:47:50 +0200302 mtime = div_u64(mtime, usable_segs_per_sec);
303 vblocks = div_u64(vblocks, usable_segs_per_sec);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000304
305 u = (vblocks * 100) >> sbi->log_blocks_per_seg;
306
307 /* Handle if the system time has changed by the user */
308 if (mtime < sit_i->min_mtime)
309 sit_i->min_mtime = mtime;
310 if (mtime > sit_i->max_mtime)
311 sit_i->max_mtime = mtime;
312 if (sit_i->max_mtime != sit_i->min_mtime)
313 age = 100 - div64_u64(100 * (mtime - sit_i->min_mtime),
314 sit_i->max_mtime - sit_i->min_mtime);
315
316 return UINT_MAX - ((100 * (100 - u) * age) / (100 + u));
317}
318
319static inline unsigned int get_gc_cost(struct f2fs_sb_info *sbi,
320 unsigned int segno, struct victim_sel_policy *p)
321{
322 if (p->alloc_mode == SSR)
323 return get_seg_entry(sbi, segno)->ckpt_valid_blocks;
324
325 /* alloc_mode == LFS */
326 if (p->gc_mode == GC_GREEDY)
327 return get_valid_blocks(sbi, segno, true);
Olivier Deprez157378f2022-04-04 15:47:50 +0200328 else if (p->gc_mode == GC_CB)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000329 return get_cb_cost(sbi, segno);
Olivier Deprez157378f2022-04-04 15:47:50 +0200330
331 f2fs_bug_on(sbi, 1);
332 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000333}
334
335static unsigned int count_bits(const unsigned long *addr,
336 unsigned int offset, unsigned int len)
337{
338 unsigned int end = offset + len, sum = 0;
339
340 while (offset < end) {
341 if (test_bit(offset++, addr))
342 ++sum;
343 }
344 return sum;
345}
346
Olivier Deprez157378f2022-04-04 15:47:50 +0200347static struct victim_entry *attach_victim_entry(struct f2fs_sb_info *sbi,
348 unsigned long long mtime, unsigned int segno,
349 struct rb_node *parent, struct rb_node **p,
350 bool left_most)
351{
352 struct atgc_management *am = &sbi->am;
353 struct victim_entry *ve;
354
355 ve = f2fs_kmem_cache_alloc(victim_entry_slab, GFP_NOFS);
356
357 ve->mtime = mtime;
358 ve->segno = segno;
359
360 rb_link_node(&ve->rb_node, parent, p);
361 rb_insert_color_cached(&ve->rb_node, &am->root, left_most);
362
363 list_add_tail(&ve->list, &am->victim_list);
364
365 am->victim_count++;
366
367 return ve;
368}
369
370static void insert_victim_entry(struct f2fs_sb_info *sbi,
371 unsigned long long mtime, unsigned int segno)
372{
373 struct atgc_management *am = &sbi->am;
374 struct rb_node **p;
375 struct rb_node *parent = NULL;
376 bool left_most = true;
377
378 p = f2fs_lookup_rb_tree_ext(sbi, &am->root, &parent, mtime, &left_most);
379 attach_victim_entry(sbi, mtime, segno, parent, p, left_most);
380}
381
382static void add_victim_entry(struct f2fs_sb_info *sbi,
383 struct victim_sel_policy *p, unsigned int segno)
384{
385 struct sit_info *sit_i = SIT_I(sbi);
386 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
387 unsigned int start = GET_SEG_FROM_SEC(sbi, secno);
388 unsigned long long mtime = 0;
389 unsigned int i;
390
391 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
392 if (p->gc_mode == GC_AT &&
393 get_valid_blocks(sbi, segno, true) == 0)
394 return;
395 }
396
397 for (i = 0; i < sbi->segs_per_sec; i++)
398 mtime += get_seg_entry(sbi, start + i)->mtime;
399 mtime = div_u64(mtime, sbi->segs_per_sec);
400
401 /* Handle if the system time has changed by the user */
402 if (mtime < sit_i->min_mtime)
403 sit_i->min_mtime = mtime;
404 if (mtime > sit_i->max_mtime)
405 sit_i->max_mtime = mtime;
406 if (mtime < sit_i->dirty_min_mtime)
407 sit_i->dirty_min_mtime = mtime;
408 if (mtime > sit_i->dirty_max_mtime)
409 sit_i->dirty_max_mtime = mtime;
410
411 /* don't choose young section as candidate */
412 if (sit_i->dirty_max_mtime - mtime < p->age_threshold)
413 return;
414
415 insert_victim_entry(sbi, mtime, segno);
416}
417
418static struct rb_node *lookup_central_victim(struct f2fs_sb_info *sbi,
419 struct victim_sel_policy *p)
420{
421 struct atgc_management *am = &sbi->am;
422 struct rb_node *parent = NULL;
423 bool left_most;
424
425 f2fs_lookup_rb_tree_ext(sbi, &am->root, &parent, p->age, &left_most);
426
427 return parent;
428}
429
430static void atgc_lookup_victim(struct f2fs_sb_info *sbi,
431 struct victim_sel_policy *p)
432{
433 struct sit_info *sit_i = SIT_I(sbi);
434 struct atgc_management *am = &sbi->am;
435 struct rb_root_cached *root = &am->root;
436 struct rb_node *node;
437 struct rb_entry *re;
438 struct victim_entry *ve;
439 unsigned long long total_time;
440 unsigned long long age, u, accu;
441 unsigned long long max_mtime = sit_i->dirty_max_mtime;
442 unsigned long long min_mtime = sit_i->dirty_min_mtime;
443 unsigned int sec_blocks = BLKS_PER_SEC(sbi);
444 unsigned int vblocks;
445 unsigned int dirty_threshold = max(am->max_candidate_count,
446 am->candidate_ratio *
447 am->victim_count / 100);
448 unsigned int age_weight = am->age_weight;
449 unsigned int cost;
450 unsigned int iter = 0;
451
452 if (max_mtime < min_mtime)
453 return;
454
455 max_mtime += 1;
456 total_time = max_mtime - min_mtime;
457
458 accu = div64_u64(ULLONG_MAX, total_time);
459 accu = min_t(unsigned long long, div_u64(accu, 100),
460 DEFAULT_ACCURACY_CLASS);
461
462 node = rb_first_cached(root);
463next:
464 re = rb_entry_safe(node, struct rb_entry, rb_node);
465 if (!re)
466 return;
467
468 ve = (struct victim_entry *)re;
469
470 if (ve->mtime >= max_mtime || ve->mtime < min_mtime)
471 goto skip;
472
473 /* age = 10000 * x% * 60 */
474 age = div64_u64(accu * (max_mtime - ve->mtime), total_time) *
475 age_weight;
476
477 vblocks = get_valid_blocks(sbi, ve->segno, true);
478 f2fs_bug_on(sbi, !vblocks || vblocks == sec_blocks);
479
480 /* u = 10000 * x% * 40 */
481 u = div64_u64(accu * (sec_blocks - vblocks), sec_blocks) *
482 (100 - age_weight);
483
484 f2fs_bug_on(sbi, age + u >= UINT_MAX);
485
486 cost = UINT_MAX - (age + u);
487 iter++;
488
489 if (cost < p->min_cost ||
490 (cost == p->min_cost && age > p->oldest_age)) {
491 p->min_cost = cost;
492 p->oldest_age = age;
493 p->min_segno = ve->segno;
494 }
495skip:
496 if (iter < dirty_threshold) {
497 node = rb_next(node);
498 goto next;
499 }
500}
501
502/*
503 * select candidates around source section in range of
504 * [target - dirty_threshold, target + dirty_threshold]
505 */
506static void atssr_lookup_victim(struct f2fs_sb_info *sbi,
507 struct victim_sel_policy *p)
508{
509 struct sit_info *sit_i = SIT_I(sbi);
510 struct atgc_management *am = &sbi->am;
511 struct rb_node *node;
512 struct rb_entry *re;
513 struct victim_entry *ve;
514 unsigned long long age;
515 unsigned long long max_mtime = sit_i->dirty_max_mtime;
516 unsigned long long min_mtime = sit_i->dirty_min_mtime;
517 unsigned int seg_blocks = sbi->blocks_per_seg;
518 unsigned int vblocks;
519 unsigned int dirty_threshold = max(am->max_candidate_count,
520 am->candidate_ratio *
521 am->victim_count / 100);
522 unsigned int cost;
523 unsigned int iter = 0;
524 int stage = 0;
525
526 if (max_mtime < min_mtime)
527 return;
528 max_mtime += 1;
529next_stage:
530 node = lookup_central_victim(sbi, p);
531next_node:
532 re = rb_entry_safe(node, struct rb_entry, rb_node);
533 if (!re) {
534 if (stage == 0)
535 goto skip_stage;
536 return;
537 }
538
539 ve = (struct victim_entry *)re;
540
541 if (ve->mtime >= max_mtime || ve->mtime < min_mtime)
542 goto skip_node;
543
544 age = max_mtime - ve->mtime;
545
546 vblocks = get_seg_entry(sbi, ve->segno)->ckpt_valid_blocks;
547 f2fs_bug_on(sbi, !vblocks);
548
549 /* rare case */
550 if (vblocks == seg_blocks)
551 goto skip_node;
552
553 iter++;
554
555 age = max_mtime - abs(p->age - age);
556 cost = UINT_MAX - vblocks;
557
558 if (cost < p->min_cost ||
559 (cost == p->min_cost && age > p->oldest_age)) {
560 p->min_cost = cost;
561 p->oldest_age = age;
562 p->min_segno = ve->segno;
563 }
564skip_node:
565 if (iter < dirty_threshold) {
566 if (stage == 0)
567 node = rb_prev(node);
568 else if (stage == 1)
569 node = rb_next(node);
570 goto next_node;
571 }
572skip_stage:
573 if (stage < 1) {
574 stage++;
575 iter = 0;
576 goto next_stage;
577 }
578}
579static void lookup_victim_by_age(struct f2fs_sb_info *sbi,
580 struct victim_sel_policy *p)
581{
582 f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi,
583 &sbi->am.root, true));
584
585 if (p->gc_mode == GC_AT)
586 atgc_lookup_victim(sbi, p);
587 else if (p->alloc_mode == AT_SSR)
588 atssr_lookup_victim(sbi, p);
589 else
590 f2fs_bug_on(sbi, 1);
591}
592
593static void release_victim_entry(struct f2fs_sb_info *sbi)
594{
595 struct atgc_management *am = &sbi->am;
596 struct victim_entry *ve, *tmp;
597
598 list_for_each_entry_safe(ve, tmp, &am->victim_list, list) {
599 list_del(&ve->list);
600 kmem_cache_free(victim_entry_slab, ve);
601 am->victim_count--;
602 }
603
604 am->root = RB_ROOT_CACHED;
605
606 f2fs_bug_on(sbi, am->victim_count);
607 f2fs_bug_on(sbi, !list_empty(&am->victim_list));
608}
609
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000610/*
611 * This function is called from two paths.
612 * One is garbage collection and the other is SSR segment selection.
613 * When it is called during GC, it just gets a victim segment
614 * and it does not remove it from dirty seglist.
615 * When it is called from SSR segment selection, it finds a segment
616 * which has minimum valid blocks and removes it from dirty seglist.
617 */
618static int get_victim_by_default(struct f2fs_sb_info *sbi,
Olivier Deprez157378f2022-04-04 15:47:50 +0200619 unsigned int *result, int gc_type, int type,
620 char alloc_mode, unsigned long long age)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000621{
622 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
623 struct sit_info *sm = SIT_I(sbi);
624 struct victim_sel_policy p;
625 unsigned int secno, last_victim;
David Brazdil0f672f62019-12-10 10:32:29 +0000626 unsigned int last_segment;
Olivier Deprez157378f2022-04-04 15:47:50 +0200627 unsigned int nsearched;
628 bool is_atgc;
629 int ret = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000630
631 mutex_lock(&dirty_i->seglist_lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000632 last_segment = MAIN_SECS(sbi) * sbi->segs_per_sec;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000633
634 p.alloc_mode = alloc_mode;
Olivier Deprez157378f2022-04-04 15:47:50 +0200635 p.age = age;
636 p.age_threshold = sbi->am.age_threshold;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000637
Olivier Deprez157378f2022-04-04 15:47:50 +0200638retry:
639 select_policy(sbi, gc_type, type, &p);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000640 p.min_segno = NULL_SEGNO;
Olivier Deprez157378f2022-04-04 15:47:50 +0200641 p.oldest_age = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000642 p.min_cost = get_max_cost(sbi, &p);
643
Olivier Deprez157378f2022-04-04 15:47:50 +0200644 is_atgc = (p.gc_mode == GC_AT || p.alloc_mode == AT_SSR);
645 nsearched = 0;
646
647 if (is_atgc)
648 SIT_I(sbi)->dirty_min_mtime = ULLONG_MAX;
649
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000650 if (*result != NULL_SEGNO) {
Olivier Deprez157378f2022-04-04 15:47:50 +0200651 if (!get_valid_blocks(sbi, *result, false)) {
652 ret = -ENODATA;
653 goto out;
654 }
655
656 if (sec_usage_check(sbi, GET_SEC_FROM_SEG(sbi, *result)))
657 ret = -EBUSY;
658 else
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000659 p.min_segno = *result;
660 goto out;
661 }
662
Olivier Deprez157378f2022-04-04 15:47:50 +0200663 ret = -ENODATA;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000664 if (p.max_search == 0)
665 goto out;
666
David Brazdil0f672f62019-12-10 10:32:29 +0000667 if (__is_large_section(sbi) && p.alloc_mode == LFS) {
668 if (sbi->next_victim_seg[BG_GC] != NULL_SEGNO) {
669 p.min_segno = sbi->next_victim_seg[BG_GC];
670 *result = p.min_segno;
671 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
672 goto got_result;
673 }
674 if (gc_type == FG_GC &&
675 sbi->next_victim_seg[FG_GC] != NULL_SEGNO) {
676 p.min_segno = sbi->next_victim_seg[FG_GC];
677 *result = p.min_segno;
678 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
679 goto got_result;
680 }
681 }
682
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000683 last_victim = sm->last_victim[p.gc_mode];
684 if (p.alloc_mode == LFS && gc_type == FG_GC) {
685 p.min_segno = check_bg_victims(sbi);
686 if (p.min_segno != NULL_SEGNO)
687 goto got_it;
688 }
689
690 while (1) {
Olivier Deprez157378f2022-04-04 15:47:50 +0200691 unsigned long cost, *dirty_bitmap;
692 unsigned int unit_no, segno;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000693
Olivier Deprez157378f2022-04-04 15:47:50 +0200694 dirty_bitmap = p.dirty_bitmap;
695 unit_no = find_next_bit(dirty_bitmap,
696 last_segment / p.ofs_unit,
697 p.offset / p.ofs_unit);
698 segno = unit_no * p.ofs_unit;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000699 if (segno >= last_segment) {
700 if (sm->last_victim[p.gc_mode]) {
701 last_segment =
702 sm->last_victim[p.gc_mode];
703 sm->last_victim[p.gc_mode] = 0;
704 p.offset = 0;
705 continue;
706 }
707 break;
708 }
709
710 p.offset = segno + p.ofs_unit;
Olivier Deprez157378f2022-04-04 15:47:50 +0200711 nsearched++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000712
David Brazdil0f672f62019-12-10 10:32:29 +0000713#ifdef CONFIG_F2FS_CHECK_FS
714 /*
715 * skip selecting the invalid segno (that is failed due to block
716 * validity check failure during GC) to avoid endless GC loop in
717 * such cases.
718 */
719 if (test_bit(segno, sm->invalid_segmap))
720 goto next;
721#endif
722
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000723 secno = GET_SEC_FROM_SEG(sbi, segno);
724
725 if (sec_usage_check(sbi, secno))
726 goto next;
Olivier Deprez157378f2022-04-04 15:47:50 +0200727
David Brazdil0f672f62019-12-10 10:32:29 +0000728 /* Don't touch checkpointed data */
Olivier Deprez157378f2022-04-04 15:47:50 +0200729 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
730 if (p.alloc_mode == LFS) {
731 /*
732 * LFS is set to find source section during GC.
733 * The victim should have no checkpointed data.
734 */
735 if (get_ckpt_valid_blocks(sbi, segno, true))
736 goto next;
737 } else {
738 /*
739 * SSR | AT_SSR are set to find target segment
740 * for writes which can be full by checkpointed
741 * and newly written blocks.
742 */
743 if (!f2fs_segment_has_free_slot(sbi, segno))
744 goto next;
745 }
746 }
747
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000748 if (gc_type == BG_GC && test_bit(secno, dirty_i->victim_secmap))
749 goto next;
750
Olivier Deprez157378f2022-04-04 15:47:50 +0200751 if (is_atgc) {
752 add_victim_entry(sbi, &p, segno);
753 goto next;
754 }
755
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000756 cost = get_gc_cost(sbi, segno, &p);
757
758 if (p.min_cost > cost) {
759 p.min_segno = segno;
760 p.min_cost = cost;
761 }
762next:
763 if (nsearched >= p.max_search) {
764 if (!sm->last_victim[p.gc_mode] && segno <= last_victim)
Olivier Deprez157378f2022-04-04 15:47:50 +0200765 sm->last_victim[p.gc_mode] =
766 last_victim + p.ofs_unit;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000767 else
Olivier Deprez157378f2022-04-04 15:47:50 +0200768 sm->last_victim[p.gc_mode] = segno + p.ofs_unit;
David Brazdil0f672f62019-12-10 10:32:29 +0000769 sm->last_victim[p.gc_mode] %=
770 (MAIN_SECS(sbi) * sbi->segs_per_sec);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000771 break;
772 }
773 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200774
775 /* get victim for GC_AT/AT_SSR */
776 if (is_atgc) {
777 lookup_victim_by_age(sbi, &p);
778 release_victim_entry(sbi);
779 }
780
781 if (is_atgc && p.min_segno == NULL_SEGNO &&
782 sm->elapsed_time < p.age_threshold) {
783 p.age_threshold = 0;
784 goto retry;
785 }
786
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000787 if (p.min_segno != NULL_SEGNO) {
788got_it:
David Brazdil0f672f62019-12-10 10:32:29 +0000789 *result = (p.min_segno / p.ofs_unit) * p.ofs_unit;
790got_result:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000791 if (p.alloc_mode == LFS) {
792 secno = GET_SEC_FROM_SEG(sbi, p.min_segno);
793 if (gc_type == FG_GC)
794 sbi->cur_victim_sec = secno;
795 else
796 set_bit(secno, dirty_i->victim_secmap);
797 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200798 ret = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000799
David Brazdil0f672f62019-12-10 10:32:29 +0000800 }
801out:
802 if (p.min_segno != NULL_SEGNO)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000803 trace_f2fs_get_victim(sbi->sb, type, gc_type, &p,
804 sbi->cur_victim_sec,
805 prefree_segments(sbi), free_segments(sbi));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000806 mutex_unlock(&dirty_i->seglist_lock);
807
Olivier Deprez157378f2022-04-04 15:47:50 +0200808 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000809}
810
811static const struct victim_selection default_v_ops = {
812 .get_victim = get_victim_by_default,
813};
814
815static struct inode *find_gc_inode(struct gc_inode_list *gc_list, nid_t ino)
816{
817 struct inode_entry *ie;
818
819 ie = radix_tree_lookup(&gc_list->iroot, ino);
820 if (ie)
821 return ie->inode;
822 return NULL;
823}
824
825static void add_gc_inode(struct gc_inode_list *gc_list, struct inode *inode)
826{
827 struct inode_entry *new_ie;
828
829 if (inode == find_gc_inode(gc_list, inode->i_ino)) {
830 iput(inode);
831 return;
832 }
833 new_ie = f2fs_kmem_cache_alloc(f2fs_inode_entry_slab, GFP_NOFS);
834 new_ie->inode = inode;
835
836 f2fs_radix_tree_insert(&gc_list->iroot, inode->i_ino, new_ie);
837 list_add_tail(&new_ie->list, &gc_list->ilist);
838}
839
840static void put_gc_inode(struct gc_inode_list *gc_list)
841{
842 struct inode_entry *ie, *next_ie;
843 list_for_each_entry_safe(ie, next_ie, &gc_list->ilist, list) {
844 radix_tree_delete(&gc_list->iroot, ie->inode->i_ino);
845 iput(ie->inode);
846 list_del(&ie->list);
847 kmem_cache_free(f2fs_inode_entry_slab, ie);
848 }
849}
850
851static int check_valid_map(struct f2fs_sb_info *sbi,
852 unsigned int segno, int offset)
853{
854 struct sit_info *sit_i = SIT_I(sbi);
855 struct seg_entry *sentry;
856 int ret;
857
858 down_read(&sit_i->sentry_lock);
859 sentry = get_seg_entry(sbi, segno);
860 ret = f2fs_test_bit(offset, sentry->cur_valid_map);
861 up_read(&sit_i->sentry_lock);
862 return ret;
863}
864
865/*
866 * This function compares node address got in summary with that in NAT.
867 * On validity, copy that node with cold status, otherwise (invalid node)
868 * ignore that.
869 */
David Brazdil0f672f62019-12-10 10:32:29 +0000870static int gc_node_segment(struct f2fs_sb_info *sbi,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000871 struct f2fs_summary *sum, unsigned int segno, int gc_type)
872{
873 struct f2fs_summary *entry;
874 block_t start_addr;
875 int off;
876 int phase = 0;
877 bool fggc = (gc_type == FG_GC);
David Brazdil0f672f62019-12-10 10:32:29 +0000878 int submitted = 0;
Olivier Deprez157378f2022-04-04 15:47:50 +0200879 unsigned int usable_blks_in_seg = f2fs_usable_blks_in_seg(sbi, segno);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000880
881 start_addr = START_BLOCK(sbi, segno);
882
883next_step:
884 entry = sum;
885
886 if (fggc && phase == 2)
887 atomic_inc(&sbi->wb_sync_req[NODE]);
888
Olivier Deprez157378f2022-04-04 15:47:50 +0200889 for (off = 0; off < usable_blks_in_seg; off++, entry++) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000890 nid_t nid = le32_to_cpu(entry->nid);
891 struct page *node_page;
892 struct node_info ni;
David Brazdil0f672f62019-12-10 10:32:29 +0000893 int err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000894
895 /* stop BG_GC if there is not enough free sections. */
896 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0))
David Brazdil0f672f62019-12-10 10:32:29 +0000897 return submitted;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000898
899 if (check_valid_map(sbi, segno, off) == 0)
900 continue;
901
902 if (phase == 0) {
903 f2fs_ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), 1,
904 META_NAT, true);
905 continue;
906 }
907
908 if (phase == 1) {
909 f2fs_ra_node_page(sbi, nid);
910 continue;
911 }
912
913 /* phase == 2 */
914 node_page = f2fs_get_node_page(sbi, nid);
915 if (IS_ERR(node_page))
916 continue;
917
918 /* block may become invalid during f2fs_get_node_page */
919 if (check_valid_map(sbi, segno, off) == 0) {
920 f2fs_put_page(node_page, 1);
921 continue;
922 }
923
924 if (f2fs_get_node_info(sbi, nid, &ni)) {
925 f2fs_put_page(node_page, 1);
926 continue;
927 }
928
929 if (ni.blk_addr != start_addr + off) {
930 f2fs_put_page(node_page, 1);
931 continue;
932 }
933
David Brazdil0f672f62019-12-10 10:32:29 +0000934 err = f2fs_move_node_page(node_page, gc_type);
935 if (!err && gc_type == FG_GC)
936 submitted++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000937 stat_inc_node_blk_count(sbi, 1, gc_type);
938 }
939
940 if (++phase < 3)
941 goto next_step;
942
943 if (fggc)
944 atomic_dec(&sbi->wb_sync_req[NODE]);
David Brazdil0f672f62019-12-10 10:32:29 +0000945 return submitted;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000946}
947
948/*
949 * Calculate start block index indicating the given node offset.
950 * Be careful, caller should give this node offset only indicating direct node
951 * blocks. If any node offsets, which point the other types of node blocks such
952 * as indirect or double indirect node blocks, are given, it must be a caller's
953 * bug.
954 */
955block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode)
956{
957 unsigned int indirect_blks = 2 * NIDS_PER_BLOCK + 4;
958 unsigned int bidx;
959
960 if (node_ofs == 0)
961 return 0;
962
963 if (node_ofs <= 2) {
964 bidx = node_ofs - 1;
965 } else if (node_ofs <= indirect_blks) {
966 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
967 bidx = node_ofs - 2 - dec;
968 } else {
969 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
970 bidx = node_ofs - 5 - dec;
971 }
David Brazdil0f672f62019-12-10 10:32:29 +0000972 return bidx * ADDRS_PER_BLOCK(inode) + ADDRS_PER_INODE(inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000973}
974
975static bool is_alive(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
976 struct node_info *dni, block_t blkaddr, unsigned int *nofs)
977{
978 struct page *node_page;
979 nid_t nid;
980 unsigned int ofs_in_node;
981 block_t source_blkaddr;
982
983 nid = le32_to_cpu(sum->nid);
984 ofs_in_node = le16_to_cpu(sum->ofs_in_node);
985
986 node_page = f2fs_get_node_page(sbi, nid);
987 if (IS_ERR(node_page))
988 return false;
989
990 if (f2fs_get_node_info(sbi, nid, dni)) {
991 f2fs_put_page(node_page, 1);
992 return false;
993 }
994
995 if (sum->version != dni->version) {
David Brazdil0f672f62019-12-10 10:32:29 +0000996 f2fs_warn(sbi, "%s: valid data with mismatched node version.",
997 __func__);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000998 set_sbi_flag(sbi, SBI_NEED_FSCK);
999 }
1000
Olivier Deprez157378f2022-04-04 15:47:50 +02001001 if (f2fs_check_nid_range(sbi, dni->ino))
1002 return false;
1003
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001004 *nofs = ofs_of_node(node_page);
Olivier Deprez157378f2022-04-04 15:47:50 +02001005 source_blkaddr = data_blkaddr(NULL, node_page, ofs_in_node);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001006 f2fs_put_page(node_page, 1);
1007
David Brazdil0f672f62019-12-10 10:32:29 +00001008 if (source_blkaddr != blkaddr) {
1009#ifdef CONFIG_F2FS_CHECK_FS
1010 unsigned int segno = GET_SEGNO(sbi, blkaddr);
1011 unsigned long offset = GET_BLKOFF_FROM_SEG0(sbi, blkaddr);
1012
1013 if (unlikely(check_valid_map(sbi, segno, offset))) {
1014 if (!test_and_set_bit(segno, SIT_I(sbi)->invalid_segmap)) {
1015 f2fs_err(sbi, "mismatched blkaddr %u (source_blkaddr %u) in seg %u\n",
1016 blkaddr, source_blkaddr, segno);
1017 f2fs_bug_on(sbi, 1);
1018 }
1019 }
1020#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001021 return false;
David Brazdil0f672f62019-12-10 10:32:29 +00001022 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001023 return true;
1024}
1025
1026static int ra_data_block(struct inode *inode, pgoff_t index)
1027{
1028 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1029 struct address_space *mapping = inode->i_mapping;
1030 struct dnode_of_data dn;
1031 struct page *page;
1032 struct extent_info ei = {0, 0, 0};
1033 struct f2fs_io_info fio = {
1034 .sbi = sbi,
1035 .ino = inode->i_ino,
1036 .type = DATA,
1037 .temp = COLD,
1038 .op = REQ_OP_READ,
1039 .op_flags = 0,
1040 .encrypted_page = NULL,
1041 .in_list = false,
1042 .retry = false,
1043 };
1044 int err;
1045
1046 page = f2fs_grab_cache_page(mapping, index, true);
1047 if (!page)
1048 return -ENOMEM;
1049
1050 if (f2fs_lookup_extent_cache(inode, index, &ei)) {
1051 dn.data_blkaddr = ei.blk + index - ei.fofs;
David Brazdil0f672f62019-12-10 10:32:29 +00001052 if (unlikely(!f2fs_is_valid_blkaddr(sbi, dn.data_blkaddr,
1053 DATA_GENERIC_ENHANCE_READ))) {
1054 err = -EFSCORRUPTED;
1055 goto put_page;
1056 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001057 goto got_it;
1058 }
1059
1060 set_new_dnode(&dn, inode, NULL, NULL, 0);
1061 err = f2fs_get_dnode_of_data(&dn, index, LOOKUP_NODE);
1062 if (err)
1063 goto put_page;
1064 f2fs_put_dnode(&dn);
1065
David Brazdil0f672f62019-12-10 10:32:29 +00001066 if (!__is_valid_data_blkaddr(dn.data_blkaddr)) {
1067 err = -ENOENT;
1068 goto put_page;
1069 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001070 if (unlikely(!f2fs_is_valid_blkaddr(sbi, dn.data_blkaddr,
David Brazdil0f672f62019-12-10 10:32:29 +00001071 DATA_GENERIC_ENHANCE))) {
1072 err = -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001073 goto put_page;
1074 }
1075got_it:
1076 /* read page */
1077 fio.page = page;
1078 fio.new_blkaddr = fio.old_blkaddr = dn.data_blkaddr;
1079
David Brazdil0f672f62019-12-10 10:32:29 +00001080 /*
1081 * don't cache encrypted data into meta inode until previous dirty
1082 * data were writebacked to avoid racing between GC and flush.
1083 */
1084 f2fs_wait_on_page_writeback(page, DATA, true, true);
1085
1086 f2fs_wait_on_block_writeback(inode, dn.data_blkaddr);
1087
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001088 fio.encrypted_page = f2fs_pagecache_get_page(META_MAPPING(sbi),
1089 dn.data_blkaddr,
1090 FGP_LOCK | FGP_CREAT, GFP_NOFS);
1091 if (!fio.encrypted_page) {
1092 err = -ENOMEM;
1093 goto put_page;
1094 }
1095
1096 err = f2fs_submit_page_bio(&fio);
1097 if (err)
1098 goto put_encrypted_page;
1099 f2fs_put_page(fio.encrypted_page, 0);
1100 f2fs_put_page(page, 1);
Olivier Deprez157378f2022-04-04 15:47:50 +02001101
1102 f2fs_update_iostat(sbi, FS_DATA_READ_IO, F2FS_BLKSIZE);
1103 f2fs_update_iostat(sbi, FS_GDATA_READ_IO, F2FS_BLKSIZE);
1104
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001105 return 0;
1106put_encrypted_page:
1107 f2fs_put_page(fio.encrypted_page, 1);
1108put_page:
1109 f2fs_put_page(page, 1);
1110 return err;
1111}
1112
1113/*
1114 * Move data block via META_MAPPING while keeping locked data page.
1115 * This can be used to move blocks, aka LBAs, directly on disk.
1116 */
David Brazdil0f672f62019-12-10 10:32:29 +00001117static int move_data_block(struct inode *inode, block_t bidx,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001118 int gc_type, unsigned int segno, int off)
1119{
1120 struct f2fs_io_info fio = {
1121 .sbi = F2FS_I_SB(inode),
1122 .ino = inode->i_ino,
1123 .type = DATA,
1124 .temp = COLD,
1125 .op = REQ_OP_READ,
1126 .op_flags = 0,
1127 .encrypted_page = NULL,
1128 .in_list = false,
1129 .retry = false,
1130 };
1131 struct dnode_of_data dn;
1132 struct f2fs_summary sum;
1133 struct node_info ni;
1134 struct page *page, *mpage;
1135 block_t newaddr;
David Brazdil0f672f62019-12-10 10:32:29 +00001136 int err = 0;
Olivier Deprez157378f2022-04-04 15:47:50 +02001137 bool lfs_mode = f2fs_lfs_mode(fio.sbi);
1138 int type = fio.sbi->am.atgc_enabled ?
1139 CURSEG_ALL_DATA_ATGC : CURSEG_COLD_DATA;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001140
1141 /* do not read out */
1142 page = f2fs_grab_cache_page(inode->i_mapping, bidx, false);
1143 if (!page)
David Brazdil0f672f62019-12-10 10:32:29 +00001144 return -ENOMEM;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001145
David Brazdil0f672f62019-12-10 10:32:29 +00001146 if (!check_valid_map(F2FS_I_SB(inode), segno, off)) {
1147 err = -ENOENT;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001148 goto out;
David Brazdil0f672f62019-12-10 10:32:29 +00001149 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001150
1151 if (f2fs_is_atomic_file(inode)) {
1152 F2FS_I(inode)->i_gc_failures[GC_FAILURE_ATOMIC]++;
1153 F2FS_I_SB(inode)->skipped_atomic_files[gc_type]++;
David Brazdil0f672f62019-12-10 10:32:29 +00001154 err = -EAGAIN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001155 goto out;
1156 }
1157
1158 if (f2fs_is_pinned_file(inode)) {
1159 f2fs_pin_file_control(inode, true);
David Brazdil0f672f62019-12-10 10:32:29 +00001160 err = -EAGAIN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001161 goto out;
1162 }
1163
1164 set_new_dnode(&dn, inode, NULL, NULL, 0);
1165 err = f2fs_get_dnode_of_data(&dn, bidx, LOOKUP_NODE);
1166 if (err)
1167 goto out;
1168
1169 if (unlikely(dn.data_blkaddr == NULL_ADDR)) {
1170 ClearPageUptodate(page);
David Brazdil0f672f62019-12-10 10:32:29 +00001171 err = -ENOENT;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001172 goto put_out;
1173 }
1174
1175 /*
1176 * don't cache encrypted data into meta inode until previous dirty
1177 * data were writebacked to avoid racing between GC and flush.
1178 */
David Brazdil0f672f62019-12-10 10:32:29 +00001179 f2fs_wait_on_page_writeback(page, DATA, true, true);
1180
1181 f2fs_wait_on_block_writeback(inode, dn.data_blkaddr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001182
1183 err = f2fs_get_node_info(fio.sbi, dn.nid, &ni);
1184 if (err)
1185 goto put_out;
1186
1187 set_summary(&sum, dn.nid, dn.ofs_in_node, ni.version);
1188
1189 /* read page */
1190 fio.page = page;
1191 fio.new_blkaddr = fio.old_blkaddr = dn.data_blkaddr;
1192
1193 if (lfs_mode)
1194 down_write(&fio.sbi->io_order_lock);
1195
David Brazdil0f672f62019-12-10 10:32:29 +00001196 mpage = f2fs_grab_cache_page(META_MAPPING(fio.sbi),
1197 fio.old_blkaddr, false);
Olivier Deprez157378f2022-04-04 15:47:50 +02001198 if (!mpage) {
1199 err = -ENOMEM;
David Brazdil0f672f62019-12-10 10:32:29 +00001200 goto up_out;
Olivier Deprez157378f2022-04-04 15:47:50 +02001201 }
David Brazdil0f672f62019-12-10 10:32:29 +00001202
1203 fio.encrypted_page = mpage;
1204
1205 /* read source block in mpage */
1206 if (!PageUptodate(mpage)) {
1207 err = f2fs_submit_page_bio(&fio);
1208 if (err) {
1209 f2fs_put_page(mpage, 1);
1210 goto up_out;
1211 }
Olivier Deprez157378f2022-04-04 15:47:50 +02001212
1213 f2fs_update_iostat(fio.sbi, FS_DATA_READ_IO, F2FS_BLKSIZE);
1214 f2fs_update_iostat(fio.sbi, FS_GDATA_READ_IO, F2FS_BLKSIZE);
1215
David Brazdil0f672f62019-12-10 10:32:29 +00001216 lock_page(mpage);
1217 if (unlikely(mpage->mapping != META_MAPPING(fio.sbi) ||
1218 !PageUptodate(mpage))) {
1219 err = -EIO;
1220 f2fs_put_page(mpage, 1);
1221 goto up_out;
1222 }
1223 }
1224
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001225 f2fs_allocate_data_block(fio.sbi, NULL, fio.old_blkaddr, &newaddr,
Olivier Deprez157378f2022-04-04 15:47:50 +02001226 &sum, type, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001227
1228 fio.encrypted_page = f2fs_pagecache_get_page(META_MAPPING(fio.sbi),
1229 newaddr, FGP_LOCK | FGP_CREAT, GFP_NOFS);
1230 if (!fio.encrypted_page) {
1231 err = -ENOMEM;
David Brazdil0f672f62019-12-10 10:32:29 +00001232 f2fs_put_page(mpage, 1);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001233 goto recover_block;
1234 }
1235
David Brazdil0f672f62019-12-10 10:32:29 +00001236 /* write target block */
1237 f2fs_wait_on_page_writeback(fio.encrypted_page, DATA, true, true);
1238 memcpy(page_address(fio.encrypted_page),
1239 page_address(mpage), PAGE_SIZE);
1240 f2fs_put_page(mpage, 1);
1241 invalidate_mapping_pages(META_MAPPING(fio.sbi),
1242 fio.old_blkaddr, fio.old_blkaddr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001243
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001244 set_page_dirty(fio.encrypted_page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001245 if (clear_page_dirty_for_io(fio.encrypted_page))
1246 dec_page_count(fio.sbi, F2FS_DIRTY_META);
1247
1248 set_page_writeback(fio.encrypted_page);
1249 ClearPageError(page);
1250
1251 /* allocate block address */
David Brazdil0f672f62019-12-10 10:32:29 +00001252 f2fs_wait_on_page_writeback(dn.node_page, NODE, true, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001253
1254 fio.op = REQ_OP_WRITE;
1255 fio.op_flags = REQ_SYNC;
1256 fio.new_blkaddr = newaddr;
1257 f2fs_submit_page_write(&fio);
1258 if (fio.retry) {
David Brazdil0f672f62019-12-10 10:32:29 +00001259 err = -EAGAIN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001260 if (PageWriteback(fio.encrypted_page))
1261 end_page_writeback(fio.encrypted_page);
1262 goto put_page_out;
1263 }
1264
1265 f2fs_update_iostat(fio.sbi, FS_GC_DATA_IO, F2FS_BLKSIZE);
1266
1267 f2fs_update_data_blkaddr(&dn, newaddr);
1268 set_inode_flag(inode, FI_APPEND_WRITE);
1269 if (page->index == 0)
1270 set_inode_flag(inode, FI_FIRST_BLOCK_WRITTEN);
1271put_page_out:
1272 f2fs_put_page(fio.encrypted_page, 1);
1273recover_block:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001274 if (err)
1275 f2fs_do_replace_block(fio.sbi, &sum, newaddr, fio.old_blkaddr,
Olivier Deprez157378f2022-04-04 15:47:50 +02001276 true, true, true);
David Brazdil0f672f62019-12-10 10:32:29 +00001277up_out:
1278 if (lfs_mode)
1279 up_write(&fio.sbi->io_order_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001280put_out:
1281 f2fs_put_dnode(&dn);
1282out:
1283 f2fs_put_page(page, 1);
David Brazdil0f672f62019-12-10 10:32:29 +00001284 return err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001285}
1286
David Brazdil0f672f62019-12-10 10:32:29 +00001287static int move_data_page(struct inode *inode, block_t bidx, int gc_type,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001288 unsigned int segno, int off)
1289{
1290 struct page *page;
David Brazdil0f672f62019-12-10 10:32:29 +00001291 int err = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001292
1293 page = f2fs_get_lock_data_page(inode, bidx, true);
1294 if (IS_ERR(page))
David Brazdil0f672f62019-12-10 10:32:29 +00001295 return PTR_ERR(page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001296
David Brazdil0f672f62019-12-10 10:32:29 +00001297 if (!check_valid_map(F2FS_I_SB(inode), segno, off)) {
1298 err = -ENOENT;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001299 goto out;
David Brazdil0f672f62019-12-10 10:32:29 +00001300 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001301
1302 if (f2fs_is_atomic_file(inode)) {
1303 F2FS_I(inode)->i_gc_failures[GC_FAILURE_ATOMIC]++;
1304 F2FS_I_SB(inode)->skipped_atomic_files[gc_type]++;
David Brazdil0f672f62019-12-10 10:32:29 +00001305 err = -EAGAIN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001306 goto out;
1307 }
1308 if (f2fs_is_pinned_file(inode)) {
1309 if (gc_type == FG_GC)
1310 f2fs_pin_file_control(inode, true);
David Brazdil0f672f62019-12-10 10:32:29 +00001311 err = -EAGAIN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001312 goto out;
1313 }
1314
1315 if (gc_type == BG_GC) {
David Brazdil0f672f62019-12-10 10:32:29 +00001316 if (PageWriteback(page)) {
1317 err = -EAGAIN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001318 goto out;
David Brazdil0f672f62019-12-10 10:32:29 +00001319 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001320 set_page_dirty(page);
1321 set_cold_data(page);
1322 } else {
1323 struct f2fs_io_info fio = {
1324 .sbi = F2FS_I_SB(inode),
1325 .ino = inode->i_ino,
1326 .type = DATA,
1327 .temp = COLD,
1328 .op = REQ_OP_WRITE,
1329 .op_flags = REQ_SYNC,
1330 .old_blkaddr = NULL_ADDR,
1331 .page = page,
1332 .encrypted_page = NULL,
1333 .need_lock = LOCK_REQ,
1334 .io_type = FS_GC_DATA_IO,
1335 };
1336 bool is_dirty = PageDirty(page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001337
1338retry:
David Brazdil0f672f62019-12-10 10:32:29 +00001339 f2fs_wait_on_page_writeback(page, DATA, true, true);
1340
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001341 set_page_dirty(page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001342 if (clear_page_dirty_for_io(page)) {
1343 inode_dec_dirty_pages(inode);
1344 f2fs_remove_dirty_inode(inode);
1345 }
1346
1347 set_cold_data(page);
1348
1349 err = f2fs_do_write_data_page(&fio);
1350 if (err) {
1351 clear_cold_data(page);
1352 if (err == -ENOMEM) {
Olivier Deprez157378f2022-04-04 15:47:50 +02001353 congestion_wait(BLK_RW_ASYNC,
1354 DEFAULT_IO_TIMEOUT);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001355 goto retry;
1356 }
1357 if (is_dirty)
1358 set_page_dirty(page);
1359 }
1360 }
1361out:
1362 f2fs_put_page(page, 1);
David Brazdil0f672f62019-12-10 10:32:29 +00001363 return err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001364}
1365
1366/*
1367 * This function tries to get parent node of victim data block, and identifies
1368 * data block validity. If the block is valid, copy that with cold status and
1369 * modify parent node.
1370 * If the parent node is not valid or the data block address is different,
1371 * the victim data block is ignored.
1372 */
David Brazdil0f672f62019-12-10 10:32:29 +00001373static int gc_data_segment(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Olivier Deprez157378f2022-04-04 15:47:50 +02001374 struct gc_inode_list *gc_list, unsigned int segno, int gc_type,
1375 bool force_migrate)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001376{
1377 struct super_block *sb = sbi->sb;
1378 struct f2fs_summary *entry;
1379 block_t start_addr;
1380 int off;
1381 int phase = 0;
David Brazdil0f672f62019-12-10 10:32:29 +00001382 int submitted = 0;
Olivier Deprez157378f2022-04-04 15:47:50 +02001383 unsigned int usable_blks_in_seg = f2fs_usable_blks_in_seg(sbi, segno);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001384
1385 start_addr = START_BLOCK(sbi, segno);
1386
1387next_step:
1388 entry = sum;
1389
Olivier Deprez157378f2022-04-04 15:47:50 +02001390 for (off = 0; off < usable_blks_in_seg; off++, entry++) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001391 struct page *data_page;
1392 struct inode *inode;
1393 struct node_info dni; /* dnode info for the data */
1394 unsigned int ofs_in_node, nofs;
1395 block_t start_bidx;
1396 nid_t nid = le32_to_cpu(entry->nid);
1397
Olivier Deprez0e641232021-09-23 10:07:05 +02001398 /*
1399 * stop BG_GC if there is not enough free sections.
1400 * Or, stop GC if the segment becomes fully valid caused by
1401 * race condition along with SSR block allocation.
1402 */
1403 if ((gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0)) ||
Olivier Deprez157378f2022-04-04 15:47:50 +02001404 (!force_migrate && get_valid_blocks(sbi, segno, true) ==
1405 BLKS_PER_SEC(sbi)))
David Brazdil0f672f62019-12-10 10:32:29 +00001406 return submitted;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001407
1408 if (check_valid_map(sbi, segno, off) == 0)
1409 continue;
1410
1411 if (phase == 0) {
1412 f2fs_ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), 1,
1413 META_NAT, true);
1414 continue;
1415 }
1416
1417 if (phase == 1) {
1418 f2fs_ra_node_page(sbi, nid);
1419 continue;
1420 }
1421
1422 /* Get an inode by ino with checking validity */
1423 if (!is_alive(sbi, entry, &dni, start_addr + off, &nofs))
1424 continue;
1425
1426 if (phase == 2) {
1427 f2fs_ra_node_page(sbi, dni.ino);
1428 continue;
1429 }
1430
1431 ofs_in_node = le16_to_cpu(entry->ofs_in_node);
1432
1433 if (phase == 3) {
1434 inode = f2fs_iget(sb, dni.ino);
Olivier Deprez157378f2022-04-04 15:47:50 +02001435 if (IS_ERR(inode) || is_bad_inode(inode)) {
1436 set_sbi_flag(sbi, SBI_NEED_FSCK);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001437 continue;
Olivier Deprez157378f2022-04-04 15:47:50 +02001438 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001439
1440 if (!down_write_trylock(
1441 &F2FS_I(inode)->i_gc_rwsem[WRITE])) {
1442 iput(inode);
1443 sbi->skipped_gc_rwsem++;
1444 continue;
1445 }
1446
1447 start_bidx = f2fs_start_bidx_of_node(nofs, inode) +
1448 ofs_in_node;
1449
1450 if (f2fs_post_read_required(inode)) {
1451 int err = ra_data_block(inode, start_bidx);
1452
1453 up_write(&F2FS_I(inode)->i_gc_rwsem[WRITE]);
1454 if (err) {
1455 iput(inode);
1456 continue;
1457 }
1458 add_gc_inode(gc_list, inode);
1459 continue;
1460 }
1461
1462 data_page = f2fs_get_read_data_page(inode,
1463 start_bidx, REQ_RAHEAD, true);
1464 up_write(&F2FS_I(inode)->i_gc_rwsem[WRITE]);
1465 if (IS_ERR(data_page)) {
1466 iput(inode);
1467 continue;
1468 }
1469
1470 f2fs_put_page(data_page, 0);
1471 add_gc_inode(gc_list, inode);
1472 continue;
1473 }
1474
1475 /* phase 4 */
1476 inode = find_gc_inode(gc_list, dni.ino);
1477 if (inode) {
1478 struct f2fs_inode_info *fi = F2FS_I(inode);
1479 bool locked = false;
David Brazdil0f672f62019-12-10 10:32:29 +00001480 int err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001481
1482 if (S_ISREG(inode->i_mode)) {
Olivier Deprez0e641232021-09-23 10:07:05 +02001483 if (!down_write_trylock(&fi->i_gc_rwsem[READ])) {
1484 sbi->skipped_gc_rwsem++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001485 continue;
Olivier Deprez0e641232021-09-23 10:07:05 +02001486 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001487 if (!down_write_trylock(
1488 &fi->i_gc_rwsem[WRITE])) {
1489 sbi->skipped_gc_rwsem++;
1490 up_write(&fi->i_gc_rwsem[READ]);
1491 continue;
1492 }
1493 locked = true;
1494
1495 /* wait for all inflight aio data */
1496 inode_dio_wait(inode);
1497 }
1498
1499 start_bidx = f2fs_start_bidx_of_node(nofs, inode)
1500 + ofs_in_node;
1501 if (f2fs_post_read_required(inode))
David Brazdil0f672f62019-12-10 10:32:29 +00001502 err = move_data_block(inode, start_bidx,
1503 gc_type, segno, off);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001504 else
David Brazdil0f672f62019-12-10 10:32:29 +00001505 err = move_data_page(inode, start_bidx, gc_type,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001506 segno, off);
1507
David Brazdil0f672f62019-12-10 10:32:29 +00001508 if (!err && (gc_type == FG_GC ||
1509 f2fs_post_read_required(inode)))
1510 submitted++;
1511
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001512 if (locked) {
1513 up_write(&fi->i_gc_rwsem[WRITE]);
1514 up_write(&fi->i_gc_rwsem[READ]);
1515 }
1516
1517 stat_inc_data_blk_count(sbi, 1, gc_type);
1518 }
1519 }
1520
1521 if (++phase < 5)
1522 goto next_step;
David Brazdil0f672f62019-12-10 10:32:29 +00001523
1524 return submitted;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001525}
1526
1527static int __get_victim(struct f2fs_sb_info *sbi, unsigned int *victim,
1528 int gc_type)
1529{
1530 struct sit_info *sit_i = SIT_I(sbi);
1531 int ret;
1532
1533 down_write(&sit_i->sentry_lock);
1534 ret = DIRTY_I(sbi)->v_ops->get_victim(sbi, victim, gc_type,
Olivier Deprez157378f2022-04-04 15:47:50 +02001535 NO_CHECK_TYPE, LFS, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001536 up_write(&sit_i->sentry_lock);
1537 return ret;
1538}
1539
1540static int do_garbage_collect(struct f2fs_sb_info *sbi,
1541 unsigned int start_segno,
Olivier Deprez157378f2022-04-04 15:47:50 +02001542 struct gc_inode_list *gc_list, int gc_type,
1543 bool force_migrate)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001544{
1545 struct page *sum_page;
1546 struct f2fs_summary_block *sum;
1547 struct blk_plug plug;
1548 unsigned int segno = start_segno;
1549 unsigned int end_segno = start_segno + sbi->segs_per_sec;
David Brazdil0f672f62019-12-10 10:32:29 +00001550 int seg_freed = 0, migrated = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001551 unsigned char type = IS_DATASEG(get_seg_entry(sbi, segno)->type) ?
1552 SUM_TYPE_DATA : SUM_TYPE_NODE;
David Brazdil0f672f62019-12-10 10:32:29 +00001553 int submitted = 0;
1554
1555 if (__is_large_section(sbi))
1556 end_segno = rounddown(end_segno, sbi->segs_per_sec);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001557
Olivier Deprez157378f2022-04-04 15:47:50 +02001558 /*
1559 * zone-capacity can be less than zone-size in zoned devices,
1560 * resulting in less than expected usable segments in the zone,
1561 * calculate the end segno in the zone which can be garbage collected
1562 */
1563 if (f2fs_sb_has_blkzoned(sbi))
1564 end_segno -= sbi->segs_per_sec -
1565 f2fs_usable_segs_in_sec(sbi, segno);
1566
1567 sanity_check_seg_type(sbi, get_seg_entry(sbi, segno)->type);
1568
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001569 /* readahead multi ssa blocks those have contiguous address */
David Brazdil0f672f62019-12-10 10:32:29 +00001570 if (__is_large_section(sbi))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001571 f2fs_ra_meta_pages(sbi, GET_SUM_BLOCK(sbi, segno),
David Brazdil0f672f62019-12-10 10:32:29 +00001572 end_segno - segno, META_SSA, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001573
1574 /* reference all summary page */
1575 while (segno < end_segno) {
1576 sum_page = f2fs_get_sum_page(sbi, segno++);
David Brazdil0f672f62019-12-10 10:32:29 +00001577 if (IS_ERR(sum_page)) {
1578 int err = PTR_ERR(sum_page);
1579
1580 end_segno = segno - 1;
1581 for (segno = start_segno; segno < end_segno; segno++) {
1582 sum_page = find_get_page(META_MAPPING(sbi),
1583 GET_SUM_BLOCK(sbi, segno));
1584 f2fs_put_page(sum_page, 0);
1585 f2fs_put_page(sum_page, 0);
1586 }
1587 return err;
1588 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001589 unlock_page(sum_page);
1590 }
1591
1592 blk_start_plug(&plug);
1593
1594 for (segno = start_segno; segno < end_segno; segno++) {
1595
1596 /* find segment summary of victim */
1597 sum_page = find_get_page(META_MAPPING(sbi),
1598 GET_SUM_BLOCK(sbi, segno));
1599 f2fs_put_page(sum_page, 0);
1600
David Brazdil0f672f62019-12-10 10:32:29 +00001601 if (get_valid_blocks(sbi, segno, false) == 0)
1602 goto freed;
Olivier Deprez157378f2022-04-04 15:47:50 +02001603 if (gc_type == BG_GC && __is_large_section(sbi) &&
David Brazdil0f672f62019-12-10 10:32:29 +00001604 migrated >= sbi->migration_granularity)
1605 goto skip;
1606 if (!PageUptodate(sum_page) || unlikely(f2fs_cp_error(sbi)))
1607 goto skip;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001608
1609 sum = page_address(sum_page);
1610 if (type != GET_SUM_TYPE((&sum->footer))) {
David Brazdil0f672f62019-12-10 10:32:29 +00001611 f2fs_err(sbi, "Inconsistent segment (%u) type [%d, %d] in SSA and SIT",
1612 segno, type, GET_SUM_TYPE((&sum->footer)));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001613 set_sbi_flag(sbi, SBI_NEED_FSCK);
David Brazdil0f672f62019-12-10 10:32:29 +00001614 f2fs_stop_checkpoint(sbi, false);
1615 goto skip;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001616 }
1617
1618 /*
1619 * this is to avoid deadlock:
1620 * - lock_page(sum_page) - f2fs_replace_block
1621 * - check_valid_map() - down_write(sentry_lock)
1622 * - down_read(sentry_lock) - change_curseg()
1623 * - lock_page(sum_page)
1624 */
1625 if (type == SUM_TYPE_NODE)
David Brazdil0f672f62019-12-10 10:32:29 +00001626 submitted += gc_node_segment(sbi, sum->entries, segno,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001627 gc_type);
David Brazdil0f672f62019-12-10 10:32:29 +00001628 else
1629 submitted += gc_data_segment(sbi, sum->entries, gc_list,
Olivier Deprez157378f2022-04-04 15:47:50 +02001630 segno, gc_type,
1631 force_migrate);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001632
1633 stat_inc_seg_count(sbi, type, gc_type);
Olivier Deprez157378f2022-04-04 15:47:50 +02001634 migrated++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001635
David Brazdil0f672f62019-12-10 10:32:29 +00001636freed:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001637 if (gc_type == FG_GC &&
1638 get_valid_blocks(sbi, segno, false) == 0)
1639 seg_freed++;
David Brazdil0f672f62019-12-10 10:32:29 +00001640
1641 if (__is_large_section(sbi) && segno + 1 < end_segno)
1642 sbi->next_victim_seg[gc_type] = segno + 1;
1643skip:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001644 f2fs_put_page(sum_page, 0);
1645 }
1646
David Brazdil0f672f62019-12-10 10:32:29 +00001647 if (submitted)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001648 f2fs_submit_merged_write(sbi,
1649 (type == SUM_TYPE_NODE) ? NODE : DATA);
1650
1651 blk_finish_plug(&plug);
1652
1653 stat_inc_call_count(sbi->stat_info);
1654
1655 return seg_freed;
1656}
1657
1658int f2fs_gc(struct f2fs_sb_info *sbi, bool sync,
Olivier Deprez157378f2022-04-04 15:47:50 +02001659 bool background, bool force, unsigned int segno)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001660{
1661 int gc_type = sync ? FG_GC : BG_GC;
1662 int sec_freed = 0, seg_freed = 0, total_freed = 0;
1663 int ret = 0;
1664 struct cp_control cpc;
1665 unsigned int init_segno = segno;
1666 struct gc_inode_list gc_list = {
1667 .ilist = LIST_HEAD_INIT(gc_list.ilist),
1668 .iroot = RADIX_TREE_INIT(gc_list.iroot, GFP_NOFS),
1669 };
1670 unsigned long long last_skipped = sbi->skipped_atomic_files[FG_GC];
1671 unsigned long long first_skipped;
1672 unsigned int skipped_round = 0, round = 0;
1673
1674 trace_f2fs_gc_begin(sbi->sb, sync, background,
1675 get_pages(sbi, F2FS_DIRTY_NODES),
1676 get_pages(sbi, F2FS_DIRTY_DENTS),
1677 get_pages(sbi, F2FS_DIRTY_IMETA),
1678 free_sections(sbi),
1679 free_segments(sbi),
1680 reserved_segments(sbi),
1681 prefree_segments(sbi));
1682
1683 cpc.reason = __get_cp_reason(sbi);
1684 sbi->skipped_gc_rwsem = 0;
1685 first_skipped = last_skipped;
1686gc_more:
1687 if (unlikely(!(sbi->sb->s_flags & SB_ACTIVE))) {
1688 ret = -EINVAL;
1689 goto stop;
1690 }
1691 if (unlikely(f2fs_cp_error(sbi))) {
1692 ret = -EIO;
1693 goto stop;
1694 }
1695
1696 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0)) {
1697 /*
1698 * For example, if there are many prefree_segments below given
1699 * threshold, we can make them free by checkpoint. Then, we
1700 * secure free segments which doesn't need fggc any more.
1701 */
David Brazdil0f672f62019-12-10 10:32:29 +00001702 if (prefree_segments(sbi) &&
1703 !is_sbi_flag_set(sbi, SBI_CP_DISABLED)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001704 ret = f2fs_write_checkpoint(sbi, &cpc);
1705 if (ret)
1706 goto stop;
1707 }
1708 if (has_not_enough_free_secs(sbi, 0, 0))
1709 gc_type = FG_GC;
1710 }
1711
1712 /* f2fs_balance_fs doesn't need to do BG_GC in critical path. */
1713 if (gc_type == BG_GC && !background) {
1714 ret = -EINVAL;
1715 goto stop;
1716 }
Olivier Deprez157378f2022-04-04 15:47:50 +02001717 ret = __get_victim(sbi, &segno, gc_type);
1718 if (ret)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001719 goto stop;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001720
Olivier Deprez157378f2022-04-04 15:47:50 +02001721 seg_freed = do_garbage_collect(sbi, segno, &gc_list, gc_type, force);
1722 if (gc_type == FG_GC &&
1723 seg_freed == f2fs_usable_segs_in_sec(sbi, segno))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001724 sec_freed++;
1725 total_freed += seg_freed;
1726
1727 if (gc_type == FG_GC) {
1728 if (sbi->skipped_atomic_files[FG_GC] > last_skipped ||
1729 sbi->skipped_gc_rwsem)
1730 skipped_round++;
1731 last_skipped = sbi->skipped_atomic_files[FG_GC];
1732 round++;
1733 }
1734
David Brazdil0f672f62019-12-10 10:32:29 +00001735 if (gc_type == FG_GC && seg_freed)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001736 sbi->cur_victim_sec = NULL_SEGNO;
1737
1738 if (sync)
1739 goto stop;
1740
1741 if (has_not_enough_free_secs(sbi, sec_freed, 0)) {
1742 if (skipped_round <= MAX_SKIP_GC_COUNT ||
1743 skipped_round * 2 < round) {
1744 segno = NULL_SEGNO;
1745 goto gc_more;
1746 }
1747
1748 if (first_skipped < last_skipped &&
1749 (last_skipped - first_skipped) >
1750 sbi->skipped_gc_rwsem) {
1751 f2fs_drop_inmem_pages_all(sbi, true);
1752 segno = NULL_SEGNO;
1753 goto gc_more;
1754 }
David Brazdil0f672f62019-12-10 10:32:29 +00001755 if (gc_type == FG_GC && !is_sbi_flag_set(sbi, SBI_CP_DISABLED))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001756 ret = f2fs_write_checkpoint(sbi, &cpc);
1757 }
1758stop:
1759 SIT_I(sbi)->last_victim[ALLOC_NEXT] = 0;
1760 SIT_I(sbi)->last_victim[FLUSH_DEVICE] = init_segno;
1761
1762 trace_f2fs_gc_end(sbi->sb, ret, total_freed, sec_freed,
1763 get_pages(sbi, F2FS_DIRTY_NODES),
1764 get_pages(sbi, F2FS_DIRTY_DENTS),
1765 get_pages(sbi, F2FS_DIRTY_IMETA),
1766 free_sections(sbi),
1767 free_segments(sbi),
1768 reserved_segments(sbi),
1769 prefree_segments(sbi));
1770
Olivier Deprez157378f2022-04-04 15:47:50 +02001771 up_write(&sbi->gc_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001772
1773 put_gc_inode(&gc_list);
1774
David Brazdil0f672f62019-12-10 10:32:29 +00001775 if (sync && !ret)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001776 ret = sec_freed ? 0 : -EAGAIN;
1777 return ret;
1778}
1779
Olivier Deprez157378f2022-04-04 15:47:50 +02001780int __init f2fs_create_garbage_collection_cache(void)
1781{
1782 victim_entry_slab = f2fs_kmem_cache_create("f2fs_victim_entry",
1783 sizeof(struct victim_entry));
1784 if (!victim_entry_slab)
1785 return -ENOMEM;
1786 return 0;
1787}
1788
1789void f2fs_destroy_garbage_collection_cache(void)
1790{
1791 kmem_cache_destroy(victim_entry_slab);
1792}
1793
1794static void init_atgc_management(struct f2fs_sb_info *sbi)
1795{
1796 struct atgc_management *am = &sbi->am;
1797
1798 if (test_opt(sbi, ATGC) &&
1799 SIT_I(sbi)->elapsed_time >= DEF_GC_THREAD_AGE_THRESHOLD)
1800 am->atgc_enabled = true;
1801
1802 am->root = RB_ROOT_CACHED;
1803 INIT_LIST_HEAD(&am->victim_list);
1804 am->victim_count = 0;
1805
1806 am->candidate_ratio = DEF_GC_THREAD_CANDIDATE_RATIO;
1807 am->max_candidate_count = DEF_GC_THREAD_MAX_CANDIDATE_COUNT;
1808 am->age_weight = DEF_GC_THREAD_AGE_WEIGHT;
1809 am->age_threshold = DEF_GC_THREAD_AGE_THRESHOLD;
1810}
1811
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001812void f2fs_build_gc_manager(struct f2fs_sb_info *sbi)
1813{
1814 DIRTY_I(sbi)->v_ops = &default_v_ops;
1815
1816 sbi->gc_pin_file_threshold = DEF_GC_FAILED_PINNED_FILES;
1817
1818 /* give warm/cold data area from slower device */
David Brazdil0f672f62019-12-10 10:32:29 +00001819 if (f2fs_is_multi_device(sbi) && !__is_large_section(sbi))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001820 SIT_I(sbi)->last_victim[ALLOC_NEXT] =
1821 GET_SEGNO(sbi, FDEV(0).end_blk) + 1;
Olivier Deprez157378f2022-04-04 15:47:50 +02001822
1823 init_atgc_management(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001824}
David Brazdil0f672f62019-12-10 10:32:29 +00001825
Olivier Deprez157378f2022-04-04 15:47:50 +02001826static int free_segment_range(struct f2fs_sb_info *sbi,
1827 unsigned int secs, bool gc_only)
David Brazdil0f672f62019-12-10 10:32:29 +00001828{
Olivier Deprez157378f2022-04-04 15:47:50 +02001829 unsigned int segno, next_inuse, start, end;
1830 struct cp_control cpc = { CP_RESIZE, 0, 0, 0 };
1831 int gc_mode, gc_type;
David Brazdil0f672f62019-12-10 10:32:29 +00001832 int err = 0;
Olivier Deprez157378f2022-04-04 15:47:50 +02001833 int type;
1834
1835 /* Force block allocation for GC */
1836 MAIN_SECS(sbi) -= secs;
1837 start = MAIN_SECS(sbi) * sbi->segs_per_sec;
1838 end = MAIN_SEGS(sbi) - 1;
1839
1840 mutex_lock(&DIRTY_I(sbi)->seglist_lock);
1841 for (gc_mode = 0; gc_mode < MAX_GC_POLICY; gc_mode++)
1842 if (SIT_I(sbi)->last_victim[gc_mode] >= start)
1843 SIT_I(sbi)->last_victim[gc_mode] = 0;
1844
1845 for (gc_type = BG_GC; gc_type <= FG_GC; gc_type++)
1846 if (sbi->next_victim_seg[gc_type] >= start)
1847 sbi->next_victim_seg[gc_type] = NULL_SEGNO;
1848 mutex_unlock(&DIRTY_I(sbi)->seglist_lock);
David Brazdil0f672f62019-12-10 10:32:29 +00001849
1850 /* Move out cursegs from the target range */
Olivier Deprez157378f2022-04-04 15:47:50 +02001851 for (type = CURSEG_HOT_DATA; type < NR_CURSEG_PERSIST_TYPE; type++)
1852 f2fs_allocate_segment_for_resize(sbi, type, start, end);
David Brazdil0f672f62019-12-10 10:32:29 +00001853
1854 /* do GC to move out valid blocks in the range */
1855 for (segno = start; segno <= end; segno += sbi->segs_per_sec) {
1856 struct gc_inode_list gc_list = {
1857 .ilist = LIST_HEAD_INIT(gc_list.ilist),
1858 .iroot = RADIX_TREE_INIT(gc_list.iroot, GFP_NOFS),
1859 };
1860
Olivier Deprez157378f2022-04-04 15:47:50 +02001861 do_garbage_collect(sbi, segno, &gc_list, FG_GC, true);
David Brazdil0f672f62019-12-10 10:32:29 +00001862 put_gc_inode(&gc_list);
1863
Olivier Deprez157378f2022-04-04 15:47:50 +02001864 if (!gc_only && get_valid_blocks(sbi, segno, true)) {
1865 err = -EAGAIN;
1866 goto out;
1867 }
1868 if (fatal_signal_pending(current)) {
1869 err = -ERESTARTSYS;
1870 goto out;
1871 }
David Brazdil0f672f62019-12-10 10:32:29 +00001872 }
Olivier Deprez157378f2022-04-04 15:47:50 +02001873 if (gc_only)
1874 goto out;
David Brazdil0f672f62019-12-10 10:32:29 +00001875
Olivier Deprez157378f2022-04-04 15:47:50 +02001876 err = f2fs_write_checkpoint(sbi, &cpc);
David Brazdil0f672f62019-12-10 10:32:29 +00001877 if (err)
Olivier Deprez157378f2022-04-04 15:47:50 +02001878 goto out;
David Brazdil0f672f62019-12-10 10:32:29 +00001879
1880 next_inuse = find_next_inuse(FREE_I(sbi), end + 1, start);
1881 if (next_inuse <= end) {
1882 f2fs_err(sbi, "segno %u should be free but still inuse!",
1883 next_inuse);
1884 f2fs_bug_on(sbi, 1);
1885 }
Olivier Deprez157378f2022-04-04 15:47:50 +02001886out:
1887 MAIN_SECS(sbi) += secs;
David Brazdil0f672f62019-12-10 10:32:29 +00001888 return err;
1889}
1890
1891static void update_sb_metadata(struct f2fs_sb_info *sbi, int secs)
1892{
1893 struct f2fs_super_block *raw_sb = F2FS_RAW_SUPER(sbi);
Olivier Deprez157378f2022-04-04 15:47:50 +02001894 int section_count;
1895 int segment_count;
1896 int segment_count_main;
1897 long long block_count;
David Brazdil0f672f62019-12-10 10:32:29 +00001898 int segs = secs * sbi->segs_per_sec;
1899
Olivier Deprez157378f2022-04-04 15:47:50 +02001900 down_write(&sbi->sb_lock);
1901
1902 section_count = le32_to_cpu(raw_sb->section_count);
1903 segment_count = le32_to_cpu(raw_sb->segment_count);
1904 segment_count_main = le32_to_cpu(raw_sb->segment_count_main);
1905 block_count = le64_to_cpu(raw_sb->block_count);
1906
David Brazdil0f672f62019-12-10 10:32:29 +00001907 raw_sb->section_count = cpu_to_le32(section_count + secs);
1908 raw_sb->segment_count = cpu_to_le32(segment_count + segs);
1909 raw_sb->segment_count_main = cpu_to_le32(segment_count_main + segs);
1910 raw_sb->block_count = cpu_to_le64(block_count +
1911 (long long)segs * sbi->blocks_per_seg);
Olivier Deprez157378f2022-04-04 15:47:50 +02001912 if (f2fs_is_multi_device(sbi)) {
1913 int last_dev = sbi->s_ndevs - 1;
1914 int dev_segs =
1915 le32_to_cpu(raw_sb->devs[last_dev].total_segments);
1916
1917 raw_sb->devs[last_dev].total_segments =
1918 cpu_to_le32(dev_segs + segs);
1919 }
1920
1921 up_write(&sbi->sb_lock);
David Brazdil0f672f62019-12-10 10:32:29 +00001922}
1923
1924static void update_fs_metadata(struct f2fs_sb_info *sbi, int secs)
1925{
1926 int segs = secs * sbi->segs_per_sec;
Olivier Deprez157378f2022-04-04 15:47:50 +02001927 long long blks = (long long)segs * sbi->blocks_per_seg;
David Brazdil0f672f62019-12-10 10:32:29 +00001928 long long user_block_count =
1929 le64_to_cpu(F2FS_CKPT(sbi)->user_block_count);
1930
1931 SM_I(sbi)->segment_count = (int)SM_I(sbi)->segment_count + segs;
1932 MAIN_SEGS(sbi) = (int)MAIN_SEGS(sbi) + segs;
Olivier Deprez157378f2022-04-04 15:47:50 +02001933 MAIN_SECS(sbi) += secs;
David Brazdil0f672f62019-12-10 10:32:29 +00001934 FREE_I(sbi)->free_sections = (int)FREE_I(sbi)->free_sections + secs;
1935 FREE_I(sbi)->free_segments = (int)FREE_I(sbi)->free_segments + segs;
Olivier Deprez157378f2022-04-04 15:47:50 +02001936 F2FS_CKPT(sbi)->user_block_count = cpu_to_le64(user_block_count + blks);
1937
1938 if (f2fs_is_multi_device(sbi)) {
1939 int last_dev = sbi->s_ndevs - 1;
1940
1941 FDEV(last_dev).total_segments =
1942 (int)FDEV(last_dev).total_segments + segs;
1943 FDEV(last_dev).end_blk =
1944 (long long)FDEV(last_dev).end_blk + blks;
1945#ifdef CONFIG_BLK_DEV_ZONED
1946 FDEV(last_dev).nr_blkz = (int)FDEV(last_dev).nr_blkz +
1947 (int)(blks >> sbi->log_blocks_per_blkz);
1948#endif
1949 }
David Brazdil0f672f62019-12-10 10:32:29 +00001950}
1951
1952int f2fs_resize_fs(struct f2fs_sb_info *sbi, __u64 block_count)
1953{
1954 __u64 old_block_count, shrunk_blocks;
Olivier Deprez157378f2022-04-04 15:47:50 +02001955 struct cp_control cpc = { CP_RESIZE, 0, 0, 0 };
David Brazdil0f672f62019-12-10 10:32:29 +00001956 unsigned int secs;
David Brazdil0f672f62019-12-10 10:32:29 +00001957 int err = 0;
1958 __u32 rem;
1959
1960 old_block_count = le64_to_cpu(F2FS_RAW_SUPER(sbi)->block_count);
1961 if (block_count > old_block_count)
1962 return -EINVAL;
1963
Olivier Deprez157378f2022-04-04 15:47:50 +02001964 if (f2fs_is_multi_device(sbi)) {
1965 int last_dev = sbi->s_ndevs - 1;
1966 __u64 last_segs = FDEV(last_dev).total_segments;
1967
1968 if (block_count + last_segs * sbi->blocks_per_seg <=
1969 old_block_count)
1970 return -EINVAL;
1971 }
1972
David Brazdil0f672f62019-12-10 10:32:29 +00001973 /* new fs size should align to section size */
1974 div_u64_rem(block_count, BLKS_PER_SEC(sbi), &rem);
1975 if (rem)
1976 return -EINVAL;
1977
1978 if (block_count == old_block_count)
1979 return 0;
1980
1981 if (is_sbi_flag_set(sbi, SBI_NEED_FSCK)) {
1982 f2fs_err(sbi, "Should run fsck to repair first.");
1983 return -EFSCORRUPTED;
1984 }
1985
1986 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
1987 f2fs_err(sbi, "Checkpoint should be enabled.");
1988 return -EINVAL;
1989 }
1990
David Brazdil0f672f62019-12-10 10:32:29 +00001991 shrunk_blocks = old_block_count - block_count;
1992 secs = div_u64(shrunk_blocks, BLKS_PER_SEC(sbi));
Olivier Deprez157378f2022-04-04 15:47:50 +02001993
1994 /* stop other GC */
1995 if (!down_write_trylock(&sbi->gc_lock))
1996 return -EAGAIN;
1997
1998 /* stop CP to protect MAIN_SEC in free_segment_range */
1999 f2fs_lock_op(sbi);
2000
2001 spin_lock(&sbi->stat_lock);
2002 if (shrunk_blocks + valid_user_blocks(sbi) +
2003 sbi->current_reserved_blocks + sbi->unusable_block_count +
2004 F2FS_OPTION(sbi).root_reserved_blocks > sbi->user_block_count)
2005 err = -ENOSPC;
2006 spin_unlock(&sbi->stat_lock);
2007
2008 if (err)
2009 goto out_unlock;
2010
2011 err = free_segment_range(sbi, secs, true);
2012
2013out_unlock:
2014 f2fs_unlock_op(sbi);
2015 up_write(&sbi->gc_lock);
2016 if (err)
2017 return err;
2018
2019 set_sbi_flag(sbi, SBI_IS_RESIZEFS);
2020
2021 freeze_super(sbi->sb);
2022 down_write(&sbi->gc_lock);
2023 mutex_lock(&sbi->cp_mutex);
2024
David Brazdil0f672f62019-12-10 10:32:29 +00002025 spin_lock(&sbi->stat_lock);
2026 if (shrunk_blocks + valid_user_blocks(sbi) +
2027 sbi->current_reserved_blocks + sbi->unusable_block_count +
2028 F2FS_OPTION(sbi).root_reserved_blocks > sbi->user_block_count)
2029 err = -ENOSPC;
2030 else
2031 sbi->user_block_count -= shrunk_blocks;
2032 spin_unlock(&sbi->stat_lock);
David Brazdil0f672f62019-12-10 10:32:29 +00002033 if (err)
Olivier Deprez157378f2022-04-04 15:47:50 +02002034 goto out_err;
2035
2036 err = free_segment_range(sbi, secs, false);
2037 if (err)
2038 goto recover_out;
David Brazdil0f672f62019-12-10 10:32:29 +00002039
2040 update_sb_metadata(sbi, -secs);
2041
2042 err = f2fs_commit_super(sbi, false);
2043 if (err) {
2044 update_sb_metadata(sbi, secs);
Olivier Deprez157378f2022-04-04 15:47:50 +02002045 goto recover_out;
David Brazdil0f672f62019-12-10 10:32:29 +00002046 }
2047
2048 update_fs_metadata(sbi, -secs);
2049 clear_sbi_flag(sbi, SBI_IS_RESIZEFS);
Olivier Deprez0e641232021-09-23 10:07:05 +02002050 set_sbi_flag(sbi, SBI_IS_DIRTY);
Olivier Deprez0e641232021-09-23 10:07:05 +02002051
Olivier Deprez157378f2022-04-04 15:47:50 +02002052 err = f2fs_write_checkpoint(sbi, &cpc);
David Brazdil0f672f62019-12-10 10:32:29 +00002053 if (err) {
2054 update_fs_metadata(sbi, secs);
2055 update_sb_metadata(sbi, secs);
2056 f2fs_commit_super(sbi, false);
2057 }
Olivier Deprez157378f2022-04-04 15:47:50 +02002058recover_out:
David Brazdil0f672f62019-12-10 10:32:29 +00002059 if (err) {
2060 set_sbi_flag(sbi, SBI_NEED_FSCK);
2061 f2fs_err(sbi, "resize_fs failed, should run fsck to repair!");
2062
David Brazdil0f672f62019-12-10 10:32:29 +00002063 spin_lock(&sbi->stat_lock);
2064 sbi->user_block_count += shrunk_blocks;
2065 spin_unlock(&sbi->stat_lock);
2066 }
Olivier Deprez157378f2022-04-04 15:47:50 +02002067out_err:
2068 mutex_unlock(&sbi->cp_mutex);
2069 up_write(&sbi->gc_lock);
2070 thaw_super(sbi->sb);
David Brazdil0f672f62019-12-10 10:32:29 +00002071 clear_sbi_flag(sbi, SBI_IS_RESIZEFS);
David Brazdil0f672f62019-12-10 10:32:29 +00002072 return err;
2073}