Home
last modified time | relevance | path

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

/Linux-v6.1/fs/btrfs/
Dsuper.c545 if (fs_info->mount_opt & opt) { in check_ro_option()
576 btrfs_set_opt(info->mount_opt, USEBACKUPROOT); in parse_rescue_options()
634 btrfs_set_opt(info->mount_opt, FREE_SPACE_TREE); in btrfs_parse_options()
641 btrfs_set_opt(info->mount_opt, SPACE_CACHE); in btrfs_parse_options()
661 btrfs_set_opt(info->mount_opt, DEGRADED); in btrfs_parse_options()
684 btrfs_clear_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
685 btrfs_clear_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
697 btrfs_clear_opt(info->mount_opt, COMPRESS); in btrfs_parse_options()
698 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS); in btrfs_parse_options()
699 btrfs_set_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
[all …]
Dref-verify.c885 btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); in btrfs_ref_tree_mod()
1016 btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); in btrfs_build_ref_tree()
Dctree.h692 unsigned long mount_opt; member
1630 #define btrfs_test_opt(fs_info, opt) ((fs_info)->mount_opt & \
1637 btrfs_set_opt(fs_info->mount_opt, opt); \
1644 btrfs_clear_opt(fs_info->mount_opt, opt); \
1672 if (!btrfs_raw_test_opt((info)->mount_opt, opt)) { \
1681 if (btrfs_raw_test_opt((info)->mount_opt, opt)) { \
Ddisk-io.c2914 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE); in init_tree_roots()
3185 btrfs_clear_opt(fs_info->mount_opt, USEBACKUPROOT); in btrfs_clear_oneshot_options()
3186 btrfs_clear_opt(fs_info->mount_opt, CLEAR_CACHE); in btrfs_clear_oneshot_options()
3566 btrfs_clear_opt(fs_info->mount_opt, SPACE_CACHE); in open_ctree()
/Linux-v6.1/fs/ocfs2/
Dsuper.c76 unsigned long mount_opt; member
621 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
628 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { in ocfs2_remount()
637 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { in ocfs2_remount()
704 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount()
1004 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super()
1199 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA && in ocfs2_check_set_options()
1206 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA && in ocfs2_check_set_options()
1213 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL && in ocfs2_check_set_options()
1220 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL | in ocfs2_check_set_options()
[all …]
/Linux-v6.1/fs/erofs/
Dinternal.h77 unsigned int mount_opt; member
186 #define clear_opt(opt, option) ((opt)->mount_opt &= ~EROFS_MOUNT_##option)
187 #define set_opt(opt, option) ((opt)->mount_opt |= EROFS_MOUNT_##option)
188 #define test_opt(opt, option) ((opt)->mount_opt & EROFS_MOUNT_##option)
/Linux-v6.1/fs/ext4/
Dsuper.c1763 int mount_opt; member
2045 EXT4_SET_CTX(mount_opt);
2046 EXT4_CLEAR_CTX(mount_opt);
2047 EXT4_TEST_CTX(mount_opt);
2080 if (m->mount_opt & EXT4_MOUNT_DELALLOC) { in ext4_parse_param()
2082 } else if (m->mount_opt & EXT4_MOUNT_JOURNAL_CHECKSUM) { in ext4_parse_param()
2307 ctx_set_mount_opt(ctx, m->mount_opt); in ext4_parse_param()
2309 ctx_clear_mount_opt(ctx, m->mount_opt); in ext4_parse_param()
2355 ctx_set_mount_opt2(ctx, m->mount_opt); in ext4_parse_param()
2357 ctx_clear_mount_opt2(ctx, m->mount_opt); in ext4_parse_param()
[all …]
/Linux-v6.1/fs/f2fs/
Dsuper.c2219 org_mount_opt = sbi->mount_opt; in f2fs_remount()
2460 sbi->mount_opt = org_mount_opt; in f2fs_remount()
Df2fs.h110 #define F2FS_OPTION(sbi) ((sbi)->mount_opt)
1725 struct f2fs_mount_info mount_opt; /* mount options */ member