Home
last modified time | relevance | path

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

/Linux-v4.19/fs/btrfs/
Dsuper.c440 btrfs_set_opt(info->mount_opt, FREE_SPACE_TREE); in btrfs_parse_options()
442 btrfs_set_opt(info->mount_opt, SPACE_CACHE); in btrfs_parse_options()
460 btrfs_set_opt(info->mount_opt, DEGRADED); in btrfs_parse_options()
484 btrfs_clear_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
485 btrfs_clear_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
497 btrfs_clear_opt(info->mount_opt, COMPRESS); in btrfs_parse_options()
498 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS); in btrfs_parse_options()
499 btrfs_set_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
500 btrfs_set_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
533 btrfs_set_opt(info->mount_opt, COMPRESS); in btrfs_parse_options()
[all …]
Dref-verify.c887 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.h809 unsigned long mount_opt; member
1372 #define btrfs_test_opt(fs_info, opt) ((fs_info)->mount_opt & \
1379 btrfs_set_opt(fs_info->mount_opt, opt); \
1386 btrfs_clear_opt(fs_info->mount_opt, opt); \
1429 if (!btrfs_raw_test_opt((info)->mount_opt, opt)) { \
1438 if (btrfs_raw_test_opt((info)->mount_opt, opt)) { \
Dtransaction.c2357 btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE); in btrfs_apply_pending_changes()
2362 btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE); in btrfs_apply_pending_changes()
Ddisk-io.c3271 btrfs_clear_opt(fs_info->mount_opt, USEBACKUPROOT); in open_ctree()
3334 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE); in open_ctree()
/Linux-v4.19/fs/ocfs2/
Dsuper.c93 unsigned long mount_opt; member
654 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
661 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { in ocfs2_remount()
670 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { in ocfs2_remount()
737 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount()
1040 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super()
1257 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA && in ocfs2_check_set_options()
1264 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA && in ocfs2_check_set_options()
1271 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL && in ocfs2_check_set_options()
1278 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL | in ocfs2_check_set_options()
[all …]
/Linux-v4.19/drivers/staging/erofs/
Dinternal.h116 unsigned int mount_opt; member
168 #define clear_opt(sbi, option) ((sbi)->mount_opt &= ~EROFS_MOUNT_##option)
169 #define set_opt(sbi, option) ((sbi)->mount_opt |= EROFS_MOUNT_##option)
170 #define test_opt(sbi, option) ((sbi)->mount_opt & EROFS_MOUNT_##option)
/Linux-v4.19/fs/ext4/
Dsuper.c1614 int mount_opt; member
1776 if (m->mount_opt & EXT4_MOUNT_DELALLOC) { in handle_mount_opt()
1778 } else if (m->mount_opt & EXT4_MOUNT_JOURNAL_CHECKSUM) { in handle_mount_opt()
1900 else if (test_opt(sb, DATA_FLAGS) != m->mount_opt) { in handle_mount_opt()
1907 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
1912 sbi->s_jquota_fmt != m->mount_opt) { in handle_mount_opt()
1923 sbi->s_jquota_fmt = m->mount_opt; in handle_mount_opt()
1929 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
1935 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
1937 sbi->s_mount_opt &= ~m->mount_opt; in handle_mount_opt()
[all …]
/Linux-v4.19/fs/f2fs/
Dsuper.c1439 org_mount_opt = sbi->mount_opt; in f2fs_remount()
1576 sbi->mount_opt = org_mount_opt; in f2fs_remount()
Df2fs.h104 #define F2FS_OPTION(sbi) ((sbi)->mount_opt)
1237 struct f2fs_mount_info mount_opt; /* mount options */ member