/fs/sdcardfs/ |
D | main.c | 60 int option; in parse_options() local 93 if (match_int(&args[0], &option)) in parse_options() 95 opts->fs_low_uid = option; in parse_options() 98 if (match_int(&args[0], &option)) in parse_options() 100 opts->fs_low_gid = option; in parse_options() 103 if (match_int(&args[0], &option)) in parse_options() 105 vfsopts->gid = option; in parse_options() 108 if (match_int(&args[0], &option)) in parse_options() 110 opts->fs_user_id = option; in parse_options() 113 if (match_int(&args[0], &option)) in parse_options() [all …]
|
/fs/autofs4/ |
D | inode.c | 138 int option; in parse_options() local 164 if (match_int(args, &option)) in parse_options() 166 *uid = make_kuid(current_user_ns(), option); in parse_options() 171 if (match_int(args, &option)) in parse_options() 173 *gid = make_kgid(current_user_ns(), option); in parse_options() 178 if (match_int(args, &option)) in parse_options() 180 *pgrp = option; in parse_options() 184 if (match_int(args, &option)) in parse_options() 186 *minproto = option; in parse_options() 189 if (match_int(args, &option)) in parse_options() [all …]
|
/fs/pstore/ |
D | Kconfig | 5 This option enables generic access to platform level 20 This option chooses compression algorithm. 27 This option enables ZLIB compression algorithm support. 34 This option enables LZO compression algorithm support. 41 This option enables LZ4 compression algorithm support. 48 When the option is enabled, pstore will log all kernel 55 When the option is enabled, pstore will export a character 67 With this option kernel traces function calls into a persistent
|
/fs/proc/ |
D | root.c | 40 int option; in proc_parse_options() local 54 if (match_int(&args[0], &option)) in proc_parse_options() 56 pid->pid_gid = make_kgid(current_user_ns(), option); in proc_parse_options() 59 if (match_int(&args[0], &option)) in proc_parse_options() 61 if (option < 0 || option > 2) { in proc_parse_options() 65 pid->hide_pid = option; in proc_parse_options()
|
/fs/devpts/ |
D | inode.c | 214 int option; in parse_mount_options() local 222 if (match_int(&args[0], &option)) in parse_mount_options() 224 uid = make_kuid(current_user_ns(), option); in parse_mount_options() 231 if (match_int(&args[0], &option)) in parse_mount_options() 233 gid = make_kgid(current_user_ns(), option); in parse_mount_options() 240 if (match_octal(&args[0], &option)) in parse_mount_options() 242 opts->mode = option & S_IALLUGO; in parse_mount_options() 245 if (match_octal(&args[0], &option)) in parse_mount_options() 247 opts->ptmxmode = option & S_IALLUGO; in parse_mount_options() 252 if (match_int(&args[0], &option) || in parse_mount_options() [all …]
|
/fs/nfs/ |
D | super.c | 1173 static int nfs_get_option_str(substring_t args[], char **option) in nfs_get_option_str() argument 1175 kfree(*option); in nfs_get_option_str() 1176 *option = match_strdup(args); in nfs_get_option_str() 1177 return !*option; in nfs_get_option_str() 1180 static int nfs_get_option_ul(substring_t args[], unsigned long *option) in nfs_get_option_ul() argument 1188 rc = kstrtoul(string, 10, option); in nfs_get_option_ul() 1194 static int nfs_get_option_ul_bound(substring_t args[], unsigned long *option, in nfs_get_option_ul_bound() argument 1199 ret = nfs_get_option_ul(args, option); in nfs_get_option_ul_bound() 1202 if (*option < l_bound || *option > u_bound) in nfs_get_option_ul_bound() 1243 unsigned long option; in nfs_parse_mount_options() local [all …]
|
D | Kconfig | 37 This option enables support for version 2 of the NFS protocol 47 This option enables support for version 3 of the NFS protocol 69 option to prevent your NFS client from trying to use the NFSv3 80 This option enables support for version 4 of the NFS protocol 95 This option enables swapon to work on files located on NFS mounts. 102 This option enables support for minor version 1 of the NFSv4 protocol 111 This option enables support for minor version 2 of the NFSv4 protocol 142 This option defines the domain portion of the implementation ID that 147 option should be set to the default "kernel.org". 154 This option makes the NFS client advertise to NFSv4.1 servers that
|
/fs/9p/ |
D | v9fs.c | 118 int option = 0; in v9fs_parse_options() local 147 r = match_int(&args[0], &option); in v9fs_parse_options() 154 v9ses->debug = option; in v9fs_parse_options() 156 p9_debug_level = option; in v9fs_parse_options() 161 r = match_int(&args[0], &option); in v9fs_parse_options() 168 v9ses->dfltuid = make_kuid(current_user_ns(), option); in v9fs_parse_options() 177 r = match_int(&args[0], &option); in v9fs_parse_options() 184 v9ses->dfltgid = make_kgid(current_user_ns(), option); in v9fs_parse_options() 193 r = match_int(&args[0], &option); in v9fs_parse_options() 200 v9ses->afid = option; in v9fs_parse_options()
|
/fs/ocfs2/ |
D | Kconfig | 44 This option will allow OCFS2 to use userspace clustering services 56 This option allows some fs statistics to be captured. Enabling 57 this option may increase the memory consumption. 66 This option will enlarge your kernel, but it allows debugging of 74 This option will enable expensive consistency checks. Enable 75 this option for debugging only as it is likely to decrease
|
D | super.c | 1282 int token, option; in ocfs2_parse_options() local 1317 if (match_int(&args[0], &option)) { in ocfs2_parse_options() 1321 if (option) in ocfs2_parse_options() 1360 if (match_int(&args[0], &option)) { in ocfs2_parse_options() 1364 if (option >= 0) in ocfs2_parse_options() 1365 mopt->atime_quantum = option; in ocfs2_parse_options() 1368 if (match_int(&args[0], &option)) { in ocfs2_parse_options() 1372 if (option) in ocfs2_parse_options() 1373 mopt->slot = (s16)option; in ocfs2_parse_options() 1376 if (match_int(&args[0], &option)) { in ocfs2_parse_options() [all …]
|
/fs/adfs/ |
D | super.c | 162 int option; in parse_options() local 176 if (match_int(args, &option)) in parse_options() 178 asb->s_uid = make_kuid(current_user_ns(), option); in parse_options() 183 if (match_int(args, &option)) in parse_options() 185 asb->s_gid = make_kgid(current_user_ns(), option); in parse_options() 190 if (match_octal(args, &option)) in parse_options() 192 asb->s_owner_mask = option; in parse_options() 195 if (match_octal(args, &option)) in parse_options() 197 asb->s_other_mask = option; in parse_options() 200 if (match_int(args, &option)) in parse_options() [all …]
|
/fs/fat/ |
D | Kconfig | 24 file system and use GNU tar's M option. GNU tar is a program 55 This option will enlarge your kernel by about 7 KB. If unsure, 64 This option provides support for normal Windows file systems with 82 This option should be set to the codepage of your FAT filesystems. 83 It can be overridden with the "codepage" mount option. 94 with the "iocharset" mount option for FAT filesystems. 96 If unsure, you shouldn't set "utf8" here - select the next option 104 bool "Enable FAT UTF-8 option by default" 108 Set this if you would like to have "utf8" mount option set
|
D | inode.c | 1110 int option; in parse_options() local 1190 if (match_int(&args[0], &option)) in parse_options() 1192 opts->fs_uid = make_kuid(current_user_ns(), option); in parse_options() 1197 if (match_int(&args[0], &option)) in parse_options() 1199 opts->fs_gid = make_kgid(current_user_ns(), option); in parse_options() 1204 if (match_octal(&args[0], &option)) in parse_options() 1206 opts->fs_fmask = opts->fs_dmask = option; in parse_options() 1209 if (match_octal(&args[0], &option)) in parse_options() 1211 opts->fs_dmask = option; in parse_options() 1214 if (match_octal(&args[0], &option)) in parse_options() [all …]
|
/fs/omfs/ |
D | inode.c | 379 int option; in parse_options() local 392 if (match_int(&args[0], &option)) in parse_options() 394 sbi->s_uid = make_kuid(current_user_ns(), option); in parse_options() 399 if (match_int(&args[0], &option)) in parse_options() 401 sbi->s_gid = make_kgid(current_user_ns(), option); in parse_options() 406 if (match_octal(&args[0], &option)) in parse_options() 408 sbi->s_fmask = sbi->s_dmask = option; in parse_options() 411 if (match_octal(&args[0], &option)) in parse_options() 413 sbi->s_dmask = option; in parse_options() 416 if (match_octal(&args[0], &option)) in parse_options() [all …]
|
/fs/ |
D | Kconfig | 45 on this option will compile in support for DAX; you will need to 46 mount the filesystem using the -o dax option. 76 This option enables the export operations for a filesystem to support 84 This option enables standard file locking support, required 86 call. Disabling this option saves about 11k. 93 This option enables files appropriately marked files on appropriely 160 and this option selects support for ACLs specifically for tmpfs 164 this option as there are a number of Linux distros that require 219 This option alone does not add any kernel code. 267 This option alone does not add any kernel code.
|
/fs/tracefs/ |
D | inode.c | 168 int option; in tracefs_parse_options() local 183 if (match_int(&args[0], &option)) in tracefs_parse_options() 185 uid = make_kuid(current_user_ns(), option); in tracefs_parse_options() 191 if (match_int(&args[0], &option)) in tracefs_parse_options() 193 gid = make_kgid(current_user_ns(), option); in tracefs_parse_options() 199 if (match_octal(&args[0], &option)) in tracefs_parse_options() 201 opts->mode = option & S_IALLUGO; in tracefs_parse_options()
|
/fs/udf/ |
D | super.c | 494 int option; in udf_parse_options() local 522 if (match_int(&args[0], &option)) in udf_parse_options() 524 n = option; in udf_parse_options() 549 if (match_int(args, &option)) in udf_parse_options() 551 uopt->gid = make_kgid(current_user_ns(), option); in udf_parse_options() 557 if (match_int(args, &option)) in udf_parse_options() 559 uopt->uid = make_kuid(current_user_ns(), option); in udf_parse_options() 565 if (match_octal(args, &option)) in udf_parse_options() 567 uopt->umask = option; in udf_parse_options() 573 if (match_int(args, &option)) in udf_parse_options() [all …]
|
/fs/nfsd/ |
D | Kconfig | 40 This option enables support in your system's NFS server for 57 This option enables support in your system's NFS server for the 77 This option enables support in your system's NFS server for 95 This option enables support for the exporting pNFS block layouts 108 This option enables support for the exporting pNFS SCSI layouts 121 This option enables support for the exporting pNFS Flex File 150 This option enables support for manually injecting faults
|
/fs/isofs/ |
D | inode.c | 339 int option; in parse_options() local 407 if (match_int(&args[0], &option)) in parse_options() 409 n = option; in parse_options() 415 if (match_int(&args[0], &option)) in parse_options() 417 popt->sbsector = option; in parse_options() 428 if (match_int(&args[0], &option)) in parse_options() 430 popt->uid = make_kuid(current_user_ns(), option); in parse_options() 436 if (match_int(&args[0], &option)) in parse_options() 438 popt->gid = make_kgid(current_user_ns(), option); in parse_options() 444 if (match_int(&args[0], &option)) in parse_options() [all …]
|
/fs/debugfs/ |
D | inode.c | 80 int option; in debugfs_parse_options() local 95 if (match_int(&args[0], &option)) in debugfs_parse_options() 97 uid = make_kuid(current_user_ns(), option); in debugfs_parse_options() 103 if (match_int(&args[0], &option)) in debugfs_parse_options() 105 gid = make_kgid(current_user_ns(), option); in debugfs_parse_options() 111 if (match_octal(&args[0], &option)) in debugfs_parse_options() 113 opts->mode = option & S_IALLUGO; in debugfs_parse_options()
|
/fs/befs/ |
D | linuxvfs.c | 652 int option; in parse_options() local 675 if (match_int(&args[0], &option)) in parse_options() 678 if (option >= 0) in parse_options() 679 uid = make_kuid(current_user_ns(), option); in parse_options() 682 "using default\n", option); in parse_options() 689 if (match_int(&args[0], &option)) in parse_options() 692 if (option >= 0) in parse_options() 693 gid = make_kgid(current_user_ns(), option); in parse_options() 696 "using default\n", option); in parse_options()
|
/fs/ubifs/ |
D | Kconfig | 18 This option allows to explicitly choose which compressions, if any, 45 increased flash wear. This option adds atime support and it is disabled by default 46 to preserve the old behavior. If you enable this option, UBIFS starts updating atime,
|
/fs/affs/ |
D | super.c | 211 int token, n, option; in parse_options() local 228 if (match_octal(&args[0], &option)) in parse_options() 230 *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/cramfs/ |
D | README | 102 One option is to change mkcramfs to take its PAGE_SIZE from 103 <asm/page.h>. Personally I don't like this option, but it does 137 The cost of option 1 is that kernels with a larger PAGE_SIZE 140 The cost of option 2 relative to option 1 is that the code uses 151 The main advantage of option 3 over 1, 2, is better compression. The 158 block size, but that just means adding and parsing a -b option.
|
/fs/cifs/ |
D | Kconfig | 42 Enabling this option will cause statistics for each server share 49 Enabling this option will allow more detailed statistics on SMB 70 Enabling this option allows the cifs module to mount to older 80 option on the mount command. This support is disabled by 116 Enabling this option will cause the cifs client to attempt to 137 Enabling this option adds helpful debugging messages to 144 Enabling this option adds a few more debugging routines 148 option can be turned off unless you are debugging
|