2019-07-31 15:57:31 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2018-07-26 12:21:51 +00:00
|
|
|
|
|
|
|
config EROFS_FS
|
|
|
|
tristate "EROFS filesystem support"
|
2018-08-28 03:39:48 +00:00
|
|
|
depends on BLOCK
|
2021-08-05 00:35:59 +00:00
|
|
|
select FS_IOMAP
|
2019-11-04 02:49:37 +00:00
|
|
|
select LIBCRC32C
|
2018-07-26 12:21:51 +00:00
|
|
|
help
|
2021-10-14 08:10:10 +00:00
|
|
|
EROFS (Enhanced Read-Only File System) is a lightweight read-only
|
|
|
|
file system with modern designs (e.g. no buffer heads, inline
|
|
|
|
xattrs/data, chunk-based deduplication, multiple devices, etc.) for
|
|
|
|
scenarios which need high-performance read-only solutions, e.g.
|
|
|
|
smartphones with Android OS, LiveCDs and high-density hosts with
|
|
|
|
numerous containers;
|
|
|
|
|
|
|
|
It also provides fixed-sized output compression support in order to
|
|
|
|
improve storage density as well as keep relatively higher compression
|
|
|
|
ratios and implements in-place decompression to reuse the file page
|
|
|
|
for compressed data temporarily with proper strategies, which is
|
|
|
|
quite useful to ensure guaranteed end-to-end runtime decompression
|
|
|
|
performance under extremely memory pressure without extra cost.
|
|
|
|
|
|
|
|
See the documentation at <file:Documentation/filesystems/erofs.rst>
|
2023-11-17 08:53:29 +00:00
|
|
|
and the web pages at <https://erofs.docs.kernel.org> for more details.
|
2018-07-26 12:21:51 +00:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config EROFS_FS_DEBUG
|
|
|
|
bool "EROFS debugging feature"
|
|
|
|
depends on EROFS_FS
|
|
|
|
help
|
2019-07-31 15:57:52 +00:00
|
|
|
Print debugging messages and enable more BUG_ONs which check
|
|
|
|
filesystem consistency and find potential issues aggressively,
|
|
|
|
which can be used for Android eng build, for example.
|
2018-07-26 12:21:51 +00:00
|
|
|
|
|
|
|
For daily use, say N.
|
|
|
|
|
2018-07-26 12:21:52 +00:00
|
|
|
config EROFS_FS_XATTR
|
|
|
|
bool "EROFS extended attributes"
|
|
|
|
depends on EROFS_FS
|
2023-07-22 09:45:38 +00:00
|
|
|
select XXHASH
|
2018-07-26 12:21:52 +00:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Extended attributes are name:value pairs associated with inodes by
|
|
|
|
the kernel or by users (see the attr(5) manual page, or visit
|
|
|
|
<http://acl.bestbits.at/> for details).
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config EROFS_FS_POSIX_ACL
|
|
|
|
bool "EROFS Access Control Lists"
|
|
|
|
depends on EROFS_FS_XATTR
|
|
|
|
select FS_POSIX_ACL
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Posix Access Control Lists (ACLs) support permissions for users and
|
|
|
|
groups beyond the owner/group/world scheme.
|
|
|
|
|
|
|
|
To learn more about Access Control Lists, visit the POSIX ACLs for
|
|
|
|
Linux website <http://acl.bestbits.at/>.
|
|
|
|
|
|
|
|
If you don't know what Access Control Lists are, say N.
|
|
|
|
|
|
|
|
config EROFS_FS_SECURITY
|
|
|
|
bool "EROFS Security Labels"
|
|
|
|
depends on EROFS_FS_XATTR
|
2019-07-31 15:57:52 +00:00
|
|
|
default y
|
2018-07-26 12:21:52 +00:00
|
|
|
help
|
|
|
|
Security labels provide an access control facility to support Linux
|
|
|
|
Security Models (LSMs) accepted by AppArmor, SELinux, Smack and TOMOYO
|
|
|
|
Linux. This option enables an extended attribute handler for file
|
|
|
|
security labels in the erofs filesystem, so that it requires enabling
|
|
|
|
the extended attribute support in advance.
|
|
|
|
|
|
|
|
If you are not using a security module, say N.
|
|
|
|
|
2018-07-26 12:21:58 +00:00
|
|
|
config EROFS_FS_ZIP
|
2019-07-31 15:57:52 +00:00
|
|
|
bool "EROFS Data Compression Support"
|
2018-07-26 12:21:58 +00:00
|
|
|
depends on EROFS_FS
|
2018-11-09 16:07:50 +00:00
|
|
|
select LZ4_DECOMPRESS
|
2019-07-31 15:57:52 +00:00
|
|
|
default y
|
2018-07-26 12:21:58 +00:00
|
|
|
help
|
2019-07-31 15:57:52 +00:00
|
|
|
Enable fixed-sized output compression for EROFS.
|
2018-07-26 12:21:58 +00:00
|
|
|
|
2019-07-31 15:57:52 +00:00
|
|
|
If you don't want to enable compression feature, say N.
|
2021-10-10 21:31:45 +00:00
|
|
|
|
|
|
|
config EROFS_FS_ZIP_LZMA
|
|
|
|
bool "EROFS LZMA compressed data support"
|
|
|
|
depends on EROFS_FS_ZIP
|
|
|
|
select XZ_DEC
|
|
|
|
select XZ_DEC_MICROLZMA
|
|
|
|
help
|
|
|
|
Saying Y here includes support for reading EROFS file systems
|
2023-10-21 02:01:37 +00:00
|
|
|
containing LZMA compressed data, specifically called microLZMA. It
|
|
|
|
gives better compression ratios than the default LZ4 format, at the
|
2021-10-10 21:31:45 +00:00
|
|
|
expense of more CPU overhead.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2022-04-25 12:21:33 +00:00
|
|
|
|
erofs: DEFLATE compression support
Add DEFLATE compression as the 3rd supported algorithm.
DEFLATE is a popular generic-purpose compression algorithm for quite
long time (many advanced formats like gzip, zlib, zip, png are all
based on that) as Apple documentation written "If you require
interoperability with non-Apple devices, use COMPRESSION_ZLIB. [1]".
Due to its popularity, there are several hardware on-market DEFLATE
accelerators, such as (s390) DFLTCC, (Intel) IAA/QAT, (HiSilicon) ZIP
accelerator, etc. In addition, there are also several high-performence
IP cores and even open-source FPGA approches available for DEFLATE.
Therefore, it's useful to support DEFLATE compression in order to find
a way to utilize these accelerators for asynchronous I/Os and get
benefits from these later.
Besides, it's a good choice to trade off between compression ratios
and performance compared to LZ4 and LZMA. The DEFLATE core format is
simple as well as easy to understand, therefore the code size of its
decompressor is small even for the bootloader use cases. The runtime
memory consumption is quite limited too (e.g. 32K + ~7K for each zlib
stream). As usual, EROFS ourperforms similar approaches too.
Alternatively, DEFLATE could still be used for some specific files
since EROFS supports multiple compression algorithms in one image.
[1] https://developer.apple.com/documentation/compression/compression_algorithm
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Link: https://lore.kernel.org/r/20230810154859.118330-1-hsiangkao@linux.alibaba.com
2023-08-10 15:48:59 +00:00
|
|
|
config EROFS_FS_ZIP_DEFLATE
|
|
|
|
bool "EROFS DEFLATE compressed data support"
|
|
|
|
depends on EROFS_FS_ZIP
|
|
|
|
select ZLIB_INFLATE
|
|
|
|
help
|
|
|
|
Saying Y here includes support for reading EROFS file systems
|
|
|
|
containing DEFLATE compressed data. It gives better compression
|
|
|
|
ratios than the default LZ4 format, while it costs more CPU
|
|
|
|
overhead.
|
|
|
|
|
|
|
|
DEFLATE support is an experimental feature for now and so most
|
|
|
|
file systems will be readable without selecting this option.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2022-04-25 12:21:33 +00:00
|
|
|
config EROFS_FS_ONDEMAND
|
|
|
|
bool "EROFS fscache-based on-demand read support"
|
2023-11-20 15:55:18 +00:00
|
|
|
depends on EROFS_FS
|
|
|
|
select NETFS_SUPPORT
|
|
|
|
select FSCACHE
|
|
|
|
select CACHEFILES
|
|
|
|
select CACHEFILES_ONDEMAND
|
2022-04-25 12:21:33 +00:00
|
|
|
help
|
|
|
|
This permits EROFS to use fscache-backed data blobs with on-demand
|
|
|
|
read support.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2023-02-08 09:33:22 +00:00
|
|
|
|
|
|
|
config EROFS_FS_PCPU_KTHREAD
|
|
|
|
bool "EROFS per-cpu decompression kthread workers"
|
|
|
|
depends on EROFS_FS_ZIP
|
|
|
|
help
|
|
|
|
Saying Y here enables per-CPU kthread workers pool to carry out
|
|
|
|
async decompression for low latencies on some architectures.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config EROFS_FS_PCPU_KTHREAD_HIPRI
|
|
|
|
bool "EROFS high priority per-CPU kthread workers"
|
|
|
|
depends on EROFS_FS_ZIP && EROFS_FS_PCPU_KTHREAD
|
2023-05-22 09:21:41 +00:00
|
|
|
default y
|
2023-02-08 09:33:22 +00:00
|
|
|
help
|
|
|
|
This permits EROFS to configure per-CPU kthread workers to run
|
|
|
|
at higher priority.
|
|
|
|
|
|
|
|
If unsure, say N.
|