]> git.ipfire.org Git - people/ms/linux.git/blame - fs/f2fs/gc.c
f2fs: avoid frequent background GC
[people/ms/linux.git] / fs / f2fs / gc.c
CommitLineData
0a8165d7 1/*
7bc09003
JK
2 * 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>
14#include <linux/proc_fs.h>
15#include <linux/init.h>
16#include <linux/f2fs_fs.h>
17#include <linux/kthread.h>
18#include <linux/delay.h>
19#include <linux/freezer.h>
20#include <linux/blkdev.h>
21
22#include "f2fs.h"
23#include "node.h"
24#include "segment.h"
25#include "gc.h"
8e46b3ed 26#include <trace/events/f2fs.h>
7bc09003
JK
27
28static struct kmem_cache *winode_slab;
29
30static int gc_thread_func(void *data)
31{
32 struct f2fs_sb_info *sbi = data;
33 wait_queue_head_t *wq = &sbi->gc_thread->gc_wait_queue_head;
34 long wait_ms;
35
36 wait_ms = GC_THREAD_MIN_SLEEP_TIME;
37
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
d6212a5f
CL
48 if (sbi->sb->s_writers.frozen >= SB_FREEZE_WRITE) {
49 wait_ms = GC_THREAD_MAX_SLEEP_TIME;
50 continue;
51 }
52
7bc09003
JK
53 /*
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)) {
70 wait_ms = increase_sleep_time(wait_ms);
71 mutex_unlock(&sbi->gc_mutex);
72 continue;
73 }
74
75 if (has_enough_invalid_blocks(sbi))
76 wait_ms = decrease_sleep_time(wait_ms);
77 else
78 wait_ms = increase_sleep_time(wait_ms);
79
80 sbi->bg_gc++;
81
43727527
JK
82 /* if return value is not zero, no victim was selected */
83 if (f2fs_gc(sbi))
7bc09003 84 wait_ms = GC_THREAD_NOGC_SLEEP_TIME;
7bc09003
JK
85 } while (!kthread_should_stop());
86 return 0;
87}
88
89int start_gc_thread(struct f2fs_sb_info *sbi)
90{
1042d60f 91 struct f2fs_gc_kthread *gc_th;
ec7b1f2d 92 dev_t dev = sbi->sb->s_bdev->bd_dev;
7bc09003 93
48600e44
CL
94 if (!test_opt(sbi, BG_GC))
95 return 0;
7bc09003
JK
96 gc_th = kmalloc(sizeof(struct f2fs_gc_kthread), GFP_KERNEL);
97 if (!gc_th)
98 return -ENOMEM;
99
100 sbi->gc_thread = gc_th;
101 init_waitqueue_head(&sbi->gc_thread->gc_wait_queue_head);
102 sbi->gc_thread->f2fs_gc_task = kthread_run(gc_thread_func, sbi,
ec7b1f2d 103 "f2fs_gc-%u:%u", MAJOR(dev), MINOR(dev));
7bc09003
JK
104 if (IS_ERR(gc_th->f2fs_gc_task)) {
105 kfree(gc_th);
25718423 106 sbi->gc_thread = NULL;
7bc09003
JK
107 return -ENOMEM;
108 }
109 return 0;
110}
111
112void stop_gc_thread(struct f2fs_sb_info *sbi)
113{
114 struct f2fs_gc_kthread *gc_th = sbi->gc_thread;
115 if (!gc_th)
116 return;
117 kthread_stop(gc_th->f2fs_gc_task);
118 kfree(gc_th);
119 sbi->gc_thread = NULL;
120}
121
122static int select_gc_type(int gc_type)
123{
124 return (gc_type == BG_GC) ? GC_CB : GC_GREEDY;
125}
126
127static void select_policy(struct f2fs_sb_info *sbi, int gc_type,
128 int type, struct victim_sel_policy *p)
129{
130 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
131
4ebefc44 132 if (p->alloc_mode == SSR) {
7bc09003
JK
133 p->gc_mode = GC_GREEDY;
134 p->dirty_segmap = dirty_i->dirty_segmap[type];
135 p->ofs_unit = 1;
136 } else {
137 p->gc_mode = select_gc_type(gc_type);
138 p->dirty_segmap = dirty_i->dirty_segmap[DIRTY];
139 p->ofs_unit = sbi->segs_per_sec;
140 }
141 p->offset = sbi->last_victim[p->gc_mode];
142}
143
144static unsigned int get_max_cost(struct f2fs_sb_info *sbi,
145 struct victim_sel_policy *p)
146{
b7250d2d
JK
147 /* SSR allocates in a segment unit */
148 if (p->alloc_mode == SSR)
149 return 1 << sbi->log_blocks_per_seg;
7bc09003
JK
150 if (p->gc_mode == GC_GREEDY)
151 return (1 << sbi->log_blocks_per_seg) * p->ofs_unit;
152 else if (p->gc_mode == GC_CB)
153 return UINT_MAX;
154 else /* No other gc_mode */
155 return 0;
156}
157
158static unsigned int check_bg_victims(struct f2fs_sb_info *sbi)
159{
160 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
5ec4e49f
JK
161 unsigned int hint = 0;
162 unsigned int secno;
7bc09003
JK
163
164 /*
165 * If the gc_type is FG_GC, we can select victim segments
166 * selected by background GC before.
167 * Those segments guarantee they have small valid blocks.
168 */
5ec4e49f
JK
169next:
170 secno = find_next_bit(dirty_i->victim_secmap, TOTAL_SECS(sbi), hint++);
171 if (secno < TOTAL_SECS(sbi)) {
172 if (sec_usage_check(sbi, secno))
173 goto next;
174 clear_bit(secno, dirty_i->victim_secmap);
175 return secno * sbi->segs_per_sec;
7bc09003
JK
176 }
177 return NULL_SEGNO;
178}
179
180static unsigned int get_cb_cost(struct f2fs_sb_info *sbi, unsigned int segno)
181{
182 struct sit_info *sit_i = SIT_I(sbi);
183 unsigned int secno = GET_SECNO(sbi, segno);
184 unsigned int start = secno * sbi->segs_per_sec;
185 unsigned long long mtime = 0;
186 unsigned int vblocks;
187 unsigned char age = 0;
188 unsigned char u;
189 unsigned int i;
190
191 for (i = 0; i < sbi->segs_per_sec; i++)
192 mtime += get_seg_entry(sbi, start + i)->mtime;
193 vblocks = get_valid_blocks(sbi, segno, sbi->segs_per_sec);
194
195 mtime = div_u64(mtime, sbi->segs_per_sec);
196 vblocks = div_u64(vblocks, sbi->segs_per_sec);
197
198 u = (vblocks * 100) >> sbi->log_blocks_per_seg;
199
200 /* Handle if the system time is changed by user */
201 if (mtime < sit_i->min_mtime)
202 sit_i->min_mtime = mtime;
203 if (mtime > sit_i->max_mtime)
204 sit_i->max_mtime = mtime;
205 if (sit_i->max_mtime != sit_i->min_mtime)
206 age = 100 - div64_u64(100 * (mtime - sit_i->min_mtime),
207 sit_i->max_mtime - sit_i->min_mtime);
208
209 return UINT_MAX - ((100 * (100 - u) * age) / (100 + u));
210}
211
212static unsigned int get_gc_cost(struct f2fs_sb_info *sbi, unsigned int segno,
213 struct victim_sel_policy *p)
214{
215 if (p->alloc_mode == SSR)
216 return get_seg_entry(sbi, segno)->ckpt_valid_blocks;
217
218 /* alloc_mode == LFS */
219 if (p->gc_mode == GC_GREEDY)
220 return get_valid_blocks(sbi, segno, sbi->segs_per_sec);
221 else
222 return get_cb_cost(sbi, segno);
223}
224
0a8165d7 225/*
111d2495 226 * This function is called from two paths.
7bc09003
JK
227 * One is garbage collection and the other is SSR segment selection.
228 * When it is called during GC, it just gets a victim segment
229 * and it does not remove it from dirty seglist.
230 * When it is called from SSR segment selection, it finds a segment
231 * which has minimum valid blocks and removes it from dirty seglist.
232 */
233static int get_victim_by_default(struct f2fs_sb_info *sbi,
234 unsigned int *result, int gc_type, int type, char alloc_mode)
235{
236 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
237 struct victim_sel_policy p;
5ec4e49f 238 unsigned int secno;
7bc09003
JK
239 int nsearched = 0;
240
241 p.alloc_mode = alloc_mode;
242 select_policy(sbi, gc_type, type, &p);
243
244 p.min_segno = NULL_SEGNO;
245 p.min_cost = get_max_cost(sbi, &p);
246
247 mutex_lock(&dirty_i->seglist_lock);
248
249 if (p.alloc_mode == LFS && gc_type == FG_GC) {
250 p.min_segno = check_bg_victims(sbi);
251 if (p.min_segno != NULL_SEGNO)
252 goto got_it;
253 }
254
255 while (1) {
256 unsigned long cost;
5ec4e49f 257 unsigned int segno;
7bc09003
JK
258
259 segno = find_next_bit(p.dirty_segmap,
260 TOTAL_SEGS(sbi), p.offset);
261 if (segno >= TOTAL_SEGS(sbi)) {
262 if (sbi->last_victim[p.gc_mode]) {
263 sbi->last_victim[p.gc_mode] = 0;
264 p.offset = 0;
265 continue;
266 }
267 break;
268 }
269 p.offset = ((segno / p.ofs_unit) * p.ofs_unit) + p.ofs_unit;
5ec4e49f 270 secno = GET_SECNO(sbi, segno);
7bc09003 271
5ec4e49f 272 if (sec_usage_check(sbi, secno))
7bc09003 273 continue;
5ec4e49f 274 if (gc_type == BG_GC && test_bit(secno, dirty_i->victim_secmap))
7bc09003
JK
275 continue;
276
277 cost = get_gc_cost(sbi, segno, &p);
278
279 if (p.min_cost > cost) {
280 p.min_segno = segno;
281 p.min_cost = cost;
282 }
283
284 if (cost == get_max_cost(sbi, &p))
285 continue;
286
287 if (nsearched++ >= MAX_VICTIM_SEARCH) {
288 sbi->last_victim[p.gc_mode] = segno;
289 break;
290 }
291 }
292got_it:
293 if (p.min_segno != NULL_SEGNO) {
7bc09003 294 if (p.alloc_mode == LFS) {
5ec4e49f
JK
295 secno = GET_SECNO(sbi, p.min_segno);
296 if (gc_type == FG_GC)
297 sbi->cur_victim_sec = secno;
298 else
299 set_bit(secno, dirty_i->victim_secmap);
7bc09003 300 }
5ec4e49f 301 *result = (p.min_segno / p.ofs_unit) * p.ofs_unit;
8e46b3ed
NJ
302
303 trace_f2fs_get_victim(sbi->sb, type, gc_type, &p,
304 sbi->cur_victim_sec,
305 prefree_segments(sbi), free_segments(sbi));
7bc09003
JK
306 }
307 mutex_unlock(&dirty_i->seglist_lock);
308
309 return (p.min_segno == NULL_SEGNO) ? 0 : 1;
310}
311
312static const struct victim_selection default_v_ops = {
313 .get_victim = get_victim_by_default,
314};
315
316static struct inode *find_gc_inode(nid_t ino, struct list_head *ilist)
317{
318 struct list_head *this;
319 struct inode_entry *ie;
320
321 list_for_each(this, ilist) {
322 ie = list_entry(this, struct inode_entry, list);
323 if (ie->inode->i_ino == ino)
324 return ie->inode;
325 }
326 return NULL;
327}
328
329static void add_gc_inode(struct inode *inode, struct list_head *ilist)
330{
331 struct list_head *this;
332 struct inode_entry *new_ie, *ie;
333
334 list_for_each(this, ilist) {
335 ie = list_entry(this, struct inode_entry, list);
336 if (ie->inode == inode) {
337 iput(inode);
338 return;
339 }
340 }
341repeat:
342 new_ie = kmem_cache_alloc(winode_slab, GFP_NOFS);
343 if (!new_ie) {
344 cond_resched();
345 goto repeat;
346 }
347 new_ie->inode = inode;
348 list_add_tail(&new_ie->list, ilist);
349}
350
351static void put_gc_inode(struct list_head *ilist)
352{
353 struct inode_entry *ie, *next_ie;
354 list_for_each_entry_safe(ie, next_ie, ilist, list) {
355 iput(ie->inode);
356 list_del(&ie->list);
357 kmem_cache_free(winode_slab, ie);
358 }
359}
360
361static int check_valid_map(struct f2fs_sb_info *sbi,
362 unsigned int segno, int offset)
363{
364 struct sit_info *sit_i = SIT_I(sbi);
365 struct seg_entry *sentry;
366 int ret;
367
368 mutex_lock(&sit_i->sentry_lock);
369 sentry = get_seg_entry(sbi, segno);
370 ret = f2fs_test_bit(offset, sentry->cur_valid_map);
371 mutex_unlock(&sit_i->sentry_lock);
43727527 372 return ret;
7bc09003
JK
373}
374
0a8165d7 375/*
7bc09003
JK
376 * This function compares node address got in summary with that in NAT.
377 * On validity, copy that node with cold status, otherwise (invalid node)
378 * ignore that.
379 */
43727527 380static void gc_node_segment(struct f2fs_sb_info *sbi,
7bc09003
JK
381 struct f2fs_summary *sum, unsigned int segno, int gc_type)
382{
383 bool initial = true;
384 struct f2fs_summary *entry;
385 int off;
386
387next_step:
388 entry = sum;
389 for (off = 0; off < sbi->blocks_per_seg; off++, entry++) {
390 nid_t nid = le32_to_cpu(entry->nid);
391 struct page *node_page;
7bc09003 392
43727527
JK
393 /* stop BG_GC if there is not enough free sections. */
394 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0))
395 return;
7bc09003 396
43727527 397 if (check_valid_map(sbi, segno, off) == 0)
7bc09003
JK
398 continue;
399
400 if (initial) {
401 ra_node_page(sbi, nid);
402 continue;
403 }
404 node_page = get_node_page(sbi, nid);
405 if (IS_ERR(node_page))
406 continue;
407
408 /* set page dirty and write it */
4ebefc44
JK
409 if (gc_type == FG_GC) {
410 f2fs_submit_bio(sbi, NODE, true);
411 wait_on_page_writeback(node_page);
7bc09003 412 set_page_dirty(node_page);
4ebefc44
JK
413 } else {
414 if (!PageWriteback(node_page))
415 set_page_dirty(node_page);
416 }
7bc09003
JK
417 f2fs_put_page(node_page, 1);
418 stat_inc_node_blk_count(sbi, 1);
419 }
420 if (initial) {
421 initial = false;
422 goto next_step;
423 }
424
425 if (gc_type == FG_GC) {
426 struct writeback_control wbc = {
427 .sync_mode = WB_SYNC_ALL,
428 .nr_to_write = LONG_MAX,
429 .for_reclaim = 0,
430 };
431 sync_node_pages(sbi, 0, &wbc);
4ebefc44
JK
432
433 /*
434 * In the case of FG_GC, it'd be better to reclaim this victim
435 * completely.
436 */
437 if (get_valid_blocks(sbi, segno, 1) != 0)
438 goto next_step;
7bc09003 439 }
7bc09003
JK
440}
441
0a8165d7 442/*
9af45ef5
JK
443 * Calculate start block index indicating the given node offset.
444 * Be careful, caller should give this node offset only indicating direct node
445 * blocks. If any node offsets, which point the other types of node blocks such
446 * as indirect or double indirect node blocks, are given, it must be a caller's
447 * bug.
7bc09003
JK
448 */
449block_t start_bidx_of_node(unsigned int node_ofs)
450{
ce19a5d4
JK
451 unsigned int indirect_blks = 2 * NIDS_PER_BLOCK + 4;
452 unsigned int bidx;
7bc09003 453
ce19a5d4
JK
454 if (node_ofs == 0)
455 return 0;
7bc09003 456
ce19a5d4 457 if (node_ofs <= 2) {
7bc09003
JK
458 bidx = node_ofs - 1;
459 } else if (node_ofs <= indirect_blks) {
ce19a5d4 460 int dec = (node_ofs - 4) / (NIDS_PER_BLOCK + 1);
7bc09003
JK
461 bidx = node_ofs - 2 - dec;
462 } else {
ce19a5d4 463 int dec = (node_ofs - indirect_blks - 3) / (NIDS_PER_BLOCK + 1);
7bc09003
JK
464 bidx = node_ofs - 5 - dec;
465 }
ce19a5d4 466 return bidx * ADDRS_PER_BLOCK + ADDRS_PER_INODE;
7bc09003
JK
467}
468
469static int check_dnode(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
470 struct node_info *dni, block_t blkaddr, unsigned int *nofs)
471{
472 struct page *node_page;
473 nid_t nid;
474 unsigned int ofs_in_node;
475 block_t source_blkaddr;
476
477 nid = le32_to_cpu(sum->nid);
478 ofs_in_node = le16_to_cpu(sum->ofs_in_node);
479
480 node_page = get_node_page(sbi, nid);
481 if (IS_ERR(node_page))
43727527 482 return 0;
7bc09003
JK
483
484 get_node_info(sbi, nid, dni);
485
486 if (sum->version != dni->version) {
487 f2fs_put_page(node_page, 1);
43727527 488 return 0;
7bc09003
JK
489 }
490
491 *nofs = ofs_of_node(node_page);
492 source_blkaddr = datablock_addr(node_page, ofs_in_node);
493 f2fs_put_page(node_page, 1);
494
495 if (source_blkaddr != blkaddr)
43727527
JK
496 return 0;
497 return 1;
7bc09003
JK
498}
499
500static void move_data_page(struct inode *inode, struct page *page, int gc_type)
501{
7bc09003 502 if (gc_type == BG_GC) {
4ebefc44
JK
503 if (PageWriteback(page))
504 goto out;
7bc09003
JK
505 set_page_dirty(page);
506 set_cold_data(page);
507 } else {
508 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
4ebefc44
JK
509
510 if (PageWriteback(page)) {
511 f2fs_submit_bio(sbi, DATA, true);
512 wait_on_page_writeback(page);
513 }
514
7bc09003
JK
515 if (clear_page_dirty_for_io(page) &&
516 S_ISDIR(inode->i_mode)) {
517 dec_page_count(sbi, F2FS_DIRTY_DENTS);
518 inode_dec_dirty_dents(inode);
519 }
520 set_cold_data(page);
521 do_write_data_page(page);
7bc09003
JK
522 clear_cold_data(page);
523 }
524out:
525 f2fs_put_page(page, 1);
526}
527
0a8165d7 528/*
7bc09003
JK
529 * This function tries to get parent node of victim data block, and identifies
530 * data block validity. If the block is valid, copy that with cold status and
531 * modify parent node.
532 * If the parent node is not valid or the data block address is different,
533 * the victim data block is ignored.
534 */
43727527 535static void gc_data_segment(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
7bc09003
JK
536 struct list_head *ilist, unsigned int segno, int gc_type)
537{
538 struct super_block *sb = sbi->sb;
539 struct f2fs_summary *entry;
540 block_t start_addr;
43727527 541 int off;
7bc09003
JK
542 int phase = 0;
543
544 start_addr = START_BLOCK(sbi, segno);
545
546next_step:
547 entry = sum;
548 for (off = 0; off < sbi->blocks_per_seg; off++, entry++) {
549 struct page *data_page;
550 struct inode *inode;
551 struct node_info dni; /* dnode info for the data */
552 unsigned int ofs_in_node, nofs;
553 block_t start_bidx;
554
43727527
JK
555 /* stop BG_GC if there is not enough free sections. */
556 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, 0))
557 return;
7bc09003 558
43727527 559 if (check_valid_map(sbi, segno, off) == 0)
7bc09003
JK
560 continue;
561
562 if (phase == 0) {
563 ra_node_page(sbi, le32_to_cpu(entry->nid));
564 continue;
565 }
566
567 /* Get an inode by ino with checking validity */
43727527 568 if (check_dnode(sbi, entry, &dni, start_addr + off, &nofs) == 0)
7bc09003
JK
569 continue;
570
571 if (phase == 1) {
572 ra_node_page(sbi, dni.ino);
573 continue;
574 }
575
576 start_bidx = start_bidx_of_node(nofs);
577 ofs_in_node = le16_to_cpu(entry->ofs_in_node);
578
579 if (phase == 2) {
d4686d56 580 inode = f2fs_iget(sb, dni.ino);
7bc09003
JK
581 if (IS_ERR(inode))
582 continue;
583
584 data_page = find_data_page(inode,
585 start_bidx + ofs_in_node);
586 if (IS_ERR(data_page))
587 goto next_iput;
588
589 f2fs_put_page(data_page, 0);
590 add_gc_inode(inode, ilist);
591 } else {
592 inode = find_gc_inode(dni.ino, ilist);
593 if (inode) {
594 data_page = get_lock_data_page(inode,
595 start_bidx + ofs_in_node);
596 if (IS_ERR(data_page))
597 continue;
598 move_data_page(inode, data_page, gc_type);
599 stat_inc_data_blk_count(sbi, 1);
600 }
601 }
602 continue;
603next_iput:
604 iput(inode);
605 }
606 if (++phase < 4)
607 goto next_step;
43727527 608
4ebefc44 609 if (gc_type == FG_GC) {
7bc09003 610 f2fs_submit_bio(sbi, DATA, true);
4ebefc44
JK
611
612 /*
613 * In the case of FG_GC, it'd be better to reclaim this victim
614 * completely.
615 */
616 if (get_valid_blocks(sbi, segno, 1) != 0) {
617 phase = 2;
618 goto next_step;
619 }
620 }
7bc09003
JK
621}
622
623static int __get_victim(struct f2fs_sb_info *sbi, unsigned int *victim,
624 int gc_type, int type)
625{
626 struct sit_info *sit_i = SIT_I(sbi);
627 int ret;
628 mutex_lock(&sit_i->sentry_lock);
629 ret = DIRTY_I(sbi)->v_ops->get_victim(sbi, victim, gc_type, type, LFS);
630 mutex_unlock(&sit_i->sentry_lock);
631 return ret;
632}
633
43727527 634static void do_garbage_collect(struct f2fs_sb_info *sbi, unsigned int segno,
7bc09003
JK
635 struct list_head *ilist, int gc_type)
636{
637 struct page *sum_page;
638 struct f2fs_summary_block *sum;
7bc09003
JK
639
640 /* read segment summary of victim */
641 sum_page = get_sum_page(sbi, segno);
642 if (IS_ERR(sum_page))
43727527 643 return;
7bc09003 644
7bc09003
JK
645 sum = page_address(sum_page);
646
647 switch (GET_SUM_TYPE((&sum->footer))) {
648 case SUM_TYPE_NODE:
43727527 649 gc_node_segment(sbi, sum->entries, segno, gc_type);
7bc09003
JK
650 break;
651 case SUM_TYPE_DATA:
43727527 652 gc_data_segment(sbi, sum->entries, ilist, segno, gc_type);
7bc09003
JK
653 break;
654 }
655 stat_inc_seg_count(sbi, GET_SUM_TYPE((&sum->footer)));
656 stat_inc_call_count(sbi->stat_info);
657
b7473754 658 f2fs_put_page(sum_page, 1);
7bc09003
JK
659}
660
408e9375 661int f2fs_gc(struct f2fs_sb_info *sbi)
7bc09003 662{
7bc09003 663 struct list_head ilist;
408e9375 664 unsigned int segno, i;
7bc09003 665 int gc_type = BG_GC;
43727527
JK
666 int nfree = 0;
667 int ret = -1;
7bc09003
JK
668
669 INIT_LIST_HEAD(&ilist);
670gc_more:
408e9375
JK
671 if (!(sbi->sb->s_flags & MS_ACTIVE))
672 goto stop;
7bc09003 673
d64f8047 674 if (gc_type == BG_GC && has_not_enough_free_secs(sbi, nfree)) {
408e9375 675 gc_type = FG_GC;
d64f8047
JK
676 write_checkpoint(sbi, false);
677 }
7bc09003 678
408e9375
JK
679 if (!__get_victim(sbi, &segno, gc_type, NO_CHECK_TYPE))
680 goto stop;
43727527 681 ret = 0;
7bc09003 682
43727527
JK
683 for (i = 0; i < sbi->segs_per_sec; i++)
684 do_garbage_collect(sbi, segno + i, &ilist, gc_type);
685
5ec4e49f
JK
686 if (gc_type == FG_GC) {
687 sbi->cur_victim_sec = NULL_SEGNO;
43727527 688 nfree++;
5ec4e49f
JK
689 WARN_ON(get_valid_blocks(sbi, segno, sbi->segs_per_sec));
690 }
43727527
JK
691
692 if (has_not_enough_free_secs(sbi, nfree))
693 goto gc_more;
694
695 if (gc_type == FG_GC)
696 write_checkpoint(sbi, false);
408e9375 697stop:
7bc09003
JK
698 mutex_unlock(&sbi->gc_mutex);
699
700 put_gc_inode(&ilist);
43727527 701 return ret;
7bc09003
JK
702}
703
704void build_gc_manager(struct f2fs_sb_info *sbi)
705{
706 DIRTY_I(sbi)->v_ops = &default_v_ops;
707}
708
6e6093a8 709int __init create_gc_caches(void)
7bc09003
JK
710{
711 winode_slab = f2fs_kmem_cache_create("f2fs_gc_inodes",
712 sizeof(struct inode_entry), NULL);
713 if (!winode_slab)
714 return -ENOMEM;
715 return 0;
716}
717
718void destroy_gc_caches(void)
719{
720 kmem_cache_destroy(winode_slab);
721}