Kconfig 7.17 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6
#
# File system configuration
#

menu "File systems"

7 8 9 10
# Use unaligned word dcache accesses
config DCACHE_WORD_ACCESS
       bool

11 12
if BLOCK

13 14 15
config FS_IOMAP
	bool

16 17 18
source "fs/ext2/Kconfig"
source "fs/ext4/Kconfig"
source "fs/jbd2/Kconfig"
19

Linus Torvalds's avatar
Linus Torvalds committed
20
config FS_MBCACHE
21
# Meta block cache for Extended Attributes (ext2/ext3/ext4)
Linus Torvalds's avatar
Linus Torvalds committed
22
	tristate
23
	default y if EXT2_FS=y && EXT2_FS_XATTR
Tao Ma's avatar
Tao Ma committed
24
	default y if EXT4_FS=y
25
	default m if EXT2_FS_XATTR || EXT4_FS
Linus Torvalds's avatar
Linus Torvalds committed
26

27
source "fs/reiserfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
28
source "fs/jfs/Kconfig"
Linus Torvalds's avatar
Linus Torvalds committed
29

30 31 32 33
source "fs/xfs/Kconfig"
source "fs/gfs2/Kconfig"
source "fs/ocfs2/Kconfig"
source "fs/btrfs/Kconfig"
34
source "fs/nilfs2/Kconfig"
35
source "fs/f2fs/Kconfig"
36

37 38 39
config FS_DAX
	bool "Direct Access (DAX) support"
	depends on MMU
40
	depends on !(ARM || MIPS || SPARC)
41
	select FS_IOMAP
42
	select DAX
43 44 45 46 47 48 49 50 51 52 53
	help
	  Direct Access (DAX) can be used on memory-backed block devices.
	  If the block device supports DAX and the filesystem supports DAX,
	  then you can avoid using the pagecache to buffer I/Os.  Turning
	  on this option will compile in support for DAX; you will need to
	  mount the filesystem using the -o dax option.

	  If you do not have a block device that is capable of using this,
	  or if unsure, say N.  Saying Y will increase the size of the kernel
	  by about 5kB.

Dan Williams's avatar
Dan Williams committed
54 55 56 57
config FS_DAX_PMD
	bool
	default FS_DAX
	depends on FS_DAX
58 59
	depends on ZONE_DEVICE
	depends on TRANSPARENT_HUGEPAGE
Dan Williams's avatar
Dan Williams committed
60

61 62
endif # BLOCK

63 64 65 66 67 68 69 70
# Posix ACL utility routines
#
# Note: Posix ACLs can be implemented without these helpers.  Never use
# this symbol for ifdefs in core code.
#
config FS_POSIX_ACL
	def_bool n

71
config EXPORTFS
72
	tristate
73

74 75 76 77 78 79
config EXPORTFS_BLOCK_OPS
	bool "Enable filesystem export operations for block IO"
	help
	  This option enables the export operations for a filesystem to support
	  external block IO.

80
config FILE_LOCKING
81
	bool "Enable POSIX file locking API" if EXPERT
82
	default y
83
	select PERCPU_RWSEM
84 85 86 87 88
	help
	  This option enables standard file locking support, required
          for filesystems like NFS and for the flock() system
          call. Disabling this option saves about 11k.

89 90 91 92 93 94 95 96 97 98
config MANDATORY_FILE_LOCKING
	bool "Enable Mandatory file locking"
	depends on FILE_LOCKING
	default y
	help
	  This option enables files appropriately marked files on appropriely
	  mounted filesystems to support mandatory locking.

	  To the best of my knowledge this is dead code that no one cares about.

99 100
source "fs/crypto/Kconfig"

101
source "fs/notify/Kconfig"
Robert Love's avatar
Robert Love committed
102

103
source "fs/quota/Kconfig"
Linus Torvalds's avatar
Linus Torvalds committed
104

105
source "fs/autofs4/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
106
source "fs/fuse/Kconfig"
Miklos Szeredi's avatar
Miklos Szeredi committed
107
source "fs/overlayfs/Kconfig"
108

109 110 111
menu "Caches"

source "fs/fscache/Kconfig"
112
source "fs/cachefiles/Kconfig"
113 114 115

endmenu

