blob: 5f583c8a36d012ede55d27c5becf56370908a65f [file] [log] [blame]
Alexey Dobriyan335debe2009-01-22 10:27:30 +03001config BTRFS_FS
2 tristate "Btrfs filesystem (EXPERIMENTAL) Unstable disk format"
3 depends on EXPERIMENTAL
4 select LIBCRC32C
5 select ZLIB_INFLATE
6 select ZLIB_DEFLATE
Li Zefana6fa6fa2010-10-25 15:12:26 +08007 select LZO_COMPRESS
8 select LZO_DECOMPRESS
David Woodhouse53b381b2013-01-29 18:40:14 -05009 select RAID6_PQ
Tomasz Torcz10e78e32013-02-05 09:38:53 -050010 select XOR_BLOCKS
David Woodhouse53b381b2013-01-29 18:40:14 -050011
Alexey Dobriyan335debe2009-01-22 10:27:30 +030012 help
13 Btrfs is a new filesystem with extents, writable snapshotting,
14 support for multiple devices and many more features.
15
16 Btrfs is highly experimental, and THE DISK FORMAT IS NOT YET
17 FINALIZED. You should say N here unless you are interested in
18 testing Btrfs with non-critical data.
19
20 To compile this file system support as a module, choose M here. The
21 module will be called btrfs.
22
23 If unsure, say N.
Christian Hessebef62ef2009-02-04 09:28:28 -050024
25config BTRFS_FS_POSIX_ACL
26 bool "Btrfs POSIX Access Control Lists"
27 depends on BTRFS_FS
28 select FS_POSIX_ACL
29 help
30 POSIX Access Control Lists (ACLs) support permissions for users and
31 groups beyond the owner/group/world scheme.
32
33 To learn more about Access Control Lists, visit the POSIX ACLs for
34 Linux website <http://acl.bestbits.at/>.
35
36 If you don't know what Access Control Lists are, say N
Stefan Behrensc975dd42011-11-01 17:06:04 +010037
38config BTRFS_FS_CHECK_INTEGRITY
39 bool "Btrfs with integrity check tool compiled in (DANGEROUS)"
40 depends on BTRFS_FS
41 help
42 Adds code that examines all block write requests (including
43 writes of the super block). The goal is to verify that the
44 state of the filesystem on disk is always consistent, i.e.,
45 after a power-loss or kernel panic event the filesystem is
46 in a consistent state.
47
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
53 In most cases, unless you are a btrfs developer who needs
54 to verify the integrity of (super)-block write requests
55 during the run of a regression test, say N