Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # File system configuration |
| 3 | # |
| 4 | |
| 5 | menu "File systems" |
| 6 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 7 | # Use unaligned word dcache accesses |
| 8 | config DCACHE_WORD_ACCESS |
| 9 | bool |
| 10 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 11 | if BLOCK |
| 12 | |
Christoph Hellwig | ae259a9 | 2016-06-21 09:23:11 +1000 | [diff] [blame] | 13 | config FS_IOMAP |
| 14 | bool |
| 15 | |
Alexey Dobriyan | 6da0b38 | 2008-10-20 22:28:45 +0400 | [diff] [blame] | 16 | source "fs/ext2/Kconfig" |
Alexey Dobriyan | 6da0b38 | 2008-10-20 22:28:45 +0400 | [diff] [blame] | 17 | source "fs/ext4/Kconfig" |
Alexey Dobriyan | 6da0b38 | 2008-10-20 22:28:45 +0400 | [diff] [blame] | 18 | source "fs/jbd2/Kconfig" |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | config FS_MBCACHE |
Mingming Cao | 02ea210 | 2006-10-11 01:20:56 -0700 | [diff] [blame] | 21 | # Meta block cache for Extended Attributes (ext2/ext3/ext4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | tristate |
Adrian Bunk | 2c51239 | 2008-08-20 16:56:22 -0700 | [diff] [blame] | 23 | default y if EXT2_FS=y && EXT2_FS_XATTR |
Tao Ma | 939da10 | 2012-12-10 16:30:43 -0500 | [diff] [blame] | 24 | default y if EXT4_FS=y |
Jan Kara | c290ea0 | 2015-06-18 16:52:29 +0200 | [diff] [blame] | 25 | default m if EXT2_FS_XATTR || EXT4_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Alexey Dobriyan | b16ecfe | 2009-01-22 10:22:31 +0300 | [diff] [blame] | 27 | source "fs/reiserfs/Kconfig" |
Alexey Dobriyan | f5c7796 | 2009-01-22 10:24:27 +0300 | [diff] [blame] | 28 | source "fs/jfs/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Tomas Szepe | 69050ee | 2009-06-16 15:33:56 -0700 | [diff] [blame] | 30 | source "fs/xfs/Kconfig" |
| 31 | source "fs/gfs2/Kconfig" |
| 32 | source "fs/ocfs2/Kconfig" |
| 33 | source "fs/btrfs/Kconfig" |
Ryusuke Konishi | 41f4db0 | 2009-08-08 16:09:46 +0900 | [diff] [blame] | 34 | source "fs/nilfs2/Kconfig" |
Jaegeuk Kim | d7196c5 | 2015-03-03 17:06:55 -0800 | [diff] [blame] | 35 | source "fs/f2fs/Kconfig" |
Tomas Szepe | 69050ee | 2009-06-16 15:33:56 -0700 | [diff] [blame] | 36 | |
Matthew Wilcox | 6cd176a | 2015-02-16 15:59:25 -0800 | [diff] [blame] | 37 | config FS_DAX |
| 38 | bool "Direct Access (DAX) support" |
| 39 | depends on MMU |
Matthew Wilcox | d92576f | 2015-02-16 15:59:44 -0800 | [diff] [blame] | 40 | depends on !(ARM || MIPS || SPARC) |
Matthew Wilcox | 6cd176a | 2015-02-16 15:59:25 -0800 | [diff] [blame] | 41 | help |
| 42 | Direct Access (DAX) can be used on memory-backed block devices. |
| 43 | If the block device supports DAX and the filesystem supports DAX, |
| 44 | then you can avoid using the pagecache to buffer I/Os. Turning |
| 45 | on this option will compile in support for DAX; you will need to |
| 46 | mount the filesystem using the -o dax option. |
| 47 | |
| 48 | If you do not have a block device that is capable of using this, |
| 49 | or if unsure, say N. Saying Y will increase the size of the kernel |
| 50 | by about 5kB. |
| 51 | |
Dan Williams | ee82c9e | 2015-11-15 16:06:32 -0800 | [diff] [blame] | 52 | config FS_DAX_PMD |
| 53 | bool |
| 54 | default FS_DAX |
| 55 | depends on FS_DAX |
Dan Williams | c046c32 | 2016-01-15 16:57:01 -0800 | [diff] [blame] | 56 | depends on ZONE_DEVICE |
| 57 | depends on TRANSPARENT_HUGEPAGE |
Jan Kara | 348e967 | 2016-05-12 18:29:15 +0200 | [diff] [blame] | 58 | depends on BROKEN |
Dan Williams | ee82c9e | 2015-11-15 16:06:32 -0800 | [diff] [blame] | 59 | |
Tomas Szepe | 69050ee | 2009-06-16 15:33:56 -0700 | [diff] [blame] | 60 | endif # BLOCK |
| 61 | |
Randy Dunlap | 16ebe91 | 2011-01-02 14:44:00 -0800 | [diff] [blame] | 62 | # Posix ACL utility routines |
| 63 | # |
| 64 | # Note: Posix ACLs can be implemented without these helpers. Never use |
| 65 | # this symbol for ifdefs in core code. |
| 66 | # |
| 67 | config FS_POSIX_ACL |
| 68 | def_bool n |
| 69 | |
Randy Dunlap | 4199ca7 | 2010-10-26 14:22:32 -0700 | [diff] [blame] | 70 | config EXPORTFS |
Jonas Gorski | 79fead4 | 2011-05-24 20:12:08 +0200 | [diff] [blame] | 71 | tristate |
Randy Dunlap | 4199ca7 | 2010-10-26 14:22:32 -0700 | [diff] [blame] | 72 | |
Benjamin Coddington | 15d66ac | 2016-07-08 09:53:20 -0400 | [diff] [blame] | 73 | config EXPORTFS_BLOCK_OPS |
| 74 | bool "Enable filesystem export operations for block IO" |
| 75 | help |
| 76 | This option enables the export operations for a filesystem to support |
| 77 | external block IO. |
| 78 | |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 79 | config FILE_LOCKING |
David Rientjes | 6a108a1 | 2011-01-20 14:44:16 -0800 | [diff] [blame] | 80 | bool "Enable POSIX file locking API" if EXPERT |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 81 | default y |
Peter Zijlstra | 7c3f654 | 2015-06-22 14:16:34 +0200 | [diff] [blame] | 82 | select PERCPU_RWSEM |
Thomas Petazzoni | bfcd17a | 2008-08-06 15:12:22 +0200 | [diff] [blame] | 83 | help |
| 84 | This option enables standard file locking support, required |
| 85 | for filesystems like NFS and for the flock() system |
| 86 | call. Disabling this option saves about 11k. |
| 87 | |
Jeff Layton | 9e8925b | 2015-11-16 09:49:34 -0500 | [diff] [blame] | 88 | config MANDATORY_FILE_LOCKING |
| 89 | bool "Enable Mandatory file locking" |
| 90 | depends on FILE_LOCKING |
| 91 | default y |
| 92 | help |
| 93 | This option enables files appropriately marked files on appropriely |
| 94 | mounted filesystems to support mandatory locking. |
| 95 | |
| 96 | To the best of my knowledge this is dead code that no one cares about. |
| 97 | |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 98 | source "fs/crypto/Kconfig" |
| 99 | |
Eric Paris | 272eb01 | 2008-12-17 13:59:41 -0500 | [diff] [blame] | 100 | source "fs/notify/Kconfig" |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 101 | |
Jan Kara | 884d179 | 2009-01-26 15:28:09 +0100 | [diff] [blame] | 102 | source "fs/quota/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Alexey Dobriyan | 90ffd46 | 2009-01-22 10:31:56 +0300 | [diff] [blame] | 104 | source "fs/autofs4/Kconfig" |
Alexey Dobriyan | 3ef7784 | 2009-01-22 10:33:25 +0300 | [diff] [blame] | 105 | source "fs/fuse/Kconfig" |
Miklos Szeredi | e9be9d5 | 2014-10-24 00:14:38 +0200 | [diff] [blame] | 106 | source "fs/overlayfs/Kconfig" |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 107 | |
David Howells | 06b3db1 | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 108 | menu "Caches" |
| 109 | |
| 110 | source "fs/fscache/Kconfig" |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 111 | source "fs/cachefiles/Kconfig" |
David Howells | 06b3db1 | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 112 | |
| 113 | endmenu |
| 114 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 115 | if BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | menu "CD-ROM/DVD Filesystems" |
| 117 | |
Alexey Dobriyan | ddfaccd | 2009-01-22 10:35:21 +0300 | [diff] [blame] | 118 | source "fs/isofs/Kconfig" |
| 119 | source "fs/udf/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | endmenu |
Randy Dunlap | 25fad94 | 2008-02-07 00:15:16 -0800 | [diff] [blame] | 122 | endif # BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 124 | if BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | menu "DOS/FAT/NT Filesystems" |
| 126 | |
Alexey Dobriyan | 1c6ace0 | 2009-01-22 10:37:59 +0300 | [diff] [blame] | 127 | source "fs/fat/Kconfig" |
Alexey Dobriyan | 9d73ac9 | 2009-01-22 10:39:20 +0300 | [diff] [blame] | 128 | source "fs/ntfs/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | endmenu |
Randy Dunlap | 25fad94 | 2008-02-07 00:15:16 -0800 | [diff] [blame] | 131 | endif # BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
| 133 | menu "Pseudo filesystems" |
| 134 | |
Alexey Dobriyan | 6eedf8d | 2008-07-25 01:48:30 -0700 | [diff] [blame] | 135 | source "fs/proc/Kconfig" |
Tejun Heo | ba341d5 | 2014-02-03 14:09:17 -0500 | [diff] [blame] | 136 | source "fs/kernfs/Kconfig" |
Alexey Dobriyan | 5f3a211 | 2009-01-22 10:40:58 +0300 | [diff] [blame] | 137 | source "fs/sysfs/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | config TMPFS |
Robert P. J. Day | f5fc870 | 2011-10-31 17:07:21 -0700 | [diff] [blame] | 140 | bool "Tmpfs virtual memory file system support (former shm fs)" |
Hugh Dickins | 3f96b79 | 2009-09-21 17:03:37 -0700 | [diff] [blame] | 141 | depends on SHMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | help |
| 143 | Tmpfs is a file system which keeps all files in virtual memory. |
| 144 | |
| 145 | Everything in tmpfs is temporary in the sense that no files will be |
| 146 | created on your hard drive. The files live in memory and swap |
| 147 | space. If you unmount a tmpfs instance, everything stored therein is |
| 148 | lost. |
| 149 | |
| 150 | See <file:Documentation/filesystems/tmpfs.txt> for details. |
| 151 | |
Eric Paris | 4db70f7 | 2011-05-25 19:49:18 -0700 | [diff] [blame] | 152 | config TMPFS_POSIX_ACL |
| 153 | bool "Tmpfs POSIX Access Control Lists" |
| 154 | depends on TMPFS |
| 155 | select TMPFS_XATTR |
Christoph Hellwig | feda821 | 2013-12-20 05:16:54 -0800 | [diff] [blame] | 156 | select FS_POSIX_ACL |
Eric Paris | 4db70f7 | 2011-05-25 19:49:18 -0700 | [diff] [blame] | 157 | help |
Robert P. J. Day | 206506c | 2011-08-03 16:21:29 -0700 | [diff] [blame] | 158 | POSIX Access Control Lists (ACLs) support additional access rights |
| 159 | for users and groups beyond the standard owner/group/world scheme, |
| 160 | and this option selects support for ACLs specifically for tmpfs |
| 161 | filesystems. |
| 162 | |
| 163 | If you've selected TMPFS, it's possible that you'll also need |
| 164 | this option as there are a number of Linux distros that require |
| 165 | POSIX ACL support under /dev for certain features to work properly. |
| 166 | For example, some distros need this feature for ALSA-related /dev |
| 167 | files for sound to work properly. In short, if you're not sure, |
| 168 | say Y. |
Eric Paris | 4db70f7 | 2011-05-25 19:49:18 -0700 | [diff] [blame] | 169 | |
| 170 | To learn more about Access Control Lists, visit the POSIX ACLs for |
| 171 | Linux website <http://acl.bestbits.at/>. |
| 172 | |
Eric Paris | b09e0fa | 2011-05-24 17:12:39 -0700 | [diff] [blame] | 173 | config TMPFS_XATTR |
| 174 | bool "Tmpfs extended attributes" |
| 175 | depends on TMPFS |
| 176 | default n |
| 177 | help |
| 178 | Extended attributes are name:value pairs associated with inodes by |
| 179 | the kernel or by users (see the attr(5) manual page, or visit |
| 180 | <http://acl.bestbits.at/> for details). |
| 181 | |
| 182 | Currently this enables support for the trusted.* and |
| 183 | security.* namespaces. |
| 184 | |
Eric Paris | b09e0fa | 2011-05-24 17:12:39 -0700 | [diff] [blame] | 185 | You need this for POSIX ACL support on tmpfs. |
| 186 | |
Eric Paris | 4db70f7 | 2011-05-25 19:49:18 -0700 | [diff] [blame] | 187 | If unsure, say N. |
Andreas Gruenbacher | 39f0247 | 2006-09-29 02:01:35 -0700 | [diff] [blame] | 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | config HUGETLBFS |
| 190 | bool "HugeTLB file system support" |
Benjamin Herrenschmidt | 5a1eb5c | 2009-10-30 15:03:54 +1100 | [diff] [blame] | 191 | depends on X86 || IA64 || SPARC64 || (S390 && 64BIT) || \ |
Paul Mundt | ffb4a73 | 2009-10-27 07:22:37 +0900 | [diff] [blame] | 192 | SYS_SUPPORTS_HUGETLBFS || BROKEN |
Arthur Othieno | dda27d1 | 2006-04-18 22:20:57 -0700 | [diff] [blame] | 193 | help |
| 194 | hugetlbfs is a filesystem backing for HugeTLB pages, based on |
| 195 | ramfs. For architectures that support it, say Y here and read |
| 196 | <file:Documentation/vm/hugetlbpage.txt> for details. |
| 197 | |
| 198 | If unsure, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | config HUGETLB_PAGE |
| 201 | def_bool HUGETLBFS |
| 202 | |
Yisheng Xie | 461a718 | 2016-10-07 17:01:46 -0700 | [diff] [blame] | 203 | config ARCH_HAS_GIGANTIC_PAGE |
| 204 | bool |
| 205 | |
Alexey Dobriyan | 4591dab | 2009-01-22 10:42:52 +0300 | [diff] [blame] | 206 | source "fs/configfs/Kconfig" |
Leif Lindholm | 62c204d | 2014-12-18 17:50:49 +0000 | [diff] [blame] | 207 | source "fs/efivarfs/Kconfig" |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | endmenu |
| 210 | |
Randy Dunlap | 67ec7d3 | 2009-01-06 14:40:57 -0800 | [diff] [blame] | 211 | menuconfig MISC_FILESYSTEMS |
| 212 | bool "Miscellaneous filesystems" |
| 213 | default y |
| 214 | ---help--- |
| 215 | Say Y here to get to see options for various miscellaneous |
| 216 | filesystems, such as filesystems that came from other |
| 217 | operating systems. |
| 218 | |
| 219 | This option alone does not add any kernel code. |
| 220 | |
| 221 | If you say N, all options in this submenu will be skipped and |
| 222 | disabled; if unsure, say Y here. |
| 223 | |
| 224 | if MISC_FILESYSTEMS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Mike Marshall | 07f0196 | 2015-07-17 10:38:17 -0400 | [diff] [blame] | 226 | source "fs/orangefs/Kconfig" |
Alexey Dobriyan | bc2de2a | 2009-01-22 10:48:46 +0300 | [diff] [blame] | 227 | source "fs/adfs/Kconfig" |
Alexey Dobriyan | 10951bf | 2009-01-22 10:49:44 +0300 | [diff] [blame] | 228 | source "fs/affs/Kconfig" |
Alexey Dobriyan | 295c896 | 2009-01-22 10:50:50 +0300 | [diff] [blame] | 229 | source "fs/ecryptfs/Kconfig" |
Daniel Campello | cf94d7d | 2015-07-20 16:23:50 -0700 | [diff] [blame] | 230 | source "fs/sdcardfs/Kconfig" |
Alexey Dobriyan | b08bac1 | 2009-01-22 10:53:24 +0300 | [diff] [blame] | 231 | source "fs/hfs/Kconfig" |
| 232 | source "fs/hfsplus/Kconfig" |
Alexey Dobriyan | 0b09eb3 | 2009-01-22 10:54:16 +0300 | [diff] [blame] | 233 | source "fs/befs/Kconfig" |
Alexey Dobriyan | 0ff4238 | 2009-01-22 10:55:13 +0300 | [diff] [blame] | 234 | source "fs/bfs/Kconfig" |
Alexey Dobriyan | 571f0a0 | 2009-01-22 10:56:07 +0300 | [diff] [blame] | 235 | source "fs/efs/Kconfig" |
Alexey Dobriyan | 31db6e9 | 2008-08-29 07:19:50 +0400 | [diff] [blame] | 236 | source "fs/jffs2/Kconfig" |
Artem Bityutskiy | 0d7eff8 | 2008-07-14 19:08:38 +0300 | [diff] [blame] | 237 | # UBIFS File system configuration |
| 238 | source "fs/ubifs/Kconfig" |
Joern Engel | 5db53f3 | 2009-11-20 20:13:39 +0100 | [diff] [blame] | 239 | source "fs/logfs/Kconfig" |
Alexey Dobriyan | 2a22783 | 2009-01-22 10:56:54 +0300 | [diff] [blame] | 240 | source "fs/cramfs/Kconfig" |
Alexey Dobriyan | 22635ec | 2009-01-22 10:57:46 +0300 | [diff] [blame] | 241 | source "fs/squashfs/Kconfig" |
Alexey Dobriyan | 2213516 | 2009-01-22 10:58:51 +0300 | [diff] [blame] | 242 | source "fs/freevxfs/Kconfig" |
Alexey Dobriyan | 8b1cd7d | 2009-01-22 10:59:49 +0300 | [diff] [blame] | 243 | source "fs/minix/Kconfig" |
Alexey Dobriyan | da55e6f | 2009-01-22 11:00:41 +0300 | [diff] [blame] | 244 | source "fs/omfs/Kconfig" |
Alexey Dobriyan | 928ea19 | 2009-01-22 11:01:26 +0300 | [diff] [blame] | 245 | source "fs/hpfs/Kconfig" |
Alexey Dobriyan | 4c74158 | 2009-01-22 11:02:21 +0300 | [diff] [blame] | 246 | source "fs/qnx4/Kconfig" |
Kai Bankett | 5d026c7 | 2012-02-17 05:59:20 +0100 | [diff] [blame] | 247 | source "fs/qnx6/Kconfig" |
Alexey Dobriyan | 4181024 | 2009-01-22 11:03:34 +0300 | [diff] [blame] | 248 | source "fs/romfs/Kconfig" |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 249 | source "fs/pstore/Kconfig" |
Alexey Dobriyan | 8af915b | 2009-01-22 11:04:23 +0300 | [diff] [blame] | 250 | source "fs/sysv/Kconfig" |
Alexey Dobriyan | a276a52 | 2009-01-22 11:05:02 +0300 | [diff] [blame] | 251 | source "fs/ufs/Kconfig" |
Boaz Harrosh | 0d8fe32 | 2008-12-15 12:53:08 +0200 | [diff] [blame] | 252 | source "fs/exofs/Kconfig" |
Ryusuke Konishi | 0c4fb87 | 2009-04-06 19:01:41 -0700 | [diff] [blame] | 253 | |
Randy Dunlap | 67ec7d3 | 2009-01-06 14:40:57 -0800 | [diff] [blame] | 254 | endif # MISC_FILESYSTEMS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Boaz Harrosh | 831c2dc | 2011-11-29 15:35:53 -0800 | [diff] [blame] | 256 | source "fs/exofs/Kconfig.ore" |
| 257 | |
Jan Engelhardt | ea0985a | 2007-10-16 23:30:16 -0700 | [diff] [blame] | 258 | menuconfig NETWORK_FILESYSTEMS |
| 259 | bool "Network File Systems" |
| 260 | default y |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | depends on NET |
Jan Engelhardt | ea0985a | 2007-10-16 23:30:16 -0700 | [diff] [blame] | 262 | ---help--- |
| 263 | Say Y here to get to see options for network filesystems and |
| 264 | filesystem-related networking code, such as NFS daemon and |
| 265 | RPCSEC security modules. |
Chuck Lever | 6fb1bc1 | 2008-05-21 17:09:04 -0400 | [diff] [blame] | 266 | |
Jan Engelhardt | ea0985a | 2007-10-16 23:30:16 -0700 | [diff] [blame] | 267 | This option alone does not add any kernel code. |
| 268 | |
| 269 | If you say N, all options in this submenu will be skipped and |
| 270 | disabled; if unsure, say Y here. |
| 271 | |
| 272 | if NETWORK_FILESYSTEMS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Alexey Dobriyan | 97afe47 | 2009-01-22 11:07:41 +0300 | [diff] [blame] | 274 | source "fs/nfs/Kconfig" |
Alexey Dobriyan | e2b329e | 2009-01-22 11:08:58 +0300 | [diff] [blame] | 275 | source "fs/nfsd/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Jeff Layton | f779002 | 2014-09-12 16:40:20 -0400 | [diff] [blame] | 277 | config GRACE_PERIOD |
| 278 | tristate |
| 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | config LOCKD |
| 281 | tristate |
Randy Dunlap | dd4dc82 | 2009-05-12 13:28:09 -0700 | [diff] [blame] | 282 | depends on FILE_LOCKING |
Jeff Layton | f779002 | 2014-09-12 16:40:20 -0400 | [diff] [blame] | 283 | select GRACE_PERIOD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | config LOCKD_V4 |
| 286 | bool |
| 287 | depends on NFSD_V3 || NFS_V3 |
Randy Dunlap | dd4dc82 | 2009-05-12 13:28:09 -0700 | [diff] [blame] | 288 | depends on FILE_LOCKING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | default y |
| 290 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 291 | config NFS_ACL_SUPPORT |
| 292 | tristate |
| 293 | select FS_POSIX_ACL |
| 294 | |
| 295 | config NFS_COMMON |
| 296 | bool |
Jeff Layton | f779002 | 2014-09-12 16:40:20 -0400 | [diff] [blame] | 297 | depends on NFSD || NFS_FS || LOCKD |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 298 | default y |
| 299 | |
Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 300 | source "net/sunrpc/Kconfig" |
Sage Weil | 9030aaf | 2009-10-06 11:31:15 -0700 | [diff] [blame] | 301 | source "fs/ceph/Kconfig" |
Alexey Dobriyan | bb26b96 | 2008-10-18 20:28:49 -0700 | [diff] [blame] | 302 | source "fs/cifs/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | source "fs/ncpfs/Kconfig" |
Alexey Dobriyan | 33a1a6f | 2009-01-22 11:15:06 +0300 | [diff] [blame] | 304 | source "fs/coda/Kconfig" |
Alexey Dobriyan | b2480c7 | 2009-01-22 11:16:02 +0300 | [diff] [blame] | 305 | source "fs/afs/Kconfig" |
Alexey Dobriyan | 0fcb440 | 2009-01-22 11:16:42 +0300 | [diff] [blame] | 306 | source "fs/9p/Kconfig" |
Eric Van Hensbergen | 93fa58c | 2005-09-09 13:04:18 -0700 | [diff] [blame] | 307 | |
Jan Engelhardt | ea0985a | 2007-10-16 23:30:16 -0700 | [diff] [blame] | 308 | endif # NETWORK_FILESYSTEMS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | source "fs/nls/Kconfig" |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 311 | source "fs/dlm/Kconfig" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
| 313 | endmenu |