Skip to content

Commit 798eeca

Browse files
committed
erofs: don't warn MicroLZMA format anymore
The LZMA algorithm support has been landed for more than one year since Linux 5.16. Besides, the new XZ Utils 5.4 has been available in most Linux distributions. Reviewed-by: Chao Yu <[email protected]> Signed-off-by: Gao Xiang <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 78a50b6 commit 798eeca

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

fs/erofs/Kconfig

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,10 @@ config EROFS_FS_ZIP_LZMA
9191
select XZ_DEC_MICROLZMA
9292
help
9393
Saying Y here includes support for reading EROFS file systems
94-
containing LZMA compressed data, specifically called microLZMA. it
95-
gives better compression ratios than the LZ4 algorithm, at the
94+
containing LZMA compressed data, specifically called microLZMA. It
95+
gives better compression ratios than the default LZ4 format, at the
9696
expense of more CPU overhead.
9797

98-
LZMA support is an experimental feature for now and so most file
99-
systems will be readable without selecting this option.
100-
10198
If unsure, say N.
10299

103100
config EROFS_FS_ZIP_DEFLATE

fs/erofs/decompressor_lzma.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ int z_erofs_load_lzma_config(struct super_block *sb,
9696
return -EINVAL;
9797
}
9898

99-
erofs_info(sb, "EXPERIMENTAL MicroLZMA in use. Use at your own risk!");
100-
10199
/* in case 2 z_erofs_load_lzma_config() race to avoid deadlock */
102100
mutex_lock(&lzma_resize_mutex);
103101

0 commit comments

Comments
 (0)