Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. config F2FS_FS
  2. tristate "F2FS filesystem support"
  3. depends on BLOCK
  4. help
  5. F2FS is based on Log-structured File System (LFS), which supports
  6. versatile "flash-friendly" features. The design has been focused on
  7. addressing the fundamental issues in LFS, which are snowball effect
  8. of wandering tree and high cleaning overhead.
  9. Since flash-based storages show different characteristics according to
  10. the internal geometry or flash memory management schemes aka FTL, F2FS
  11. and tools support various parameters not only for configuring on-disk
  12. layout, but also for selecting allocation and cleaning algorithms.
  13. If unsure, say N.
  14. config F2FS_STAT_FS
  15. bool "F2FS Status Information"
  16. depends on F2FS_FS && DEBUG_FS
  17. default y
  18. help
  19. /sys/kernel/debug/f2fs/ contains information about all the partitions
  20. mounted as f2fs. Each file shows the whole f2fs information.
  21. /sys/kernel/debug/f2fs/status includes:
  22. - major filesystem information managed by f2fs currently
  23. - average SIT information about whole segments
  24. - current memory footprint consumed by f2fs.
  25. config F2FS_FS_XATTR
  26. bool "F2FS extended attributes"
  27. depends on F2FS_FS
  28. default y
  29. help
  30. Extended attributes are name:value pairs associated with inodes by
  31. the kernel or by users (see the attr(5) manual page, or visit
  32. <http://acl.bestbits.at/> for details).
  33. If unsure, say N.
  34. config F2FS_FS_POSIX_ACL
  35. bool "F2FS Access Control Lists"
  36. depends on F2FS_FS_XATTR
  37. select FS_POSIX_ACL
  38. default y
  39. help
  40. Posix Access Control Lists (ACLs) support permissions for users and
  41. groups beyond the owner/group/world scheme.
  42. To learn more about Access Control Lists, visit the POSIX ACLs for
  43. Linux website <http://acl.bestbits.at/>.
  44. If you don't know what Access Control Lists are, say N
  45. config F2FS_FS_SECURITY
  46. bool "F2FS Security Labels"
  47. depends on F2FS_FS_XATTR
  48. help
  49. Security labels provide an access control facility to support Linux
  50. Security Models (LSMs) accepted by AppArmor, SELinux, Smack and TOMOYO
  51. Linux. This option enables an extended attribute handler for file
  52. security labels in the f2fs filesystem, so that it requires enabling
  53. the extended attribute support in advance.
  54. If you are not using a security module, say N.
  55. config F2FS_CHECK_FS
  56. bool "F2FS consistency checking feature"
  57. depends on F2FS_FS
  58. help
  59. Enables BUG_ONs which check the filesystem consistency in runtime.
  60. If you want to improve the performance, say N.
  61. config F2FS_FS_ENCRYPTION
  62. bool "F2FS Encryption"
  63. depends on F2FS_FS
  64. depends on F2FS_FS_XATTR
  65. select CRYPTO_AES
  66. select CRYPTO_CBC
  67. select CRYPTO_ECB
  68. select CRYPTO_XTS
  69. select CRYPTO_CTS
  70. select CRYPTO_CTR
  71. select CRYPTO_SHA256
  72. select KEYS
  73. select ENCRYPTED_KEYS
  74. help
  75. Enable encryption of f2fs files and directories. This
  76. feature is similar to ecryptfs, but it is more memory
  77. efficient since it avoids caching the encrypted and
  78. decrypted pages in the page cache.
  79. config F2FS_IO_TRACE
  80. bool "F2FS IO tracer"
  81. depends on F2FS_FS
  82. depends on FUNCTION_TRACER
  83. help
  84. F2FS IO trace is based on a function trace, which gathers process
  85. information and block IO patterns in the filesystem level.
  86. If unsure, say N.