diff options
Diffstat (limited to 'fs/Kconfig')
-rw-r--r-- | fs/Kconfig | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index 9f7270f36b2a..a97263be6a91 100644 --- a/fs/Kconfig +++ b/fs/Kconfig | |||
@@ -39,6 +39,13 @@ config FS_POSIX_ACL | |||
39 | bool | 39 | bool |
40 | default n | 40 | default n |
41 | 41 | ||
42 | source "fs/xfs/Kconfig" | ||
43 | source "fs/gfs2/Kconfig" | ||
44 | source "fs/ocfs2/Kconfig" | ||
45 | source "fs/btrfs/Kconfig" | ||
46 | |||
47 | endif # BLOCK | ||
48 | |||
42 | config FILE_LOCKING | 49 | config FILE_LOCKING |
43 | bool "Enable POSIX file locking API" if EMBEDDED | 50 | bool "Enable POSIX file locking API" if EMBEDDED |
44 | default y | 51 | default y |
@@ -47,13 +54,6 @@ config FILE_LOCKING | |||
47 | for filesystems like NFS and for the flock() system | 54 | for filesystems like NFS and for the flock() system |
48 | call. Disabling this option saves about 11k. | 55 | call. Disabling this option saves about 11k. |
49 | 56 | ||
50 | source "fs/xfs/Kconfig" | ||
51 | source "fs/gfs2/Kconfig" | ||
52 | source "fs/ocfs2/Kconfig" | ||
53 | source "fs/btrfs/Kconfig" | ||
54 | |||
55 | endif # BLOCK | ||
56 | |||
57 | source "fs/notify/Kconfig" | 57 | source "fs/notify/Kconfig" |
58 | 58 | ||
59 | source "fs/quota/Kconfig" | 59 | source "fs/quota/Kconfig" |
@@ -62,6 +62,16 @@ source "fs/autofs/Kconfig" | |||
62 | source "fs/autofs4/Kconfig" | 62 | source "fs/autofs4/Kconfig" |
63 | source "fs/fuse/Kconfig" | 63 | source "fs/fuse/Kconfig" |
64 | 64 | ||
65 | config CUSE | ||
66 | tristate "Character device in Userpace support" | ||
67 | depends on FUSE_FS | ||
68 | help | ||
69 | This FUSE extension allows character devices to be | ||
70 | implemented in userspace. | ||
71 | |||
72 | If you want to develop or use userspace character device | ||
73 | based on CUSE, answer Y or M. | ||
74 | |||
65 | config GENERIC_ACL | 75 | config GENERIC_ACL |
66 | bool | 76 | bool |
67 | select FS_POSIX_ACL | 77 | select FS_POSIX_ACL |
@@ -124,7 +134,7 @@ config TMPFS_POSIX_ACL | |||
124 | config HUGETLBFS | 134 | config HUGETLBFS |
125 | bool "HugeTLB file system support" | 135 | bool "HugeTLB file system support" |
126 | depends on X86 || IA64 || PPC64 || SPARC64 || (SUPERH && MMU) || \ | 136 | depends on X86 || IA64 || PPC64 || SPARC64 || (SUPERH && MMU) || \ |
127 | (S390 && 64BIT) || BROKEN | 137 | (S390 && 64BIT) || SYS_SUPPORTS_HUGETLBFS || BROKEN |
128 | help | 138 | help |
129 | hugetlbfs is a filesystem backing for HugeTLB pages, based on | 139 | hugetlbfs is a filesystem backing for HugeTLB pages, based on |
130 | ramfs. For architectures that support it, say Y here and read | 140 | ramfs. For architectures that support it, say Y here and read |
@@ -226,10 +236,12 @@ source "fs/nfsd/Kconfig" | |||
226 | 236 | ||
227 | config LOCKD | 237 | config LOCKD |
228 | tristate | 238 | tristate |
239 | depends on FILE_LOCKING | ||
229 | 240 | ||
230 | config LOCKD_V4 | 241 | config LOCKD_V4 |
231 | bool | 242 | bool |
232 | depends on NFSD_V3 || NFS_V3 | 243 | depends on NFSD_V3 || NFS_V3 |
244 | depends on FILE_LOCKING | ||
233 | default y | 245 | default y |
234 | 246 | ||
235 | config EXPORTFS | 247 | config EXPORTFS |