David Sterba | 852eb3a | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | |
Alexey Dobriyan | 335debe | 2009-01-22 10:27:30 +0300 | [diff] [blame] | 3 | config BTRFS_FS |
David Sterba | aa825914 | 2013-03-19 11:50:59 +0000 | [diff] [blame] | 4 | tristate "Btrfs filesystem support" |
Johannes Thumshirn | d517857 | 2019-06-03 16:58:57 +0200 | [diff] [blame] | 5 | select CRYPTO |
| 6 | select CRYPTO_CRC32C |
YueHaibing | 314c4cd | 2019-07-02 22:39:03 +0800 | [diff] [blame] | 7 | select LIBCRC32C |
Johannes Thumshirn | 3951e7f | 2019-10-07 11:11:01 +0200 | [diff] [blame] | 8 | select CRYPTO_XXHASH |
Johannes Thumshirn | 3831bf0 | 2019-10-07 11:11:02 +0200 | [diff] [blame] | 9 | select CRYPTO_SHA256 |
David Sterba | 78f926f | 2019-11-28 13:02:32 +0100 | [diff] [blame] | 10 | select CRYPTO_BLAKE2B |
Alexey Dobriyan | 335debe | 2009-01-22 10:27:30 +0300 | [diff] [blame] | 11 | select ZLIB_INFLATE |
| 12 | select ZLIB_DEFLATE |
Li Zefan | a6fa6fa | 2010-10-25 15:12:26 +0800 | [diff] [blame] | 13 | select LZO_COMPRESS |
| 14 | select LZO_DECOMPRESS |
Nick Terrell | 5c1aab1 | 2017-08-09 19:39:02 -0700 | [diff] [blame] | 15 | select ZSTD_COMPRESS |
| 16 | select ZSTD_DECOMPRESS |
Goldwyn Rodrigues | f85781f | 2020-08-17 11:18:21 -0500 | [diff] [blame] | 17 | select FS_IOMAP |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 18 | select RAID6_PQ |
Tomasz Torcz | 10e78e3 | 2013-02-05 09:38:53 -0500 | [diff] [blame] | 19 | select XOR_BLOCKS |
Pranith Kumar | 83fe27e | 2014-12-05 11:24:45 -0500 | [diff] [blame] | 20 | select SRCU |
Christophe Leroy | b05fbcc | 2021-06-10 05:23:02 +0000 | [diff] [blame] | 21 | depends on !PPC_256K_PAGES # powerpc |
| 22 | depends on !PAGE_SIZE_256KB # hexagon |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 23 | |
Alexey Dobriyan | 335debe | 2009-01-22 10:27:30 +0300 | [diff] [blame] | 24 | help |
David Sterba | 4204617 | 2013-11-20 14:32:34 +0100 | [diff] [blame] | 25 | Btrfs is a general purpose copy-on-write filesystem with extents, |
| 26 | writable snapshotting, support for multiple devices and many more |
| 27 | features focused on fault tolerance, repair and easy administration. |
Alexey Dobriyan | 335debe | 2009-01-22 10:27:30 +0300 | [diff] [blame] | 28 | |
David Sterba | 4204617 | 2013-11-20 14:32:34 +0100 | [diff] [blame] | 29 | The filesystem disk format is no longer unstable, and it's not |
| 30 | expected to change unless there are strong reasons to do so. If there |
| 31 | is a format change, file systems with a unchanged format will |
| 32 | continue to be mountable and usable by newer kernels. |
| 33 | |
| 34 | For more information, please see the web pages at |
| 35 | http://btrfs.wiki.kernel.org. |
Alexey Dobriyan | 335debe | 2009-01-22 10:27:30 +0300 | [diff] [blame] | 36 | |
| 37 | To compile this file system support as a module, choose M here. The |
| 38 | module will be called btrfs. |
| 39 | |
| 40 | If unsure, say N. |
Christian Hesse | bef62ef | 2009-02-04 09:28:28 -0500 | [diff] [blame] | 41 | |
| 42 | config BTRFS_FS_POSIX_ACL |
| 43 | bool "Btrfs POSIX Access Control Lists" |
| 44 | depends on BTRFS_FS |
| 45 | select FS_POSIX_ACL |
| 46 | help |
| 47 | POSIX Access Control Lists (ACLs) support permissions for users and |
| 48 | groups beyond the owner/group/world scheme. |
| 49 | |
Christian Hesse | bef62ef | 2009-02-04 09:28:28 -0500 | [diff] [blame] | 50 | If you don't know what Access Control Lists are, say N |
Stefan Behrens | c975dd4 | 2011-11-01 17:06:04 +0100 | [diff] [blame] | 51 | |
| 52 | config BTRFS_FS_CHECK_INTEGRITY |
| 53 | bool "Btrfs with integrity check tool compiled in (DANGEROUS)" |
| 54 | depends on BTRFS_FS |
| 55 | help |
| 56 | Adds code that examines all block write requests (including |
| 57 | writes of the super block). The goal is to verify that the |
| 58 | state of the filesystem on disk is always consistent, i.e., |
| 59 | after a power-loss or kernel panic event the filesystem is |
| 60 | in a consistent state. |
| 61 | |
| 62 | If the integrity check tool is included and activated in |
| 63 | the mount options, plenty of kernel memory is used, and |
| 64 | plenty of additional CPU cycles are spent. Enabling this |
| 65 | functionality is not intended for normal use. |
| 66 | |
| 67 | In most cases, unless you are a btrfs developer who needs |
| 68 | to verify the integrity of (super)-block write requests |
| 69 | during the run of a regression test, say N |
Josef Bacik | 74255aa | 2013-03-15 09:47:08 -0400 | [diff] [blame] | 70 | |
| 71 | config BTRFS_FS_RUN_SANITY_TESTS |
| 72 | bool "Btrfs will run sanity tests upon loading" |
| 73 | depends on BTRFS_FS |
| 74 | help |
| 75 | This will run some basic sanity tests on the free space cache |
| 76 | code to make sure it is acting as it should. These are mostly |
Michael Witten | a26a874 | 2013-08-14 09:59:45 +0000 | [diff] [blame] | 77 | regression tests and are only really interesting to btrfs |
| 78 | developers. |
Josef Bacik | 74255aa | 2013-03-15 09:47:08 -0400 | [diff] [blame] | 79 | |
| 80 | If unsure, say N. |
| 81 | |
Eric Sandeen | 6d49ba1 | 2013-04-22 16:12:31 +0000 | [diff] [blame] | 82 | config BTRFS_DEBUG |
| 83 | bool "Btrfs debugging support" |
| 84 | depends on BTRFS_FS |
| 85 | help |
| 86 | Enable run-time debugging support for the btrfs filesystem. This may |
| 87 | enable additional and expensive checks with negative impact on |
| 88 | performance, or export extra information via sysfs. |
| 89 | |
| 90 | If unsure, say N. |
Josef Bacik | 2e17c7c6 | 2013-08-26 16:53:15 -0400 | [diff] [blame] | 91 | |
| 92 | config BTRFS_ASSERT |
| 93 | bool "Btrfs assert support" |
| 94 | depends on BTRFS_FS |
| 95 | help |
| 96 | Enable run-time assertion checking. This will result in panics if |
| 97 | any of the assertions trip. This is meant for btrfs developers only. |
| 98 | |
| 99 | If unsure, say N. |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 100 | |
| 101 | config BTRFS_FS_REF_VERIFY |
| 102 | bool "Btrfs with the ref verify tool compiled in" |
| 103 | depends on BTRFS_FS |
| 104 | default n |
| 105 | help |
| 106 | Enable run-time extent reference verification instrumentation. This |
| 107 | is meant to be used by btrfs developers for tracking down extent |
| 108 | reference problems or verifying they didn't break something. |
| 109 | |
| 110 | If unsure, say N. |