Searched refs:mount_opts (Results 1 – 18 of 18) sorted by relevance
| /linux/fs/jffs2/ |
| A D | super.c | 88 struct jffs2_mount_opts *opts = &c->mount_opts; in jffs2_show_options() 201 c->mount_opts.compr = result.uint_32; in jffs2_parse_param() 202 c->mount_opts.override_compr = true; in jffs2_parse_param() 208 c->mount_opts.set_rp_size = true; in jffs2_parse_param() 223 if (new_c->mount_opts.override_compr) { in jffs2_update_mount_opts() 224 c->mount_opts.override_compr = new_c->mount_opts.override_compr; in jffs2_update_mount_opts() 225 c->mount_opts.compr = new_c->mount_opts.compr; in jffs2_update_mount_opts() 227 if (new_c->mount_opts.set_rp_size) { in jffs2_update_mount_opts() 228 c->mount_opts.set_rp_size = new_c->mount_opts.set_rp_size; in jffs2_update_mount_opts() 229 c->mount_opts.rp_size = new_c->mount_opts.rp_size; in jffs2_update_mount_opts() [all …]
|
| A D | jffs2_fs_sb.h | 144 struct jffs2_mount_opts mount_opts; member
|
| A D | compr.c | 159 if (c->mount_opts.override_compr) in jffs2_compress() 160 mode = c->mount_opts.compr; in jffs2_compress()
|
| A D | nodemgmt.c | 27 struct jffs2_mount_opts *opts = &c->mount_opts; in jffs2_rp_can_write()
|
| /linux/fs/devpts/ |
| A D | inode.c | 102 struct pts_mount_opts mount_opts; member 311 struct pts_mount_opts *opts = &fsi->mount_opts; in mknod_ptmx() 361 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode; in update_ptmx_mode() 369 struct pts_mount_opts *opts = &fsi->mount_opts; in devpts_remount() 387 struct pts_mount_opts *opts = &fsi->mount_opts; in devpts_show_options() 418 fsi->mount_opts.mode = DEVPTS_DEFAULT_MODE; in new_pts_fs_info() 419 fsi->mount_opts.ptmxmode = DEVPTS_DEFAULT_PTMX_MODE; in new_pts_fs_info() 444 error = parse_mount_options(data, PARSE_MOUNT, &DEVPTS_SB(s)->mount_opts); in devpts_fill_super() 516 (fsi->mount_opts.reserve ? 0 : pty_reserve))) in devpts_new_index() 519 index = ida_alloc_max(&fsi->allocated_ptys, fsi->mount_opts.max - 1, in devpts_new_index() [all …]
|
| /linux/fs/ramfs/ |
| A D | inode.c | 49 struct ramfs_mount_opts mount_opts; member 211 if (fsi->mount_opts.mode != RAMFS_DEFAULT_MODE) in ramfs_show_options() 212 seq_printf(m, ",mode=%o", fsi->mount_opts.mode); in ramfs_show_options() 255 fsi->mount_opts.mode = result.uint_32 & S_IALLUGO; in ramfs_parse_param() 274 inode = ramfs_get_inode(sb, NULL, S_IFDIR | fsi->mount_opts.mode, 0); in ramfs_fill_super() 306 fsi->mount_opts.mode = RAMFS_DEFAULT_MODE; in ramfs_init_fs_context()
|
| /linux/fs/affs/ |
| A D | super.c | 190 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts) in parse_options() argument 204 *mount_opts = 0; in parse_options() 229 affs_set_opt(*mount_opts, SF_SETMODE); in parse_options() 232 affs_set_opt(*mount_opts, SF_MUFS); in parse_options() 235 affs_set_opt(*mount_opts, SF_NO_TRUNCATE); in parse_options() 242 affs_set_opt(*mount_opts, SF_PREFIX); in parse_options() 245 affs_set_opt(*mount_opts, SF_IMMUTABLE); in parse_options() 261 affs_set_opt(*mount_opts, SF_SETGID); in parse_options() 269 affs_set_opt(*mount_opts, SF_SETUID); in parse_options() 272 affs_set_opt(*mount_opts, SF_VERBOSE); in parse_options()
|
| /linux/fs/befs/ |
| A 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() 766 struct befs_mount_options *opts = &befs_sb->mount_opts; in befs_show_options() 789 kfree(BEFS_SB(sb)->mount_opts.iocharset); in befs_put_super() 790 BEFS_SB(sb)->mount_opts.iocharset = NULL; in befs_put_super() 906 if (befs_sb->mount_opts.iocharset) { in befs_fill_super() 908 befs_sb->mount_opts.iocharset); in befs_fill_super() 913 befs_sb->mount_opts.iocharset); in befs_fill_super() [all …]
|
| A D | befs.h | 59 struct befs_mount_options mount_opts; member
|
| /linux/drivers/android/ |
| A D | binderfs.c | 132 if (++info->device_count <= info->mount_opts.max) in binderfs_binder_device_create() 316 if (info->mount_opts.stats_mode != ctx->stats_mode) in binderfs_fs_context_reconfigure() 319 info->mount_opts.stats_mode = ctx->stats_mode; in binderfs_fs_context_reconfigure() 320 info->mount_opts.max = ctx->max; in binderfs_fs_context_reconfigure() 328 if (info->mount_opts.max <= BINDERFS_MAX_MINOR) in binderfs_show_options() 329 seq_printf(seq, ",max=%d", info->mount_opts.max); in binderfs_show_options() 331 switch (info->mount_opts.stats_mode) { in binderfs_show_options() 702 info->mount_opts.max = ctx->max; in binderfs_fill_super() 703 info->mount_opts.stats_mode = ctx->stats_mode; in binderfs_fill_super() 739 if (info->mount_opts.stats_mode == binderfs_stats_mode_global) in binderfs_fill_super()
|
| A D | binder_internal.h | 72 struct binderfs_mount_opts mount_opts; member
|
| /linux/fs/ubifs/ |
| A D | super.c | 437 if (c->mount_opts.unmount_mode == 2) in ubifs_show_options() 442 if (c->mount_opts.bulk_read == 2) in ubifs_show_options() 447 if (c->mount_opts.chk_data_crc == 2) in ubifs_show_options() 452 if (c->mount_opts.override_compr) { in ubifs_show_options() 1057 c->mount_opts.unmount_mode = 2; in ubifs_parse_options() 1060 c->mount_opts.unmount_mode = 1; in ubifs_parse_options() 1063 c->mount_opts.bulk_read = 2; in ubifs_parse_options() 1067 c->mount_opts.bulk_read = 1; in ubifs_parse_options() 1071 c->mount_opts.chk_data_crc = 2; in ubifs_parse_options() 1075 c->mount_opts.chk_data_crc = 1; in ubifs_parse_options() [all …]
|
| A D | sb.c | 209 if (c->mount_opts.override_compr) in create_default_filesystem() 210 sup->default_compr = cpu_to_le16(c->mount_opts.compr_type); in create_default_filesystem() 728 if (!c->mount_opts.override_compr) in ubifs_read_superblock()
|
| A D | ubifs.h | 1515 struct ubifs_mount_opts mount_opts; member
|
| /linux/fs/efivarfs/ |
| A D | super.c | 51 struct efivarfs_mount_opts *opts = &sbi->mount_opts; in efivarfs_show_options() 286 struct efivarfs_mount_opts *opts = &sbi->mount_opts; in efivarfs_parse_param() 379 sfi->mount_opts.uid = GLOBAL_ROOT_UID; in efivarfs_init_fs_context() 380 sfi->mount_opts.gid = GLOBAL_ROOT_GID; in efivarfs_init_fs_context()
|
| A D | internal.h | 18 struct efivarfs_mount_opts mount_opts; member
|
| A D | inode.c | 25 struct efivarfs_mount_opts *opts = &fsi->mount_opts; in efivarfs_get_inode()
|
| /linux/fs/ext4/ |
| A D | super.c | 1840 static const struct mount_opts { struct 2133 const struct mount_opts *m; in ext4_parse_param() 2928 const struct mount_opts *m; in _ext4_show_options()
|
Completed in 56 milliseconds