116
if BLOCK
Linus Torvalds's avatar
Linus Torvalds committed
117 118
menu "CD-ROM/DVD Filesystems"

119 120
source "fs/isofs/Kconfig"
source "fs/udf/Kconfig"
Linus Torvalds's avatar
Linus Torvalds committed
121 122

endmenu
Randy Dunlap's avatar
Randy Dunlap committed
123
endif # BLOCK
Linus Torvalds's avatar
Linus Torvalds committed
124

125
if BLOCK
Linus Torvalds's avatar
Linus Torvalds committed
126 127
menu "DOS/FAT/NT Filesystems"

Alexey Dobriyan's avatar
Alexey Dobriyan committed
128
source "fs/fat/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
129
source "fs/ntfs/Kconfig"
Linus Torvalds's avatar
Linus Torvalds committed
130 131

endmenu
Randy Dunlap's avatar
Randy Dunlap committed
132
endif # BLOCK
Linus Torvalds's avatar
Linus Torvalds committed
133 134 135

menu "Pseudo filesystems"

136
source "fs/proc/Kconfig"
Tejun Heo's avatar
Tejun Heo committed
137
source "fs/kernfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
138
source "fs/sysfs/Kconfig"
Linus Torvalds's avatar
Linus Torvalds committed
139 140

config TMPFS
141
	bool "Tmpfs virtual memory file system support (former shm fs)"
Hugh Dickins's avatar
Hugh Dickins committed
142
	depends on SHMEM
Linus Torvalds's avatar
Linus Torvalds committed
143 144 145 146 147 148 149 150 151 152
	help
	  Tmpfs is a file system which keeps all files in virtual memory.

	  Everything in tmpfs is temporary in the sense that no files will be
	  created on your hard drive. The files live in memory and swap
	  space. If you unmount a tmpfs instance, everything stored therein is
	  lost.

	  See <file:Documentation/filesystems/tmpfs.txt> for details.

153 154 155 156
config TMPFS_POSIX_ACL
	bool "Tmpfs POSIX Access Control Lists"
	depends on TMPFS
	select TMPFS_XATTR
Christoph Hellwig's avatar
Christoph Hellwig committed
157
	select FS_POSIX_ACL
158
	help
159 160 161 162 163 164 165 166 167 168 169
	  POSIX Access Control Lists (ACLs) support additional access rights
	  for users and groups beyond the standard owner/group/world scheme,
	  and this option selects support for ACLs specifically for tmpfs
	  filesystems.

	  If you've selected TMPFS, it's possible that you'll also need
	  this option as there are a number of Linux distros that require
	  POSIX ACL support under /dev for certain features to work properly.
	  For example, some distros need this feature for ALSA-related /dev
	  files for sound to work properly.  In short, if you're not sure,
	  say Y.
170 171 172 173

	  To learn more about Access Control Lists, visit the POSIX ACLs for
	  Linux website <http://acl.bestbits.at/>.

