diff options
author | Li Guifu <blucerlee@gmail.com> | 2019-09-30 17:39:07 +0800 |
---|---|---|
committer | Gao Xiang <hsiangkao@aol.com> | 2019-10-15 23:59:10 +0800 |
commit | 116ac0a254fcda1282b47b5cfd97c549c77b613f (patch) | |
tree | ac87982327fad4194f2b9dc5887c216956bb96a1 /lib/config.c | |
parent | 47d6895a5ff9e7fc90d8e4143077b17dbb7a587e (diff) |
erofs-utils: introduce shared xattr support
Large xattrs or xattrs shared by a lot of files
can be stored in shared xattrs rather than
inlined right after inode.
Link: https://lore.kernel.org/r/20191014235308.4277-1-hsiangkao@aol.com
Signed-off-by: Li Guifu <blucerlee@gmail.com>
Signed-off-by: Gao Xiang <hsiangkao@aol.com>
Diffstat (limited to 'lib/config.c')
-rw-r--r-- | lib/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config.c b/lib/config.c index cb42706..cbbecce 100644 --- a/lib/config.c +++ b/lib/config.c @@ -21,7 +21,7 @@ void erofs_init_configure(void) cfg.c_dry_run = false; cfg.c_compr_level_master = -1; cfg.c_force_inodeversion = 0; - cfg.c_inline_xattr_tolerance = 1; + cfg.c_inline_xattr_tolerance = 2; cfg.c_unix_timestamp = -1; } |