blob: b0045d4c8d1e6f74f0da0e0ee1ef9376e0289f33 [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +09002 * 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 */
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090011#define GC_THREAD_MIN_WB_PAGES 1 /*
12 * a threshold to determine
13 * whether IO subsystem is idle
14 * or not
15 */
Hyojun Kim63da4202017-10-06 17:10:08 -070016#define DEF_GC_THREAD_URGENT_SLEEP_TIME 500 /* 500 ms */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090017#define DEF_GC_THREAD_MIN_SLEEP_TIME 30000 /* milliseconds */
18#define DEF_GC_THREAD_MAX_SLEEP_TIME 60000
19#define DEF_GC_THREAD_NOGC_SLEEP_TIME 300000 /* wait 5 min */
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090020#define LIMIT_INVALID_BLOCK 40 /* percentage over total user space */
21#define LIMIT_FREE_BLOCK 40 /* percentage over invalid + free space */
22
Jaegeuk Kim2f17e342017-11-16 16:59:14 +080023#define DEF_GC_FAILED_PINNED_FILES 2048
24
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090025/* Search max. number of dirty segments to select a victim segment */
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +090026#define DEF_MAX_VICTIM_SEARCH 4096 /* covers 8GB */
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090027
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090028struct f2fs_gc_kthread {
29 struct task_struct *f2fs_gc_task;
30 wait_queue_head_t gc_wait_queue_head;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090031
32 /* for gc sleep time */
Hyojun Kim63da4202017-10-06 17:10:08 -070033 unsigned int urgent_sleep_time;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090034 unsigned int min_sleep_time;
35 unsigned int max_sleep_time;
36 unsigned int no_gc_sleep_time;
Namjae Jeond2dc0952013-08-04 23:10:15 +090037
38 /* for changing gc mode */
39 unsigned int gc_idle;
Hyojun Kim63da4202017-10-06 17:10:08 -070040 unsigned int gc_urgent;
41 unsigned int gc_wake;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090042};
43
Changman Lee7dda2af2014-11-28 15:49:40 +000044struct gc_inode_list {
45 struct list_head ilist;
46 struct radix_tree_root iroot;
47};
48
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +090049/*
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090050 * inline functions
51 */
52static inline block_t free_user_blocks(struct f2fs_sb_info *sbi)
53{
54 if (free_segments(sbi) < overprovision_segments(sbi))
55 return 0;
56 else
57 return (free_segments(sbi) - overprovision_segments(sbi))
58 << sbi->log_blocks_per_seg;
59}
60
61static inline block_t limit_invalid_user_blocks(struct f2fs_sb_info *sbi)
62{
63 return (long)(sbi->user_block_count * LIMIT_INVALID_BLOCK) / 100;
64}
65
66static inline block_t limit_free_user_blocks(struct f2fs_sb_info *sbi)
67{
68 block_t reclaimable_user_blocks = sbi->user_block_count -
69 written_block_count(sbi);
70 return (long)(reclaimable_user_blocks * LIMIT_FREE_BLOCK) / 100;
71}
72
Chao Yu88dd8932015-01-26 20:24:21 +080073static inline void increase_sleep_time(struct f2fs_gc_kthread *gc_th,
Hyojun Kim63da4202017-10-06 17:10:08 -070074 unsigned int *wait)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090075{
Hyojun Kim63da4202017-10-06 17:10:08 -070076 unsigned int min_time = gc_th->min_sleep_time;
77 unsigned int max_time = gc_th->max_sleep_time;
78
Chao Yu88dd8932015-01-26 20:24:21 +080079 if (*wait == gc_th->no_gc_sleep_time)
80 return;
Jaegeuk Kim6cb968d2013-04-24 13:00:14 +090081
Hyojun Kim63da4202017-10-06 17:10:08 -070082 if ((long long)*wait + (long long)min_time > (long long)max_time)
83 *wait = max_time;
84 else
85 *wait += min_time;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090086}
87
Chao Yu88dd8932015-01-26 20:24:21 +080088static inline void decrease_sleep_time(struct f2fs_gc_kthread *gc_th,
Hyojun Kim63da4202017-10-06 17:10:08 -070089 unsigned int *wait)
Jaegeuk Kim7bc09002012-11-02 17:13:01 +090090{
Hyojun Kim63da4202017-10-06 17:10:08 -070091 unsigned int min_time = gc_th->min_sleep_time;
92
Chao Yu88dd8932015-01-26 20:24:21 +080093 if (*wait == gc_th->no_gc_sleep_time)
94 *wait = gc_th->max_sleep_time;
Jaegeuk Kim6cb968d2013-04-24 13:00:14 +090095
Hyojun Kim63da4202017-10-06 17:10:08 -070096 if ((long long)*wait - (long long)min_time < (long long)min_time)
97 *wait = min_time;
98 else
99 *wait -= min_time;
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900100}
101
102static inline bool has_enough_invalid_blocks(struct f2fs_sb_info *sbi)
103{
104 block_t invalid_user_blocks = sbi->user_block_count -
105 written_block_count(sbi);
106 /*
arter97e1c42042014-08-06 23:22:50 +0900107 * Background GC is triggered with the following conditions.
Jaegeuk Kim7bc09002012-11-02 17:13:01 +0900108 * 1. There are a number of invalid blocks.
109 * 2. There is not enough free space.
110 */
111 if (invalid_user_blocks > limit_invalid_user_blocks(sbi) &&
112 free_user_blocks(sbi) < limit_free_user_blocks(sbi))
113 return true;
114 return false;
115}