Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Commit

Permalink
f2fs: disable background gc in favor of rapid GC
Browse files Browse the repository at this point in the history
This was left out on earlier merges

Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
Signed-off-by: Adam W. Willis <return.of.octobot@gmail.com>
  • Loading branch information
arter97 authored and 0ctobot committed Oct 15, 2020
1 parent 7ff6b8a commit d20c913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/f2fs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ static void default_options(struct f2fs_sb_info *sbi)
F2FS_OPTION(sbi).compress_algorithm = COMPRESS_LZ4;
F2FS_OPTION(sbi).compress_log_size = MIN_COMPRESS_LOG_SIZE;
F2FS_OPTION(sbi).compress_ext_cnt = 0;
F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_OFF;

set_opt(sbi, INLINE_XATTR);
set_opt(sbi, INLINE_DATA);
Expand Down

0 comments on commit d20c913

Please sign in to comment.