blob: bc9420ce22755700e9a8367be2b56747b8d90637 [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09002 * fs/f2fs/gc.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/fs.h>
12#include <linux/module.h>
13#include <linux/backing-dev.h>
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090014#include <linux/init.h>
15#include <linux/f2fs_fs.h>
16#include <linux/kthread.h>
17#include <linux/delay.h>
18#include <linux/freezer.h>
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090019
20#include "f2fs.h"
21#include "node.h"
22#include "segment.h"
23#include "gc.h"
Namjae Jeon8e46b3e2013-04-23 16:42:53 +090024#include <trace/events/f2fs.h>
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090025
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090026static int gc_thread_func(void *data)
27{
28 struct f2fs_sb_info *sbi = data;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090029 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090030 wait_queue_head_t *wq = &sbi->gc_thread->gc_wait_queue_head;
Chao Yub8c502b2017-08-07 23:12:46 +080031 unsigned int wait_ms;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090032
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090033 wait_ms = gc_th->min_sleep_time;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090034
Jaegeuk Kim1d7be272017-05-17 10:36:58 -070035 set_freezable();
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090036 do {
Jaegeuk Kim1d7be272017-05-17 10:36:58 -070037 wait_event_interruptible_timeout(*wq,
Jaegeuk Kimd9872a62017-08-06 22:09:00 -070038 kthread_should_stop() || freezing(current) ||
39 gc_th->gc_wake,
Jaegeuk Kim1d7be272017-05-17 10:36:58 -070040 msecs_to_jiffies(wait_ms));
41
Jaegeuk Kimd9872a62017-08-06 22:09:00 -070042 /* give it a try one time */
43 if (gc_th->gc_wake)
44 gc_th->gc_wake = 0;
45
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090046 if (try_to_freeze())
47 continue;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090048 if (kthread_should_stop())
49 break;
50
Changman Leed6212a52013-01-29 18:30:07 +090051 if (sbi->sb->s_writers.frozen >= SB_FREEZE_WRITE) {
Chao Yu88dd8932015-01-26 20:24:21 +080052 increase_sleep_time(gc_th, &wait_ms);
Changman Leed6212a52013-01-29 18:30:07 +090053 continue;
54 }
55
Chao Yu0f348022016-09-26 19:45:55 +080056#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yu55523512017-02-25 11:08:28 +080057 if (time_to_inject(sbi, FAULT_CHECKPOINT)) {
58 f2fs_show_injection_info(FAULT_CHECKPOINT);
Chao Yu0f348022016-09-26 19:45:55 +080059 f2fs_stop_checkpoint(sbi, false);
Chao Yu55523512017-02-25 11:08:28 +080060 }
Chao Yu0f348022016-09-26 19:45:55 +080061#endif
62
Chao Yudc6febb2017-07-22 08:52:23 +080063 if (!sb_start_write_trylock(sbi->sb))
64 continue;
65
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090066 /*
67 * [GC triggering condition]
68 * 0. GC is not conducted currently.
69 * 1. There are enough dirty segments.
70 * 2. IO subsystem is idle by checking the # of writeback pages.
71 * 3. IO subsystem is idle by checking the # of requests in
72 * bdev's request list.
73 *
arter97e1c42042014-08-06 23:22:50 +090074 * Note) We have to avoid triggering GCs frequently.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090075 * Because it is possible that some segments can be
76 * invalidated soon after by user update or deletion.
77 * So, I'd like to wait some time to collect dirty segments.
78 */
Jaegeuk Kimd9872a62017-08-06 22:09:00 -070079 if (gc_th->gc_urgent) {
80 wait_ms = gc_th->urgent_sleep_time;
Jaegeuk Kim69babac2018-02-26 09:19:47 -080081 mutex_lock(&sbi->gc_mutex);
Jaegeuk Kimd9872a62017-08-06 22:09:00 -070082 goto do_gc;
83 }
84
Jaegeuk Kim69babac2018-02-26 09:19:47 -080085 if (!mutex_trylock(&sbi->gc_mutex))
86 goto next;
87
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090088 if (!is_idle(sbi)) {
Chao Yu88dd8932015-01-26 20:24:21 +080089 increase_sleep_time(gc_th, &wait_ms);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090090 mutex_unlock(&sbi->gc_mutex);
Chao Yudc6febb2017-07-22 08:52:23 +080091 goto next;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090092 }
93
94 if (has_enough_invalid_blocks(sbi))
Chao Yu88dd8932015-01-26 20:24:21 +080095 decrease_sleep_time(gc_th, &wait_ms);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090096 else
Chao Yu88dd8932015-01-26 20:24:21 +080097 increase_sleep_time(gc_th, &wait_ms);
Jaegeuk Kimd9872a62017-08-06 22:09:00 -070098do_gc:
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +090099 stat_inc_bggc_count(sbi);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900100
Jaegeuk Kim43727522013-02-04 15:11:17 +0900101 /* if return value is not zero, no victim was selected */
Jaegeuk Kime066b832017-04-13 15:17:00 -0700102 if (f2fs_gc(sbi, test_opt(sbi, FORCE_FG_GC), true, NULL_SEGNO))
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900103 wait_ms = gc_th->no_gc_sleep_time;
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900104
Jaegeuk Kim84e42142015-10-13 10:00:53 -0700105 trace_f2fs_background_gc(sbi->sb, wait_ms,
106 prefree_segments(sbi), free_segments(sbi));
107
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +0900108 /* balancing f2fs's metadata periodically */
109 f2fs_balance_fs_bg(sbi);
Chao Yudc6febb2017-07-22 08:52:23 +0800110next:
111 sb_end_write(sbi->sb);
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900112
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900113 } while (!kthread_should_stop());
114 return 0;
115}
116
117int start_gc_thread(struct f2fs_sb_info *sbi)
118{
Namjae Jeon1042d602012-12-01 10:56:13 +0900119 struct f2fs_gc_kthread *gc_th;
Namjae Jeonec7b1f22013-02-02 23:52:28 +0900120 dev_t dev = sbi->sb->s_bdev->bd_dev;
Namjae Jeon7a267f82013-05-26 11:05:32 +0900121 int err = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900122
Chao Yu1ecc0c52016-09-23 21:30:09 +0800123 gc_th = f2fs_kmalloc(sbi, sizeof(struct f2fs_gc_kthread), GFP_KERNEL);
Namjae Jeon7a267f82013-05-26 11:05:32 +0900124 if (!gc_th) {
125 err = -ENOMEM;
126 goto out;
127 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900128
Jaegeuk Kimd9872a62017-08-06 22:09:00 -0700129 gc_th->urgent_sleep_time = DEF_GC_THREAD_URGENT_SLEEP_TIME;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900130 gc_th->min_sleep_time = DEF_GC_THREAD_MIN_SLEEP_TIME;
131 gc_th->max_sleep_time = DEF_GC_THREAD_MAX_SLEEP_TIME;
132 gc_th->no_gc_sleep_time = DEF_GC_THREAD_NOGC_SLEEP_TIME;
133
Namjae Jeond2dc0952013-08-04 23:10:15 +0900134 gc_th->gc_idle = 0;
Jaegeuk Kimd9872a62017-08-06 22:09:00 -0700135 gc_th->gc_urgent = 0;
136 gc_th->gc_wake= 0;
Namjae Jeond2dc0952013-08-04 23:10:15 +0900137
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900138 sbi->gc_thread = gc_th;
139 init_waitqueue_head(&sbi->gc_thread->gc_wait_queue_head);
140 sbi->gc_thread->f2fs_gc_task = kthread_run(gc_thread_func, sbi,
Namjae Jeonec7b1f22013-02-02 23:52:28 +0900141 "f2fs_gc-%u:%u", MAJOR(dev), MINOR(dev));
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900142 if (IS_ERR(gc_th->f2fs_gc_task)) {
Namjae Jeon7a267f82013-05-26 11:05:32 +0900143 err = PTR_ERR(gc_th->f2fs_gc_task);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900144 kfree(gc_th);
Namjae Jeon25718422013-02-02 23:52:42 +0900145 sbi->gc_thread = NULL;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900146 }
Namjae Jeon7a267f82013-05-26 11:05:32 +0900147out:
148 return err;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900149}
150
151void stop_gc_thread(struct f2fs_sb_info *sbi)
152{
153 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
154 if (!gc_th)
155 return;
156 kthread_stop(gc_th->f2fs_gc_task);
157 kfree(gc_th);
158 sbi->gc_thread = NULL;
159}
160
Namjae Jeond2dc0952013-08-04 23:10:15 +0900161static int select_gc_type(struct f2fs_gc_kthread *gc_th, int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900162{
Namjae Jeond2dc0952013-08-04 23:10:15 +0900163 int gc_mode = (gc_type == BG_GC) ? GC_CB : GC_GREEDY;
164
165 if (gc_th && gc_th->gc_idle) {
166 if (gc_th->gc_idle == 1)
167 gc_mode = GC_CB;
168 else if (gc_th->gc_idle == 2)
169 gc_mode = GC_GREEDY;
170 }
171 return gc_mode;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900172}
173
174static void select_policy(struct f2fs_sb_info *sbi, int gc_type,
175 int type, struct victim_sel_policy *p)
176{
177 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
178
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900179 if (p->alloc_mode == SSR) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900180 p->gc_mode = GC_GREEDY;
181 p->dirty_segmap = dirty_i->dirty_segmap[type];
Jin Xua26b7c82013-09-05 12:45:26 +0800182 p->max_search = dirty_i->nr_dirty[type];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900183 p->ofs_unit = 1;
184 } else {
Namjae Jeond2dc0952013-08-04 23:10:15 +0900185 p->gc_mode = select_gc_type(sbi->gc_thread, gc_type);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900186 p->dirty_segmap = dirty_i->dirty_segmap[DIRTY];
Jin Xua26b7c82013-09-05 12:45:26 +0800187 p->max_search = dirty_i->nr_dirty[DIRTY];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900188 p->ofs_unit = sbi->segs_per_sec;
189 }
Jin Xua26b7c82013-09-05 12:45:26 +0800190
Hou Pengyange93b9862017-02-16 12:34:31 +0000191 /* we need to check every dirty segments in the FG_GC case */
192 if (gc_type != FG_GC && p->max_search > sbi->max_victim_search)
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +0900193 p->max_search = sbi->max_victim_search;
Jin Xua26b7c82013-09-05 12:45:26 +0800194
Yunlong Songb94929d2018-01-29 11:37:45 +0800195 /* let's select beginning hot/small space first in no_heap mode*/
196 if (test_opt(sbi, NOHEAP) &&
197 (type == CURSEG_HOT_DATA || IS_NODESEG(type)))
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400198 p->offset = 0;
199 else
Jaegeuk Kime066b832017-04-13 15:17:00 -0700200 p->offset = SIT_I(sbi)->last_victim[p->gc_mode];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900201}
202
203static unsigned int get_max_cost(struct f2fs_sb_info *sbi,
204 struct victim_sel_policy *p)
205{
Jaegeuk Kimb7250d22013-02-05 13:19:28 +0900206 /* SSR allocates in a segment unit */
207 if (p->alloc_mode == SSR)
Chao Yu3519e3f2015-12-01 11:56:52 +0800208 return sbi->blocks_per_seg;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900209 if (p->gc_mode == GC_GREEDY)
Jaegeuk Kimc541a512017-03-25 00:03:02 -0700210 return 2 * sbi->blocks_per_seg * p->ofs_unit;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900211 else if (p->gc_mode == GC_CB)
212 return UINT_MAX;
213 else /* No other gc_mode */
214 return 0;
215}
216
217static unsigned int check_bg_victims(struct f2fs_sb_info *sbi)
218{
219 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900220 unsigned int secno;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900221
222 /*
223 * If the gc_type is FG_GC, we can select victim segments
224 * selected by background GC before.
225 * Those segments guarantee they have small valid blocks.
226 */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700227 for_each_set_bit(secno, dirty_i->victim_secmap, MAIN_SECS(sbi)) {
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900228 if (sec_usage_check(sbi, secno))
Chao Yub65ee142014-08-04 10:10:07 +0800229 continue;
Hou Pengyange93b9862017-02-16 12:34:31 +0000230
231 if (no_fggc_candidate(sbi, secno))
232 continue;
233
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900234 clear_bit(secno, dirty_i->victim_secmap);
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700235 return GET_SEG_FROM_SEC(sbi, secno);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900236 }
237 return NULL_SEGNO;
238}
239
240static unsigned int get_cb_cost(struct f2fs_sb_info *sbi, unsigned int segno)
241{
242 struct sit_info *sit_i = SIT_I(sbi);
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700243 unsigned int secno = GET_SEC_FROM_SEG(sbi, segno);
244 unsigned int start = GET_SEG_FROM_SEC(sbi, secno);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900245 unsigned long long mtime = 0;
246 unsigned int vblocks;
247 unsigned char age = 0;
248 unsigned char u;
249 unsigned int i;
250
251 for (i = 0; i < sbi->segs_per_sec; i++)
252 mtime += get_seg_entry(sbi, start + i)->mtime;
Jaegeuk Kim302bd342017-04-07 14:33:22 -0700253 vblocks = get_valid_blocks(sbi, segno, true);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900254
255 mtime = div_u64(mtime, sbi->segs_per_sec);
256 vblocks = div_u64(vblocks, sbi->segs_per_sec);
257
258 u = (vblocks * 100) >> sbi->log_blocks_per_seg;
259
arter97e1c42042014-08-06 23:22:50 +0900260 /* Handle if the system time has changed by the user */
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900261 if (mtime < sit_i->min_mtime)
262 sit_i->min_mtime = mtime;
263 if (mtime > sit_i->max_mtime)
264 sit_i->max_mtime = mtime;
265 if (sit_i->max_mtime != sit_i->min_mtime)
266 age = 100 - div64_u64(100 * (mtime - sit_i->min_mtime),
267 sit_i->max_mtime - sit_i->min_mtime);
268
269 return UINT_MAX - ((100 * (100 - u) * age) / (100 + u));
270}
271
Jin Xua57e5642013-09-13 08:38:54 +0800272static inline unsigned int get_gc_cost(struct f2fs_sb_info *sbi,
273 unsigned int segno, struct victim_sel_policy *p)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900274{
275 if (p->alloc_mode == SSR)
Yunlong Song2afce762017-09-04 11:10:18 +0800276 return get_seg_entry(sbi, segno)->ckpt_valid_blocks;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900277
278 /* alloc_mode == LFS */
279 if (p->gc_mode == GC_GREEDY)
Yunlong Song91f43822017-09-23 17:02:18 +0800280 return get_valid_blocks(sbi, segno, true);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900281 else
282 return get_cb_cost(sbi, segno);
283}
284
Fan Li688159b2016-02-03 16:21:57 +0800285static unsigned int count_bits(const unsigned long *addr,
286 unsigned int offset, unsigned int len)
287{
288 unsigned int end = offset + len, sum = 0;
289
290 while (offset < end) {
291 if (test_bit(offset++, addr))
292 ++sum;
293 }
294 return sum;
295}
296
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900297/*
Masanari Iida111d2492013-03-19 08:03:35 +0900298 * This function is called from two paths.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900299 * One is garbage collection and the other is SSR segment selection.
300 * When it is called during GC, it just gets a victim segment
301 * and it does not remove it from dirty seglist.
302 * When it is called from SSR segment selection, it finds a segment
303 * which has minimum valid blocks and removes it from dirty seglist.
304 */
305static int get_victim_by_default(struct f2fs_sb_info *sbi,
306 unsigned int *result, int gc_type, int type, char alloc_mode)
307{
308 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kime066b832017-04-13 15:17:00 -0700309 struct sit_info *sm = SIT_I(sbi);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900310 struct victim_sel_policy p;
Sheng Yong3fa56502016-09-29 18:37:31 +0800311 unsigned int secno, last_victim;
Chao Yua43f7ec2015-10-05 22:19:24 +0800312 unsigned int last_segment = MAIN_SEGS(sbi);
Fan Li688159b2016-02-03 16:21:57 +0800313 unsigned int nsearched = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900314
Chao Yu210f41b2014-09-15 18:05:44 +0800315 mutex_lock(&dirty_i->seglist_lock);
316
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900317 p.alloc_mode = alloc_mode;
318 select_policy(sbi, gc_type, type, &p);
319
320 p.min_segno = NULL_SEGNO;
Sheng Yong3fa56502016-09-29 18:37:31 +0800321 p.min_cost = get_max_cost(sbi, &p);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900322
Jaegeuk Kime066b832017-04-13 15:17:00 -0700323 if (*result != NULL_SEGNO) {
324 if (IS_DATASEG(get_seg_entry(sbi, *result)->type) &&
325 get_valid_blocks(sbi, *result, false) &&
326 !sec_usage_check(sbi, GET_SEC_FROM_SEG(sbi, *result)))
327 p.min_segno = *result;
328 goto out;
329 }
330
Chao Yu3342bb32015-10-05 22:20:40 +0800331 if (p.max_search == 0)
332 goto out;
333
Jaegeuk Kime066b832017-04-13 15:17:00 -0700334 last_victim = sm->last_victim[p.gc_mode];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900335 if (p.alloc_mode == LFS && gc_type == FG_GC) {
336 p.min_segno = check_bg_victims(sbi);
337 if (p.min_segno != NULL_SEGNO)
338 goto got_it;
339 }
340
341 while (1) {
342 unsigned long cost;
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900343 unsigned int segno;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900344
Chao Yua43f7ec2015-10-05 22:19:24 +0800345 segno = find_next_bit(p.dirty_segmap, last_segment, p.offset);
346 if (segno >= last_segment) {
Jaegeuk Kime066b832017-04-13 15:17:00 -0700347 if (sm->last_victim[p.gc_mode]) {
348 last_segment =
349 sm->last_victim[p.gc_mode];
350 sm->last_victim[p.gc_mode] = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900351 p.offset = 0;
352 continue;
353 }
354 break;
355 }
Jin Xua57e5642013-09-13 08:38:54 +0800356
357 p.offset = segno + p.ofs_unit;
Fan Li688159b2016-02-03 16:21:57 +0800358 if (p.ofs_unit > 1) {
Jin Xua57e5642013-09-13 08:38:54 +0800359 p.offset -= segno % p.ofs_unit;
Fan Li688159b2016-02-03 16:21:57 +0800360 nsearched += count_bits(p.dirty_segmap,
361 p.offset - p.ofs_unit,
362 p.ofs_unit);
363 } else {
364 nsearched++;
365 }
366
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700367 secno = GET_SEC_FROM_SEG(sbi, segno);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900368
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900369 if (sec_usage_check(sbi, secno))
Fan Li688159b2016-02-03 16:21:57 +0800370 goto next;
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900371 if (gc_type == BG_GC && test_bit(secno, dirty_i->victim_secmap))
Fan Li688159b2016-02-03 16:21:57 +0800372 goto next;
Hou Pengyange93b9862017-02-16 12:34:31 +0000373 if (gc_type == FG_GC && p.alloc_mode == LFS &&
374 no_fggc_candidate(sbi, secno))
375 goto next;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900376
377 cost = get_gc_cost(sbi, segno, &p);
378
379 if (p.min_cost > cost) {
380 p.min_segno = segno;
381 p.min_cost = cost;
Jin Xua57e5642013-09-13 08:38:54 +0800382 }
Fan Li688159b2016-02-03 16:21:57 +0800383next:
384 if (nsearched >= p.max_search) {
Jaegeuk Kime066b832017-04-13 15:17:00 -0700385 if (!sm->last_victim[p.gc_mode] && segno <= last_victim)
386 sm->last_victim[p.gc_mode] = last_victim + 1;
Jaegeuk Kim4ce53772016-02-18 16:34:38 -0800387 else
Jaegeuk Kime066b832017-04-13 15:17:00 -0700388 sm->last_victim[p.gc_mode] = segno + 1;
389 sm->last_victim[p.gc_mode] %= MAIN_SEGS(sbi);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900390 break;
391 }
392 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900393 if (p.min_segno != NULL_SEGNO) {
Namjae Jeonb2b34602013-06-01 16:20:26 +0900394got_it:
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900395 if (p.alloc_mode == LFS) {
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -0700396 secno = GET_SEC_FROM_SEG(sbi, p.min_segno);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900397 if (gc_type == FG_GC)
398 sbi->cur_victim_sec = secno;
399 else
400 set_bit(secno, dirty_i->victim_secmap);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900401 }
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900402 *result = (p.min_segno / p.ofs_unit) * p.ofs_unit;
Namjae Jeon8e46b3e2013-04-23 16:42:53 +0900403
404 trace_f2fs_get_victim(sbi->sb, type, gc_type, &p,
405 sbi->cur_victim_sec,
406 prefree_segments(sbi), free_segments(sbi));
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900407 }
Chao Yu3342bb32015-10-05 22:20:40 +0800408out:
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900409 mutex_unlock(&dirty_i->seglist_lock);
410
411 return (p.min_segno == NULL_SEGNO) ? 0 : 1;
412}
413
414static const struct victim_selection default_v_ops = {
415 .get_victim = get_victim_by_default,
416};
417
Changman Lee7dda2af2014-11-28 15:49:40 +0000418static struct inode *find_gc_inode(struct gc_inode_list *gc_list, nid_t ino)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900419{
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900420 struct inode_entry *ie;
421
Changman Lee7dda2af2014-11-28 15:49:40 +0000422 ie = radix_tree_lookup(&gc_list->iroot, ino);
423 if (ie)
424 return ie->inode;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900425 return NULL;
426}
427
Changman Lee7dda2af2014-11-28 15:49:40 +0000428static void add_gc_inode(struct gc_inode_list *gc_list, struct inode *inode)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900429{
Gu Zheng6cc4af52013-06-20 17:52:39 +0800430 struct inode_entry *new_ie;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900431
Changman Lee7dda2af2014-11-28 15:49:40 +0000432 if (inode == find_gc_inode(gc_list, inode->i_ino)) {
Gu Zheng6cc4af52013-06-20 17:52:39 +0800433 iput(inode);
434 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900435 }
Chao Yu06292072014-12-29 15:56:18 +0800436 new_ie = f2fs_kmem_cache_alloc(inode_entry_slab, GFP_NOFS);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900437 new_ie->inode = inode;
Chao Yuf28e5032015-01-23 20:37:53 +0800438
439 f2fs_radix_tree_insert(&gc_list->iroot, inode->i_ino, new_ie);
Changman Lee7dda2af2014-11-28 15:49:40 +0000440 list_add_tail(&new_ie->list, &gc_list->ilist);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900441}
442
Changman Lee7dda2af2014-11-28 15:49:40 +0000443static void put_gc_inode(struct gc_inode_list *gc_list)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900444{
445 struct inode_entry *ie, *next_ie;
Changman Lee7dda2af2014-11-28 15:49:40 +0000446 list_for_each_entry_safe(ie, next_ie, &gc_list->ilist, list) {
447 radix_tree_delete(&gc_list->iroot, ie->inode->i_ino);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900448 iput(ie->inode);
449 list_del(&ie->list);
Chao Yu06292072014-12-29 15:56:18 +0800450 kmem_cache_free(inode_entry_slab, ie);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900451 }
452}
453
454static int check_valid_map(struct f2fs_sb_info *sbi,
455 unsigned int segno, int offset)
456{
457 struct sit_info *sit_i = SIT_I(sbi);
458 struct seg_entry *sentry;
459 int ret;
460
Chao Yu3d26fa62017-10-30 17:49:53 +0800461 down_read(&sit_i->sentry_lock);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900462 sentry = get_seg_entry(sbi, segno);
463 ret = f2fs_test_bit(offset, sentry->cur_valid_map);
Chao Yu3d26fa62017-10-30 17:49:53 +0800464 up_read(&sit_i->sentry_lock);
Jaegeuk Kim43727522013-02-04 15:11:17 +0900465 return ret;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900466}
467
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900468/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900469 * This function compares node address got in summary with that in NAT.
470 * On validity, copy that node with cold status, otherwise (invalid node)
471 * ignore that.
472 */
Chao Yu718e53f2016-01-23 16:23:55 +0800473static void gc_node_segment(struct f2fs_sb_info *sbi,
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900474 struct f2fs_summary *sum, unsigned int segno, int gc_type)
475{
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900476 struct f2fs_summary *entry;
Jaegeuk Kim26d58592015-08-14 14:37:50 -0700477 block_t start_addr;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900478 int off;
Chao Yu7ea984b2016-08-27 00:14:31 +0800479 int phase = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900480
Jaegeuk Kim26d58592015-08-14 14:37:50 -0700481 start_addr = START_BLOCK(sbi, segno);
482
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900483next_step:
484 entry = sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900485
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900486 for (off = 0; off < sbi->blocks_per_seg; off++, entry++) {
487 nid_t nid = le32_to_cpu(entry->nid);
488 struct page *node_page;
Jaegeuk Kim26d58592015-08-14 14:37:50 -0700489 struct node_info ni;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900490
Jaegeuk Kim43727522013-02-04 15:11:17 +0900491 /* stop BG_GC if there is not enough free sections. */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700492 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0))
Chao Yu718e53f2016-01-23 16:23:55 +0800493 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900494
Jaegeuk Kim43727522013-02-04 15:11:17 +0900495 if (check_valid_map(sbi, segno, off) == 0)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900496 continue;
497
Chao Yu7ea984b2016-08-27 00:14:31 +0800498 if (phase == 0) {
499 ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), 1,
500 META_NAT, true);
501 continue;
502 }
503
504 if (phase == 1) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900505 ra_node_page(sbi, nid);
506 continue;
507 }
Chao Yu7ea984b2016-08-27 00:14:31 +0800508
509 /* phase == 2 */
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900510 node_page = get_node_page(sbi, nid);
511 if (IS_ERR(node_page))
512 continue;
513
Huang Ying9a01b562014-09-07 11:05:20 +0800514 /* block may become invalid during get_node_page */
515 if (check_valid_map(sbi, segno, off) == 0) {
516 f2fs_put_page(node_page, 1);
517 continue;
518 }
519
Jaegeuk Kim26d58592015-08-14 14:37:50 -0700520 get_node_info(sbi, nid, &ni);
521 if (ni.blk_addr != start_addr + off) {
522 f2fs_put_page(node_page, 1);
523 continue;
524 }
525
Chao Yuda011cc2016-04-27 21:40:15 +0800526 move_node_page(node_page, gc_type);
Changman Leee1235982014-12-23 08:37:39 +0900527 stat_inc_node_blk_count(sbi, 1, gc_type);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900528 }
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900529
Chao Yu7ea984b2016-08-27 00:14:31 +0800530 if (++phase < 3)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900531 goto next_step;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900532}
533
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900534/*
Jaegeuk Kim9af45ef2013-01-21 17:34:21 +0900535 * Calculate start block index indicating the given node offset.
536 * Be careful, caller should give this node offset only indicating direct node
537 * blocks. If any node offsets, which point the other types of node blocks such
538 * as indirect or double indirect node blocks, are given, it must be a caller's
539 * bug.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900540 */
Chao Yu81ca7352016-01-26 15:39:35 +0800541block_t start_bidx_of_node(unsigned int node_ofs, struct inode *inode)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900542{
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900543 unsigned int indirect_blks = 2 * NIDS_PER_BLOCK + 4;
544 unsigned int bidx;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900545
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900546 if (node_ofs == 0)
547 return 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900548
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900549 if (node_ofs <= 2) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900550 bidx = node_ofs - 1;
551 } else if (node_ofs <= indirect_blks) {
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900552 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900553 bidx = node_ofs - 2 - dec;
554 } else {
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900555 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900556 bidx = node_ofs - 5 - dec;
557 }
Chao Yu81ca7352016-01-26 15:39:35 +0800558 return bidx * ADDRS_PER_BLOCK + ADDRS_PER_INODE(inode);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900559}
560
Nicholas Krausec1079892015-06-30 21:37:21 -0400561static bool is_alive(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900562 struct node_info *dni, block_t blkaddr, unsigned int *nofs)
563{
564 struct page *node_page;
565 nid_t nid;
566 unsigned int ofs_in_node;
567 block_t source_blkaddr;
568
569 nid = le32_to_cpu(sum->nid);
570 ofs_in_node = le16_to_cpu(sum->ofs_in_node);
571
572 node_page = get_node_page(sbi, nid);
573 if (IS_ERR(node_page))
Nicholas Krausec1079892015-06-30 21:37:21 -0400574 return false;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900575
576 get_node_info(sbi, nid, dni);
577
578 if (sum->version != dni->version) {
Jaegeuk Kimc13ff372017-03-21 10:59:50 -0400579 f2fs_msg(sbi->sb, KERN_WARNING,
580 "%s: valid data with mismatched node version.",
581 __func__);
582 set_sbi_flag(sbi, SBI_NEED_FSCK);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900583 }
584
585 *nofs = ofs_of_node(node_page);
Chao Yu7a2af762017-07-19 00:19:06 +0800586 source_blkaddr = datablock_addr(NULL, node_page, ofs_in_node);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900587 f2fs_put_page(node_page, 1);
588
589 if (source_blkaddr != blkaddr)
Nicholas Krausec1079892015-06-30 21:37:21 -0400590 return false;
591 return true;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900592}
593
Jaegeuk Kimd4c759e2017-09-05 17:04:35 -0700594/*
595 * Move data block via META_MAPPING while keeping locked data page.
596 * This can be used to move blocks, aka LBAs, directly on disk.
597 */
598static void move_data_block(struct inode *inode, block_t bidx,
599 unsigned int segno, int off)
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700600{
601 struct f2fs_io_info fio = {
602 .sbi = F2FS_I_SB(inode),
Chao Yu39d787b2017-09-29 13:59:38 +0800603 .ino = inode->i_ino,
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700604 .type = DATA,
Jaegeuk Kima912b542017-05-10 11:18:25 -0700605 .temp = COLD,
Mike Christie04d328d2016-06-05 14:31:55 -0500606 .op = REQ_OP_READ,
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600607 .op_flags = 0,
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700608 .encrypted_page = NULL,
Chao Yufb830fc2017-05-19 23:37:01 +0800609 .in_list = false,
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700610 };
611 struct dnode_of_data dn;
612 struct f2fs_summary sum;
613 struct node_info ni;
614 struct page *page;
Chao Yu4356e482016-02-23 17:52:43 +0800615 block_t newaddr;
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700616 int err;
617
618 /* do not read out */
Jaegeuk Kima56c7c62015-10-09 15:11:38 -0700619 page = f2fs_grab_cache_page(inode->i_mapping, bidx, false);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700620 if (!page)
621 return;
622
Yunlei He20614712016-11-07 21:22:31 +0800623 if (!check_valid_map(F2FS_I_SB(inode), segno, off))
624 goto out;
625
Chao Yu5fe45742017-01-07 18:50:26 +0800626 if (f2fs_is_atomic_file(inode))
627 goto out;
628
Jaegeuk Kim1ad71a22017-12-07 16:25:39 -0800629 if (f2fs_is_pinned_file(inode)) {
630 f2fs_pin_file_control(inode, true);
631 goto out;
632 }
633
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700634 set_new_dnode(&dn, inode, NULL, NULL, 0);
635 err = get_dnode_of_data(&dn, bidx, LOOKUP_NODE);
636 if (err)
637 goto out;
638
Chao Yu08b39fb2015-10-08 13:27:34 +0800639 if (unlikely(dn.data_blkaddr == NULL_ADDR)) {
640 ClearPageUptodate(page);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700641 goto put_out;
Chao Yu08b39fb2015-10-08 13:27:34 +0800642 }
643
644 /*
645 * don't cache encrypted data into meta inode until previous dirty
646 * data were writebacked to avoid racing between GC and flush.
647 */
Jaegeuk Kimfec1d652016-01-20 23:43:51 +0800648 f2fs_wait_on_page_writeback(page, DATA, true);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700649
650 get_node_info(fio.sbi, dn.nid, &ni);
651 set_summary(&sum, dn.nid, dn.ofs_in_node, ni.version);
652
653 /* read page */
654 fio.page = page;
Chao Yu7a9d7542016-02-22 18:36:38 +0800655 fio.new_blkaddr = fio.old_blkaddr = dn.data_blkaddr;
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700656
Chao Yu4356e482016-02-23 17:52:43 +0800657 allocate_data_block(fio.sbi, NULL, fio.old_blkaddr, &newaddr,
Chao Yufb830fc2017-05-19 23:37:01 +0800658 &sum, CURSEG_COLD_DATA, NULL, false);
Chao Yu4356e482016-02-23 17:52:43 +0800659
Chao Yu01eccef2017-10-28 16:52:30 +0800660 fio.encrypted_page = f2fs_pagecache_get_page(META_MAPPING(fio.sbi),
661 newaddr, FGP_LOCK | FGP_CREAT, GFP_NOFS);
Chao Yu4356e482016-02-23 17:52:43 +0800662 if (!fio.encrypted_page) {
663 err = -ENOMEM;
664 goto recover_block;
665 }
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700666
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700667 err = f2fs_submit_page_bio(&fio);
668 if (err)
669 goto put_page_out;
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700670
671 /* write page */
672 lock_page(fio.encrypted_page);
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700673
Chao Yu1563ac72016-07-03 22:05:12 +0800674 if (unlikely(fio.encrypted_page->mapping != META_MAPPING(fio.sbi))) {
Chao Yu4356e482016-02-23 17:52:43 +0800675 err = -EIO;
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700676 goto put_page_out;
Chao Yu4356e482016-02-23 17:52:43 +0800677 }
Chao Yu1563ac72016-07-03 22:05:12 +0800678 if (unlikely(!PageUptodate(fio.encrypted_page))) {
Chao Yu4356e482016-02-23 17:52:43 +0800679 err = -EIO;
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700680 goto put_page_out;
Chao Yu4356e482016-02-23 17:52:43 +0800681 }
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700682
Jaegeuk Kim6282adb2015-07-25 00:29:17 -0700683 set_page_dirty(fio.encrypted_page);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +0800684 f2fs_wait_on_page_writeback(fio.encrypted_page, DATA, true);
Jaegeuk Kim6282adb2015-07-25 00:29:17 -0700685 if (clear_page_dirty_for_io(fio.encrypted_page))
686 dec_page_count(fio.sbi, F2FS_DIRTY_META);
687
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700688 set_page_writeback(fio.encrypted_page);
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700689
690 /* allocate block address */
Jaegeuk Kimfec1d652016-01-20 23:43:51 +0800691 f2fs_wait_on_page_writeback(dn.node_page, NODE, true);
Chao Yu4356e482016-02-23 17:52:43 +0800692
Mike Christie04d328d2016-06-05 14:31:55 -0500693 fio.op = REQ_OP_WRITE;
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600694 fio.op_flags = REQ_SYNC;
Chao Yu4356e482016-02-23 17:52:43 +0800695 fio.new_blkaddr = newaddr;
Sheng Yonga9d572c2018-01-17 12:11:31 +0800696 err = f2fs_submit_page_write(&fio);
697 if (err) {
698 if (PageWriteback(fio.encrypted_page))
699 end_page_writeback(fio.encrypted_page);
700 goto put_page_out;
701 }
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700702
Chao Yub0af6d42017-08-02 23:21:48 +0800703 f2fs_update_iostat(fio.sbi, FS_GC_DATA_IO, F2FS_BLKSIZE);
704
Chao Yuf28b3432016-02-24 17:16:47 +0800705 f2fs_update_data_blkaddr(&dn, newaddr);
Jaegeuk Kim91942322016-05-20 10:13:22 -0700706 set_inode_flag(inode, FI_APPEND_WRITE);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700707 if (page->index == 0)
Jaegeuk Kim91942322016-05-20 10:13:22 -0700708 set_inode_flag(inode, FI_FIRST_BLOCK_WRITTEN);
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700709put_page_out:
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700710 f2fs_put_page(fio.encrypted_page, 1);
Chao Yu4356e482016-02-23 17:52:43 +0800711recover_block:
712 if (err)
713 __f2fs_replace_block(fio.sbi, &sum, newaddr, fio.old_blkaddr,
714 true, true);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700715put_out:
716 f2fs_put_dnode(&dn);
717out:
718 f2fs_put_page(page, 1);
719}
720
Yunlei He20614712016-11-07 21:22:31 +0800721static void move_data_page(struct inode *inode, block_t bidx, int gc_type,
722 unsigned int segno, int off)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900723{
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700724 struct page *page;
725
Jaegeuk Kima56c7c62015-10-09 15:11:38 -0700726 page = get_lock_data_page(inode, bidx, true);
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700727 if (IS_ERR(page))
728 return;
Fan Li63a0b7cb2013-12-09 16:09:00 +0800729
Yunlei He20614712016-11-07 21:22:31 +0800730 if (!check_valid_map(F2FS_I_SB(inode), segno, off))
731 goto out;
732
Chao Yu5fe45742017-01-07 18:50:26 +0800733 if (f2fs_is_atomic_file(inode))
734 goto out;
Jaegeuk Kim1ad71a22017-12-07 16:25:39 -0800735 if (f2fs_is_pinned_file(inode)) {
736 if (gc_type == FG_GC)
737 f2fs_pin_file_control(inode, true);
738 goto out;
739 }
Chao Yu5fe45742017-01-07 18:50:26 +0800740
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900741 if (gc_type == BG_GC) {
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900742 if (PageWriteback(page))
743 goto out;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900744 set_page_dirty(page);
745 set_cold_data(page);
746 } else {
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700747 struct f2fs_io_info fio = {
748 .sbi = F2FS_I_SB(inode),
Chao Yu39d787b2017-09-29 13:59:38 +0800749 .ino = inode->i_ino,
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700750 .type = DATA,
Jaegeuk Kima912b542017-05-10 11:18:25 -0700751 .temp = COLD,
Mike Christie04d328d2016-06-05 14:31:55 -0500752 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600753 .op_flags = REQ_SYNC,
Hou Pengyange959c8f2017-04-25 12:45:13 +0000754 .old_blkaddr = NULL_ADDR,
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700755 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700756 .encrypted_page = NULL,
Jaegeuk Kimcc156202017-05-12 13:51:34 -0700757 .need_lock = LOCK_REQ,
Chao Yub0af6d42017-08-02 23:21:48 +0800758 .io_type = FS_GC_DATA_IO,
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700759 };
Chao Yu72e1c792016-07-03 22:05:13 +0800760 bool is_dirty = PageDirty(page);
761 int err;
762
763retry:
Jaegeuk Kim6282adb2015-07-25 00:29:17 -0700764 set_page_dirty(page);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +0800765 f2fs_wait_on_page_writeback(page, DATA, true);
Chao Yu933439c2016-10-11 22:57:01 +0800766 if (clear_page_dirty_for_io(page)) {
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -0700767 inode_dec_dirty_pages(inode);
Chao Yu933439c2016-10-11 22:57:01 +0800768 remove_dirty_inode(inode);
769 }
Chao Yu72e1c792016-07-03 22:05:13 +0800770
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900771 set_cold_data(page);
Chao Yu72e1c792016-07-03 22:05:13 +0800772
773 err = do_write_data_page(&fio);
774 if (err == -ENOMEM && is_dirty) {
775 congestion_wait(BLK_RW_ASYNC, HZ/50);
776 goto retry;
777 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900778 }
779out:
780 f2fs_put_page(page, 1);
781}
782
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900783/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900784 * This function tries to get parent node of victim data block, and identifies
785 * data block validity. If the block is valid, copy that with cold status and
786 * modify parent node.
787 * If the parent node is not valid or the data block address is different,
788 * the victim data block is ignored.
789 */
Chao Yu718e53f2016-01-23 16:23:55 +0800790static void gc_data_segment(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Changman Lee7dda2af2014-11-28 15:49:40 +0000791 struct gc_inode_list *gc_list, unsigned int segno, int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900792{
793 struct super_block *sb = sbi->sb;
794 struct f2fs_summary *entry;
795 block_t start_addr;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900796 int off;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900797 int phase = 0;
798
799 start_addr = START_BLOCK(sbi, segno);
800
801next_step:
802 entry = sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900803
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900804 for (off = 0; off < sbi->blocks_per_seg; off++, entry++) {
805 struct page *data_page;
806 struct inode *inode;
807 struct node_info dni; /* dnode info for the data */
808 unsigned int ofs_in_node, nofs;
809 block_t start_bidx;
Chao Yu7ea984b2016-08-27 00:14:31 +0800810 nid_t nid = le32_to_cpu(entry->nid);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900811
Jaegeuk Kim43727522013-02-04 15:11:17 +0900812 /* stop BG_GC if there is not enough free sections. */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700813 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0))
Chao Yu718e53f2016-01-23 16:23:55 +0800814 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900815
Jaegeuk Kim43727522013-02-04 15:11:17 +0900816 if (check_valid_map(sbi, segno, off) == 0)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900817 continue;
818
819 if (phase == 0) {
Chao Yu7ea984b2016-08-27 00:14:31 +0800820 ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), 1,
821 META_NAT, true);
822 continue;
823 }
824
825 if (phase == 1) {
826 ra_node_page(sbi, nid);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900827 continue;
828 }
829
830 /* Get an inode by ino with checking validity */
Nicholas Krausec1079892015-06-30 21:37:21 -0400831 if (!is_alive(sbi, entry, &dni, start_addr + off, &nofs))
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900832 continue;
833
Chao Yu7ea984b2016-08-27 00:14:31 +0800834 if (phase == 2) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900835 ra_node_page(sbi, dni.ino);
836 continue;
837 }
838
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900839 ofs_in_node = le16_to_cpu(entry->ofs_in_node);
840
Chao Yu7ea984b2016-08-27 00:14:31 +0800841 if (phase == 3) {
Jaegeuk Kimd4686d562013-01-31 15:36:04 +0900842 inode = f2fs_iget(sb, dni.ino);
Chao Yub73e5282014-08-30 09:52:34 +0800843 if (IS_ERR(inode) || is_bad_inode(inode))
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900844 continue;
845
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700846 /* if encrypted inode, let's go phase 3 */
Jaegeuk Kim19585932017-09-05 16:54:24 -0700847 if (f2fs_encrypted_file(inode)) {
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700848 add_gc_inode(gc_list, inode);
849 continue;
850 }
851
Chao Yubb066642017-11-03 10:21:05 +0800852 if (!down_write_trylock(
853 &F2FS_I(inode)->dio_rwsem[WRITE])) {
854 iput(inode);
855 continue;
856 }
857
Chao Yu81ca7352016-01-26 15:39:35 +0800858 start_bidx = start_bidx_of_node(nofs, inode);
Jaegeuk Kim43f3eae2015-04-30 17:00:33 -0700859 data_page = get_read_data_page(inode,
Christoph Hellwig70246282016-07-19 11:28:41 +0200860 start_bidx + ofs_in_node, REQ_RAHEAD,
861 true);
Chao Yubb066642017-11-03 10:21:05 +0800862 up_write(&F2FS_I(inode)->dio_rwsem[WRITE]);
Changman Lee31a32682014-11-27 16:03:08 +0900863 if (IS_ERR(data_page)) {
864 iput(inode);
865 continue;
866 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900867
868 f2fs_put_page(data_page, 0);
Changman Lee7dda2af2014-11-28 15:49:40 +0000869 add_gc_inode(gc_list, inode);
Changman Lee31a32682014-11-27 16:03:08 +0900870 continue;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900871 }
Changman Lee31a32682014-11-27 16:03:08 +0900872
Chao Yu7ea984b2016-08-27 00:14:31 +0800873 /* phase 4 */
Changman Lee7dda2af2014-11-28 15:49:40 +0000874 inode = find_gc_inode(gc_list, dni.ino);
Changman Lee31a32682014-11-27 16:03:08 +0900875 if (inode) {
Chao Yu82e0a5a2016-07-13 09:18:29 +0800876 struct f2fs_inode_info *fi = F2FS_I(inode);
877 bool locked = false;
878
879 if (S_ISREG(inode->i_mode)) {
880 if (!down_write_trylock(&fi->dio_rwsem[READ]))
881 continue;
882 if (!down_write_trylock(
883 &fi->dio_rwsem[WRITE])) {
884 up_write(&fi->dio_rwsem[READ]);
885 continue;
886 }
887 locked = true;
Chao Yu73ac2f42017-08-23 18:23:24 +0800888
889 /* wait for all inflight aio data */
890 inode_dio_wait(inode);
Chao Yu82e0a5a2016-07-13 09:18:29 +0800891 }
892
Chao Yu81ca7352016-01-26 15:39:35 +0800893 start_bidx = start_bidx_of_node(nofs, inode)
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700894 + ofs_in_node;
Jaegeuk Kim19585932017-09-05 16:54:24 -0700895 if (f2fs_encrypted_file(inode))
Jaegeuk Kimd4c759e2017-09-05 17:04:35 -0700896 move_data_block(inode, start_bidx, segno, off);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700897 else
Jaegeuk Kimd4c759e2017-09-05 17:04:35 -0700898 move_data_page(inode, start_bidx, gc_type,
899 segno, off);
Chao Yu82e0a5a2016-07-13 09:18:29 +0800900
901 if (locked) {
902 up_write(&fi->dio_rwsem[WRITE]);
903 up_write(&fi->dio_rwsem[READ]);
904 }
905
Changman Leee1235982014-12-23 08:37:39 +0900906 stat_inc_data_blk_count(sbi, 1, gc_type);
Changman Lee31a32682014-11-27 16:03:08 +0900907 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900908 }
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900909
Chao Yu7ea984b2016-08-27 00:14:31 +0800910 if (++phase < 5)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900911 goto next_step;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900912}
913
914static int __get_victim(struct f2fs_sb_info *sbi, unsigned int *victim,
Gu Zheng8a2d0ac2014-10-20 17:45:48 +0800915 int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900916{
917 struct sit_info *sit_i = SIT_I(sbi);
918 int ret;
Gu Zheng8a2d0ac2014-10-20 17:45:48 +0800919
Chao Yu3d26fa62017-10-30 17:49:53 +0800920 down_write(&sit_i->sentry_lock);
Gu Zheng8a2d0ac2014-10-20 17:45:48 +0800921 ret = DIRTY_I(sbi)->v_ops->get_victim(sbi, victim, gc_type,
922 NO_CHECK_TYPE, LFS);
Chao Yu3d26fa62017-10-30 17:49:53 +0800923 up_write(&sit_i->sentry_lock);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900924 return ret;
925}
926
Chao Yu718e53f2016-01-23 16:23:55 +0800927static int do_garbage_collect(struct f2fs_sb_info *sbi,
928 unsigned int start_segno,
Changman Lee7dda2af2014-11-28 15:49:40 +0000929 struct gc_inode_list *gc_list, int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900930{
931 struct page *sum_page;
932 struct f2fs_summary_block *sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900933 struct blk_plug plug;
Chao Yu718e53f2016-01-23 16:23:55 +0800934 unsigned int segno = start_segno;
935 unsigned int end_segno = start_segno + sbi->segs_per_sec;
Chao Yuc56f16d2017-08-11 18:00:15 +0800936 int seg_freed = 0;
Chao Yu718e53f2016-01-23 16:23:55 +0800937 unsigned char type = IS_DATASEG(get_seg_entry(sbi, segno)->type) ?
938 SUM_TYPE_DATA : SUM_TYPE_NODE;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900939
Chao Yu718e53f2016-01-23 16:23:55 +0800940 /* readahead multi ssa blocks those have contiguous address */
941 if (sbi->segs_per_sec > 1)
942 ra_meta_pages(sbi, GET_SUM_BLOCK(sbi, segno),
943 sbi->segs_per_sec, META_SSA, true);
944
945 /* reference all summary page */
946 while (segno < end_segno) {
947 sum_page = get_sum_page(sbi, segno++);
948 unlock_page(sum_page);
949 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900950
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900951 blk_start_plug(&plug);
952
Chao Yu718e53f2016-01-23 16:23:55 +0800953 for (segno = start_segno; segno < end_segno; segno++) {
Jaegeuk Kimaa987272016-06-06 18:49:54 -0700954
Chao Yu718e53f2016-01-23 16:23:55 +0800955 /* find segment summary of victim */
956 sum_page = find_get_page(META_MAPPING(sbi),
957 GET_SUM_BLOCK(sbi, segno));
Chao Yu718e53f2016-01-23 16:23:55 +0800958 f2fs_put_page(sum_page, 0);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900959
Jaegeuk Kim302bd342017-04-07 14:33:22 -0700960 if (get_valid_blocks(sbi, segno, false) == 0 ||
Jaegeuk Kimde0dcc42016-10-12 13:38:41 -0700961 !PageUptodate(sum_page) ||
962 unlikely(f2fs_cp_error(sbi)))
963 goto next;
964
Chao Yu718e53f2016-01-23 16:23:55 +0800965 sum = page_address(sum_page);
966 f2fs_bug_on(sbi, type != GET_SUM_TYPE((&sum->footer)));
Jaegeuk Kim9236cac2015-05-28 18:19:17 -0700967
Chao Yu718e53f2016-01-23 16:23:55 +0800968 /*
969 * this is to avoid deadlock:
970 * - lock_page(sum_page) - f2fs_replace_block
Chao Yu3d26fa62017-10-30 17:49:53 +0800971 * - check_valid_map() - down_write(sentry_lock)
972 * - down_read(sentry_lock) - change_curseg()
Chao Yu718e53f2016-01-23 16:23:55 +0800973 * - lock_page(sum_page)
974 */
Chao Yu718e53f2016-01-23 16:23:55 +0800975 if (type == SUM_TYPE_NODE)
976 gc_node_segment(sbi, sum->entries, segno, gc_type);
977 else
978 gc_data_segment(sbi, sum->entries, gc_list, segno,
979 gc_type);
980
981 stat_inc_seg_count(sbi, type, gc_type);
Chao Yuc56f16d2017-08-11 18:00:15 +0800982
983 if (gc_type == FG_GC &&
984 get_valid_blocks(sbi, segno, false) == 0)
985 seg_freed++;
Jaegeuk Kimf6fe2be2016-09-21 09:34:48 -0700986next:
Chao Yu718e53f2016-01-23 16:23:55 +0800987 f2fs_put_page(sum_page, 0);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900988 }
Chao Yu718e53f2016-01-23 16:23:55 +0800989
Chao Yuda011cc2016-04-27 21:40:15 +0800990 if (gc_type == FG_GC)
Jaegeuk Kimb9109b02017-05-10 11:28:38 -0700991 f2fs_submit_merged_write(sbi,
992 (type == SUM_TYPE_NODE) ? NODE : DATA);
Chao Yu718e53f2016-01-23 16:23:55 +0800993
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900994 blk_finish_plug(&plug);
995
Chao Yu17d899d2016-02-22 18:32:13 +0800996 stat_inc_call_count(sbi->stat_info);
997
Chao Yuc56f16d2017-08-11 18:00:15 +0800998 return seg_freed;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900999}
1000
Jaegeuk Kime066b832017-04-13 15:17:00 -07001001int f2fs_gc(struct f2fs_sb_info *sbi, bool sync,
1002 bool background, unsigned int segno)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001003{
Chao Yud530d4d2015-10-05 22:22:44 +08001004 int gc_type = sync ? FG_GC : BG_GC;
Chao Yuc56f16d2017-08-11 18:00:15 +08001005 int sec_freed = 0, seg_freed = 0, total_freed = 0;
1006 int ret = 0;
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001007 struct cp_control cpc;
Jaegeuk Kime066b832017-04-13 15:17:00 -07001008 unsigned int init_segno = segno;
Changman Lee7dda2af2014-11-28 15:49:40 +00001009 struct gc_inode_list gc_list = {
1010 .ilist = LIST_HEAD_INIT(gc_list.ilist),
Jaegeuk Kim769ec6e2014-12-03 20:47:26 -08001011 .iroot = RADIX_TREE_INIT(GFP_NOFS),
Changman Lee7dda2af2014-11-28 15:49:40 +00001012 };
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001013
Chao Yuc56f16d2017-08-11 18:00:15 +08001014 trace_f2fs_gc_begin(sbi->sb, sync, background,
1015 get_pages(sbi, F2FS_DIRTY_NODES),
1016 get_pages(sbi, F2FS_DIRTY_DENTS),
1017 get_pages(sbi, F2FS_DIRTY_IMETA),
1018 free_sections(sbi),
1019 free_segments(sbi),
1020 reserved_segments(sbi),
1021 prefree_segments(sbi));
1022
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001023 cpc.reason = __get_cp_reason(sbi);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001024gc_more:
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001025 if (unlikely(!(sbi->sb->s_flags & SB_ACTIVE))) {
Weichao Guoe5dbd952017-05-11 04:28:00 +08001026 ret = -EINVAL;
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001027 goto stop;
Weichao Guoe5dbd952017-05-11 04:28:00 +08001028 }
Chao Yu6d5a1492015-12-24 18:04:56 +08001029 if (unlikely(f2fs_cp_error(sbi))) {
1030 ret = -EIO;
Jaegeuk Kim203681f2014-02-05 13:03:57 +09001031 goto stop;
Chao Yu6d5a1492015-12-24 18:04:56 +08001032 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001033
Hou Pengyang19f4e682017-02-25 03:57:38 +00001034 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0)) {
Jaegeuk Kim6e17bfb2016-01-23 22:00:57 +08001035 /*
Hou Pengyang19f4e682017-02-25 03:57:38 +00001036 * For example, if there are many prefree_segments below given
1037 * threshold, we can make them free by checkpoint. Then, we
1038 * secure free segments which doesn't need fggc any more.
Jaegeuk Kim6e17bfb2016-01-23 22:00:57 +08001039 */
Jaegeuk Kim8fd5a372017-04-07 17:25:54 -07001040 if (prefree_segments(sbi)) {
1041 ret = write_checkpoint(sbi, &cpc);
1042 if (ret)
1043 goto stop;
1044 }
Hou Pengyang19f4e682017-02-25 03:57:38 +00001045 if (has_not_enough_free_secs(sbi, 0, 0))
1046 gc_type = FG_GC;
Jaegeuk Kimd64f8042013-04-08 16:01:00 +09001047 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001048
Hou Pengyang19f4e682017-02-25 03:57:38 +00001049 /* f2fs_balance_fs doesn't need to do BG_GC in critical path. */
Chao Yuc56f16d2017-08-11 18:00:15 +08001050 if (gc_type == BG_GC && !background) {
1051 ret = -EINVAL;
Hou Pengyang19f4e682017-02-25 03:57:38 +00001052 goto stop;
Chao Yuc56f16d2017-08-11 18:00:15 +08001053 }
1054 if (!__get_victim(sbi, &segno, gc_type)) {
1055 ret = -ENODATA;
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001056 goto stop;
Chao Yuc56f16d2017-08-11 18:00:15 +08001057 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001058
Chao Yuc56f16d2017-08-11 18:00:15 +08001059 seg_freed = do_garbage_collect(sbi, segno, &gc_list, gc_type);
1060 if (gc_type == FG_GC && seg_freed == sbi->segs_per_sec)
Chao Yu45fe8492015-09-28 17:42:24 +08001061 sec_freed++;
Chao Yuc56f16d2017-08-11 18:00:15 +08001062 total_freed += seg_freed;
Jaegeuk Kim43727522013-02-04 15:11:17 +09001063
Jaegeuk Kim5ee52932015-08-15 22:06:08 -07001064 if (gc_type == FG_GC)
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09001065 sbi->cur_victim_sec = NULL_SEGNO;
Jaegeuk Kim43727522013-02-04 15:11:17 +09001066
Chao Yud530d4d2015-10-05 22:22:44 +08001067 if (!sync) {
Jaegeuk Kime066b832017-04-13 15:17:00 -07001068 if (has_not_enough_free_secs(sbi, sec_freed, 0)) {
1069 segno = NULL_SEGNO;
Chao Yud530d4d2015-10-05 22:22:44 +08001070 goto gc_more;
Jaegeuk Kime066b832017-04-13 15:17:00 -07001071 }
Jaegeuk Kim43727522013-02-04 15:11:17 +09001072
Chao Yud530d4d2015-10-05 22:22:44 +08001073 if (gc_type == FG_GC)
Jaegeuk Kim2956e452016-09-21 09:28:06 -07001074 ret = write_checkpoint(sbi, &cpc);
Chao Yud530d4d2015-10-05 22:22:44 +08001075 }
Jaegeuk Kim408e9372013-01-03 17:55:52 +09001076stop:
Jaegeuk Kime066b832017-04-13 15:17:00 -07001077 SIT_I(sbi)->last_victim[ALLOC_NEXT] = 0;
1078 SIT_I(sbi)->last_victim[FLUSH_DEVICE] = init_segno;
Chao Yuc56f16d2017-08-11 18:00:15 +08001079
1080 trace_f2fs_gc_end(sbi->sb, ret, total_freed, sec_freed,
1081 get_pages(sbi, F2FS_DIRTY_NODES),
1082 get_pages(sbi, F2FS_DIRTY_DENTS),
1083 get_pages(sbi, F2FS_DIRTY_IMETA),
1084 free_sections(sbi),
1085 free_segments(sbi),
1086 reserved_segments(sbi),
1087 prefree_segments(sbi));
1088
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001089 mutex_unlock(&sbi->gc_mutex);
1090
Changman Lee7dda2af2014-11-28 15:49:40 +00001091 put_gc_inode(&gc_list);
Chao Yud530d4d2015-10-05 22:22:44 +08001092
1093 if (sync)
1094 ret = sec_freed ? 0 : -EAGAIN;
Jaegeuk Kim43727522013-02-04 15:11:17 +09001095 return ret;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001096}
1097
1098void build_gc_manager(struct f2fs_sb_info *sbi)
1099{
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07001100 u64 main_count, resv_count, ovp_count;
Hou Pengyange93b9862017-02-16 12:34:31 +00001101
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001102 DIRTY_I(sbi)->v_ops = &default_v_ops;
Hou Pengyange93b9862017-02-16 12:34:31 +00001103
1104 /* threshold of # of valid blocks in a section for victims of FG_GC */
1105 main_count = SM_I(sbi)->main_segments << sbi->log_blocks_per_seg;
1106 resv_count = SM_I(sbi)->reserved_segments << sbi->log_blocks_per_seg;
1107 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
Hou Pengyange93b9862017-02-16 12:34:31 +00001108
Jaegeuk Kim4ddb1a42017-04-07 15:08:17 -07001109 sbi->fggc_threshold = div64_u64((main_count - ovp_count) *
1110 BLKS_PER_SEC(sbi), (main_count - resv_count));
Jaegeuk Kim1ad71a22017-12-07 16:25:39 -08001111 sbi->gc_pin_file_threshold = DEF_GC_FAILED_PINNED_FILES;
Jaegeuk Kimd5793242017-04-18 15:03:15 -07001112
1113 /* give warm/cold data area from slower device */
1114 if (sbi->s_ndevs && sbi->segs_per_sec == 1)
1115 SIT_I(sbi)->last_victim[ALLOC_NEXT] =
1116 GET_SEGNO(sbi, FDEV(0).end_blk) + 1;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001117}