Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 73) sorted by relevance

123

/fs/overlayfs/
DKconfig18 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/
Dinode.c137 int option; in parse_options() local
167 if (match_int(args, &option)) in parse_options()
169 uid = make_kuid(current_user_ns(), option); in parse_options()
175 if (match_int(args, &option)) in parse_options()
177 gid = make_kgid(current_user_ns(), option); in parse_options()
183 if (match_int(args, &option)) in parse_options()
185 *pgrp = option; in parse_options()
189 if (match_int(args, &option)) in parse_options()
191 sbi->min_proto = option; in parse_options()
194 if (match_int(args, &option)) in parse_options()
[all …]
/fs/9p/
Dv9fs.c168 int option = 0; in v9fs_parse_options() local
200 r = match_int(&args[0], &option); in v9fs_parse_options()
206 v9ses->debug = option; in v9fs_parse_options()
208 p9_debug_level = option; in v9fs_parse_options()
214 r = match_int(&args[0], &option); in v9fs_parse_options()
221 v9ses->dfltuid = make_kuid(current_user_ns(), option); in v9fs_parse_options()
229 r = match_int(&args[0], &option); in v9fs_parse_options()
236 v9ses->dfltgid = make_kgid(current_user_ns(), option); in v9fs_parse_options()
244 r = match_int(&args[0], &option); in v9fs_parse_options()
250 v9ses->afid = option; in v9fs_parse_options()
[all …]
/fs/devpts/
Dinode.c270 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/adfs/
Dsuper.c133 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/
DKconfig45 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
Dsuper.c1243 int token, option; in ocfs2_parse_options() local
1278 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1282 if (option) in ocfs2_parse_options()
1321 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1325 if (option >= 0) in ocfs2_parse_options()
1326 mopt->atime_quantum = option; in ocfs2_parse_options()
1329 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1333 if (option) in ocfs2_parse_options()
1334 mopt->slot = (u16)option; in ocfs2_parse_options()
1337 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
[all …]
/fs/fat/
DKconfig25 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
Dinode.c1132 int option; in parse_options() local
1212 if (match_int(&args[0], &option)) in parse_options()
1214 opts->fs_uid = make_kuid(current_user_ns(), option); in parse_options()
1219 if (match_int(&args[0], &option)) in parse_options()
1221 opts->fs_gid = make_kgid(current_user_ns(), option); in parse_options()
1226 if (match_octal(&args[0], &option)) in parse_options()
1228 opts->fs_fmask = opts->fs_dmask = option; in parse_options()
1231 if (match_octal(&args[0], &option)) in parse_options()
1233 opts->fs_dmask = option; in parse_options()
1236 if (match_octal(&args[0], &option)) in parse_options()
[all …]
/fs/omfs/
Dinode.c408 int option; in parse_options() local
421 if (match_int(&args[0], &option)) in parse_options()
423 sbi->s_uid = make_kuid(current_user_ns(), option); in parse_options()
428 if (match_int(&args[0], &option)) in parse_options()
430 sbi->s_gid = make_kgid(current_user_ns(), option); in parse_options()
435 if (match_octal(&args[0], &option)) in parse_options()
437 sbi->s_fmask = sbi->s_dmask = option; in parse_options()
440 if (match_octal(&args[0], &option)) in parse_options()
442 sbi->s_dmask = option; in parse_options()
445 if (match_octal(&args[0], &option)) in parse_options()
[all …]
/fs/pstore/
DKconfig7 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/
DKconfig56 on this option will compile in support for DAX.
71 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/nfs/
DKconfig38 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/
DMakefile11 $(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/
Dinode.c240 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/nfsd/
DKconfig42 This option enables support in your system's NFS server for
59 This option enables support in your system's NFS server for the
82 This option enables support in your system's NFS server for
100 This option enables support for the exporting pNFS block layouts
114 This option enables support for the exporting pNFS SCSI layouts
127 This option enables support for the exporting pNFS Flex File
143 This option enables support for NFSv4.2 inter server to
/fs/erofs/
Dinternal.h152 #define clear_opt(opt, option) ((opt)->mount_opt &= ~EROFS_MOUNT_##option) argument
153 #define set_opt(opt, option) ((opt)->mount_opt |= EROFS_MOUNT_##option) argument
154 #define test_opt(opt, option) ((opt)->mount_opt & EROFS_MOUNT_##option) argument
/fs/ubifs/
DKconfig25 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/
Dlinuxvfs.c698 int option; in parse_options() local
722 if (match_int(&args[0], &option)) in parse_options()
725 if (option >= 0) in parse_options()
726 uid = make_kuid(current_user_ns(), option); in parse_options()
729 "using default\n", option); in parse_options()
736 if (match_int(&args[0], &option)) in parse_options()
739 if (option >= 0) in parse_options()
740 gid = make_kgid(current_user_ns(), option); in parse_options()
743 "using default\n", option); in parse_options()
/fs/debugfs/
Dinode.c108 int option; in debugfs_parse_options() local
123 if (match_int(&args[0], &option)) in debugfs_parse_options()
125 uid = make_kuid(current_user_ns(), option); in debugfs_parse_options()
131 if (match_int(&args[0], &option)) in debugfs_parse_options()
133 gid = make_kgid(current_user_ns(), option); in debugfs_parse_options()
139 if (match_octal(&args[0], &option)) in debugfs_parse_options()
141 opts->mode = option & S_IALLUGO; in debugfs_parse_options()
/fs/squashfs/
DKconfig82 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/affs/
Dsuper.c210 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/
DKconfig25 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/
DMakefile8 $(call cc-option,-Wunused-but-set-variable,-Wunused-const-variable) \
9 $(call cc-option,-Wold-style-declaration,-Wout-of-line-declaration)
/fs/cramfs/
DREADME131 One option is to change mkcramfs to take its PAGE_SIZE from
132 <asm/page.h>. Personally I don't like this option, but it does
166 The cost of option 1 is that kernels with a larger PAGE_SIZE
169 The cost of option 2 relative to option 1 is that the code uses
180 The main advantage of option 3 over 1, 2, is better compression. The
187 block size, but that just means adding and parsing a -b option.

123