summaryrefslogtreecommitdiff
path: root/fs/f2fs
diff options
context:
space:
mode:
authorChao Yu <yuchao0@huawei.com>2017-02-08 12:39:44 +0300
committerJaegeuk Kim <jaegeuk@kernel.org>2017-02-23 21:21:49 +0300
commit39133a5015e2fa405a0387053d65580988a6a1bc (patch)
tree15338ddf8baf2b9a438e37051c555ecf2d7ef594 /fs/f2fs
parent23cf7212a1cae2158dcf5f41d9733d59e320f8f6 (diff)
downloadlinux-39133a5015e2fa405a0387053d65580988a6a1bc.tar.xz
f2fs: enable inline_xattr by default
In android, since SElinux is enable, security policy will be appliedd for each file, it stores in inode as an xattr entry, so it will take one 4k size node block additionally for each file. Let's enable inline_xattr by default in order to save storage space. Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r--fs/f2fs/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 1dd0ed17a790..751e1068db17 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1039,6 +1039,7 @@ static void default_options(struct f2fs_sb_info *sbi)
sbi->active_logs = NR_CURSEG_TYPE;
set_opt(sbi, BG_GC);
+ set_opt(sbi, INLINE_XATTR);
set_opt(sbi, INLINE_DATA);
set_opt(sbi, INLINE_DENTRY);
set_opt(sbi, EXTENT_CACHE);