x86/PCI: use host bridge _CRS info on MSI MS-7253
[linux-flexiantxendom0.git] / fs / Kconfig
1 #
2 # File system configuration
3 #
4
5 menu "File systems"
6
7 if BLOCK
8
9 source "fs/ext2/Kconfig"
10 source "fs/ext3/Kconfig"
11 source "fs/ext4/Kconfig"
12
13 config FS_XIP
14 # execute in place
15         bool
16         depends on EXT2_FS_XIP
17         default y
18
19 source "fs/jbd/Kconfig"
20 source "fs/jbd2/Kconfig"
21
22 config FS_MBCACHE
23 # Meta block cache for Extended Attributes (ext2/ext3/ext4)
24         tristate
25         default y if EXT2_FS=y && EXT2_FS_XATTR
26         default y if EXT3_FS=y && EXT3_FS_XATTR
27         default y if EXT4_FS=y && EXT4_FS_XATTR
28         default m if EXT2_FS_XATTR || EXT3_FS_XATTR || EXT4_FS_XATTR
29
30 source "fs/reiserfs/Kconfig"
31 source "fs/jfs/Kconfig"
32
33 source "fs/xfs/Kconfig"
34 source "fs/gfs2/Kconfig"
35 source "fs/ocfs2/Kconfig"
36 source "fs/btrfs/Kconfig"
37 source "fs/nilfs2/Kconfig"
38
39 endif # BLOCK
40
41 # Posix ACL utility routines
42 #
43 # Note: Posix ACLs can be implemented without these helpers.  Never use
44 # this symbol for ifdefs in core code.
45 #
46 config FS_POSIX_ACL
47         def_bool n
48
49 config EXPORTFS
50         tristate
51
52 config FILE_LOCKING
53         bool "Enable POSIX file locking API" if EXPERT
54         default y
55         help
56           This option enables standard file locking support, required
57           for filesystems like NFS and for the flock() system
58           call. Disabling this option saves about 11k.
59
60 source "fs/notify/Kconfig"
61
62 source "fs/quota/Kconfig"
63
64 source "fs/autofs4/Kconfig"
65 source "fs/fuse/Kconfig"
66 source "fs/overlayfs/Kconfig"
67
68 config CUSE
69         tristate "Character device in Userspace support"
70         depends on FUSE_FS
71         help
72           This FUSE extension allows character devices to be
73           implemented in userspace.
74
75           If you want to develop or use userspace character device
76           based on CUSE, answer Y or M.
77
78 config GENERIC_ACL
79         bool
80         select FS_POSIX_ACL
81
82 menu "Caches"
83
84 source "fs/fscache/Kconfig"
85 source "fs/cachefiles/Kconfig"
86
87 endmenu
88
89 if BLOCK
90 menu "CD-ROM/DVD Filesystems"
91
92 source "fs/isofs/Kconfig"
93 source "fs/udf/Kconfig"
94
95 endmenu
96 endif # BLOCK
97
98 if BLOCK
99 menu "DOS/FAT/NT Filesystems"
100
101 source "fs/fat/Kconfig"
102 source "fs/ntfs/Kconfig"
103
104 endmenu
105 endif # BLOCK
106
107 menu "Pseudo filesystems"
108
109 source "fs/proc/Kconfig"
110 source "fs/sysfs/Kconfig"
111
112 config TMPFS
113         bool "Tmpfs virtual memory file system support (former shm fs)"
114         depends on SHMEM
115         help
116           Tmpfs is a file system which keeps all files in virtual memory.
117
118           Everything in tmpfs is temporary in the sense that no files will be
119           created on your hard drive. The files live in memory and swap
120           space. If you unmount a tmpfs instance, everything stored therein is
121           lost.
122
123           See <file:Documentation/filesystems/tmpfs.txt> for details.
124
125 config TMPFS_POSIX_ACL
126         bool "Tmpfs POSIX Access Control Lists"
127         depends on TMPFS
128         select TMPFS_XATTR
129         select GENERIC_ACL
130         help
131           POSIX Access Control Lists (ACLs) support additional access rights
132           for users and groups beyond the standard owner/group/world scheme,
133           and this option selects support for ACLs specifically for tmpfs
134           filesystems.
135
136           If you've selected TMPFS, it's possible that you'll also need
137           this option as there are a number of Linux distros that require
138           POSIX ACL support under /dev for certain features to work properly.
139           For example, some distros need this feature for ALSA-related /dev
140           files for sound to work properly.  In short, if you're not sure,
141           say Y.
142
143           To learn more about Access Control Lists, visit the POSIX ACLs for
144           Linux website <http://acl.bestbits.at/>.
145
146 config TMPFS_XATTR
147         bool "Tmpfs extended attributes"
148         depends on TMPFS
149         default n
150         help
151           Extended attributes are name:value pairs associated with inodes by
152           the kernel or by users (see the attr(5) manual page, or visit
153           <http://acl.bestbits.at/> for details).
154
155           Currently this enables support for the trusted.* and
156           security.* namespaces.
157
158           You need this for POSIX ACL support on tmpfs.
159
160           If unsure, say N.
161
162 config HUGETLBFS
163         bool "HugeTLB file system support"
164         depends on X86 || IA64 || SPARC64 || (S390 && 64BIT) || \
165                    SYS_SUPPORTS_HUGETLBFS || BROKEN
166         help
167           hugetlbfs is a filesystem backing for HugeTLB pages, based on
168           ramfs. For architectures that support it, say Y here and read
169           <file:Documentation/vm/hugetlbpage.txt> for details.
170
171           If unsure, say N.
172
173 config HUGETLB_PAGE
174         def_bool HUGETLBFS
175
176 source "fs/configfs/Kconfig"
177
178 endmenu
179
180 menuconfig MISC_FILESYSTEMS
181         bool "Miscellaneous filesystems"
182         default y
183         ---help---
184           Say Y here to get to see options for various miscellaneous
185           filesystems, such as filesystems that came from other
186           operating systems.
187
188           This option alone does not add any kernel code.
189
190           If you say N, all options in this submenu will be skipped and
191           disabled; if unsure, say Y here.
192
193 if MISC_FILESYSTEMS
194
195 source "fs/adfs/Kconfig"
196 source "fs/affs/Kconfig"
197 source "fs/ecryptfs/Kconfig"
198 source "fs/hfs/Kconfig"
199 source "fs/hfsplus/Kconfig"
200 source "fs/befs/Kconfig"
201 source "fs/bfs/Kconfig"
202 source "fs/efs/Kconfig"
203 source "fs/jffs2/Kconfig"
204 # UBIFS File system configuration
205 source "fs/ubifs/Kconfig"
206 source "fs/logfs/Kconfig"
207 source "fs/cramfs/Kconfig"
208 source "fs/squashfs/Kconfig"
209 source "fs/freevxfs/Kconfig"
210 source "fs/minix/Kconfig"
211 source "fs/omfs/Kconfig"
212 source "fs/hpfs/Kconfig"
213 source "fs/qnx4/Kconfig"
214 source "fs/romfs/Kconfig"
215 source "fs/pstore/Kconfig"
216 source "fs/sysv/Kconfig"
217 source "fs/ufs/Kconfig"
218 source "fs/exofs/Kconfig"
219
220 endif # MISC_FILESYSTEMS
221
222 source "fs/exofs/Kconfig.ore"
223
224 menuconfig NETWORK_FILESYSTEMS
225         bool "Network File Systems"
226         default y
227         depends on NET
228         ---help---
229           Say Y here to get to see options for network filesystems and
230           filesystem-related networking code, such as NFS daemon and
231           RPCSEC security modules.
232
233           This option alone does not add any kernel code.
234
235           If you say N, all options in this submenu will be skipped and
236           disabled; if unsure, say Y here.
237
238 if NETWORK_FILESYSTEMS
239
240 source "fs/nfs/Kconfig"
241 source "fs/nfsd/Kconfig"
242
243 config LOCKD
244         tristate
245         depends on FILE_LOCKING
246
247 config LOCKD_V4
248         bool
249         depends on NFSD_V3 || NFS_V3
250         depends on FILE_LOCKING
251         default y
252
253 config NFS_ACL_SUPPORT
254         tristate
255         select FS_POSIX_ACL
256
257 config NFS_COMMON
258         bool
259         depends on NFSD || NFS_FS
260         default y
261
262 source "net/sunrpc/Kconfig"
263 source "fs/ceph/Kconfig"
264 source "fs/cifs/Kconfig"
265 source "fs/ncpfs/Kconfig"
266 source "fs/coda/Kconfig"
267 source "fs/afs/Kconfig"
268 source "fs/9p/Kconfig"
269
270 endif # NETWORK_FILESYSTEMS
271
272 if BLOCK
273 menu "Partition Types"
274
275 source "fs/partitions/Kconfig"
276
277 endmenu
278 endif
279
280 source "fs/nls/Kconfig"
281 source "fs/dlm/Kconfig"
282
283 endmenu