blob: b7ad1ec7e4ccb50227d1b48ce6d9ee7d26796f07 [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>
19#include <linux/blkdev.h>
20
21#include "f2fs.h"
22#include "node.h"
23#include "segment.h"
24#include "gc.h"
Namjae Jeon8e46b3e2013-04-23 16:42:53 +090025#include <trace/events/f2fs.h>
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090026
27static struct kmem_cache *winode_slab;
28
29static int gc_thread_func(void *data)
30{
31 struct f2fs_sb_info *sbi = data;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090032 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090033 wait_queue_head_t *wq = &sbi->gc_thread->gc_wait_queue_head;
34 long wait_ms;
35
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090036 wait_ms = gc_th->min_sleep_time;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090037
38 do {
39 if (try_to_freeze())
40 continue;
41 else
42 wait_event_interruptible_timeout(*wq,
43 kthread_should_stop(),
44 msecs_to_jiffies(wait_ms));
45 if (kthread_should_stop())
46 break;
47
Changman Leed6212a52013-01-29 18:30:07 +090048 if (sbi->sb->s_writers.frozen >= SB_FREEZE_WRITE) {
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090049 wait_ms = increase_sleep_time(gc_th, wait_ms);
Changman Leed6212a52013-01-29 18:30:07 +090050 continue;
51 }
52
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090053 /*
54 * [GC triggering condition]
55 * 0. GC is not conducted currently.
56 * 1. There are enough dirty segments.
57 * 2. IO subsystem is idle by checking the # of writeback pages.
58 * 3. IO subsystem is idle by checking the # of requests in
59 * bdev's request list.
60 *
61 * Note) We have to avoid triggering GCs too much frequently.
62 * Because it is possible that some segments can be
63 * invalidated soon after by user update or deletion.
64 * So, I'd like to wait some time to collect dirty segments.
65 */
66 if (!mutex_trylock(&sbi->gc_mutex))
67 continue;
68
69 if (!is_idle(sbi)) {
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090070 wait_ms = increase_sleep_time(gc_th, wait_ms);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090071 mutex_unlock(&sbi->gc_mutex);
72 continue;
73 }
74
75 if (has_enough_invalid_blocks(sbi))
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090076 wait_ms = decrease_sleep_time(gc_th, wait_ms);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090077 else
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090078 wait_ms = increase_sleep_time(gc_th, wait_ms);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090079
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +090080 stat_inc_bggc_count(sbi);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090081
Jaegeuk Kim43727522013-02-04 15:11:17 +090082 /* if return value is not zero, no victim was selected */
83 if (f2fs_gc(sbi))
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090084 wait_ms = gc_th->no_gc_sleep_time;
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +090085
Jaegeuk Kim4660f9c2013-10-24 14:19:18 +090086 /* balancing f2fs's metadata periodically */
87 f2fs_balance_fs_bg(sbi);
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +090088
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090089 } while (!kthread_should_stop());
90 return 0;
91}
92
93int start_gc_thread(struct f2fs_sb_info *sbi)
94{
Namjae Jeon1042d602012-12-01 10:56:13 +090095 struct f2fs_gc_kthread *gc_th;
Namjae Jeonec7b1f22013-02-02 23:52:28 +090096 dev_t dev = sbi->sb->s_bdev->bd_dev;
Namjae Jeon7a267f82013-05-26 11:05:32 +090097 int err = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090098
Changman Lee48600e42013-02-04 10:05:09 +090099 if (!test_opt(sbi, BG_GC))
Namjae Jeon7a267f82013-05-26 11:05:32 +0900100 goto out;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900101 gc_th = kmalloc(sizeof(struct f2fs_gc_kthread), GFP_KERNEL);
Namjae Jeon7a267f82013-05-26 11:05:32 +0900102 if (!gc_th) {
103 err = -ENOMEM;
104 goto out;
105 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900106
Namjae Jeonb59d0ba2013-08-04 23:09:40 +0900107 gc_th->min_sleep_time = DEF_GC_THREAD_MIN_SLEEP_TIME;
108 gc_th->max_sleep_time = DEF_GC_THREAD_MAX_SLEEP_TIME;
109 gc_th->no_gc_sleep_time = DEF_GC_THREAD_NOGC_SLEEP_TIME;
110
Namjae Jeond2dc0952013-08-04 23:10:15 +0900111 gc_th->gc_idle = 0;
112
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900113 sbi->gc_thread = gc_th;
114 init_waitqueue_head(&sbi->gc_thread->gc_wait_queue_head);
115 sbi->gc_thread->f2fs_gc_task = kthread_run(gc_thread_func, sbi,
Namjae Jeonec7b1f22013-02-02 23:52:28 +0900116 "f2fs_gc-%u:%u", MAJOR(dev), MINOR(dev));
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900117 if (IS_ERR(gc_th->f2fs_gc_task)) {
Namjae Jeon7a267f82013-05-26 11:05:32 +0900118 err = PTR_ERR(gc_th->f2fs_gc_task);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900119 kfree(gc_th);
Namjae Jeon25718422013-02-02 23:52:42 +0900120 sbi->gc_thread = NULL;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900121 }
Namjae Jeon7a267f82013-05-26 11:05:32 +0900122
123out:
124 return err;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900125}
126
127void stop_gc_thread(struct f2fs_sb_info *sbi)
128{
129 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
130 if (!gc_th)
131 return;
132 kthread_stop(gc_th->f2fs_gc_task);
133 kfree(gc_th);
134 sbi->gc_thread = NULL;
135}
136
Namjae Jeond2dc0952013-08-04 23:10:15 +0900137static int select_gc_type(struct f2fs_gc_kthread *gc_th, int gc_type)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900138{
Namjae Jeond2dc0952013-08-04 23:10:15 +0900139 int gc_mode = (gc_type == BG_GC) ? GC_CB : GC_GREEDY;
140
141 if (gc_th && gc_th->gc_idle) {
142 if (gc_th->gc_idle == 1)
143 gc_mode = GC_CB;
144 else if (gc_th->gc_idle == 2)
145 gc_mode = GC_GREEDY;
146 }
147 return gc_mode;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900148}
149
150static void select_policy(struct f2fs_sb_info *sbi, int gc_type,
151 int type, struct victim_sel_policy *p)
152{
153 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
154
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900155 if (p->alloc_mode == SSR) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900156 p->gc_mode = GC_GREEDY;
157 p->dirty_segmap = dirty_i->dirty_segmap[type];
Jin Xua26b7c82013-09-05 12:45:26 +0800158 p->max_search = dirty_i->nr_dirty[type];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900159 p->ofs_unit = 1;
160 } else {
Namjae Jeond2dc0952013-08-04 23:10:15 +0900161 p->gc_mode = select_gc_type(sbi->gc_thread, gc_type);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900162 p->dirty_segmap = dirty_i->dirty_segmap[DIRTY];
Jin Xua26b7c82013-09-05 12:45:26 +0800163 p->max_search = dirty_i->nr_dirty[DIRTY];
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900164 p->ofs_unit = sbi->segs_per_sec;
165 }
Jin Xua26b7c82013-09-05 12:45:26 +0800166
167 if (p->max_search > MAX_VICTIM_SEARCH)
168 p->max_search = MAX_VICTIM_SEARCH;
169
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900170 p->offset = sbi->last_victim[p->gc_mode];
171}
172
173static unsigned int get_max_cost(struct f2fs_sb_info *sbi,
174 struct victim_sel_policy *p)
175{
Jaegeuk Kimb7250d22013-02-05 13:19:28 +0900176 /* SSR allocates in a segment unit */
177 if (p->alloc_mode == SSR)
178 return 1 << sbi->log_blocks_per_seg;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900179 if (p->gc_mode == GC_GREEDY)
180 return (1 << sbi->log_blocks_per_seg) * p->ofs_unit;
181 else if (p->gc_mode == GC_CB)
182 return UINT_MAX;
183 else /* No other gc_mode */
184 return 0;
185}
186
187static unsigned int check_bg_victims(struct f2fs_sb_info *sbi)
188{
189 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900190 unsigned int hint = 0;
191 unsigned int secno;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900192
193 /*
194 * If the gc_type is FG_GC, we can select victim segments
195 * selected by background GC before.
196 * Those segments guarantee they have small valid blocks.
197 */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900198next:
199 secno = find_next_bit(dirty_i->victim_secmap, TOTAL_SECS(sbi), hint++);
200 if (secno < TOTAL_SECS(sbi)) {
201 if (sec_usage_check(sbi, secno))
202 goto next;
203 clear_bit(secno, dirty_i->victim_secmap);
204 return secno * sbi->segs_per_sec;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900205 }
206 return NULL_SEGNO;
207}
208
209static unsigned int get_cb_cost(struct f2fs_sb_info *sbi, unsigned int segno)
210{
211 struct sit_info *sit_i = SIT_I(sbi);
212 unsigned int secno = GET_SECNO(sbi, segno);
213 unsigned int start = secno * sbi->segs_per_sec;
214 unsigned long long mtime = 0;
215 unsigned int vblocks;
216 unsigned char age = 0;
217 unsigned char u;
218 unsigned int i;
219
220 for (i = 0; i < sbi->segs_per_sec; i++)
221 mtime += get_seg_entry(sbi, start + i)->mtime;
222 vblocks = get_valid_blocks(sbi, segno, sbi->segs_per_sec);
223
224 mtime = div_u64(mtime, sbi->segs_per_sec);
225 vblocks = div_u64(vblocks, sbi->segs_per_sec);
226
227 u = (vblocks * 100) >> sbi->log_blocks_per_seg;
228
229 /* Handle if the system time is changed by user */
230 if (mtime < sit_i->min_mtime)
231 sit_i->min_mtime = mtime;
232 if (mtime > sit_i->max_mtime)
233 sit_i->max_mtime = mtime;
234 if (sit_i->max_mtime != sit_i->min_mtime)
235 age = 100 - div64_u64(100 * (mtime - sit_i->min_mtime),
236 sit_i->max_mtime - sit_i->min_mtime);
237
238 return UINT_MAX - ((100 * (100 - u) * age) / (100 + u));
239}
240
Jin Xua57e5642013-09-13 08:38:54 +0800241static inline unsigned int get_gc_cost(struct f2fs_sb_info *sbi,
242 unsigned int segno, struct victim_sel_policy *p)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900243{
244 if (p->alloc_mode == SSR)
245 return get_seg_entry(sbi, segno)->ckpt_valid_blocks;
246
247 /* alloc_mode == LFS */
248 if (p->gc_mode == GC_GREEDY)
249 return get_valid_blocks(sbi, segno, sbi->segs_per_sec);
250 else
251 return get_cb_cost(sbi, segno);
252}
253
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900254/*
Masanari Iida111d2492013-03-19 08:03:35 +0900255 * This function is called from two paths.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900256 * One is garbage collection and the other is SSR segment selection.
257 * When it is called during GC, it just gets a victim segment
258 * and it does not remove it from dirty seglist.
259 * When it is called from SSR segment selection, it finds a segment
260 * which has minimum valid blocks and removes it from dirty seglist.
261 */
262static int get_victim_by_default(struct f2fs_sb_info *sbi,
263 unsigned int *result, int gc_type, int type, char alloc_mode)
264{
265 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
266 struct victim_sel_policy p;
Namjae Jeonb2b34602013-06-01 16:20:26 +0900267 unsigned int secno, max_cost;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900268 int nsearched = 0;
269
270 p.alloc_mode = alloc_mode;
271 select_policy(sbi, gc_type, type, &p);
272
273 p.min_segno = NULL_SEGNO;
Namjae Jeonb2b34602013-06-01 16:20:26 +0900274 p.min_cost = max_cost = get_max_cost(sbi, &p);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900275
276 mutex_lock(&dirty_i->seglist_lock);
277
278 if (p.alloc_mode == LFS && gc_type == FG_GC) {
279 p.min_segno = check_bg_victims(sbi);
280 if (p.min_segno != NULL_SEGNO)
281 goto got_it;
282 }
283
284 while (1) {
285 unsigned long cost;
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900286 unsigned int segno;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900287
288 segno = find_next_bit(p.dirty_segmap,
289 TOTAL_SEGS(sbi), p.offset);
290 if (segno >= TOTAL_SEGS(sbi)) {
291 if (sbi->last_victim[p.gc_mode]) {
292 sbi->last_victim[p.gc_mode] = 0;
293 p.offset = 0;
294 continue;
295 }
296 break;
297 }
Jin Xua57e5642013-09-13 08:38:54 +0800298
299 p.offset = segno + p.ofs_unit;
300 if (p.ofs_unit > 1)
301 p.offset -= segno % p.ofs_unit;
302
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900303 secno = GET_SECNO(sbi, segno);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900304
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900305 if (sec_usage_check(sbi, secno))
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900306 continue;
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900307 if (gc_type == BG_GC && test_bit(secno, dirty_i->victim_secmap))
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900308 continue;
309
310 cost = get_gc_cost(sbi, segno, &p);
311
312 if (p.min_cost > cost) {
313 p.min_segno = segno;
314 p.min_cost = cost;
Jin Xua57e5642013-09-13 08:38:54 +0800315 } else if (unlikely(cost == max_cost)) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900316 continue;
Jin Xua57e5642013-09-13 08:38:54 +0800317 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900318
Jin Xua26b7c82013-09-05 12:45:26 +0800319 if (nsearched++ >= p.max_search) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900320 sbi->last_victim[p.gc_mode] = segno;
321 break;
322 }
323 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900324 if (p.min_segno != NULL_SEGNO) {
Namjae Jeonb2b34602013-06-01 16:20:26 +0900325got_it:
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900326 if (p.alloc_mode == LFS) {
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900327 secno = GET_SECNO(sbi, p.min_segno);
328 if (gc_type == FG_GC)
329 sbi->cur_victim_sec = secno;
330 else
331 set_bit(secno, dirty_i->victim_secmap);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900332 }
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900333 *result = (p.min_segno / p.ofs_unit) * p.ofs_unit;
Namjae Jeon8e46b3e2013-04-23 16:42:53 +0900334
335 trace_f2fs_get_victim(sbi->sb, type, gc_type, &p,
336 sbi->cur_victim_sec,
337 prefree_segments(sbi), free_segments(sbi));
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900338 }
339 mutex_unlock(&dirty_i->seglist_lock);
340
341 return (p.min_segno == NULL_SEGNO) ? 0 : 1;
342}
343
344static const struct victim_selection default_v_ops = {
345 .get_victim = get_victim_by_default,
346};
347
348static struct inode *find_gc_inode(nid_t ino, struct list_head *ilist)
349{
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900350 struct inode_entry *ie;
351
Gu Zheng6cc4af52013-06-20 17:52:39 +0800352 list_for_each_entry(ie, ilist, list)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900353 if (ie->inode->i_ino == ino)
354 return ie->inode;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900355 return NULL;
356}
357
358static void add_gc_inode(struct inode *inode, struct list_head *ilist)
359{
Gu Zheng6cc4af52013-06-20 17:52:39 +0800360 struct inode_entry *new_ie;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900361
Gu Zheng6cc4af52013-06-20 17:52:39 +0800362 if (inode == find_gc_inode(inode->i_ino, ilist)) {
363 iput(inode);
364 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900365 }
Gu Zheng7bd59382013-10-22 14:52:26 +0800366
367 new_ie = f2fs_kmem_cache_alloc(winode_slab, GFP_NOFS);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900368 new_ie->inode = inode;
369 list_add_tail(&new_ie->list, ilist);
370}
371
372static void put_gc_inode(struct list_head *ilist)
373{
374 struct inode_entry *ie, *next_ie;
375 list_for_each_entry_safe(ie, next_ie, ilist, list) {
376 iput(ie->inode);
377 list_del(&ie->list);
378 kmem_cache_free(winode_slab, ie);
379 }
380}
381
382static int check_valid_map(struct f2fs_sb_info *sbi,
383 unsigned int segno, int offset)
384{
385 struct sit_info *sit_i = SIT_I(sbi);
386 struct seg_entry *sentry;
387 int ret;
388
389 mutex_lock(&sit_i->sentry_lock);
390 sentry = get_seg_entry(sbi, segno);
391 ret = f2fs_test_bit(offset, sentry->cur_valid_map);
392 mutex_unlock(&sit_i->sentry_lock);
Jaegeuk Kim43727522013-02-04 15:11:17 +0900393 return ret;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900394}
395
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900396/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900397 * This function compares node address got in summary with that in NAT.
398 * On validity, copy that node with cold status, otherwise (invalid node)
399 * ignore that.
400 */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900401static void gc_node_segment(struct f2fs_sb_info *sbi,
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900402 struct f2fs_summary *sum, unsigned int segno, int gc_type)
403{
404 bool initial = true;
405 struct f2fs_summary *entry;
406 int off;
407
408next_step:
409 entry = sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900410
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900411 for (off = 0; off < sbi->blocks_per_seg; off++, entry++) {
412 nid_t nid = le32_to_cpu(entry->nid);
413 struct page *node_page;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900414
Jaegeuk Kim43727522013-02-04 15:11:17 +0900415 /* stop BG_GC if there is not enough free sections. */
416 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0))
417 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900418
Jaegeuk Kim43727522013-02-04 15:11:17 +0900419 if (check_valid_map(sbi, segno, off) == 0)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900420 continue;
421
422 if (initial) {
423 ra_node_page(sbi, nid);
424 continue;
425 }
426 node_page = get_node_page(sbi, nid);
427 if (IS_ERR(node_page))
428 continue;
429
430 /* set page dirty and write it */
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900431 if (gc_type == FG_GC) {
Jin Xua5694692013-08-05 20:02:04 +0800432 f2fs_wait_on_page_writeback(node_page, NODE, true);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900433 set_page_dirty(node_page);
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900434 } else {
435 if (!PageWriteback(node_page))
436 set_page_dirty(node_page);
437 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900438 f2fs_put_page(node_page, 1);
439 stat_inc_node_blk_count(sbi, 1);
440 }
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900441
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900442 if (initial) {
443 initial = false;
444 goto next_step;
445 }
446
447 if (gc_type == FG_GC) {
448 struct writeback_control wbc = {
449 .sync_mode = WB_SYNC_ALL,
450 .nr_to_write = LONG_MAX,
451 .for_reclaim = 0,
452 };
453 sync_node_pages(sbi, 0, &wbc);
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900454
455 /*
456 * In the case of FG_GC, it'd be better to reclaim this victim
457 * completely.
458 */
459 if (get_valid_blocks(sbi, segno, 1) != 0)
460 goto next_step;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900461 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900462}
463
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900464/*
Jaegeuk Kim9af45ef2013-01-21 17:34:21 +0900465 * Calculate start block index indicating the given node offset.
466 * Be careful, caller should give this node offset only indicating direct node
467 * blocks. If any node offsets, which point the other types of node blocks such
468 * as indirect or double indirect node blocks, are given, it must be a caller's
469 * bug.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900470 */
Jaegeuk Kimde936532013-08-12 21:08:03 +0900471block_t start_bidx_of_node(unsigned int node_ofs, struct f2fs_inode_info *fi)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900472{
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900473 unsigned int indirect_blks = 2 * NIDS_PER_BLOCK + 4;
474 unsigned int bidx;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900475
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900476 if (node_ofs == 0)
477 return 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900478
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900479 if (node_ofs <= 2) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900480 bidx = node_ofs - 1;
481 } else if (node_ofs <= indirect_blks) {
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900482 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900483 bidx = node_ofs - 2 - dec;
484 } else {
Jaegeuk Kimce19a5d2012-12-26 12:03:22 +0900485 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900486 bidx = node_ofs - 5 - dec;
487 }
Jaegeuk Kimde936532013-08-12 21:08:03 +0900488 return bidx * ADDRS_PER_BLOCK + ADDRS_PER_INODE(fi);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900489}
490
491static int check_dnode(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
492 struct node_info *dni, block_t blkaddr, unsigned int *nofs)
493{
494 struct page *node_page;
495 nid_t nid;
496 unsigned int ofs_in_node;
497 block_t source_blkaddr;
498
499 nid = le32_to_cpu(sum->nid);
500 ofs_in_node = le16_to_cpu(sum->ofs_in_node);
501
502 node_page = get_node_page(sbi, nid);
503 if (IS_ERR(node_page))
Jaegeuk Kim43727522013-02-04 15:11:17 +0900504 return 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900505
506 get_node_info(sbi, nid, dni);
507
508 if (sum->version != dni->version) {
509 f2fs_put_page(node_page, 1);
Jaegeuk Kim43727522013-02-04 15:11:17 +0900510 return 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900511 }
512
513 *nofs = ofs_of_node(node_page);
514 source_blkaddr = datablock_addr(node_page, ofs_in_node);
515 f2fs_put_page(node_page, 1);
516
517 if (source_blkaddr != blkaddr)
Jaegeuk Kim43727522013-02-04 15:11:17 +0900518 return 0;
519 return 1;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900520}
521
522static void move_data_page(struct inode *inode, struct page *page, int gc_type)
523{
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900524 if (gc_type == BG_GC) {
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900525 if (PageWriteback(page))
526 goto out;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900527 set_page_dirty(page);
528 set_cold_data(page);
529 } else {
530 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900531
Jin Xua5694692013-08-05 20:02:04 +0800532 f2fs_wait_on_page_writeback(page, DATA, true);
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900533
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900534 if (clear_page_dirty_for_io(page) &&
535 S_ISDIR(inode->i_mode)) {
536 dec_page_count(sbi, F2FS_DIRTY_DENTS);
537 inode_dec_dirty_dents(inode);
538 }
539 set_cold_data(page);
540 do_write_data_page(page);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900541 clear_cold_data(page);
542 }
543out:
544 f2fs_put_page(page, 1);
545}
546
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +0900547/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900548 * This function tries to get parent node of victim data block, and identifies
549 * data block validity. If the block is valid, copy that with cold status and
550 * modify parent node.
551 * If the parent node is not valid or the data block address is different,
552 * the victim data block is ignored.
553 */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900554static void gc_data_segment(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900555 struct list_head *ilist, unsigned int segno, int gc_type)
556{
557 struct super_block *sb = sbi->sb;
558 struct f2fs_summary *entry;
559 block_t start_addr;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900560 int off;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900561 int phase = 0;
562
563 start_addr = START_BLOCK(sbi, segno);
564
565next_step:
566 entry = sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900567
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900568 for (off = 0; off < sbi->blocks_per_seg; off++, entry++) {
569 struct page *data_page;
570 struct inode *inode;
571 struct node_info dni; /* dnode info for the data */
572 unsigned int ofs_in_node, nofs;
573 block_t start_bidx;
574
Jaegeuk Kim43727522013-02-04 15:11:17 +0900575 /* stop BG_GC if there is not enough free sections. */
576 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0))
577 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900578
Jaegeuk Kim43727522013-02-04 15:11:17 +0900579 if (check_valid_map(sbi, segno, off) == 0)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900580 continue;
581
582 if (phase == 0) {
583 ra_node_page(sbi, le32_to_cpu(entry->nid));
584 continue;
585 }
586
587 /* Get an inode by ino with checking validity */
Jaegeuk Kim43727522013-02-04 15:11:17 +0900588 if (check_dnode(sbi, entry, &dni, start_addr + off, &nofs) == 0)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900589 continue;
590
591 if (phase == 1) {
592 ra_node_page(sbi, dni.ino);
593 continue;
594 }
595
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900596 ofs_in_node = le16_to_cpu(entry->ofs_in_node);
597
598 if (phase == 2) {
Jaegeuk Kimd4686d562013-01-31 15:36:04 +0900599 inode = f2fs_iget(sb, dni.ino);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900600 if (IS_ERR(inode))
601 continue;
602
Jaegeuk Kimde936532013-08-12 21:08:03 +0900603 start_bidx = start_bidx_of_node(nofs, F2FS_I(inode));
604
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900605 data_page = find_data_page(inode,
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900606 start_bidx + ofs_in_node, false);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900607 if (IS_ERR(data_page))
608 goto next_iput;
609
610 f2fs_put_page(data_page, 0);
611 add_gc_inode(inode, ilist);
612 } else {
613 inode = find_gc_inode(dni.ino, ilist);
614 if (inode) {
Jaegeuk Kimde936532013-08-12 21:08:03 +0900615 start_bidx = start_bidx_of_node(nofs,
616 F2FS_I(inode));
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900617 data_page = get_lock_data_page(inode,
618 start_bidx + ofs_in_node);
619 if (IS_ERR(data_page))
620 continue;
621 move_data_page(inode, data_page, gc_type);
622 stat_inc_data_blk_count(sbi, 1);
623 }
624 }
625 continue;
626next_iput:
627 iput(inode);
628 }
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900629
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900630 if (++phase < 4)
631 goto next_step;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900632
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900633 if (gc_type == FG_GC) {
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900634 f2fs_submit_bio(sbi, DATA, true);
Jaegeuk Kim4ebefc42013-03-31 13:49:18 +0900635
636 /*
637 * In the case of FG_GC, it'd be better to reclaim this victim
638 * completely.
639 */
640 if (get_valid_blocks(sbi, segno, 1) != 0) {
641 phase = 2;
642 goto next_step;
643 }
644 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900645}
646
647static int __get_victim(struct f2fs_sb_info *sbi, unsigned int *victim,
648 int gc_type, int type)
649{
650 struct sit_info *sit_i = SIT_I(sbi);
651 int ret;
652 mutex_lock(&sit_i->sentry_lock);
653 ret = DIRTY_I(sbi)->v_ops->get_victim(sbi, victim, gc_type, type, LFS);
654 mutex_unlock(&sit_i->sentry_lock);
655 return ret;
656}
657
Jaegeuk Kim43727522013-02-04 15:11:17 +0900658static void do_garbage_collect(struct f2fs_sb_info *sbi, unsigned int segno,
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900659 struct list_head *ilist, int gc_type)
660{
661 struct page *sum_page;
662 struct f2fs_summary_block *sum;
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900663 struct blk_plug plug;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900664
665 /* read segment summary of victim */
666 sum_page = get_sum_page(sbi, segno);
667 if (IS_ERR(sum_page))
Jaegeuk Kim43727522013-02-04 15:11:17 +0900668 return;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900669
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900670 blk_start_plug(&plug);
671
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900672 sum = page_address(sum_page);
673
674 switch (GET_SUM_TYPE((&sum->footer))) {
675 case SUM_TYPE_NODE:
Jaegeuk Kim43727522013-02-04 15:11:17 +0900676 gc_node_segment(sbi, sum->entries, segno, gc_type);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900677 break;
678 case SUM_TYPE_DATA:
Jaegeuk Kim43727522013-02-04 15:11:17 +0900679 gc_data_segment(sbi, sum->entries, ilist, segno, gc_type);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900680 break;
681 }
Jaegeuk Kimc718379b2013-04-24 13:19:56 +0900682 blk_finish_plug(&plug);
683
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900684 stat_inc_seg_count(sbi, GET_SUM_TYPE((&sum->footer)));
685 stat_inc_call_count(sbi->stat_info);
686
Jaegeuk Kimb7473752013-04-01 08:32:21 +0900687 f2fs_put_page(sum_page, 1);
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900688}
689
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900690int f2fs_gc(struct f2fs_sb_info *sbi)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900691{
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900692 struct list_head ilist;
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900693 unsigned int segno, i;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900694 int gc_type = BG_GC;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900695 int nfree = 0;
696 int ret = -1;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900697
698 INIT_LIST_HEAD(&ilist);
699gc_more:
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900700 if (!(sbi->sb->s_flags & MS_ACTIVE))
701 goto stop;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900702
Jaegeuk Kimd64f8042013-04-08 16:01:00 +0900703 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, nfree)) {
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900704 gc_type = FG_GC;
Jaegeuk Kimd64f8042013-04-08 16:01:00 +0900705 write_checkpoint(sbi, false);
706 }
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900707
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900708 if (!__get_victim(sbi, &segno, gc_type, NO_CHECK_TYPE))
709 goto stop;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900710 ret = 0;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900711
Jaegeuk Kim43727522013-02-04 15:11:17 +0900712 for (i = 0; i < sbi->segs_per_sec; i++)
713 do_garbage_collect(sbi, segno + i, &ilist, gc_type);
714
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900715 if (gc_type == FG_GC) {
716 sbi->cur_victim_sec = NULL_SEGNO;
Jaegeuk Kim43727522013-02-04 15:11:17 +0900717 nfree++;
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900718 WARN_ON(get_valid_blocks(sbi, segno, sbi->segs_per_sec));
719 }
Jaegeuk Kim43727522013-02-04 15:11:17 +0900720
721 if (has_not_enough_free_secs(sbi, nfree))
722 goto gc_more;
723
724 if (gc_type == FG_GC)
725 write_checkpoint(sbi, false);
Jaegeuk Kim408e9372013-01-03 17:55:52 +0900726stop:
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900727 mutex_unlock(&sbi->gc_mutex);
728
729 put_gc_inode(&ilist);
Jaegeuk Kim43727522013-02-04 15:11:17 +0900730 return ret;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900731}
732
733void build_gc_manager(struct f2fs_sb_info *sbi)
734{
735 DIRTY_I(sbi)->v_ops = &default_v_ops;
736}
737
Namjae Jeon6e6093a2013-01-17 00:08:30 +0900738int __init create_gc_caches(void)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900739{
740 winode_slab = f2fs_kmem_cache_create("f2fs_gc_inodes",
741 sizeof(struct inode_entry), NULL);
742 if (!winode_slab)
743 return -ENOMEM;
744 return 0;
745}
746
747void destroy_gc_caches(void)
748{
749 kmem_cache_destroy(winode_slab);
750}