aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/Kconfig
diff options
context:
space:
mode:
authorNathan Scott <nathans@bruce>2005-09-08 01:34:58 -0400
committerNathan Scott <nathans@bruce>2005-09-08 01:34:58 -0400
commit20ba02879bc78cdf1ed89a1c6a92ee55d31ee103 (patch)
tree3a1c64cb8121d606ef90f9f595434f7f9409d730 /fs/xfs/Kconfig
parentf016bad6be720496b5582a59738bca00a26f876c (diff)
[XFS] Remove special Kconfig XFS menu, make XFS options "inline".
Signed-off-by: Eric Sandeen <sandeen@sgi.com> Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/Kconfig')
-rw-r--r--fs/xfs/Kconfig45
1 files changed, 21 insertions, 24 deletions
diff --git a/fs/xfs/Kconfig b/fs/xfs/Kconfig
index c92306f0fdc..8e8f32dabe5 100644
--- a/fs/xfs/Kconfig
+++ b/fs/xfs/Kconfig
@@ -1,5 +1,3 @@
1menu "XFS support"
2
3config XFS_FS 1config XFS_FS
4 tristate "XFS filesystem support" 2 tristate "XFS filesystem support"
5 select EXPORTFS if NFSD!=n 3 select EXPORTFS if NFSD!=n
@@ -22,27 +20,11 @@ config XFS_FS
22 20
23config XFS_EXPORT 21config XFS_EXPORT
24 bool 22 bool
25 default y if XFS_FS && EXPORTFS 23 depends on XFS_FS && EXPORTFS
26 24 default y
27config XFS_RT
28 bool "Realtime support (EXPERIMENTAL)"
29 depends on XFS_FS && EXPERIMENTAL
30 help
31 If you say Y here you will be able to mount and use XFS filesystems
32 which contain a realtime subvolume. The realtime subvolume is a
33 separate area of disk space where only file data is stored. The
34 realtime subvolume is designed to provide very deterministic
35 data rates suitable for media streaming applications.
36
37 See the xfs man page in section 5 for a bit more information.
38
39 This feature is unsupported at this time, is not yet fully
40 functional, and may cause serious problems.
41
42 If unsure, say N.
43 25
44config XFS_QUOTA 26config XFS_QUOTA
45 bool "Quota support" 27 tristate "XFS Quota support"
46 depends on XFS_FS 28 depends on XFS_FS
47 help 29 help
48 If you say Y here, you will be able to set limits for disk usage on 30 If you say Y here, you will be able to set limits for disk usage on
@@ -59,7 +41,7 @@ config XFS_QUOTA
59 they are completely independent subsystems. 41 they are completely independent subsystems.
60 42
61config XFS_SECURITY 43config XFS_SECURITY
62 bool "Security Label support" 44 bool "XFS Security Label support"
63 depends on XFS_FS 45 depends on XFS_FS
64 help 46 help
65 Security labels support alternative access control models 47 Security labels support alternative access control models
@@ -71,7 +53,7 @@ config XFS_SECURITY
71 extended attributes for inode security labels, say N. 53 extended attributes for inode security labels, say N.
72 54
73config XFS_POSIX_ACL 55config XFS_POSIX_ACL
74 bool "POSIX ACL support" 56 bool "XFS POSIX ACL support"
75 depends on XFS_FS 57 depends on XFS_FS
76 help 58 help
77 POSIX Access Control Lists (ACLs) support permissions for users and 59 POSIX Access Control Lists (ACLs) support permissions for users and
@@ -82,4 +64,19 @@ config XFS_POSIX_ACL
82 64
83 If you don't know what Access Control Lists are, say N. 65 If you don't know what Access Control Lists are, say N.
84 66
85endmenu 67config XFS_RT
68 bool "XFS Realtime support (EXPERIMENTAL)"
69 depends on XFS_FS && EXPERIMENTAL
70 help
71 If you say Y here you will be able to mount and use XFS filesystems
72 which contain a realtime subvolume. The realtime subvolume is a
73 separate area of disk space where only file data is stored. The
74 realtime subvolume is designed to provide very deterministic
75 data rates suitable for media streaming applications.
76
77 See the xfs man page in section 5 for a bit more information.
78
79 This feature is unsupported at this time, is not yet fully
80 functional, and may cause serious problems.
81
82 If unsure, say N.