aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/Kconfig51
-rw-r--r--fs/jfs/Kconfig49
2 files changed, 50 insertions, 50 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 03fde694969e..b39675cc0fc0 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -28,56 +28,7 @@ config FS_MBCACHE
28 default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR 28 default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR
29 29
30source "fs/reiserfs/Kconfig" 30source "fs/reiserfs/Kconfig"
31 31source "fs/jfs/Kconfig"
32config JFS_FS
33 tristate "JFS filesystem support"
34 select NLS
35 help
36 This is a port of IBM's Journaled Filesystem . More information is
37 available in the file <file:Documentation/filesystems/jfs.txt>.
38
39 If you do not intend to use the JFS filesystem, say N.
40
41config JFS_POSIX_ACL
42 bool "JFS POSIX Access Control Lists"
43 depends on JFS_FS
44 select FS_POSIX_ACL
45 help
46 Posix Access Control Lists (ACLs) support permissions for users and
47 groups beyond the owner/group/world scheme.
48
49 To learn more about Access Control Lists, visit the Posix ACLs for
50 Linux website <http://acl.bestbits.at/>.
51
52 If you don't know what Access Control Lists are, say N
53
54config JFS_SECURITY
55 bool "JFS Security Labels"
56 depends on JFS_FS
57 help
58 Security labels support alternative access control models
59 implemented by security modules like SELinux. This option
60 enables an extended attribute handler for file security
61 labels in the jfs filesystem.
62
63 If you are not using a security module that requires using
64 extended attributes for file security labels, say N.
65
66config JFS_DEBUG
67 bool "JFS debugging"
68 depends on JFS_FS
69 help
70 If you are experiencing any problems with the JFS filesystem, say
71 Y here. This will result in additional debugging messages to be
72 written to the system log. Under normal circumstances, this
73 results in very little overhead.
74
75config JFS_STATISTICS
76 bool "JFS statistics"
77 depends on JFS_FS
78 help
79 Enabling this option will cause statistics from the JFS file system
80 to be made available to the user in the /proc/fs/jfs/ directory.
81 32
82config FS_POSIX_ACL 33config FS_POSIX_ACL
83# Posix ACL utility routines (for now, only ext2/ext3/jfs/reiserfs/nfs4) 34# Posix ACL utility routines (for now, only ext2/ext3/jfs/reiserfs/nfs4)
diff --git a/fs/jfs/Kconfig b/fs/jfs/Kconfig
new file mode 100644
index 000000000000..9ff619a6f9cc
--- /dev/null
+++ b/fs/jfs/Kconfig
@@ -0,0 +1,49 @@
1config JFS_FS
2 tristate "JFS filesystem support"
3 select NLS
4 help
5 This is a port of IBM's Journaled Filesystem . More information is
6 available in the file <file:Documentation/filesystems/jfs.txt>.
7
8 If you do not intend to use the JFS filesystem, say N.
9
10config JFS_POSIX_ACL
11 bool "JFS POSIX Access Control Lists"
12 depends on JFS_FS
13 select FS_POSIX_ACL
14 help
15 Posix Access Control Lists (ACLs) support permissions for users and
16 groups beyond the owner/group/world scheme.
17
18 To learn more about Access Control Lists, visit the Posix ACLs for
19 Linux website <http://acl.bestbits.at/>.
20
21 If you don't know what Access Control Lists are, say N
22
23config JFS_SECURITY
24 bool "JFS Security Labels"
25 depends on JFS_FS
26 help
27 Security labels support alternative access control models
28 implemented by security modules like SELinux. This option
29 enables an extended attribute handler for file security
30 labels in the jfs filesystem.
31
32 If you are not using a security module that requires using
33 extended attributes for file security labels, say N.
34
35config JFS_DEBUG
36 bool "JFS debugging"
37 depends on JFS_FS
38 help
39 If you are experiencing any problems with the JFS filesystem, say
40 Y here. This will result in additional debugging messages to be
41 written to the system log. Under normal circumstances, this
42 results in very little overhead.
43
44config JFS_STATISTICS
45 bool "JFS statistics"
46 depends on JFS_FS
47 help
48 Enabling this option will cause statistics from the JFS file system
49 to be made available to the user in the /proc/fs/jfs/ directory.