Kconfig 3.3 KB

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