Searched refs:mount_opts (Results 1 – 15 of 15) sorted by relevance
/linux-4.4.14/fs/devpts/ |
D | inode.c | 130 struct pts_mount_opts mount_opts; member 249 struct pts_mount_opts *opts = &fsi->mount_opts; in mknod_ptmx() 304 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode; in update_ptmx_mode() 318 struct pts_mount_opts *opts = &fsi->mount_opts; in devpts_remount() 337 struct pts_mount_opts *opts = &fsi->mount_opts; in devpts_show_options() 370 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE; in new_pts_fs_info() 371 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE; in new_pts_fs_info() 479 memcpy(&(DEVPTS_SB(s))->mount_opts, &opts, sizeof(opts)); in devpts_mount() 544 (fsi->mount_opts.newinstance ? pty_reserve : 0)) { in devpts_new_index() 557 if (index >= fsi->mount_opts.max) { in devpts_new_index() [all …]
|
/linux-4.4.14/fs/affs/ |
D | super.c | 192 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts) in parse_options() argument 206 *mount_opts = 0; in parse_options() 231 affs_set_opt(*mount_opts, SF_SETMODE); in parse_options() 234 affs_set_opt(*mount_opts, SF_MUFS); in parse_options() 237 affs_set_opt(*mount_opts, SF_NO_TRUNCATE); in parse_options() 243 affs_set_opt(*mount_opts, SF_PREFIX); in parse_options() 246 affs_set_opt(*mount_opts, SF_IMMUTABLE); in parse_options() 262 affs_set_opt(*mount_opts, SF_SETGID); in parse_options() 270 affs_set_opt(*mount_opts, SF_SETUID); in parse_options() 273 affs_set_opt(*mount_opts, SF_VERBOSE); in parse_options()
|
/linux-4.4.14/fs/jffs2/ |
D | super.c | 89 struct jffs2_mount_opts *opts = &c->mount_opts; in jffs2_show_options() 201 c->mount_opts.compr = JFFS2_COMPR_MODE_NONE; in jffs2_parse_options() 204 c->mount_opts.compr = JFFS2_COMPR_MODE_FORCELZO; in jffs2_parse_options() 208 c->mount_opts.compr = in jffs2_parse_options() 218 c->mount_opts.override_compr = true; in jffs2_parse_options() 229 c->mount_opts.rp_size = opt; in jffs2_parse_options()
|
D | jffs2_fs_sb.h | 143 struct jffs2_mount_opts mount_opts; member
|
D | compr.c | 159 if (c->mount_opts.override_compr) in jffs2_compress() 160 mode = c->mount_opts.compr; in jffs2_compress()
|
D | nodemgmt.c | 27 struct jffs2_mount_opts *opts = &c->mount_opts; in jffs2_rp_can_write()
|
/linux-4.4.14/fs/befs/ |
D | linuxvfs.c | 346 inode->i_uid = befs_sb->mount_opts.use_uid ? in befs_iget() 347 befs_sb->mount_opts.uid : in befs_iget() 349 inode->i_gid = befs_sb->mount_opts.use_gid ? in befs_iget() 350 befs_sb->mount_opts.gid : in befs_iget() 738 kfree(BEFS_SB(sb)->mount_opts.iocharset); in befs_put_super() 739 BEFS_SB(sb)->mount_opts.iocharset = NULL; in befs_put_super() 772 if (!parse_options((char *) data, &befs_sb->mount_opts)) { in befs_fill_super() 847 if (befs_sb->mount_opts.iocharset) { in befs_fill_super() 849 befs_sb->mount_opts.iocharset); in befs_fill_super() 850 befs_sb->nls = load_nls(befs_sb->mount_opts.iocharset); in befs_fill_super() [all …]
|
D | befs.h | 55 struct befs_mount_options mount_opts; member
|
/linux-4.4.14/fs/ubifs/ |
D | super.c | 427 if (c->mount_opts.unmount_mode == 2) in ubifs_show_options() 429 else if (c->mount_opts.unmount_mode == 1) in ubifs_show_options() 432 if (c->mount_opts.bulk_read == 2) in ubifs_show_options() 434 else if (c->mount_opts.bulk_read == 1) in ubifs_show_options() 437 if (c->mount_opts.chk_data_crc == 2) in ubifs_show_options() 439 else if (c->mount_opts.chk_data_crc == 1) in ubifs_show_options() 442 if (c->mount_opts.override_compr) { in ubifs_show_options() 444 ubifs_compr_name(c->mount_opts.compr_type)); in ubifs_show_options() 1000 c->mount_opts.unmount_mode = 2; in ubifs_parse_options() 1003 c->mount_opts.unmount_mode = 1; in ubifs_parse_options() [all …]
|
D | sb.c | 183 if (c->mount_opts.override_compr) in create_default_filesystem() 184 sup->default_compr = cpu_to_le16(c->mount_opts.compr_type); in create_default_filesystem() 616 if (!c->mount_opts.override_compr) in ubifs_read_superblock()
|
D | ubifs.h | 1463 struct ubifs_mount_opts mount_opts; member
|
/linux-4.4.14/fs/ramfs/ |
D | inode.c | 172 struct ramfs_mount_opts mount_opts; member 220 err = ramfs_parse_options(data, &fsi->mount_opts); in ramfs_fill_super() 231 inode = ramfs_get_inode(sb, NULL, S_IFDIR | fsi->mount_opts.mode, 0); in ramfs_fill_super()
|
/linux-4.4.14/fs/tracefs/ |
D | inode.c | 162 struct tracefs_mount_opts mount_opts; member 217 struct tracefs_mount_opts *opts = &fsi->mount_opts; in tracefs_apply_options() 234 err = tracefs_parse_options(data, &fsi->mount_opts); in tracefs_remount() 247 struct tracefs_mount_opts *opts = &fsi->mount_opts; in tracefs_show_options() 282 err = tracefs_parse_options(data, &fsi->mount_opts); in trace_fill_super()
|
/linux-4.4.14/fs/debugfs/ |
D | inode.c | 68 struct debugfs_mount_opts mount_opts; member 123 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_apply_options() 140 err = debugfs_parse_options(data, &fsi->mount_opts); in debugfs_remount() 153 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_show_options() 209 err = debugfs_parse_options(data, &fsi->mount_opts); in debug_fill_super()
|
/linux-4.4.14/fs/ext4/ |
D | super.c | 1364 static const struct mount_opts { struct 1456 const struct mount_opts *m; in handle_mount_opt() 1820 const struct mount_opts *m; in _ext4_show_options()
|