/fs/overlayfs/ |
D | Kconfig | 18 If this config option is enabled then overlay filesystems will use 21 "redirect_dir=off" module option or on a filesystem instance basis 22 with the "redirect_dir=off" mount option. 49 If this config option is enabled then overlay filesystems will use 52 "index=off" module option or on a filesystem instance basis with the 53 "index=off" mount option. 70 If this config option is enabled then overlay filesystems will use 73 globally with the "nfs_export=off" module option or on a filesystem 74 instance basis with the "nfs_export=off" mount option. 88 case basis with the "nfs_export=on" mount option. [all …]
|
/fs/autofs/ |
D | inode.c | 138 int option; in parse_options() local 168 if (match_int(args, &option)) in parse_options() 170 uid = make_kuid(current_user_ns(), option); in parse_options() 176 if (match_int(args, &option)) in parse_options() 178 gid = make_kgid(current_user_ns(), option); in parse_options() 184 if (match_int(args, &option)) in parse_options() 186 *pgrp = option; in parse_options() 190 if (match_int(args, &option)) in parse_options() 192 sbi->min_proto = option; in parse_options() 195 if (match_int(args, &option)) in parse_options() [all …]
|
/fs/devpts/ |
D | inode.c | 270 int option; in parse_mount_options() local 278 if (match_int(&args[0], &option)) in parse_mount_options() 280 uid = make_kuid(current_user_ns(), option); in parse_mount_options() 287 if (match_int(&args[0], &option)) in parse_mount_options() 289 gid = make_kgid(current_user_ns(), option); in parse_mount_options() 296 if (match_octal(&args[0], &option)) in parse_mount_options() 298 opts->mode = option & S_IALLUGO; in parse_mount_options() 301 if (match_octal(&args[0], &option)) in parse_mount_options() 303 opts->ptmxmode = option & S_IALLUGO; in parse_mount_options() 308 if (match_int(&args[0], &option) || in parse_mount_options() [all …]
|
/fs/9p/ |
D | v9fs.c | 166 int option = 0; in v9fs_parse_options() local 198 r = match_int(&args[0], &option); in v9fs_parse_options() 204 v9ses->debug = option; in v9fs_parse_options() 206 p9_debug_level = option; in v9fs_parse_options() 212 r = match_int(&args[0], &option); in v9fs_parse_options() 219 v9ses->dfltuid = make_kuid(current_user_ns(), option); in v9fs_parse_options() 227 r = match_int(&args[0], &option); in v9fs_parse_options() 234 v9ses->dfltgid = make_kgid(current_user_ns(), option); in v9fs_parse_options() 242 r = match_int(&args[0], &option); in v9fs_parse_options() 248 v9ses->afid = option; in v9fs_parse_options() [all …]
|
/fs/adfs/ |
D | super.c | 133 int option; in parse_options() local 147 if (match_int(args, &option)) in parse_options() 149 asb->s_uid = make_kuid(current_user_ns(), option); in parse_options() 154 if (match_int(args, &option)) in parse_options() 156 asb->s_gid = make_kgid(current_user_ns(), option); in parse_options() 161 if (match_octal(args, &option)) in parse_options() 163 asb->s_owner_mask = option; in parse_options() 166 if (match_octal(args, &option)) in parse_options() 168 asb->s_other_mask = option; in parse_options() 171 if (match_int(args, &option)) in parse_options() [all …]
|
/fs/ocfs2/ |
D | Kconfig | 45 This option will allow OCFS2 to use userspace clustering services 57 This option allows some fs statistics to be captured. Enabling 58 this option may increase the memory consumption. 67 This option will enlarge your kernel, but it allows debugging of 75 This option will enable expensive consistency checks. Enable 76 this option for debugging only as it is likely to decrease
|
D | super.c | 1242 int token, option; in ocfs2_parse_options() local 1277 if (match_int(&args[0], &option)) { in ocfs2_parse_options() 1281 if (option) in ocfs2_parse_options() 1320 if (match_int(&args[0], &option)) { in ocfs2_parse_options() 1324 if (option >= 0) in ocfs2_parse_options() 1325 mopt->atime_quantum = option; in ocfs2_parse_options() 1328 if (match_int(&args[0], &option)) { in ocfs2_parse_options() 1332 if (option) in ocfs2_parse_options() 1333 mopt->slot = (u16)option; in ocfs2_parse_options() 1336 if (match_int(&args[0], &option)) { in ocfs2_parse_options() [all …]
|
/fs/ |
D | Kconfig | 58 on this option will compile in support for DAX. 73 per-inode using a mount option as well. See the file documentation in 108 This option enables the export operations for a filesystem to support 115 This option enables standard file locking support, required 117 call. Disabling this option saves about 11k. 187 and this option selects support for ACLs specifically for tmpfs 191 this option as there are a number of Linux distros that require 220 option makes tmpfs use the full width of ino_t by default, without 221 needing to specify the inode64 option when mounting. 225 the INODE64 config option and inode64 mount option risk operations [all …]
|
/fs/fat/ |
D | Kconfig | 25 file system and use GNU tar's M option. GNU tar is a program 56 This option will enlarge your kernel by about 7 KB. If unsure, 65 This option provides support for normal Windows file systems with 83 This option should be set to the codepage of your FAT filesystems. 84 It can be overridden with the "codepage" mount option. 95 with the "iocharset" mount option for FAT filesystems. 97 If unsure, you shouldn't set "utf8" here - select the next option 105 bool "Enable FAT UTF-8 option by default" 109 Set this if you would like to have "utf8" mount option set
|
D | inode.c | 1136 int option; in parse_options() local 1216 if (match_int(&args[0], &option)) in parse_options() 1218 opts->fs_uid = make_kuid(current_user_ns(), option); in parse_options() 1223 if (match_int(&args[0], &option)) in parse_options() 1225 opts->fs_gid = make_kgid(current_user_ns(), option); in parse_options() 1230 if (match_octal(&args[0], &option)) in parse_options() 1232 opts->fs_fmask = opts->fs_dmask = option; in parse_options() 1235 if (match_octal(&args[0], &option)) in parse_options() 1237 opts->fs_dmask = option; in parse_options() 1240 if (match_octal(&args[0], &option)) in parse_options() [all …]
|
/fs/omfs/ |
D | inode.c | 407 int option; in parse_options() local 420 if (match_int(&args[0], &option)) in parse_options() 422 sbi->s_uid = make_kuid(current_user_ns(), option); in parse_options() 427 if (match_int(&args[0], &option)) in parse_options() 429 sbi->s_gid = make_kgid(current_user_ns(), option); in parse_options() 434 if (match_octal(&args[0], &option)) in parse_options() 436 sbi->s_fmask = sbi->s_dmask = option; in parse_options() 439 if (match_octal(&args[0], &option)) in parse_options() 441 sbi->s_dmask = option; in parse_options() 444 if (match_octal(&args[0], &option)) in parse_options() [all …]
|
/fs/pstore/ |
D | Kconfig | 7 This option enables generic access to platform level 31 This option enables DEFLATE (also known as ZLIB) compression 39 This option enables LZO compression algorithm support. 46 This option enables LZ4 compression algorithm support. 53 This option enables LZ4HC (high compression) mode algorithm. 60 This option enables 842 compression algorithm support. 67 This option enables zstd compression algorithm support. 80 This option chooses the default active compression algorithm. 123 When the option is enabled, pstore will log all kernel 131 When the option is enabled, pstore will export a character [all …]
|
/fs/nfs/ |
D | Kconfig | 38 This option enables support for version 2 of the NFS protocol 48 This option enables support for version 3 of the NFS protocol 70 option to prevent your NFS client from trying to use the NFSv3 81 This option enables support for version 4 of the NFS protocol 96 This option enables swapon to work on files located on NFS mounts. 103 This option enables support for minor version 1 of the NFSv4 protocol 112 This option enables support for minor version 2 of the NFSv4 protocol 137 This option defines the domain portion of the implementation ID that 142 option should be set to the default "kernel.org". 149 This option makes the NFS client advertise to NFSv4.1 servers that
|
/fs/btrfs/ |
D | Makefile | 11 $(call cc-option, -Wunused-but-set-variable) \ 12 $(call cc-option, -Wunused-const-variable) \ 13 $(call cc-option, -Wpacked-not-aligned) \ 14 $(call cc-option, -Wstringop-truncation)
|
/fs/tracefs/ |
D | inode.c | 240 int option; in tracefs_parse_options() local 256 if (match_int(&args[0], &option)) in tracefs_parse_options() 258 uid = make_kuid(current_user_ns(), option); in tracefs_parse_options() 264 if (match_int(&args[0], &option)) in tracefs_parse_options() 266 gid = make_kgid(current_user_ns(), option); in tracefs_parse_options() 272 if (match_octal(&args[0], &option)) in tracefs_parse_options() 274 opts->mode = option & S_IALLUGO; in tracefs_parse_options()
|
/fs/erofs/ |
D | internal.h | 187 #define clear_opt(opt, option) ((opt)->mount_opt &= ~EROFS_MOUNT_##option) argument 188 #define set_opt(opt, option) ((opt)->mount_opt |= EROFS_MOUNT_##option) argument 189 #define test_opt(opt, option) ((opt)->mount_opt & EROFS_MOUNT_##option) argument
|
/fs/nfsd/ |
D | Kconfig | 50 This option enables support in your system's NFS server for the 72 This option enables support in your system's NFS server for 90 This option enables support for the exporting pNFS block layouts 103 This option enables support for the exporting pNFS SCSI layouts 116 This option enables support for the exporting pNFS Flex File 132 This option enables support for NFSv4.2 inter server to
|
/fs/ubifs/ |
D | Kconfig | 25 This option allows to explicitly choose which compressions, if any, 57 increased flash wear. This option adds atime support and it is disabled by default 58 to preserve the old behavior. If you enable this option, UBIFS starts updating atime, 83 Linux. This option enables an extended attribute handler for file
|
/fs/befs/ |
D | linuxvfs.c | 696 int option; in parse_options() local 720 if (match_int(&args[0], &option)) in parse_options() 723 if (option >= 0) in parse_options() 724 uid = make_kuid(current_user_ns(), option); in parse_options() 727 "using default\n", option); in parse_options() 734 if (match_int(&args[0], &option)) in parse_options() 737 if (option >= 0) in parse_options() 738 gid = make_kgid(current_user_ns(), option); in parse_options() 741 "using default\n", option); in parse_options()
|
/fs/squashfs/ |
D | Kconfig | 82 using this option may improve overall I/O performance. 135 file systems will be readable without selecting this option. 150 file systems will be readable without selecting this option. 165 file systems will be readable without selecting this option. 179 file systems will be readable without selecting this option. 200 Setting this option will force Squashfs to use a 4K device block 206 bool "Additional option for memory-constrained systems"
|
/fs/debugfs/ |
D | inode.c | 110 int option; in debugfs_parse_options() local 126 if (match_int(&args[0], &option)) in debugfs_parse_options() 128 uid = make_kuid(current_user_ns(), option); in debugfs_parse_options() 134 if (match_int(&args[0], &option)) in debugfs_parse_options() 136 gid = make_kgid(current_user_ns(), option); in debugfs_parse_options() 142 if (match_octal(&args[0], &option)) in debugfs_parse_options() 144 opts->mode = option & S_IALLUGO; in debugfs_parse_options()
|
/fs/affs/ |
D | super.c | 210 int token, n, option; in parse_options() local 227 if (match_octal(&args[0], &option)) in parse_options() 229 *mode = option & 0777; in parse_options() 257 if (match_int(&args[0], &option)) in parse_options() 259 *gid = make_kgid(current_user_ns(), option); in parse_options() 265 if (match_int(&args[0], &option)) in parse_options() 267 *uid = make_kuid(current_user_ns(), option); in parse_options()
|
/fs/sysv/ |
D | Kconfig | 25 Note that this option is generally not needed for floppies, since a 28 tar" or preferably "info tar"). Note also that this option has 29 nothing whatsoever to do with the option "System V IPC". Read about
|
/fs/ntfs3/ |
D | Makefile | 8 $(call cc-option,-Wunused-but-set-variable,-Wunused-const-variable) \ 9 $(call cc-option,-Wold-style-declaration,-Wout-of-line-declaration)
|
/fs/hpfs/ |
D | super.c | 318 int option; in parse_opts() local 336 if (match_int(args, &option)) in parse_opts() 338 *uid = make_kuid(current_user_ns(), option); in parse_opts() 343 if (match_int(args, &option)) in parse_opts() 345 *gid = make_kgid(current_user_ns(), option); in parse_opts() 350 if (match_octal(args, &option)) in parse_opts() 352 *umask = option; in parse_opts()
|