blob: 976b1a8613b04998683a0c862dc54fbe24db5af7 [file] [log] [blame]
Jaegeuk Kima14d53932012-11-02 17:25:27 +09001config F2FS_FS
Jaegeuk Kimd7196c52015-03-03 17:06:55 -08002 tristate "F2FS filesystem support"
Jaegeuk Kim573ea5f2012-11-30 17:32:08 +09003 depends on BLOCK
Keith Mok43b65732016-03-02 12:04:24 -08004 select CRYPTO
5 select CRYPTO_CRC32
Chandan Rajendra3ce5fa32018-12-12 15:20:12 +05306 select F2FS_FS_XATTR if FS_ENCRYPTION
Jaegeuk Kima14d53932012-11-02 17:25:27 +09007 help
8 F2FS is based on Log-structured File System (LFS), which supports
9 versatile "flash-friendly" features. The design has been focused on
10 addressing the fundamental issues in LFS, which are snowball effect
11 of wandering tree and high cleaning overhead.
12
13 Since flash-based storages show different characteristics according to
14 the internal geometry or flash memory management schemes aka FTL, F2FS
15 and tools support various parameters not only for configuring on-disk
16 layout, but also for selecting allocation and cleaning algorithms.
17
18 If unsure, say N.
19
20config F2FS_STAT_FS
21 bool "F2FS Status Information"
22 depends on F2FS_FS && DEBUG_FS
23 default y
24 help
25 /sys/kernel/debug/f2fs/ contains information about all the partitions
26 mounted as f2fs. Each file shows the whole f2fs information.
27
28 /sys/kernel/debug/f2fs/status includes:
arter97e1c42042014-08-06 23:22:50 +090029 - major filesystem information managed by f2fs currently
Jaegeuk Kima14d53932012-11-02 17:25:27 +090030 - average SIT information about whole segments
31 - current memory footprint consumed by f2fs.
32
33config F2FS_FS_XATTR
34 bool "F2FS extended attributes"
35 depends on F2FS_FS
36 default y
37 help
38 Extended attributes are name:value pairs associated with inodes by
39 the kernel or by users (see the attr(5) manual page, or visit
40 <http://acl.bestbits.at/> for details).
41
42 If unsure, say N.
43
44config F2FS_FS_POSIX_ACL
45 bool "F2FS Access Control Lists"
46 depends on F2FS_FS_XATTR
47 select FS_POSIX_ACL
48 default y
49 help
50 Posix Access Control Lists (ACLs) support permissions for users and
Junesung Lee217940d2015-08-18 22:42:15 +090051 groups beyond the owner/group/world scheme.
Jaegeuk Kima14d53932012-11-02 17:25:27 +090052
53 To learn more about Access Control Lists, visit the POSIX ACLs for
54 Linux website <http://acl.bestbits.at/>.
55
56 If you don't know what Access Control Lists are, say N
Jaegeuk Kim8ae8f162013-06-03 19:46:19 +090057
58config F2FS_FS_SECURITY
59 bool "F2FS Security Labels"
60 depends on F2FS_FS_XATTR
61 help
62 Security labels provide an access control facility to support Linux
63 Security Models (LSMs) accepted by AppArmor, SELinux, Smack and TOMOYO
64 Linux. This option enables an extended attribute handler for file
65 security labels in the f2fs filesystem, so that it requires enabling
66 the extended attribute support in advance.
67
68 If you are not using a security module, say N.
Jaegeuk Kim3b218e32013-10-29 15:43:01 +090069
70config F2FS_CHECK_FS
71 bool "F2FS consistency checking feature"
72 depends on F2FS_FS
73 help
arter97e1c42042014-08-06 23:22:50 +090074 Enables BUG_ONs which check the filesystem consistency in runtime.
Jaegeuk Kim3b218e32013-10-29 15:43:01 +090075
76 If you want to improve the performance, say N.
Jaegeuk Kim63f92dd2014-12-17 19:45:05 -080077
Jaegeuk Kimd33793f2015-04-10 16:28:26 -070078config F2FS_FS_ENCRYPTION
79 bool "F2FS Encryption"
80 depends on F2FS_FS
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070081 select FS_ENCRYPTION
Jaegeuk Kimd33793f2015-04-10 16:28:26 -070082 help
Chandan Rajendra3ce5fa32018-12-12 15:20:12 +053083 This kconfig symbol is deprecated; now it just selects
84 FS_ENCRYPTION. Use CONFIG_FS_ENCRYPTION=y in new config
85 files.
Jaegeuk Kimd33793f2015-04-10 16:28:26 -070086
Jaegeuk Kim63f92dd2014-12-17 19:45:05 -080087config F2FS_IO_TRACE
88 bool "F2FS IO tracer"
89 depends on F2FS_FS
90 depends on FUNCTION_TRACER
91 help
92 F2FS IO trace is based on a function trace, which gathers process
93 information and block IO patterns in the filesystem level.
94
95 If unsure, say N.
Jaegeuk Kim73faec42016-04-29 15:34:32 -070096
97config F2FS_FAULT_INJECTION
98 bool "F2FS fault injection facility"
99 depends on F2FS_FS
100 help
101 Test F2FS to inject faults such as ENOMEM, ENOSPC, and so on.
102
103 If unsure, say N.