Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # SPDX-License-Identifier: GPL-2.0
  2. config BTRFS_FS
  3. tristate "Btrfs filesystem support"
  4. select BLK_CGROUP_PUNT_BIO
  5. select CRYPTO
  6. select CRYPTO_CRC32C
  7. select LIBCRC32C
  8. select CRYPTO_XXHASH
  9. select CRYPTO_SHA256
  10. select CRYPTO_BLAKE2B
  11. select ZLIB_INFLATE
  12. select ZLIB_DEFLATE
  13. select LZO_COMPRESS
  14. select LZO_DECOMPRESS
  15. select ZSTD_COMPRESS
  16. select ZSTD_DECOMPRESS
  17. select FS_IOMAP
  18. select RAID6_PQ
  19. select XOR_BLOCKS
  20. depends on PAGE_SIZE_LESS_THAN_256KB
  21. help
  22. Btrfs is a general purpose copy-on-write filesystem with extents,
  23. writable snapshotting, support for multiple devices and many more
  24. features focused on fault tolerance, repair and easy administration.
  25. The filesystem disk format is no longer unstable, and it's not
  26. expected to change unless there are strong reasons to do so. If there
  27. is a format change, file systems with a unchanged format will
  28. continue to be mountable and usable by newer kernels.
  29. For more information, please see the web pages at
  30. https://btrfs.readthedocs.io
  31. To compile this file system support as a module, choose M here. The
  32. module will be called btrfs.
  33. If unsure, say N.
  34. config BTRFS_FS_POSIX_ACL
  35. bool "Btrfs POSIX Access Control Lists"
  36. depends on BTRFS_FS
  37. select FS_POSIX_ACL
  38. help
  39. POSIX Access Control Lists (ACLs) support permissions for users and
  40. groups beyond the owner/group/world scheme.
  41. If you don't know what Access Control Lists are, say N
  42. config BTRFS_FS_RUN_SANITY_TESTS
  43. bool "Btrfs will run sanity tests upon loading"
  44. depends on BTRFS_FS
  45. help
  46. This will run some basic sanity tests on the free space cache
  47. code to make sure it is acting as it should. These are mostly
  48. regression tests and are only really interesting to btrfs
  49. developers.
  50. If unsure, say N.
  51. config BTRFS_DEBUG
  52. bool "Btrfs debugging support"
  53. depends on BTRFS_FS
  54. help
  55. Enable run-time debugging support for the btrfs filesystem. This may
  56. enable additional and expensive checks with negative impact on
  57. performance, or export extra information via sysfs.
  58. If unsure, say N.
  59. config BTRFS_ASSERT
  60. bool "Btrfs assert support"
  61. depends on BTRFS_FS
  62. help
  63. Enable run-time assertion checking. This will result in panics if
  64. any of the assertions trip. This is meant for btrfs developers only.
  65. If unsure, say N.
  66. config BTRFS_FS_REF_VERIFY
  67. bool "Btrfs with the ref verify tool compiled in"
  68. depends on BTRFS_FS
  69. default n
  70. help
  71. Enable run-time extent reference verification instrumentation. This
  72. is meant to be used by btrfs developers for tracking down extent
  73. reference problems or verifying they didn't break something.
  74. If unsure, say N.