blob: 6c996e39b59a0d999e9eae7bfd4097735e24af3e [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;
31 long wait_ms;
32
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090033 wait_ms = gc_th->min_sleep_time;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090034
35 do {
36 if (try_to_freeze())
37 continue;
38 else
39 wait_event_interruptible_timeout(*wq,
40 kthread_should_stop(),
41 msecs_to_jiffies(wait_ms));
42 if (kthread_should_stop())
43 break;
44
Changman Leed6212a52013-01-29 18:30:07 +090045 if (sbi->sb->s_writers.frozen >= SB_FREEZE_WRITE) {
Chao Yu88dd8932015-01-26 20:24:21 +080046 increase_sleep_time(gc_th, &wait_ms);
Changman Leed6212a52013-01-29 18:30:07 +090047 continue;
48 }
49
Chao Yu0f348022016-09-26 19:45:55 +080050#ifdef CONFIG_F2FS_FAULT_INJECTION
51 if (time_to_inject(sbi, FAULT_CHECKPOINT))
52 f2fs_stop_checkpoint(sbi, false);
53#endif
54
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090055 /*
56 * [GC triggering condition]
57 * 0. GC is not conducted currently.
58 * 1. There are enough dirty segments.
59 * 2. IO subsystem is idle by checking the # of writeback pages.
60 * 3. IO subsystem is idle by checking the # of requests in
61 * bdev's request list.
62 *
arter97e1c42042014-08-06 23:22:50 +090063 * Note) We have to avoid triggering GCs frequently.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090064 * Because it is possible that some segments can be
65 * invalidated soon after by user update or deletion.
66 * So, I'd like to wait some time to collect dirty segments.
67 */
68 if (!mutex_trylock(&sbi->gc_mutex))
69 continue;
70
71 if (!is_idle(sbi)) {
Chao Yu88dd8932015-01-26 20:24:21 +080072 increase_sleep_time(gc_th, &wait_ms);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090073 mutex_unlock(&sbi->gc_mutex);
74 continue;
75 }
76
77 if (has_enough_invalid_blocks(sbi))
Chao Yu88dd8932015-01-26 20:24:21 +080078 decrease_sleep_time(gc_th, &wait_ms);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090079 else
Chao Yu88dd8932015-01-26 20:24:21 +080080 increase_sleep_time(gc_th, &wait_ms);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090081
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +090082 stat_inc_bggc_count(sbi);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090083
Jaegeuk Kim43727522013-02-04 15:11:17 +090084 /* if return value is not zero, no victim was selected */
Jaegeuk Kim7702bdb2016-11-14 17:38:35 -080085 if (f2fs_gc(sbi, test_opt(sbi, FORCE_FG_GC), true))
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090086 wait_ms = gc_th->no_gc_sleep_time;
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +090087
Jaegeuk Kim84e42142015-10-13 10:00:53 -070088 trace_f2fs_background_gc(sbi->sb, wait_ms,
89 prefree_segments(sbi), free_segments(sbi));
90
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +090091 /* balancing f2fs's metadata periodically */
92 f2fs_balance_fs_bg(sbi);
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +090093
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090094 } while (!kthread_should_stop());
95 return 0;
96}
97
98int start_gc_thread(struct f2fs_sb_info *sbi)
99{
Namjae Jeon1042d602012-12-01 10:56:13 +0900100 struct f2fs_gc_kthread *gc_th;
Namjae Jeonec7b1f22013-02-02 23:52:28 +0900101 dev_t dev = sbi->sb->s_bdev->bd_dev;
Namjae Jeon7a267f82013-05-26 11:05:32 +0900102 int err = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900103
Chao Yu1ecc0c52016-09-23 21:30:09 +0800104 gc_th = f2fs_kmalloc(sbi, sizeof(struct f2fs_gc_kthread), GFP_KERNEL);
Namjae Jeon7a267f82013-05-26 11:05:32 +0900105 if (!gc_th) {
106 err = -ENOMEM;
107 goto out;
108 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900109
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900110 gc_th->min_sleep_time = DEF_GC_THREAD_MIN_SLEEP_TIME;
111 gc_th->max_sleep_time = DEF_GC_THREAD_MAX_SLEEP_TIME;
112 gc_th->no_gc_sleep_time = DEF_GC_THREAD_NOGC_SLEEP_TIME;
113
Namjae Jeond2dc0952013-08-04 23:10:15 +0900114 gc_th->gc_idle = 0;
115
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900116 sbi->gc_thread = gc_th;
117 init_waitqueue_head(&sbi->gc_thread->gc_wait_queue_head);
118 sbi->gc_thread->f2fs_gc_task = kthread_run(gc_thread_func, sbi,
Namjae Jeonec7b1f22013-02-02 23:52:28 +0900119 "f2fs_gc-%u:%u", MAJOR(dev), MINOR(dev));
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900120 if (IS_ERR(gc_th->f2fs_gc_task)) {
Namjae Jeon7a267f82013-05-26 11:05:32 +0900121 err = PTR_ERR(gc_th->f2fs_gc_task);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900122 kfree(gc_th);
Namjae Jeon25718422013-02-02 23:52:42 +0900123 sbi->gc_thread = NULL;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900124 }
Namjae Jeon7a267f82013-05-26 11:05:32 +0900125out:
126 return err;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900127}
128
129void stop_gc_thread(struct f2fs_sb_info *sbi)
130{
131 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
132 if (!gc_th)
133 return;
134 kthread_stop(gc_th->f2fs_gc_task);
135 kfree(gc_th);
136 sbi->gc_thread = NULL;
137}
138
Namjae Jeond2dc0952013-08-04 23:10:15 +0900139static int select_gc_type(struct f2fs_gc_kthread *gc_th, int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900140{
Namjae Jeond2dc0952013-08-04 23:10:15 +0900141 int gc_mode = (gc_type == BG_GC) ? GC_CB : GC_GREEDY;
142
143 if (gc_th && gc_th->gc_idle) {
144 if (gc_th->gc_idle == 1)
145 gc_mode = GC_CB;
146 else if (gc_th->gc_idle == 2)
147 gc_mode = GC_GREEDY;
148 }
149 return gc_mode;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900150}
151
152static void select_policy(struct f2fs_sb_info *sbi, int gc_type,
153 int type, struct victim_sel_policy *p)
154{
155 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
156
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900157 if (p->alloc_mode == SSR) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900158 p->gc_mode = GC_GREEDY;
159 p->dirty_segmap = dirty_i->dirty_segmap[type];
Jin Xua26b7c82013-09-05 12:45:26 +0800160 p->max_search = dirty_i->nr_dirty[type];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900161 p->ofs_unit = 1;
162 } else {
Namjae Jeond2dc0952013-08-04 23:10:15 +0900163 p->gc_mode = select_gc_type(sbi->gc_thread, gc_type);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900164 p->dirty_segmap = dirty_i->dirty_segmap[DIRTY];
Jin Xua26b7c82013-09-05 12:45:26 +0800165 p->max_search = dirty_i->nr_dirty[DIRTY];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900166 p->ofs_unit = sbi->segs_per_sec;
167 }
Jin Xua26b7c82013-09-05 12:45:26 +0800168
Hou Pengyange93b9862017-02-16 12:34:31 +0000169 /* we need to check every dirty segments in the FG_GC case */
170 if (gc_type != FG_GC && p->max_search > sbi->max_victim_search)
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +0900171 p->max_search = sbi->max_victim_search;
Jin Xua26b7c82013-09-05 12:45:26 +0800172
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900173 p->offset = sbi->last_victim[p->gc_mode];
174}
175
176static unsigned int get_max_cost(struct f2fs_sb_info *sbi,
177 struct victim_sel_policy *p)
178{
Jaegeuk Kimb7250d22013-02-05 13:19:28 +0900179 /* SSR allocates in a segment unit */
180 if (p->alloc_mode == SSR)
Chao Yu3519e3f2015-12-01 11:56:52 +0800181 return sbi->blocks_per_seg;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900182 if (p->gc_mode == GC_GREEDY)
Chao Yu3519e3f2015-12-01 11:56:52 +0800183 return sbi->blocks_per_seg * p->ofs_unit;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900184 else if (p->gc_mode == GC_CB)
185 return UINT_MAX;
186 else /* No other gc_mode */
187 return 0;
188}
189
190static unsigned int check_bg_victims(struct f2fs_sb_info *sbi)
191{
192 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900193 unsigned int secno;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900194
195 /*
196 * If the gc_type is FG_GC, we can select victim segments
197 * selected by background GC before.
198 * Those segments guarantee they have small valid blocks.
199 */
Jaegeuk Kim7cd85582014-09-23 11:23:01 -0700200 for_each_set_bit(secno, dirty_i->victim_secmap, MAIN_SECS(sbi)) {
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900201 if (sec_usage_check(sbi, secno))
Chao Yub65ee142014-08-04 10:10:07 +0800202 continue;
Hou Pengyange93b9862017-02-16 12:34:31 +0000203
204 if (no_fggc_candidate(sbi, secno))
205 continue;
206
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900207 clear_bit(secno, dirty_i->victim_secmap);
208 return secno * sbi->segs_per_sec;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900209 }
210 return NULL_SEGNO;
211}
212
213static unsigned int get_cb_cost(struct f2fs_sb_info *sbi, unsigned int segno)
214{
215 struct sit_info *sit_i = SIT_I(sbi);
216 unsigned int secno = GET_SECNO(sbi, segno);
217 unsigned int start = secno * sbi->segs_per_sec;
218 unsigned long long mtime = 0;
219 unsigned int vblocks;
220 unsigned char age = 0;
221 unsigned char u;
222 unsigned int i;
223
224 for (i = 0; i < sbi->segs_per_sec; i++)
225 mtime += get_seg_entry(sbi, start + i)->mtime;
226 vblocks = get_valid_blocks(sbi, segno, sbi->segs_per_sec);
227
228 mtime = div_u64(mtime, sbi->segs_per_sec);
229 vblocks = div_u64(vblocks, sbi->segs_per_sec);
230
231 u = (vblocks * 100) >> sbi->log_blocks_per_seg;
232
arter97e1c42042014-08-06 23:22:50 +0900233 /* Handle if the system time has changed by the user */
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900234 if (mtime < sit_i->min_mtime)
235 sit_i->min_mtime = mtime;
236 if (mtime > sit_i->max_mtime)
237 sit_i->max_mtime = mtime;
238 if (sit_i->max_mtime != sit_i->min_mtime)
239 age = 100 - div64_u64(100 * (mtime - sit_i->min_mtime),
240 sit_i->max_mtime - sit_i->min_mtime);
241
242 return UINT_MAX - ((100 * (100 - u) * age) / (100 + u));
243}
244
Hou Pengyangb9cd2062017-02-22 10:28:59 +0000245static unsigned int get_greedy_cost(struct f2fs_sb_info *sbi,
246 unsigned int segno)
247{
248 unsigned int valid_blocks =
249 get_valid_blocks(sbi, segno, sbi->segs_per_sec);
250
251 return IS_DATASEG(get_seg_entry(sbi, segno)->type) ?
252 valid_blocks * 2 : valid_blocks;
253}
254
Jin Xua57e5642013-09-13 08:38:54 +0800255static inline unsigned int get_gc_cost(struct f2fs_sb_info *sbi,
256 unsigned int segno, struct victim_sel_policy *p)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900257{
258 if (p->alloc_mode == SSR)
259 return get_seg_entry(sbi, segno)->ckpt_valid_blocks;
260
261 /* alloc_mode == LFS */
262 if (p->gc_mode == GC_GREEDY)
Hou Pengyangb9cd2062017-02-22 10:28:59 +0000263 return get_greedy_cost(sbi, segno);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900264 else
265 return get_cb_cost(sbi, segno);
266}
267
Fan Li688159b2016-02-03 16:21:57 +0800268static unsigned int count_bits(const unsigned long *addr,
269 unsigned int offset, unsigned int len)
270{
271 unsigned int end = offset + len, sum = 0;
272
273 while (offset < end) {
274 if (test_bit(offset++, addr))
275 ++sum;
276 }
277 return sum;
278}
279
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900280/*
Masanari Iida111d2492013-03-19 08:03:35 +0900281 * This function is called from two paths.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900282 * One is garbage collection and the other is SSR segment selection.
283 * When it is called during GC, it just gets a victim segment
284 * and it does not remove it from dirty seglist.
285 * When it is called from SSR segment selection, it finds a segment
286 * which has minimum valid blocks and removes it from dirty seglist.
287 */
288static int get_victim_by_default(struct f2fs_sb_info *sbi,
289 unsigned int *result, int gc_type, int type, char alloc_mode)
290{
291 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
292 struct victim_sel_policy p;
Sheng Yong3fa56502016-09-29 18:37:31 +0800293 unsigned int secno, last_victim;
Chao Yua43f7ec2015-10-05 22:19:24 +0800294 unsigned int last_segment = MAIN_SEGS(sbi);
Fan Li688159b2016-02-03 16:21:57 +0800295 unsigned int nsearched = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900296
Chao Yu210f41b2014-09-15 18:05:44 +0800297 mutex_lock(&dirty_i->seglist_lock);
298
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900299 p.alloc_mode = alloc_mode;
300 select_policy(sbi, gc_type, type, &p);
301
302 p.min_segno = NULL_SEGNO;
Sheng Yong3fa56502016-09-29 18:37:31 +0800303 p.min_cost = get_max_cost(sbi, &p);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900304
Chao Yu3342bb32015-10-05 22:20:40 +0800305 if (p.max_search == 0)
306 goto out;
307
Jaegeuk Kim4ce53772016-02-18 16:34:38 -0800308 last_victim = sbi->last_victim[p.gc_mode];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900309 if (p.alloc_mode == LFS && gc_type == FG_GC) {
310 p.min_segno = check_bg_victims(sbi);
311 if (p.min_segno != NULL_SEGNO)
312 goto got_it;
313 }
314
315 while (1) {
316 unsigned long cost;
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900317 unsigned int segno;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900318
Chao Yua43f7ec2015-10-05 22:19:24 +0800319 segno = find_next_bit(p.dirty_segmap, last_segment, p.offset);
320 if (segno >= last_segment) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900321 if (sbi->last_victim[p.gc_mode]) {
Chao Yua43f7ec2015-10-05 22:19:24 +0800322 last_segment = sbi->last_victim[p.gc_mode];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900323 sbi->last_victim[p.gc_mode] = 0;
324 p.offset = 0;
325 continue;
326 }
327 break;
328 }
Jin Xua57e5642013-09-13 08:38:54 +0800329
330 p.offset = segno + p.ofs_unit;
Fan Li688159b2016-02-03 16:21:57 +0800331 if (p.ofs_unit > 1) {
Jin Xua57e5642013-09-13 08:38:54 +0800332 p.offset -= segno % p.ofs_unit;
Fan Li688159b2016-02-03 16:21:57 +0800333 nsearched += count_bits(p.dirty_segmap,
334 p.offset - p.ofs_unit,
335 p.ofs_unit);
336 } else {
337 nsearched++;
338 }
339
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900340 secno = GET_SECNO(sbi, segno);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900341
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900342 if (sec_usage_check(sbi, secno))
Fan Li688159b2016-02-03 16:21:57 +0800343 goto next;
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900344 if (gc_type == BG_GC && test_bit(secno, dirty_i->victim_secmap))
Fan Li688159b2016-02-03 16:21:57 +0800345 goto next;
Hou Pengyange93b9862017-02-16 12:34:31 +0000346 if (gc_type == FG_GC && p.alloc_mode == LFS &&
347 no_fggc_candidate(sbi, secno))
348 goto next;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900349
350 cost = get_gc_cost(sbi, segno, &p);
351
352 if (p.min_cost > cost) {
353 p.min_segno = segno;
354 p.min_cost = cost;
Jin Xua57e5642013-09-13 08:38:54 +0800355 }
Fan Li688159b2016-02-03 16:21:57 +0800356next:
357 if (nsearched >= p.max_search) {
Jaegeuk Kim4ce53772016-02-18 16:34:38 -0800358 if (!sbi->last_victim[p.gc_mode] && segno <= last_victim)
359 sbi->last_victim[p.gc_mode] = last_victim + 1;
360 else
361 sbi->last_victim[p.gc_mode] = segno + 1;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900362 break;
363 }
364 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900365 if (p.min_segno != NULL_SEGNO) {
Namjae Jeonb2b34602013-06-01 16:20:26 +0900366got_it:
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900367 if (p.alloc_mode == LFS) {
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900368 secno = GET_SECNO(sbi, p.min_segno);
369 if (gc_type == FG_GC)
370 sbi->cur_victim_sec = secno;
371 else
372 set_bit(secno, dirty_i->victim_secmap);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900373 }
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900374 *result = (p.min_segno / p.ofs_unit) * p.ofs_unit;
Namjae Jeon8e46b3e2013-04-23 16:42:53 +0900375
376 trace_f2fs_get_victim(sbi->sb, type, gc_type, &p,
377 sbi->cur_victim_sec,
378 prefree_segments(sbi), free_segments(sbi));
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900379 }
Chao Yu3342bb32015-10-05 22:20:40 +0800380out:
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900381 mutex_unlock(&dirty_i->seglist_lock);
382
383 return (p.min_segno == NULL_SEGNO) ? 0 : 1;
384}
385
386static const struct victim_selection default_v_ops = {
387 .get_victim = get_victim_by_default,
388};
389
Changman Lee7dda2af2014-11-28 15:49:40 +0000390static struct inode *find_gc_inode(struct gc_inode_list *gc_list, nid_t ino)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900391{
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900392 struct inode_entry *ie;
393
Changman Lee7dda2af2014-11-28 15:49:40 +0000394 ie = radix_tree_lookup(&gc_list->iroot, ino);
395 if (ie)
396 return ie->inode;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900397 return NULL;
398}
399
Changman Lee7dda2af2014-11-28 15:49:40 +0000400static void add_gc_inode(struct gc_inode_list *gc_list, struct inode *inode)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900401{
Gu Zheng6cc4af52013-06-20 17:52:39 +0800402 struct inode_entry *new_ie;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900403
Changman Lee7dda2af2014-11-28 15:49:40 +0000404 if (inode == find_gc_inode(gc_list, inode->i_ino)) {
Gu Zheng6cc4af52013-06-20 17:52:39 +0800405 iput(inode);
406 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900407 }
Chao Yu06292072014-12-29 15:56:18 +0800408 new_ie = f2fs_kmem_cache_alloc(inode_entry_slab, GFP_NOFS);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900409 new_ie->inode = inode;
Chao Yuf28e5032015-01-23 20:37:53 +0800410
411 f2fs_radix_tree_insert(&gc_list->iroot, inode->i_ino, new_ie);
Changman Lee7dda2af2014-11-28 15:49:40 +0000412 list_add_tail(&new_ie->list, &gc_list->ilist);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900413}
414
Changman Lee7dda2af2014-11-28 15:49:40 +0000415static void put_gc_inode(struct gc_inode_list *gc_list)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900416{
417 struct inode_entry *ie, *next_ie;
Changman Lee7dda2af2014-11-28 15:49:40 +0000418 list_for_each_entry_safe(ie, next_ie, &gc_list->ilist, list) {
419 radix_tree_delete(&gc_list->iroot, ie->inode->i_ino);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900420 iput(ie->inode);
421 list_del(&ie->list);
Chao Yu06292072014-12-29 15:56:18 +0800422 kmem_cache_free(inode_entry_slab, ie);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900423 }
424}
425
426static int check_valid_map(struct f2fs_sb_info *sbi,
427 unsigned int segno, int offset)
428{
429 struct sit_info *sit_i = SIT_I(sbi);
430 struct seg_entry *sentry;
431 int ret;
432
433 mutex_lock(&sit_i->sentry_lock);
434 sentry = get_seg_entry(sbi, segno);
435 ret = f2fs_test_bit(offset, sentry->cur_valid_map);
436 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim43727522013-02-04 15:11:17 +0900437 return ret;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900438}
439
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900440/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900441 * This function compares node address got in summary with that in NAT.
442 * On validity, copy that node with cold status, otherwise (invalid node)
443 * ignore that.
444 */
Chao Yu718e53f2016-01-23 16:23:55 +0800445static void gc_node_segment(struct f2fs_sb_info *sbi,
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900446 struct f2fs_summary *sum, unsigned int segno, int gc_type)
447{
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900448 struct f2fs_summary *entry;
Jaegeuk Kim26d58592015-08-14 14:37:50 -0700449 block_t start_addr;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900450 int off;
Chao Yu7ea984b2016-08-27 00:14:31 +0800451 int phase = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900452
Jaegeuk Kim26d58592015-08-14 14:37:50 -0700453 start_addr = START_BLOCK(sbi, segno);
454
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900455next_step:
456 entry = sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900457
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900458 for (off = 0; off < sbi->blocks_per_seg; off++, entry++) {
459 nid_t nid = le32_to_cpu(entry->nid);
460 struct page *node_page;
Jaegeuk Kim26d58592015-08-14 14:37:50 -0700461 struct node_info ni;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900462
Jaegeuk Kim43727522013-02-04 15:11:17 +0900463 /* stop BG_GC if there is not enough free sections. */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700464 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0))
Chao Yu718e53f2016-01-23 16:23:55 +0800465 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900466
Jaegeuk Kim43727522013-02-04 15:11:17 +0900467 if (check_valid_map(sbi, segno, off) == 0)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900468 continue;
469
Chao Yu7ea984b2016-08-27 00:14:31 +0800470 if (phase == 0) {
471 ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), 1,
472 META_NAT, true);
473 continue;
474 }
475
476 if (phase == 1) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900477 ra_node_page(sbi, nid);
478 continue;
479 }
Chao Yu7ea984b2016-08-27 00:14:31 +0800480
481 /* phase == 2 */
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900482 node_page = get_node_page(sbi, nid);
483 if (IS_ERR(node_page))
484 continue;
485
Huang Ying9a01b562014-09-07 11:05:20 +0800486 /* block may become invalid during get_node_page */
487 if (check_valid_map(sbi, segno, off) == 0) {
488 f2fs_put_page(node_page, 1);
489 continue;
490 }
491
Jaegeuk Kim26d58592015-08-14 14:37:50 -0700492 get_node_info(sbi, nid, &ni);
493 if (ni.blk_addr != start_addr + off) {
494 f2fs_put_page(node_page, 1);
495 continue;
496 }
497
Chao Yuda011cc2016-04-27 21:40:15 +0800498 move_node_page(node_page, gc_type);
Changman Leee1235982014-12-23 08:37:39 +0900499 stat_inc_node_blk_count(sbi, 1, gc_type);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900500 }
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900501
Chao Yu7ea984b2016-08-27 00:14:31 +0800502 if (++phase < 3)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900503 goto next_step;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900504}
505
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900506/*
Jaegeuk Kim9af45ef2013-01-21 17:34:21 +0900507 * Calculate start block index indicating the given node offset.
508 * Be careful, caller should give this node offset only indicating direct node
509 * blocks. If any node offsets, which point the other types of node blocks such
510 * as indirect or double indirect node blocks, are given, it must be a caller's
511 * bug.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900512 */
Chao Yu81ca7352016-01-26 15:39:35 +0800513block_t start_bidx_of_node(unsigned int node_ofs, struct inode *inode)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900514{
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900515 unsigned int indirect_blks = 2 * NIDS_PER_BLOCK + 4;
516 unsigned int bidx;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900517
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900518 if (node_ofs == 0)
519 return 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900520
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900521 if (node_ofs <= 2) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900522 bidx = node_ofs - 1;
523 } else if (node_ofs <= indirect_blks) {
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900524 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900525 bidx = node_ofs - 2 - dec;
526 } else {
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900527 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900528 bidx = node_ofs - 5 - dec;
529 }
Chao Yu81ca7352016-01-26 15:39:35 +0800530 return bidx * ADDRS_PER_BLOCK + ADDRS_PER_INODE(inode);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900531}
532
Nicholas Krausec1079892015-06-30 21:37:21 -0400533static bool is_alive(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900534 struct node_info *dni, block_t blkaddr, unsigned int *nofs)
535{
536 struct page *node_page;
537 nid_t nid;
538 unsigned int ofs_in_node;
539 block_t source_blkaddr;
540
541 nid = le32_to_cpu(sum->nid);
542 ofs_in_node = le16_to_cpu(sum->ofs_in_node);
543
544 node_page = get_node_page(sbi, nid);
545 if (IS_ERR(node_page))
Nicholas Krausec1079892015-06-30 21:37:21 -0400546 return false;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900547
548 get_node_info(sbi, nid, dni);
549
550 if (sum->version != dni->version) {
551 f2fs_put_page(node_page, 1);
Nicholas Krausec1079892015-06-30 21:37:21 -0400552 return false;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900553 }
554
555 *nofs = ofs_of_node(node_page);
556 source_blkaddr = datablock_addr(node_page, ofs_in_node);
557 f2fs_put_page(node_page, 1);
558
559 if (source_blkaddr != blkaddr)
Nicholas Krausec1079892015-06-30 21:37:21 -0400560 return false;
561 return true;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900562}
563
Yunlei He20614712016-11-07 21:22:31 +0800564static void move_encrypted_block(struct inode *inode, block_t bidx,
565 unsigned int segno, int off)
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700566{
567 struct f2fs_io_info fio = {
568 .sbi = F2FS_I_SB(inode),
569 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500570 .op = REQ_OP_READ,
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600571 .op_flags = 0,
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700572 .encrypted_page = NULL,
573 };
574 struct dnode_of_data dn;
575 struct f2fs_summary sum;
576 struct node_info ni;
577 struct page *page;
Chao Yu4356e482016-02-23 17:52:43 +0800578 block_t newaddr;
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700579 int err;
580
581 /* do not read out */
Jaegeuk Kima56c7c62015-10-09 15:11:38 -0700582 page = f2fs_grab_cache_page(inode->i_mapping, bidx, false);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700583 if (!page)
584 return;
585
Yunlei He20614712016-11-07 21:22:31 +0800586 if (!check_valid_map(F2FS_I_SB(inode), segno, off))
587 goto out;
588
Chao Yu5fe45742017-01-07 18:50:26 +0800589 if (f2fs_is_atomic_file(inode))
590 goto out;
591
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700592 set_new_dnode(&dn, inode, NULL, NULL, 0);
593 err = get_dnode_of_data(&dn, bidx, LOOKUP_NODE);
594 if (err)
595 goto out;
596
Chao Yu08b39fb2015-10-08 13:27:34 +0800597 if (unlikely(dn.data_blkaddr == NULL_ADDR)) {
598 ClearPageUptodate(page);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700599 goto put_out;
Chao Yu08b39fb2015-10-08 13:27:34 +0800600 }
601
602 /*
603 * don't cache encrypted data into meta inode until previous dirty
604 * data were writebacked to avoid racing between GC and flush.
605 */
Jaegeuk Kimfec1d652016-01-20 23:43:51 +0800606 f2fs_wait_on_page_writeback(page, DATA, true);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700607
608 get_node_info(fio.sbi, dn.nid, &ni);
609 set_summary(&sum, dn.nid, dn.ofs_in_node, ni.version);
610
611 /* read page */
612 fio.page = page;
Chao Yu7a9d7542016-02-22 18:36:38 +0800613 fio.new_blkaddr = fio.old_blkaddr = dn.data_blkaddr;
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700614
Chao Yu4356e482016-02-23 17:52:43 +0800615 allocate_data_block(fio.sbi, NULL, fio.old_blkaddr, &newaddr,
616 &sum, CURSEG_COLD_DATA);
617
618 fio.encrypted_page = pagecache_get_page(META_MAPPING(fio.sbi), newaddr,
619 FGP_LOCK | FGP_CREAT, GFP_NOFS);
620 if (!fio.encrypted_page) {
621 err = -ENOMEM;
622 goto recover_block;
623 }
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700624
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700625 err = f2fs_submit_page_bio(&fio);
626 if (err)
627 goto put_page_out;
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700628
629 /* write page */
630 lock_page(fio.encrypted_page);
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700631
Chao Yu1563ac72016-07-03 22:05:12 +0800632 if (unlikely(fio.encrypted_page->mapping != META_MAPPING(fio.sbi))) {
Chao Yu4356e482016-02-23 17:52:43 +0800633 err = -EIO;
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700634 goto put_page_out;
Chao Yu4356e482016-02-23 17:52:43 +0800635 }
Chao Yu1563ac72016-07-03 22:05:12 +0800636 if (unlikely(!PageUptodate(fio.encrypted_page))) {
Chao Yu4356e482016-02-23 17:52:43 +0800637 err = -EIO;
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700638 goto put_page_out;
Chao Yu4356e482016-02-23 17:52:43 +0800639 }
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700640
Jaegeuk Kim6282adb2015-07-25 00:29:17 -0700641 set_page_dirty(fio.encrypted_page);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +0800642 f2fs_wait_on_page_writeback(fio.encrypted_page, DATA, true);
Jaegeuk Kim6282adb2015-07-25 00:29:17 -0700643 if (clear_page_dirty_for_io(fio.encrypted_page))
644 dec_page_count(fio.sbi, F2FS_DIRTY_META);
645
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700646 set_page_writeback(fio.encrypted_page);
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700647
648 /* allocate block address */
Jaegeuk Kimfec1d652016-01-20 23:43:51 +0800649 f2fs_wait_on_page_writeback(dn.node_page, NODE, true);
Chao Yu4356e482016-02-23 17:52:43 +0800650
Mike Christie04d328d2016-06-05 14:31:55 -0500651 fio.op = REQ_OP_WRITE;
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600652 fio.op_flags = REQ_SYNC;
Chao Yu4356e482016-02-23 17:52:43 +0800653 fio.new_blkaddr = newaddr;
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700654 f2fs_submit_page_mbio(&fio);
655
Chao Yuf28b3432016-02-24 17:16:47 +0800656 f2fs_update_data_blkaddr(&dn, newaddr);
Jaegeuk Kim91942322016-05-20 10:13:22 -0700657 set_inode_flag(inode, FI_APPEND_WRITE);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700658 if (page->index == 0)
Jaegeuk Kim91942322016-05-20 10:13:22 -0700659 set_inode_flag(inode, FI_FIRST_BLOCK_WRITTEN);
Jaegeuk Kim548aeda2015-07-13 17:44:14 -0700660put_page_out:
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700661 f2fs_put_page(fio.encrypted_page, 1);
Chao Yu4356e482016-02-23 17:52:43 +0800662recover_block:
663 if (err)
664 __f2fs_replace_block(fio.sbi, &sum, newaddr, fio.old_blkaddr,
665 true, true);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700666put_out:
667 f2fs_put_dnode(&dn);
668out:
669 f2fs_put_page(page, 1);
670}
671
Yunlei He20614712016-11-07 21:22:31 +0800672static void move_data_page(struct inode *inode, block_t bidx, int gc_type,
673 unsigned int segno, int off)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900674{
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700675 struct page *page;
676
Jaegeuk Kima56c7c62015-10-09 15:11:38 -0700677 page = get_lock_data_page(inode, bidx, true);
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700678 if (IS_ERR(page))
679 return;
Fan Li63a0b7cb2013-12-09 16:09:00 +0800680
Yunlei He20614712016-11-07 21:22:31 +0800681 if (!check_valid_map(F2FS_I_SB(inode), segno, off))
682 goto out;
683
Chao Yu5fe45742017-01-07 18:50:26 +0800684 if (f2fs_is_atomic_file(inode))
685 goto out;
686
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900687 if (gc_type == BG_GC) {
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900688 if (PageWriteback(page))
689 goto out;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900690 set_page_dirty(page);
691 set_cold_data(page);
692 } else {
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700693 struct f2fs_io_info fio = {
694 .sbi = F2FS_I_SB(inode),
695 .type = DATA,
Mike Christie04d328d2016-06-05 14:31:55 -0500696 .op = REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600697 .op_flags = REQ_SYNC,
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700698 .page = page,
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700699 .encrypted_page = NULL,
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700700 };
Chao Yu72e1c792016-07-03 22:05:13 +0800701 bool is_dirty = PageDirty(page);
702 int err;
703
704retry:
Jaegeuk Kim6282adb2015-07-25 00:29:17 -0700705 set_page_dirty(page);
Jaegeuk Kimfec1d652016-01-20 23:43:51 +0800706 f2fs_wait_on_page_writeback(page, DATA, true);
Chao Yu933439c2016-10-11 22:57:01 +0800707 if (clear_page_dirty_for_io(page)) {
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -0700708 inode_dec_dirty_pages(inode);
Chao Yu933439c2016-10-11 22:57:01 +0800709 remove_dirty_inode(inode);
710 }
Chao Yu72e1c792016-07-03 22:05:13 +0800711
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900712 set_cold_data(page);
Chao Yu72e1c792016-07-03 22:05:13 +0800713
714 err = do_write_data_page(&fio);
715 if (err == -ENOMEM && is_dirty) {
716 congestion_wait(BLK_RW_ASYNC, HZ/50);
717 goto retry;
718 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900719 }
720out:
721 f2fs_put_page(page, 1);
722}
723
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900724/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900725 * This function tries to get parent node of victim data block, and identifies
726 * data block validity. If the block is valid, copy that with cold status and
727 * modify parent node.
728 * If the parent node is not valid or the data block address is different,
729 * the victim data block is ignored.
730 */
Chao Yu718e53f2016-01-23 16:23:55 +0800731static void gc_data_segment(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Changman Lee7dda2af2014-11-28 15:49:40 +0000732 struct gc_inode_list *gc_list, unsigned int segno, int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900733{
734 struct super_block *sb = sbi->sb;
735 struct f2fs_summary *entry;
736 block_t start_addr;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900737 int off;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900738 int phase = 0;
739
740 start_addr = START_BLOCK(sbi, segno);
741
742next_step:
743 entry = sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900744
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900745 for (off = 0; off < sbi->blocks_per_seg; off++, entry++) {
746 struct page *data_page;
747 struct inode *inode;
748 struct node_info dni; /* dnode info for the data */
749 unsigned int ofs_in_node, nofs;
750 block_t start_bidx;
Chao Yu7ea984b2016-08-27 00:14:31 +0800751 nid_t nid = le32_to_cpu(entry->nid);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900752
Jaegeuk Kim43727522013-02-04 15:11:17 +0900753 /* stop BG_GC if there is not enough free sections. */
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700754 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0, 0))
Chao Yu718e53f2016-01-23 16:23:55 +0800755 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900756
Jaegeuk Kim43727522013-02-04 15:11:17 +0900757 if (check_valid_map(sbi, segno, off) == 0)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900758 continue;
759
760 if (phase == 0) {
Chao Yu7ea984b2016-08-27 00:14:31 +0800761 ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), 1,
762 META_NAT, true);
763 continue;
764 }
765
766 if (phase == 1) {
767 ra_node_page(sbi, nid);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900768 continue;
769 }
770
771 /* Get an inode by ino with checking validity */
Nicholas Krausec1079892015-06-30 21:37:21 -0400772 if (!is_alive(sbi, entry, &dni, start_addr + off, &nofs))
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900773 continue;
774
Chao Yu7ea984b2016-08-27 00:14:31 +0800775 if (phase == 2) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900776 ra_node_page(sbi, dni.ino);
777 continue;
778 }
779
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900780 ofs_in_node = le16_to_cpu(entry->ofs_in_node);
781
Chao Yu7ea984b2016-08-27 00:14:31 +0800782 if (phase == 3) {
Jaegeuk Kimd4686d562013-01-31 15:36:04 +0900783 inode = f2fs_iget(sb, dni.ino);
Chao Yub73e5282014-08-30 09:52:34 +0800784 if (IS_ERR(inode) || is_bad_inode(inode))
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900785 continue;
786
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700787 /* if encrypted inode, let's go phase 3 */
788 if (f2fs_encrypted_inode(inode) &&
789 S_ISREG(inode->i_mode)) {
790 add_gc_inode(gc_list, inode);
791 continue;
792 }
793
Chao Yu81ca7352016-01-26 15:39:35 +0800794 start_bidx = start_bidx_of_node(nofs, inode);
Jaegeuk Kim43f3eae2015-04-30 17:00:33 -0700795 data_page = get_read_data_page(inode,
Christoph Hellwig70246282016-07-19 11:28:41 +0200796 start_bidx + ofs_in_node, REQ_RAHEAD,
797 true);
Changman Lee31a32682014-11-27 16:03:08 +0900798 if (IS_ERR(data_page)) {
799 iput(inode);
800 continue;
801 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900802
803 f2fs_put_page(data_page, 0);
Changman Lee7dda2af2014-11-28 15:49:40 +0000804 add_gc_inode(gc_list, inode);
Changman Lee31a32682014-11-27 16:03:08 +0900805 continue;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900806 }
Changman Lee31a32682014-11-27 16:03:08 +0900807
Chao Yu7ea984b2016-08-27 00:14:31 +0800808 /* phase 4 */
Changman Lee7dda2af2014-11-28 15:49:40 +0000809 inode = find_gc_inode(gc_list, dni.ino);
Changman Lee31a32682014-11-27 16:03:08 +0900810 if (inode) {
Chao Yu82e0a5a2016-07-13 09:18:29 +0800811 struct f2fs_inode_info *fi = F2FS_I(inode);
812 bool locked = false;
813
814 if (S_ISREG(inode->i_mode)) {
815 if (!down_write_trylock(&fi->dio_rwsem[READ]))
816 continue;
817 if (!down_write_trylock(
818 &fi->dio_rwsem[WRITE])) {
819 up_write(&fi->dio_rwsem[READ]);
820 continue;
821 }
822 locked = true;
823 }
824
Chao Yu81ca7352016-01-26 15:39:35 +0800825 start_bidx = start_bidx_of_node(nofs, inode)
Jaegeuk Kimc879f902015-04-24 14:34:30 -0700826 + ofs_in_node;
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700827 if (f2fs_encrypted_inode(inode) && S_ISREG(inode->i_mode))
Yunlei He20614712016-11-07 21:22:31 +0800828 move_encrypted_block(inode, start_bidx, segno, off);
Jaegeuk Kim4375a332015-04-23 12:04:33 -0700829 else
Yunlei He20614712016-11-07 21:22:31 +0800830 move_data_page(inode, start_bidx, gc_type, segno, off);
Chao Yu82e0a5a2016-07-13 09:18:29 +0800831
832 if (locked) {
833 up_write(&fi->dio_rwsem[WRITE]);
834 up_write(&fi->dio_rwsem[READ]);
835 }
836
Changman Leee1235982014-12-23 08:37:39 +0900837 stat_inc_data_blk_count(sbi, 1, gc_type);
Changman Lee31a32682014-11-27 16:03:08 +0900838 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900839 }
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900840
Chao Yu7ea984b2016-08-27 00:14:31 +0800841 if (++phase < 5)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900842 goto next_step;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900843}
844
845static int __get_victim(struct f2fs_sb_info *sbi, unsigned int *victim,
Gu Zheng8a2d0ac2014-10-20 17:45:48 +0800846 int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900847{
848 struct sit_info *sit_i = SIT_I(sbi);
849 int ret;
Gu Zheng8a2d0ac2014-10-20 17:45:48 +0800850
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900851 mutex_lock(&sit_i->sentry_lock);
Gu Zheng8a2d0ac2014-10-20 17:45:48 +0800852 ret = DIRTY_I(sbi)->v_ops->get_victim(sbi, victim, gc_type,
853 NO_CHECK_TYPE, LFS);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900854 mutex_unlock(&sit_i->sentry_lock);
855 return ret;
856}
857
Chao Yu718e53f2016-01-23 16:23:55 +0800858static int do_garbage_collect(struct f2fs_sb_info *sbi,
859 unsigned int start_segno,
Changman Lee7dda2af2014-11-28 15:49:40 +0000860 struct gc_inode_list *gc_list, int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900861{
862 struct page *sum_page;
863 struct f2fs_summary_block *sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900864 struct blk_plug plug;
Chao Yu718e53f2016-01-23 16:23:55 +0800865 unsigned int segno = start_segno;
866 unsigned int end_segno = start_segno + sbi->segs_per_sec;
Chao Yu43ced842016-08-19 23:13:46 +0800867 int sec_freed = 0;
Chao Yu718e53f2016-01-23 16:23:55 +0800868 unsigned char type = IS_DATASEG(get_seg_entry(sbi, segno)->type) ?
869 SUM_TYPE_DATA : SUM_TYPE_NODE;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900870
Chao Yu718e53f2016-01-23 16:23:55 +0800871 /* readahead multi ssa blocks those have contiguous address */
872 if (sbi->segs_per_sec > 1)
873 ra_meta_pages(sbi, GET_SUM_BLOCK(sbi, segno),
874 sbi->segs_per_sec, META_SSA, true);
875
876 /* reference all summary page */
877 while (segno < end_segno) {
878 sum_page = get_sum_page(sbi, segno++);
879 unlock_page(sum_page);
880 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900881
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900882 blk_start_plug(&plug);
883
Chao Yu718e53f2016-01-23 16:23:55 +0800884 for (segno = start_segno; segno < end_segno; segno++) {
Jaegeuk Kimaa987272016-06-06 18:49:54 -0700885
Chao Yu718e53f2016-01-23 16:23:55 +0800886 /* find segment summary of victim */
887 sum_page = find_get_page(META_MAPPING(sbi),
888 GET_SUM_BLOCK(sbi, segno));
Chao Yu718e53f2016-01-23 16:23:55 +0800889 f2fs_put_page(sum_page, 0);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900890
Jaegeuk Kimde0dcc42016-10-12 13:38:41 -0700891 if (get_valid_blocks(sbi, segno, 1) == 0 ||
892 !PageUptodate(sum_page) ||
893 unlikely(f2fs_cp_error(sbi)))
894 goto next;
895
Chao Yu718e53f2016-01-23 16:23:55 +0800896 sum = page_address(sum_page);
897 f2fs_bug_on(sbi, type != GET_SUM_TYPE((&sum->footer)));
Jaegeuk Kim9236cac2015-05-28 18:19:17 -0700898
Chao Yu718e53f2016-01-23 16:23:55 +0800899 /*
900 * this is to avoid deadlock:
901 * - lock_page(sum_page) - f2fs_replace_block
902 * - check_valid_map() - mutex_lock(sentry_lock)
903 * - mutex_lock(sentry_lock) - change_curseg()
904 * - lock_page(sum_page)
905 */
906
907 if (type == SUM_TYPE_NODE)
908 gc_node_segment(sbi, sum->entries, segno, gc_type);
909 else
910 gc_data_segment(sbi, sum->entries, gc_list, segno,
911 gc_type);
912
913 stat_inc_seg_count(sbi, type, gc_type);
Jaegeuk Kimf6fe2be2016-09-21 09:34:48 -0700914next:
Chao Yu718e53f2016-01-23 16:23:55 +0800915 f2fs_put_page(sum_page, 0);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900916 }
Chao Yu718e53f2016-01-23 16:23:55 +0800917
Chao Yuda011cc2016-04-27 21:40:15 +0800918 if (gc_type == FG_GC)
919 f2fs_submit_merged_bio(sbi,
920 (type == SUM_TYPE_NODE) ? NODE : DATA, WRITE);
Chao Yu718e53f2016-01-23 16:23:55 +0800921
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900922 blk_finish_plug(&plug);
923
Chao Yu43ced842016-08-19 23:13:46 +0800924 if (gc_type == FG_GC &&
925 get_valid_blocks(sbi, start_segno, sbi->segs_per_sec) == 0)
926 sec_freed = 1;
Chao Yu17d899d2016-02-22 18:32:13 +0800927
928 stat_inc_call_count(sbi->stat_info);
929
Chao Yu43ced842016-08-19 23:13:46 +0800930 return sec_freed;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900931}
932
Jaegeuk Kim7702bdb2016-11-14 17:38:35 -0800933int f2fs_gc(struct f2fs_sb_info *sbi, bool sync, bool background)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900934{
Chao Yu718e53f2016-01-23 16:23:55 +0800935 unsigned int segno;
Chao Yud530d4d2015-10-05 22:22:44 +0800936 int gc_type = sync ? FG_GC : BG_GC;
Chao Yu43ced842016-08-19 23:13:46 +0800937 int sec_freed = 0;
Chao Yud530d4d2015-10-05 22:22:44 +0800938 int ret = -EINVAL;
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700939 struct cp_control cpc;
Changman Lee7dda2af2014-11-28 15:49:40 +0000940 struct gc_inode_list gc_list = {
941 .ilist = LIST_HEAD_INIT(gc_list.ilist),
Jaegeuk Kim769ec6e2014-12-03 20:47:26 -0800942 .iroot = RADIX_TREE_INIT(GFP_NOFS),
Changman Lee7dda2af2014-11-28 15:49:40 +0000943 };
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700944
Jaegeuk Kim119ee912015-01-29 11:45:33 -0800945 cpc.reason = __get_cp_reason(sbi);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900946gc_more:
Jaegeuk Kim6bacf522013-12-06 15:00:58 +0900947 if (unlikely(!(sbi->sb->s_flags & MS_ACTIVE)))
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900948 goto stop;
Chao Yu6d5a1492015-12-24 18:04:56 +0800949 if (unlikely(f2fs_cp_error(sbi))) {
950 ret = -EIO;
Jaegeuk Kim203681f2014-02-05 13:03:57 +0900951 goto stop;
Chao Yu6d5a1492015-12-24 18:04:56 +0800952 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900953
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700954 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, sec_freed, 0)) {
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900955 gc_type = FG_GC;
Jaegeuk Kim6e17bfb2016-01-23 22:00:57 +0800956 /*
957 * If there is no victim and no prefree segment but still not
958 * enough free sections, we should flush dent/node blocks and do
959 * garbage collections.
960 */
Yunlong Song77190e12017-02-21 20:43:48 +0800961 ret = write_checkpoint(sbi, &cpc);
962 if (ret)
963 goto stop;
Jaegeuk Kim7702bdb2016-11-14 17:38:35 -0800964 } else if (gc_type == BG_GC && !background) {
965 /* f2fs_balance_fs doesn't need to do BG_GC in critical path. */
966 goto stop;
Jaegeuk Kimd64f8042013-04-08 16:01:00 +0900967 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900968
Yunlei He05eeb112017-02-17 17:16:38 +0800969 if (!__get_victim(sbi, &segno, gc_type))
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900970 goto stop;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900971 ret = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900972
Chao Yu43ced842016-08-19 23:13:46 +0800973 if (do_garbage_collect(sbi, segno, &gc_list, gc_type) &&
974 gc_type == FG_GC)
Chao Yu45fe8492015-09-28 17:42:24 +0800975 sec_freed++;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900976
Jaegeuk Kim5ee52932015-08-15 22:06:08 -0700977 if (gc_type == FG_GC)
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900978 sbi->cur_victim_sec = NULL_SEGNO;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900979
Chao Yud530d4d2015-10-05 22:22:44 +0800980 if (!sync) {
Jaegeuk Kim7f3037a2016-09-01 12:02:51 -0700981 if (has_not_enough_free_secs(sbi, sec_freed, 0))
Chao Yud530d4d2015-10-05 22:22:44 +0800982 goto gc_more;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900983
Chao Yud530d4d2015-10-05 22:22:44 +0800984 if (gc_type == FG_GC)
Jaegeuk Kim2956e452016-09-21 09:28:06 -0700985 ret = write_checkpoint(sbi, &cpc);
Chao Yud530d4d2015-10-05 22:22:44 +0800986 }
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900987stop:
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900988 mutex_unlock(&sbi->gc_mutex);
989
Changman Lee7dda2af2014-11-28 15:49:40 +0000990 put_gc_inode(&gc_list);
Chao Yud530d4d2015-10-05 22:22:44 +0800991
992 if (sync)
993 ret = sec_freed ? 0 : -EAGAIN;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900994 return ret;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900995}
996
997void build_gc_manager(struct f2fs_sb_info *sbi)
998{
Hou Pengyange93b9862017-02-16 12:34:31 +0000999 u64 main_count, resv_count, ovp_count, blocks_per_sec;
1000
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001001 DIRTY_I(sbi)->v_ops = &default_v_ops;
Hou Pengyange93b9862017-02-16 12:34:31 +00001002
1003 /* threshold of # of valid blocks in a section for victims of FG_GC */
1004 main_count = SM_I(sbi)->main_segments << sbi->log_blocks_per_seg;
1005 resv_count = SM_I(sbi)->reserved_segments << sbi->log_blocks_per_seg;
1006 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
1007 blocks_per_sec = sbi->blocks_per_seg * sbi->segs_per_sec;
1008
1009 sbi->fggc_threshold = div_u64((main_count - ovp_count) * blocks_per_sec,
1010 (main_count - resv_count));
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09001011}