diff options
author | Sahitya Tummala <stummala@codeaurora.org> | 2018-09-19 11:48:47 +0300 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2018-09-20 01:55:14 +0300 |
commit | a7d10cf3e4e3e308da01462a1ef8008233ee523d (patch) | |
tree | e9efbbc09c649b95ae5d51bdbd388e472c472b3a /fs/f2fs/super.c | |
parent | 6f5c2ed0a26fae6904a88622c126dfb9369548a3 (diff) | |
download | linux-a7d10cf3e4e3e308da01462a1ef8008233ee523d.tar.xz |
f2fs: add new idle interval timing for discard and gc paths
This helps to control the frequency of submission of discard and
GC requests independently, based on the need.
Suggested-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Sahitya Tummala <stummala@codeaurora.org>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 945468968d4e..c112403b3ca7 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -2461,6 +2461,8 @@ static void init_sb_info(struct f2fs_sb_info *sbi) sbi->dir_level = DEF_DIR_LEVEL; sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL; sbi->interval_time[REQ_TIME] = DEF_IDLE_INTERVAL; + sbi->interval_time[DISCARD_TIME] = DEF_IDLE_INTERVAL; + sbi->interval_time[GC_TIME] = DEF_IDLE_INTERVAL; clear_sbi_flag(sbi, SBI_NEED_FSCK); for (i = 0; i < NR_COUNT_TYPE; i++) |