]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/f2fs/gc.h
f2fs: make an accessor to get sections for particular block type
[karo-tx-linux.git] / fs / f2fs / gc.h
1 /*
2  * fs/f2fs/gc.h
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 #define GC_THREAD_MIN_WB_PAGES          1       /*
12                                                  * a threshold to determine
13                                                  * whether IO subsystem is idle
14                                                  * or not
15                                                  */
16 #define GC_THREAD_MIN_SLEEP_TIME        10000 /* milliseconds */
17 #define GC_THREAD_MAX_SLEEP_TIME        30000
18 #define GC_THREAD_NOGC_SLEEP_TIME       10000
19 #define LIMIT_INVALID_BLOCK     40 /* percentage over total user space */
20 #define LIMIT_FREE_BLOCK        40 /* percentage over invalid + free space */
21
22 /* Search max. number of dirty segments to select a victim segment */
23 #define MAX_VICTIM_SEARCH       20
24
25 enum {
26         GC_NONE = 0,
27         GC_ERROR,
28         GC_OK,
29         GC_NEXT,
30         GC_BLOCKED,
31         GC_DONE,
32 };
33
34 struct f2fs_gc_kthread {
35         struct task_struct *f2fs_gc_task;
36         wait_queue_head_t gc_wait_queue_head;
37 };
38
39 struct inode_entry {
40         struct list_head list;
41         struct inode *inode;
42 };
43
44 /*
45  * inline functions
46  */
47 static inline block_t free_user_blocks(struct f2fs_sb_info *sbi)
48 {
49         if (free_segments(sbi) < overprovision_segments(sbi))
50                 return 0;
51         else
52                 return (free_segments(sbi) - overprovision_segments(sbi))
53                         << sbi->log_blocks_per_seg;
54 }
55
56 static inline block_t limit_invalid_user_blocks(struct f2fs_sb_info *sbi)
57 {
58         return (long)(sbi->user_block_count * LIMIT_INVALID_BLOCK) / 100;
59 }
60
61 static inline block_t limit_free_user_blocks(struct f2fs_sb_info *sbi)
62 {
63         block_t reclaimable_user_blocks = sbi->user_block_count -
64                 written_block_count(sbi);
65         return (long)(reclaimable_user_blocks * LIMIT_FREE_BLOCK) / 100;
66 }
67
68 static inline long increase_sleep_time(long wait)
69 {
70         wait += GC_THREAD_MIN_SLEEP_TIME;
71         if (wait > GC_THREAD_MAX_SLEEP_TIME)
72                 wait = GC_THREAD_MAX_SLEEP_TIME;
73         return wait;
74 }
75
76 static inline long decrease_sleep_time(long wait)
77 {
78         wait -= GC_THREAD_MIN_SLEEP_TIME;
79         if (wait <= GC_THREAD_MIN_SLEEP_TIME)
80                 wait = GC_THREAD_MIN_SLEEP_TIME;
81         return wait;
82 }
83
84 static inline bool has_enough_invalid_blocks(struct f2fs_sb_info *sbi)
85 {
86         block_t invalid_user_blocks = sbi->user_block_count -
87                                         written_block_count(sbi);
88         /*
89          * Background GC is triggered with the following condition.
90          * 1. There are a number of invalid blocks.
91          * 2. There is not enough free space.
92          */
93         if (invalid_user_blocks > limit_invalid_user_blocks(sbi) &&
94                         free_user_blocks(sbi) < limit_free_user_blocks(sbi))
95                 return true;
96         return false;
97 }
98
99 static inline int is_idle(struct f2fs_sb_info *sbi)
100 {
101         struct block_device *bdev = sbi->sb->s_bdev;
102         struct request_queue *q = bdev_get_queue(bdev);
103         struct request_list *rl = &q->root_rl;
104         return !(rl->count[BLK_RW_SYNC]) && !(rl->count[BLK_RW_ASYNC]);
105 }
106
107 static inline bool should_do_checkpoint(struct f2fs_sb_info *sbi)
108 {
109         int node_secs = get_blocktype_secs(sbi, F2FS_DIRTY_NODES);
110         int dent_secs = get_blocktype_secs(sbi, F2FS_DIRTY_DENTS);
111         return free_sections(sbi) <= (node_secs + 2 * dent_secs + 2);
112 }