ext4: use transaction reservation for extent conversion in ext4_end_io
[linux-2.6.git] / fs / f2fs / gc.h
blob2c6a6bd0832244f4bb1e45b52cd41400e87fe363
1 /*
2 * fs/f2fs/gc.h
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
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.
11 #define GC_THREAD_MIN_WB_PAGES 1 /*
12 * a threshold to determine
13 * whether IO subsystem is idle
14 * or not
16 #define GC_THREAD_MIN_SLEEP_TIME 30000 /* milliseconds */
17 #define GC_THREAD_MAX_SLEEP_TIME 60000
18 #define GC_THREAD_NOGC_SLEEP_TIME 300000 /* wait 5 min */
19 #define LIMIT_INVALID_BLOCK 40 /* percentage over total user space */
20 #define LIMIT_FREE_BLOCK 40 /* percentage over invalid + free space */
22 /* Search max. number of dirty segments to select a victim segment */
23 #define MAX_VICTIM_SEARCH 20
25 struct f2fs_gc_kthread {
26 struct task_struct *f2fs_gc_task;
27 wait_queue_head_t gc_wait_queue_head;
30 struct inode_entry {
31 struct list_head list;
32 struct inode *inode;
36 * inline functions
38 static inline block_t free_user_blocks(struct f2fs_sb_info *sbi)
40 if (free_segments(sbi) < overprovision_segments(sbi))
41 return 0;
42 else
43 return (free_segments(sbi) - overprovision_segments(sbi))
44 << sbi->log_blocks_per_seg;
47 static inline block_t limit_invalid_user_blocks(struct f2fs_sb_info *sbi)
49 return (long)(sbi->user_block_count * LIMIT_INVALID_BLOCK) / 100;
52 static inline block_t limit_free_user_blocks(struct f2fs_sb_info *sbi)
54 block_t reclaimable_user_blocks = sbi->user_block_count -
55 written_block_count(sbi);
56 return (long)(reclaimable_user_blocks * LIMIT_FREE_BLOCK) / 100;
59 static inline long increase_sleep_time(long wait)
61 if (wait == GC_THREAD_NOGC_SLEEP_TIME)
62 return wait;
64 wait += GC_THREAD_MIN_SLEEP_TIME;
65 if (wait > GC_THREAD_MAX_SLEEP_TIME)
66 wait = GC_THREAD_MAX_SLEEP_TIME;
67 return wait;
70 static inline long decrease_sleep_time(long wait)
72 if (wait == GC_THREAD_NOGC_SLEEP_TIME)
73 wait = GC_THREAD_MAX_SLEEP_TIME;
75 wait -= GC_THREAD_MIN_SLEEP_TIME;
76 if (wait <= GC_THREAD_MIN_SLEEP_TIME)
77 wait = GC_THREAD_MIN_SLEEP_TIME;
78 return wait;
81 static inline bool has_enough_invalid_blocks(struct f2fs_sb_info *sbi)
83 block_t invalid_user_blocks = sbi->user_block_count -
84 written_block_count(sbi);
86 * Background GC is triggered with the following condition.
87 * 1. There are a number of invalid blocks.
88 * 2. There is not enough free space.
90 if (invalid_user_blocks > limit_invalid_user_blocks(sbi) &&
91 free_user_blocks(sbi) < limit_free_user_blocks(sbi))
92 return true;
93 return false;
96 static inline int is_idle(struct f2fs_sb_info *sbi)
98 struct block_device *bdev = sbi->sb->s_bdev;
99 struct request_queue *q = bdev_get_queue(bdev);
100 struct request_list *rl = &q->root_rl;
101 return !(rl->count[BLK_RW_SYNC]) && !(rl->count[BLK_RW_ASYNC]);