1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only 21da177e4SLinus Torvalds# 31da177e4SLinus Torvalds# File system configuration 41da177e4SLinus Torvalds# 51da177e4SLinus Torvalds 61da177e4SLinus Torvaldsmenu "File systems" 71da177e4SLinus Torvalds 8bfcfaa77SLinus Torvalds# Use unaligned word dcache accesses 9bfcfaa77SLinus Torvaldsconfig DCACHE_WORD_ACCESS 10bfcfaa77SLinus Torvalds bool 11bfcfaa77SLinus Torvalds 1231d921c7SDavid Howellsconfig VALIDATE_FS_PARSER 1331d921c7SDavid Howells bool "Validate filesystem parameter description" 1431d921c7SDavid Howells help 1531d921c7SDavid Howells Enable this to perform validation of the parameter description for a 1631d921c7SDavid Howells filesystem when it is registered. 1731d921c7SDavid Howells 189361401eSDavid Howellsif BLOCK 199361401eSDavid Howells 20ae259a9cSChristoph Hellwigconfig FS_IOMAP 21ae259a9cSChristoph Hellwig bool 22ae259a9cSChristoph Hellwig 236da0b38fSAlexey Dobriyansource "fs/ext2/Kconfig" 246da0b38fSAlexey Dobriyansource "fs/ext4/Kconfig" 256da0b38fSAlexey Dobriyansource "fs/jbd2/Kconfig" 26dab291afSMingming Cao 271da177e4SLinus Torvaldsconfig FS_MBCACHE 2802ea2104SMingming Cao# Meta block cache for Extended Attributes (ext2/ext3/ext4) 291da177e4SLinus Torvalds tristate 302c512397SAdrian Bunk default y if EXT2_FS=y && EXT2_FS_XATTR 31939da108STao Ma default y if EXT4_FS=y 32c290ea01SJan Kara default m if EXT2_FS_XATTR || EXT4_FS 331da177e4SLinus Torvalds 34b16ecfe2SAlexey Dobriyansource "fs/reiserfs/Kconfig" 35f5c77969SAlexey Dobriyansource "fs/jfs/Kconfig" 361da177e4SLinus Torvalds 3769050eeeSTomas Szepesource "fs/xfs/Kconfig" 3869050eeeSTomas Szepesource "fs/gfs2/Kconfig" 3969050eeeSTomas Szepesource "fs/ocfs2/Kconfig" 4069050eeeSTomas Szepesource "fs/btrfs/Kconfig" 4141f4db0fSRyusuke Konishisource "fs/nilfs2/Kconfig" 42d7196c5aSJaegeuk Kimsource "fs/f2fs/Kconfig" 438dcc1a9dSDamien Le Moalsource "fs/zonefs/Kconfig" 4469050eeeSTomas Szepe 456cd176a5SMatthew Wilcoxconfig FS_DAX 466cd176a5SMatthew Wilcox bool "Direct Access (DAX) support" 476cd176a5SMatthew Wilcox depends on MMU 48d92576f1SMatthew Wilcox depends on !(ARM || MIPS || SPARC) 49e7638488SDan Williams select DEV_PAGEMAP_OPS if (ZONE_DEVICE && !FS_DAX_LIMITED) 506affb9d7SRoss Zwisler select FS_IOMAP 51ef510424SDan Williams select DAX 526cd176a5SMatthew Wilcox help 536cd176a5SMatthew Wilcox Direct Access (DAX) can be used on memory-backed block devices. 546cd176a5SMatthew Wilcox If the block device supports DAX and the filesystem supports DAX, 556cd176a5SMatthew Wilcox then you can avoid using the pagecache to buffer I/Os. Turning 566cd176a5SMatthew Wilcox on this option will compile in support for DAX; you will need to 576cd176a5SMatthew Wilcox mount the filesystem using the -o dax option. 586cd176a5SMatthew Wilcox 596cd176a5SMatthew Wilcox If you do not have a block device that is capable of using this, 606cd176a5SMatthew Wilcox or if unsure, say N. Saying Y will increase the size of the kernel 616cd176a5SMatthew Wilcox by about 5kB. 626cd176a5SMatthew Wilcox 63ee82c9edSDan Williamsconfig FS_DAX_PMD 64ee82c9edSDan Williams bool 65ee82c9edSDan Williams default FS_DAX 66ee82c9edSDan Williams depends on FS_DAX 67c046c321SDan Williams depends on ZONE_DEVICE 68c046c321SDan Williams depends on TRANSPARENT_HUGEPAGE 69ee82c9edSDan Williams 70569d0365SDan Williams# Selected by DAX drivers that do not expect filesystem DAX to support 71569d0365SDan Williams# get_user_pages() of DAX mappings. I.e. "limited" indicates no support 72569d0365SDan Williams# for fork() of processes with MAP_SHARED mappings or support for 73569d0365SDan Williams# direct-I/O to a DAX mapping. 74569d0365SDan Williamsconfig FS_DAX_LIMITED 75569d0365SDan Williams bool 76569d0365SDan Williams 7769050eeeSTomas Szepeendif # BLOCK 7869050eeeSTomas Szepe 7916ebe911SRandy Dunlap# Posix ACL utility routines 8016ebe911SRandy Dunlap# 8116ebe911SRandy Dunlap# Note: Posix ACLs can be implemented without these helpers. Never use 8216ebe911SRandy Dunlap# this symbol for ifdefs in core code. 8316ebe911SRandy Dunlap# 8416ebe911SRandy Dunlapconfig FS_POSIX_ACL 8516ebe911SRandy Dunlap def_bool n 8616ebe911SRandy Dunlap 874199ca77SRandy Dunlapconfig EXPORTFS 8879fead47SJonas Gorski tristate 894199ca77SRandy Dunlap 9015d66ac2SBenjamin Coddingtonconfig EXPORTFS_BLOCK_OPS 9115d66ac2SBenjamin Coddington bool "Enable filesystem export operations for block IO" 9215d66ac2SBenjamin Coddington help 9315d66ac2SBenjamin Coddington This option enables the export operations for a filesystem to support 9415d66ac2SBenjamin Coddington external block IO. 9515d66ac2SBenjamin Coddington 96bfcd17a6SThomas Petazzoniconfig FILE_LOCKING 976a108a14SDavid Rientjes bool "Enable POSIX file locking API" if EXPERT 98bfcd17a6SThomas Petazzoni default y 99bfcd17a6SThomas Petazzoni help 100bfcd17a6SThomas Petazzoni This option enables standard file locking support, required 101bfcd17a6SThomas Petazzoni for filesystems like NFS and for the flock() system 102bfcd17a6SThomas Petazzoni call. Disabling this option saves about 11k. 103bfcd17a6SThomas Petazzoni 1040b81d077SJaegeuk Kimsource "fs/crypto/Kconfig" 1050b81d077SJaegeuk Kim 106671e67b4SEric Biggerssource "fs/verity/Kconfig" 107671e67b4SEric Biggers 108272eb014SEric Parissource "fs/notify/Kconfig" 1092d9048e2SAmy Griffis 110884d179dSJan Karasource "fs/quota/Kconfig" 1111da177e4SLinus Torvalds 1122a3ae0a1SIan Kentsource "fs/autofs/Kconfig" 1133ef7784eSAlexey Dobriyansource "fs/fuse/Kconfig" 114e9be9d5eSMiklos Szeredisource "fs/overlayfs/Kconfig" 11504578f17SMiklos Szeredi 11606b3db1bSDavid Howellsmenu "Caches" 11706b3db1bSDavid Howells 1183d3c9504SDavid Howellssource "fs/netfs/Kconfig" 11906b3db1bSDavid Howellssource "fs/fscache/Kconfig" 1209ae326a6SDavid Howellssource "fs/cachefiles/Kconfig" 12106b3db1bSDavid Howells 12206b3db1bSDavid Howellsendmenu 12306b3db1bSDavid Howells 1249361401eSDavid Howellsif BLOCK 1251da177e4SLinus Torvaldsmenu "CD-ROM/DVD Filesystems" 1261da177e4SLinus Torvalds 127ddfaccd9SAlexey Dobriyansource "fs/isofs/Kconfig" 128ddfaccd9SAlexey Dobriyansource "fs/udf/Kconfig" 1291da177e4SLinus Torvalds 1301da177e4SLinus Torvaldsendmenu 13125fad945SRandy Dunlapendif # BLOCK 1321da177e4SLinus Torvalds 1339361401eSDavid Howellsif BLOCK 134b9d1e2e6SNamjae Jeonmenu "DOS/FAT/EXFAT/NT Filesystems" 1351da177e4SLinus Torvalds 1361c6ace01SAlexey Dobriyansource "fs/fat/Kconfig" 137b9d1e2e6SNamjae Jeonsource "fs/exfat/Kconfig" 1389d73ac9eSAlexey Dobriyansource "fs/ntfs/Kconfig" 1391da177e4SLinus Torvalds 1401da177e4SLinus Torvaldsendmenu 14125fad945SRandy Dunlapendif # BLOCK 1421da177e4SLinus Torvalds 1431da177e4SLinus Torvaldsmenu "Pseudo filesystems" 1441da177e4SLinus Torvalds 1456eedf8d3SAlexey Dobriyansource "fs/proc/Kconfig" 146ba341d55STejun Heosource "fs/kernfs/Kconfig" 1475f3a211aSAlexey Dobriyansource "fs/sysfs/Kconfig" 1481da177e4SLinus Torvalds 1491da177e4SLinus Torvaldsconfig TMPFS 150f5fc870dSRobert P. J. Day bool "Tmpfs virtual memory file system support (former shm fs)" 1513f96b79aSHugh Dickins depends on SHMEM 1521da177e4SLinus Torvalds help 1531da177e4SLinus Torvalds Tmpfs is a file system which keeps all files in virtual memory. 1541da177e4SLinus Torvalds 1551da177e4SLinus Torvalds Everything in tmpfs is temporary in the sense that no files will be 1561da177e4SLinus Torvalds created on your hard drive. The files live in memory and swap 1571da177e4SLinus Torvalds space. If you unmount a tmpfs instance, everything stored therein is 1581da177e4SLinus Torvalds lost. 1591da177e4SLinus Torvalds 1600c1bc6b8SMauro Carvalho Chehab See <file:Documentation/filesystems/tmpfs.rst> for details. 1611da177e4SLinus Torvalds 1624db70f73SEric Parisconfig TMPFS_POSIX_ACL 1634db70f73SEric Paris bool "Tmpfs POSIX Access Control Lists" 1644db70f73SEric Paris depends on TMPFS 1654db70f73SEric Paris select TMPFS_XATTR 166feda821eSChristoph Hellwig select FS_POSIX_ACL 1674db70f73SEric Paris help 168206506ccSRobert P. J. Day POSIX Access Control Lists (ACLs) support additional access rights 169206506ccSRobert P. J. Day for users and groups beyond the standard owner/group/world scheme, 170206506ccSRobert P. J. Day and this option selects support for ACLs specifically for tmpfs 171206506ccSRobert P. J. Day filesystems. 172206506ccSRobert P. J. Day 173206506ccSRobert P. J. Day If you've selected TMPFS, it's possible that you'll also need 174206506ccSRobert P. J. Day this option as there are a number of Linux distros that require 175206506ccSRobert P. J. Day POSIX ACL support under /dev for certain features to work properly. 176206506ccSRobert P. J. Day For example, some distros need this feature for ALSA-related /dev 177206506ccSRobert P. J. Day files for sound to work properly. In short, if you're not sure, 178206506ccSRobert P. J. Day say Y. 1794db70f73SEric Paris 180b09e0fa4SEric Parisconfig TMPFS_XATTR 181b09e0fa4SEric Paris bool "Tmpfs extended attributes" 182b09e0fa4SEric Paris depends on TMPFS 183b09e0fa4SEric Paris default n 184b09e0fa4SEric Paris help 185b09e0fa4SEric Paris Extended attributes are name:value pairs associated with inodes by 18691581e4cSAdam Borowski the kernel or by users (see the attr(5) manual page for details). 187b09e0fa4SEric Paris 188b09e0fa4SEric Paris Currently this enables support for the trusted.* and 189b09e0fa4SEric Paris security.* namespaces. 190b09e0fa4SEric Paris 191b09e0fa4SEric Paris You need this for POSIX ACL support on tmpfs. 192b09e0fa4SEric Paris 1934db70f73SEric Paris If unsure, say N. 19439f0247dSAndreas Gruenbacher 195ea3271f7SChris Downconfig TMPFS_INODE64 196ea3271f7SChris Down bool "Use 64-bit ino_t by default in tmpfs" 197d0ed78e1SHeiko Carstens depends on TMPFS && 64BIT 198ea3271f7SChris Down default n 199ea3271f7SChris Down help 200ea3271f7SChris Down tmpfs has historically used only inode numbers as wide as an unsigned 201ea3271f7SChris Down int. In some cases this can cause wraparound, potentially resulting 202ea3271f7SChris Down in multiple files with the same inode number on a single device. This 203ea3271f7SChris Down option makes tmpfs use the full width of ino_t by default, without 204ea3271f7SChris Down needing to specify the inode64 option when mounting. 205ea3271f7SChris Down 206ea3271f7SChris Down But if a long-lived tmpfs is to be accessed by 32-bit applications so 207ea3271f7SChris Down ancient that opening a file larger than 2GiB fails with EINVAL, then 208ea3271f7SChris Down the INODE64 config option and inode64 mount option risk operations 209ea3271f7SChris Down failing with EOVERFLOW once 33-bit inode numbers are reached. 210ea3271f7SChris Down 211ea3271f7SChris Down To override this configured default, use the inode32 or inode64 212ea3271f7SChris Down option when mounting. 213ea3271f7SChris Down 214ea3271f7SChris Down If unsure, say N. 215ea3271f7SChris Down 216855f9a8eSAnshuman Khandualconfig ARCH_SUPPORTS_HUGETLBFS 217855f9a8eSAnshuman Khandual def_bool n 218855f9a8eSAnshuman Khandual 2191da177e4SLinus Torvaldsconfig HUGETLBFS 2201da177e4SLinus Torvalds bool "HugeTLB file system support" 2215a1eb5c4SBenjamin Herrenschmidt depends on X86 || IA64 || SPARC64 || (S390 && 64BIT) || \ 222855f9a8eSAnshuman Khandual ARCH_SUPPORTS_HUGETLBFS || BROKEN 223dda27d1aSArthur Othieno help 224dda27d1aSArthur Othieno hugetlbfs is a filesystem backing for HugeTLB pages, based on 225dda27d1aSArthur Othieno ramfs. For architectures that support it, say Y here and read 2261ad1335dSMike Rapoport <file:Documentation/admin-guide/mm/hugetlbpage.rst> for details. 227dda27d1aSArthur Othieno 228dda27d1aSArthur Othieno If unsure, say N. 2291da177e4SLinus Torvalds 2301da177e4SLinus Torvaldsconfig HUGETLB_PAGE 2311da177e4SLinus Torvalds def_bool HUGETLBFS 2321da177e4SLinus Torvalds 2336be24bedSMuchun Songconfig HUGETLB_PAGE_FREE_VMEMMAP 2346be24bedSMuchun Song def_bool HUGETLB_PAGE 2356be24bedSMuchun Song depends on X86_64 2366be24bedSMuchun Song depends on SPARSEMEM_VMEMMAP 2376be24bedSMuchun Song 238e6d41f12SMuchun Songconfig HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON 239e6d41f12SMuchun Song bool "Default freeing vmemmap pages of HugeTLB to on" 240e6d41f12SMuchun Song default n 241e6d41f12SMuchun Song depends on HUGETLB_PAGE_FREE_VMEMMAP 242e6d41f12SMuchun Song help 243e6d41f12SMuchun Song When using HUGETLB_PAGE_FREE_VMEMMAP, the freeing unused vmemmap 244e6d41f12SMuchun Song pages associated with each HugeTLB page is default off. Say Y here 245e6d41f12SMuchun Song to enable freeing vmemmap pages of HugeTLB by default. It can then 246e6d41f12SMuchun Song be disabled on the command line via hugetlb_free_vmemmap=off. 247e6d41f12SMuchun Song 2485d752600SMike Kravetzconfig MEMFD_CREATE 2495d752600SMike Kravetz def_bool TMPFS || HUGETLBFS 2505d752600SMike Kravetz 251461a7184SYisheng Xieconfig ARCH_HAS_GIGANTIC_PAGE 252461a7184SYisheng Xie bool 253461a7184SYisheng Xie 2544591dabeSAlexey Dobriyansource "fs/configfs/Kconfig" 25562c204ddSLeif Lindholmsource "fs/efivarfs/Kconfig" 2567063fbf2SJoel Becker 2571da177e4SLinus Torvaldsendmenu 2581da177e4SLinus Torvalds 25967ec7d3aSRandy Dunlapmenuconfig MISC_FILESYSTEMS 26067ec7d3aSRandy Dunlap bool "Miscellaneous filesystems" 26167ec7d3aSRandy Dunlap default y 262a7f7f624SMasahiro Yamada help 26367ec7d3aSRandy Dunlap Say Y here to get to see options for various miscellaneous 26467ec7d3aSRandy Dunlap filesystems, such as filesystems that came from other 26567ec7d3aSRandy Dunlap operating systems. 26667ec7d3aSRandy Dunlap 26767ec7d3aSRandy Dunlap This option alone does not add any kernel code. 26867ec7d3aSRandy Dunlap 26967ec7d3aSRandy Dunlap If you say N, all options in this submenu will be skipped and 27067ec7d3aSRandy Dunlap disabled; if unsure, say Y here. 27167ec7d3aSRandy Dunlap 27267ec7d3aSRandy Dunlapif MISC_FILESYSTEMS 2731da177e4SLinus Torvalds 27407f01962SMike Marshallsource "fs/orangefs/Kconfig" 275bc2de2aeSAlexey Dobriyansource "fs/adfs/Kconfig" 27610951bf0SAlexey Dobriyansource "fs/affs/Kconfig" 277295c896cSAlexey Dobriyansource "fs/ecryptfs/Kconfig" 278b08bac1fSAlexey Dobriyansource "fs/hfs/Kconfig" 279b08bac1fSAlexey Dobriyansource "fs/hfsplus/Kconfig" 2800b09eb32SAlexey Dobriyansource "fs/befs/Kconfig" 2810ff42384SAlexey Dobriyansource "fs/bfs/Kconfig" 282571f0a0bSAlexey Dobriyansource "fs/efs/Kconfig" 28331db6e9eSAlexey Dobriyansource "fs/jffs2/Kconfig" 2840d7eff87SArtem Bityutskiy# UBIFS File system configuration 2850d7eff87SArtem Bityutskiysource "fs/ubifs/Kconfig" 2862a22783bSAlexey Dobriyansource "fs/cramfs/Kconfig" 28722635ec9SAlexey Dobriyansource "fs/squashfs/Kconfig" 28822135169SAlexey Dobriyansource "fs/freevxfs/Kconfig" 2898b1cd7d3SAlexey Dobriyansource "fs/minix/Kconfig" 290da55e6f9SAlexey Dobriyansource "fs/omfs/Kconfig" 291928ea192SAlexey Dobriyansource "fs/hpfs/Kconfig" 2924c741583SAlexey Dobriyansource "fs/qnx4/Kconfig" 2935d026c72SKai Bankettsource "fs/qnx6/Kconfig" 29441810246SAlexey Dobriyansource "fs/romfs/Kconfig" 295ca01d6ddSTony Lucksource "fs/pstore/Kconfig" 2968af915baSAlexey Dobriyansource "fs/sysv/Kconfig" 297a276a52fSAlexey Dobriyansource "fs/ufs/Kconfig" 29847e4937aSGao Xiangsource "fs/erofs/Kconfig" 2990fd16957SHans de Goedesource "fs/vboxsf/Kconfig" 3000c4fb877SRyusuke Konishi 30167ec7d3aSRandy Dunlapendif # MISC_FILESYSTEMS 3021da177e4SLinus Torvalds 303ea0985adSJan Engelhardtmenuconfig NETWORK_FILESYSTEMS 304ea0985adSJan Engelhardt bool "Network File Systems" 305ea0985adSJan Engelhardt default y 3061da177e4SLinus Torvalds depends on NET 307a7f7f624SMasahiro Yamada help 308ea0985adSJan Engelhardt Say Y here to get to see options for network filesystems and 309ea0985adSJan Engelhardt filesystem-related networking code, such as NFS daemon and 310ea0985adSJan Engelhardt RPCSEC security modules. 3116fb1bc10SChuck Lever 312ea0985adSJan Engelhardt This option alone does not add any kernel code. 313ea0985adSJan Engelhardt 314ea0985adSJan Engelhardt If you say N, all options in this submenu will be skipped and 315ea0985adSJan Engelhardt disabled; if unsure, say Y here. 316ea0985adSJan Engelhardt 317ea0985adSJan Engelhardtif NETWORK_FILESYSTEMS 3181da177e4SLinus Torvalds 31997afe47aSAlexey Dobriyansource "fs/nfs/Kconfig" 320e2b329e2SAlexey Dobriyansource "fs/nfsd/Kconfig" 3211da177e4SLinus Torvalds 322f7790029SJeff Laytonconfig GRACE_PERIOD 323f7790029SJeff Layton tristate 324f7790029SJeff Layton 3251da177e4SLinus Torvaldsconfig LOCKD 3261da177e4SLinus Torvalds tristate 327dd4dc82dSRandy Dunlap depends on FILE_LOCKING 328f7790029SJeff Layton select GRACE_PERIOD 3291da177e4SLinus Torvalds 3301da177e4SLinus Torvaldsconfig LOCKD_V4 3311da177e4SLinus Torvalds bool 3321da177e4SLinus Torvalds depends on NFSD_V3 || NFS_V3 333dd4dc82dSRandy Dunlap depends on FILE_LOCKING 3341da177e4SLinus Torvalds default y 3351da177e4SLinus Torvalds 336a257cdd0SAndreas Gruenbacherconfig NFS_ACL_SUPPORT 337a257cdd0SAndreas Gruenbacher tristate 338a257cdd0SAndreas Gruenbacher select FS_POSIX_ACL 339a257cdd0SAndreas Gruenbacher 340a257cdd0SAndreas Gruenbacherconfig NFS_COMMON 341a257cdd0SAndreas Gruenbacher bool 342f7790029SJeff Layton depends on NFSD || NFS_FS || LOCKD 343a257cdd0SAndreas Gruenbacher default y 344a257cdd0SAndreas Gruenbacher 34502591f9fSDai Ngoconfig NFS_V4_2_SSC_HELPER 346d9092b4bSDai Ngo bool 347d9092b4bSDai Ngo default y if NFS_V4_2 34802591f9fSDai Ngo 3499098c24fSAlexey Dobriyansource "net/sunrpc/Kconfig" 3509030aaf9SSage Weilsource "fs/ceph/Kconfig" 35171c02863SRonnie Sahlberg 352bb26b963SAlexey Dobriyansource "fs/cifs/Kconfig" 3531a93084bSNamjae Jeonsource "fs/ksmbd/Kconfig" 35471c02863SRonnie Sahlberg 355*23e91d8bSSteve Frenchconfig SMBFS_COMMON 35671c02863SRonnie Sahlberg tristate 35771c02863SRonnie Sahlberg default y if CIFS=y 35871c02863SRonnie Sahlberg default m if CIFS=m 35971c02863SRonnie Sahlberg 36033a1a6feSAlexey Dobriyansource "fs/coda/Kconfig" 361b2480c7fSAlexey Dobriyansource "fs/afs/Kconfig" 3620fcb4408SAlexey Dobriyansource "fs/9p/Kconfig" 36393fa58cbSEric Van Hensbergen 364ea0985adSJan Engelhardtendif # NETWORK_FILESYSTEMS 3651da177e4SLinus Torvalds 3661da177e4SLinus Torvaldssource "fs/nls/Kconfig" 367e7fd4179SDavid Teiglandsource "fs/dlm/Kconfig" 368955405d1SGabriel Krisman Bertazisource "fs/unicode/Kconfig" 3691da177e4SLinus Torvalds 370771b53d0SJens Axboeconfig IO_WQ 371771b53d0SJens Axboe bool 372771b53d0SJens Axboe 3731da177e4SLinus Torvaldsendmenu 374