blob: 29228f5899cd453836f1254dd70c382e68ce39d1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001config XFS_FS
2 tristate "XFS filesystem support"
David Howells93614012006-09-30 20:45:40 +02003 depends on BLOCK
Christoph Hellwigd296d302009-01-19 02:02:57 +01004 select EXPORTFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 help
6 XFS is a high performance journaling filesystem which originated
7 on the SGI IRIX platform. It is completely multi-threaded, can
8 support large files and large filesystems, extended attributes,
9 variable block sizes, is extent based, and makes extensive use of
10 Btrees (directories, extents, free space) to aid both performance
11 and scalability.
12
13 Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
14 for complete details. This implementation is on-disk compatible
15 with the IRIX version of XFS.
16
17 To compile this file system support as a module, choose M here: the
18 module will be called xfs. Be aware, however, that if the file
19 system of your root partition is compiled as a module, you'll need
20 to use an initial ramdisk (initrd) to boot.
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022config XFS_QUOTA
Nathan Scott538524a2005-11-03 13:55:06 +110023 bool "XFS Quota support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 depends on XFS_FS
25 help
26 If you say Y here, you will be able to set limits for disk usage on
27 a per user and/or a per group basis under XFS. XFS considers quota
28 information as filesystem metadata and uses journaling to provide a
29 higher level guarantee of consistency. The on-disk data format for
30 quota is also compatible with the IRIX version of XFS, allowing a
31 filesystem to be migrated between Linux and IRIX without any need
32 for conversion.
33
34 If unsure, say N. More comprehensive documentation can be found in
35 README.quota in the xfsprogs package. XFS quota can be used either
36 with or without the generic quota support enabled (CONFIG_QUOTA) -
37 they are completely independent subsystems.
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039config XFS_POSIX_ACL
Nathan Scott20ba0282005-09-08 15:34:58 +100040 bool "XFS POSIX ACL support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 depends on XFS_FS
42 help
43 POSIX Access Control Lists (ACLs) support permissions for users and
44 groups beyond the owner/group/world scheme.
45
46 To learn more about Access Control Lists, visit the POSIX ACLs for
47 Linux website <http://acl.bestbits.at/>.
48
49 If you don't know what Access Control Lists are, say N.
50
Nathan Scott20ba0282005-09-08 15:34:58 +100051config XFS_RT
Nathan Scottd7ede1a2006-06-13 16:28:11 +100052 bool "XFS Realtime subvolume support"
53 depends on XFS_FS
Nathan Scott20ba0282005-09-08 15:34:58 +100054 help
55 If you say Y here you will be able to mount and use XFS filesystems
Nathan Scottd7ede1a2006-06-13 16:28:11 +100056 which contain a realtime subvolume. The realtime subvolume is a
57 separate area of disk space where only file data is stored. It was
58 originally designed to provide deterministic data rates suitable
59 for media streaming applications, but is also useful as a generic
60 mechanism for ensuring data and metadata/log I/Os are completely
61 separated. Regular file I/Os are isolated to a separate device
62 from all other requests, and this can be done quite transparently
63 to applications via the inherit-realtime directory inode flag.
Nathan Scott20ba0282005-09-08 15:34:58 +100064
Nathan Scottd7ede1a2006-06-13 16:28:11 +100065 See the xfs man page in section 5 for additional information.
Nathan Scott20ba0282005-09-08 15:34:58 +100066
67 If unsure, say N.
Christoph Hellwig7788fae2008-04-21 17:22:27 +100068
69config XFS_DEBUG
70 bool "XFS Debugging support (EXPERIMENTAL)"
71 depends on XFS_FS && EXPERIMENTAL
72 help
73 Say Y here to get an XFS build with many debugging features,
74 including ASSERT checks, function wrappers around macros,
75 and extra sanity-checking functions in various code paths.
76
77 Note that the resulting code will be HUGE and SLOW, and probably
78 not useful unless you are debugging a particular problem.
79
80 Say N unless you are an XFS developer, or you play one on TV.