Home
last modified time | relevance | path

Searched refs:mount_opt (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/kernel/fs/btrfs/
H A Dsuper.c484 btrfs_set_opt(info->mount_opt, USEBACKUPROOT); in parse_rescue_options()
526 btrfs_set_opt(info->mount_opt, FREE_SPACE_TREE); in btrfs_parse_options()
528 btrfs_set_opt(info->mount_opt, SPACE_CACHE); in btrfs_parse_options()
546 btrfs_set_opt(info->mount_opt, DEGRADED); in btrfs_parse_options()
569 btrfs_clear_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
570 btrfs_clear_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
582 btrfs_clear_opt(info->mount_opt, COMPRESS); in btrfs_parse_options()
583 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS); in btrfs_parse_options()
584 btrfs_set_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
585 btrfs_set_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
[all …]
H A Dctree.h644 unsigned long mount_opt; member
1316 #define btrfs_test_opt(fs_info, opt) ((fs_info)->mount_opt & \
1323 btrfs_set_opt(fs_info->mount_opt, opt); \
1330 btrfs_clear_opt(fs_info->mount_opt, opt); \
1360 if (!btrfs_raw_test_opt((info)->mount_opt, opt)) { \
1369 if (btrfs_raw_test_opt((info)->mount_opt, opt)) { \
H A Dref-verify.c901 btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); in btrfs_ref_tree_mod()
1030 btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); in btrfs_build_ref_tree()
H A Dtransaction.c2515 btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE); in btrfs_apply_pending_changes()
2520 btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE); in btrfs_apply_pending_changes()
H A Ddisk-io.c2647 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE); in init_tree_roots()
3425 btrfs_clear_opt(fs_info->mount_opt, USEBACKUPROOT); in open_ctree()
/OK3568_Linux_fs/kernel/fs/ocfs2/
H A Dsuper.c80 unsigned long mount_opt; member
625 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
632 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { in ocfs2_remount()
641 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { in ocfs2_remount()
708 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount()
1011 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super()
1208 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA && in ocfs2_check_set_options()
1215 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA && in ocfs2_check_set_options()
1222 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL && in ocfs2_check_set_options()
1229 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL | in ocfs2_check_set_options()
[all …]
/OK3568_Linux_fs/kernel/fs/erofs/
H A Dinternal.h59 unsigned int mount_opt; member
123 #define clear_opt(ctx, option) ((ctx)->mount_opt &= ~EROFS_MOUNT_##option)
124 #define set_opt(ctx, option) ((ctx)->mount_opt |= EROFS_MOUNT_##option)
125 #define test_opt(ctx, option) ((ctx)->mount_opt & EROFS_MOUNT_##option)
/OK3568_Linux_fs/kernel/fs/ext4/
H A Dsuper.c1936 int mount_opt; member
2200 if (m->mount_opt & EXT4_MOUNT_DELALLOC) { in handle_mount_opt()
2202 } else if (m->mount_opt & EXT4_MOUNT_JOURNAL_CHECKSUM) { in handle_mount_opt()
2336 else if (test_opt(sb, DATA_FLAGS) != m->mount_opt) { in handle_mount_opt()
2343 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
2348 sbi->s_jquota_fmt != m->mount_opt) { in handle_mount_opt()
2359 sbi->s_jquota_fmt = m->mount_opt; in handle_mount_opt()
2414 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
2416 sbi->s_mount_opt &= ~m->mount_opt; in handle_mount_opt()
2430 sbi->s_mount_opt2 |= m->mount_opt; in handle_mount_opt()
[all …]
/OK3568_Linux_fs/kernel/fs/f2fs/
H A Dsuper.c2096 org_mount_opt = sbi->mount_opt; in f2fs_remount()
2318 sbi->mount_opt = org_mount_opt; in f2fs_remount()
H A Df2fs.h106 #define F2FS_OPTION(sbi) ((sbi)->mount_opt)
1676 struct f2fs_mount_info mount_opt; /* mount options */ member