Kconfig 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. config BTRFS_FS
  2. tristate "Btrfs filesystem support"
  3. select LIBCRC32C
  4. select ZLIB_INFLATE
  5. select ZLIB_DEFLATE
  6. select LZO_COMPRESS
  7. select LZO_DECOMPRESS
  8. select RAID6_PQ
  9. select XOR_BLOCKS
  10. help
  11. Btrfs is a general purpose copy-on-write filesystem with extents,
  12. writable snapshotting, support for multiple devices and many more
  13. features focused on fault tolerance, repair and easy administration.
  14. The filesystem disk format is no longer unstable, and it's not
  15. expected to change unless there are strong reasons to do so. If there
  16. is a format change, file systems with a unchanged format will
  17. continue to be mountable and usable by newer kernels.
  18. For more information, please see the web pages at
  19. http://btrfs.wiki.kernel.org.
  20. To compile this file system support as a module, choose M here. The
  21. module will be called btrfs.
  22. If unsure, say N.
  23. config BTRFS_FS_POSIX_ACL
  24. bool "Btrfs POSIX Access Control Lists"
  25. depends on BTRFS_FS
  26. select FS_POSIX_ACL
  27. help
  28. POSIX Access Control Lists (ACLs) support permissions for users and
  29. groups beyond the owner/group/world scheme.
  30. To learn more about Access Control Lists, visit the POSIX ACLs for
  31. Linux website <http://acl.bestbits.at/>.
  32. If you don't know what Access Control Lists are, say N
  33. config BTRFS_FS_CHECK_INTEGRITY
  34. bool "Btrfs with integrity check tool compiled in (DANGEROUS)"
  35. depends on BTRFS_FS
  36. help
  37. Adds code that examines all block write requests (including
  38. writes of the super block). The goal is to verify that the
  39. state of the filesystem on disk is always consistent, i.e.,
  40. after a power-loss or kernel panic event the filesystem is
  41. in a consistent state.
  42. If the integrity check tool is included and activated in
  43. the mount options, plenty of kernel memory is used, and
  44. plenty of additional CPU cycles are spent. Enabling this
  45. functionality is not intended for normal use.
  46. In most cases, unless you are a btrfs developer who needs
  47. to verify the integrity of (super)-block write requests
  48. during the run of a regression test, say N
  49. config BTRFS_FS_RUN_SANITY_TESTS
  50. bool "Btrfs will run sanity tests upon loading"
  51. depends on BTRFS_FS
  52. help
  53. This will run some basic sanity tests on the free space cache
  54. code to make sure it is acting as it should. These are mostly
  55. regression tests and are only really interesting to btrfs
  56. developers.
  57. If unsure, say N.
  58. config BTRFS_DEBUG
  59. bool "Btrfs debugging support"
  60. depends on BTRFS_FS
  61. help
  62. Enable run-time debugging support for the btrfs filesystem. This may
  63. enable additional and expensive checks with negative impact on
  64. performance, or export extra information via sysfs.
  65. If unsure, say N.
  66. config BTRFS_ASSERT
  67. bool "Btrfs assert support"
  68. depends on BTRFS_FS
  69. help
  70. Enable run-time assertion checking. This will result in panics if
  71. any of the assertions trip. This is meant for btrfs developers only.
  72. If unsure, say N.