Blame view

fs/f2fs/Kconfig 3.21 KB
a14d53937   Jaegeuk Kim   f2fs: update Kcon...
1
  config F2FS_FS
d7196c5a3   Jaegeuk Kim   f2fs: relocate Kc...
2
  	tristate "F2FS filesystem support"
573ea5fcf   Jaegeuk Kim   f2fs: resolve bui...
3
  	depends on BLOCK
43b6573ba   Keith Mok   f2fs: use cryptoa...
4
5
  	select CRYPTO
  	select CRYPTO_CRC32
a14d53937   Jaegeuk Kim   f2fs: update Kcon...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  	help
  	  F2FS is based on Log-structured File System (LFS), which supports
  	  versatile "flash-friendly" features. The design has been focused on
  	  addressing the fundamental issues in LFS, which are snowball effect
  	  of wandering tree and high cleaning overhead.
  
  	  Since flash-based storages show different characteristics according to
  	  the internal geometry or flash memory management schemes aka FTL, F2FS
  	  and tools support various parameters not only for configuring on-disk
  	  layout, but also for selecting allocation and cleaning algorithms.
  
  	  If unsure, say N.
  
  config F2FS_STAT_FS
  	bool "F2FS Status Information"
  	depends on F2FS_FS && DEBUG_FS
  	default y
  	help
  	  /sys/kernel/debug/f2fs/ contains information about all the partitions
  	  mounted as f2fs. Each file shows the whole f2fs information.
  
  	  /sys/kernel/debug/f2fs/status includes:
e1c420452   arter97   f2fs: fix typo
28
  	    - major filesystem information managed by f2fs currently
a14d53937   Jaegeuk Kim   f2fs: update Kcon...
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  	    - average SIT information about whole segments
  	    - current memory footprint consumed by f2fs.
  
  config F2FS_FS_XATTR
  	bool "F2FS extended attributes"
  	depends on F2FS_FS
  	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 F2FS_FS_POSIX_ACL
  	bool "F2FS Access Control Lists"
  	depends on F2FS_FS_XATTR
  	select FS_POSIX_ACL
  	default y
  	help
  	  Posix Access Control Lists (ACLs) support permissions for users and
217940d4f   Junesung Lee   f2fs: fix typo
50
  	  groups beyond the owner/group/world scheme.
a14d53937   Jaegeuk Kim   f2fs: update Kcon...
51
52
53
54
55
  
  	  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
8ae8f1627   Jaegeuk Kim   f2fs: support xat...
56
57
58
59
60
61
62
63
64
65
66
67
  
  config F2FS_FS_SECURITY
  	bool "F2FS Security Labels"
  	depends on F2FS_FS_XATTR
  	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 f2fs filesystem, so that it requires enabling
  	  the extended attribute support in advance.
  
  	  If you are not using a security module, say N.
3b218e3a2   Jaegeuk Kim   f2fs: introduce C...
68
69
70
71
72
  
  config F2FS_CHECK_FS
  	bool "F2FS consistency checking feature"
  	depends on F2FS_FS
  	help
e1c420452   arter97   f2fs: fix typo
73
  	  Enables BUG_ONs which check the filesystem consistency in runtime.
3b218e3a2   Jaegeuk Kim   f2fs: introduce C...
74
75
  
  	  If you want to improve the performance, say N.
63f92ddc8   Jaegeuk Kim   f2fs: add f2fs_io...
76

d33793fb8   Jaegeuk Kim   f2fs crypto: add ...
77
78
79
80
  config F2FS_FS_ENCRYPTION
  	bool "F2FS Encryption"
  	depends on F2FS_FS
  	depends on F2FS_FS_XATTR
0b81d0779   Jaegeuk Kim   fs crypto: move p...
81
  	select FS_ENCRYPTION
d33793fb8   Jaegeuk Kim   f2fs crypto: add ...
82
83
84
85
86
  	help
  	  Enable encryption of f2fs files and directories.  This
  	  feature is similar to ecryptfs, but it is more memory
  	  efficient since it avoids caching the encrypted and
  	  decrypted pages in the page cache.
63f92ddc8   Jaegeuk Kim   f2fs: add f2fs_io...
87
88
89
90
91
92
93
94
95
  config F2FS_IO_TRACE
  	bool "F2FS IO tracer"
  	depends on F2FS_FS
  	depends on FUNCTION_TRACER
  	help
  	  F2FS IO trace is based on a function trace, which gathers process
  	  information and block IO patterns in the filesystem level.
  
  	  If unsure, say N.
73faec4d9   Jaegeuk Kim   f2fs: add mount o...
96
97
98
99
100
101
102
103
  
  config F2FS_FAULT_INJECTION
  	bool "F2FS fault injection facility"
  	depends on F2FS_FS
  	help
  	  Test F2FS to inject faults such as ENOMEM, ENOSPC, and so on.
  
  	  If unsure, say N.