174 175 176 177 178 179 180 181 182 183 184 185 186 187
config TMPFS_XATTR
	bool "Tmpfs extended attributes"
	depends on TMPFS
	default n
	help
	  Extended attributes are name:value pairs associated with inodes by
	  the kernel or by users (see the attr(5) manual page, or visit
	  <http://acl.bestbits.at/> for details).

	  Currently this enables support for the trusted.* and
	  security.* namespaces.

	  You need this for POSIX ACL support on tmpfs.

188
	  If unsure, say N.
189

Linus Torvalds's avatar
Linus Torvalds committed
190 191
config HUGETLBFS
	bool "HugeTLB file system support"
192
	depends on X86 || IA64 || SPARC64 || (S390 && 64BIT) || \
193
		   SYS_SUPPORTS_HUGETLBFS || BROKEN
194 195 196 197 198 199
	help
	  hugetlbfs is a filesystem backing for HugeTLB pages, based on
	  ramfs. For architectures that support it, say Y here and read
	  <file:Documentation/vm/hugetlbpage.txt> for details.

	  If unsure, say N.
Linus Torvalds's avatar
Linus Torvalds committed
200 201 202 203

config HUGETLB_PAGE
	def_bool HUGETLBFS

204 205 206
config ARCH_HAS_GIGANTIC_PAGE
	bool

207
source "fs/configfs/Kconfig"
208
source "fs/efivarfs/Kconfig"
209

Linus Torvalds's avatar
Linus Torvalds committed
210 211
endmenu

212 213 214 215 216 217 218 219 220 221 222 223 224 225
menuconfig MISC_FILESYSTEMS
	bool "Miscellaneous filesystems"
	default y
	---help---
	  Say Y here to get to see options for various miscellaneous
	  filesystems, such as filesystems that came from other
	  operating systems.

	  This option alone does not add any kernel code.

	  If you say N, all options in this submenu will be skipped and
	  disabled; if unsure, say Y here.

if MISC_FILESYSTEMS
Linus Torvalds's avatar
Linus Torvalds committed
226

227
source "fs/orangefs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
228
source "fs/adfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
229
source "fs/affs/Kconfig"
230
source "fs/ecryptfs/Kconfig"
231 232
source "fs/hfs/Kconfig"
source "fs/hfsplus/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
233
source "fs/befs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
234
source "fs/bfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
235
source "fs/efs/Kconfig"
236
source "fs/jffs2/Kconfig"
237 238
# UBIFS File system configuration
source "fs/ubifs/Kconfig"
239
source "fs/cramfs/Kconfig"
240
source "fs/squashfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
241
source "fs/freevxfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
242
source "fs/minix/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
243
source "fs/omfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
244
source "fs/hpfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
245
source "fs/qnx4/Kconfig"
Kai Bankett's avatar
Kai Bankett committed
246
source "fs/qnx6/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
247
source "fs/romfs/Kconfig"
248
source "fs/pstore/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
249
source "fs/sysv/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
250
source "fs/ufs/Kconfig"
Boaz Harrosh's avatar
Boaz Harrosh committed
251
source "fs/exofs/Kconfig"
252

253
endif # MISC_FILESYSTEMS
Linus Torvalds's avatar
Linus Torvalds committed
254

255 256
source "fs/exofs/Kconfig.ore"

257 258 259
menuconfig NETWORK_FILESYSTEMS
	bool "Network File Systems"
	default y
Linus Torvalds's avatar
Linus Torvalds committed
260
	depends on NET
261 262 263 264
	---help---
	  Say Y here to get to see options for network filesystems and
	  filesystem-related networking code, such as NFS daemon and
	  RPCSEC security modules.
265

266 267 268 269 270 271
	  This option alone does not add any kernel code.

	  If you say N, all options in this submenu will be skipped and
	  disabled; if unsure, say Y here.

if NETWORK_FILESYSTEMS
Linus Torvalds's avatar
Linus Torvalds committed
272

Alexey Dobriyan's avatar
Alexey Dobriyan committed
273
source "fs/nfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
274
source "fs/nfsd/Kconfig"
Linus Torvalds's avatar
Linus Torvalds committed
275

276 277 278
config GRACE_PERIOD
	tristate

Linus Torvalds's avatar
Linus Torvalds committed
279 280
config LOCKD
	tristate
281
	depends on FILE_LOCKING
282
	select GRACE_PERIOD
Linus Torvalds's avatar
Linus Torvalds committed
283 284 285 286

config LOCKD_V4
	bool
	depends on NFSD_V3 || NFS_V3
287
	depends on FILE_LOCKING
Linus Torvalds's avatar
Linus Torvalds committed
288 289
	default y

290 291 292 293 294 295
config NFS_ACL_SUPPORT
	tristate
	select FS_POSIX_ACL

config NFS_COMMON
	bool
296
	depends on NFSD || NFS_FS || LOCKD
297 298
	default y

299
source "net/sunrpc/Kconfig"
Sage Weil's avatar
Sage Weil committed
300
source "fs/ceph/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
301
source "fs/cifs/Kconfig"
Linus Torvalds's avatar
Linus Torvalds committed
302
source "fs/ncpfs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
303
source "fs/coda/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
304
source "fs/afs/Kconfig"
Alexey Dobriyan's avatar
Alexey Dobriyan committed
305
source "fs/9p/Kconfig"
306

307
endif # NETWORK_FILESYSTEMS
Linus Torvalds's avatar
Linus Torvalds committed
308 309

source "fs/nls/Kconfig"
310
source "fs/dlm/Kconfig"
Linus Torvalds's avatar
Linus Torvalds committed
311 312

endmenu