Home
last modified time | relevance | path

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

/Linux-v5.4/fs/btrfs/
Dsuper.c443 btrfs_set_opt(info->mount_opt, FREE_SPACE_TREE); in btrfs_parse_options()
445 btrfs_set_opt(info->mount_opt, SPACE_CACHE); in btrfs_parse_options()
463 btrfs_set_opt(info->mount_opt, DEGRADED); in btrfs_parse_options()
487 btrfs_clear_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
488 btrfs_clear_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
500 btrfs_clear_opt(info->mount_opt, COMPRESS); in btrfs_parse_options()
501 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS); in btrfs_parse_options()
502 btrfs_set_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
503 btrfs_set_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
538 btrfs_set_opt(info->mount_opt, COMPRESS); in btrfs_parse_options()
[all …]
Dref-verify.c884 btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); in btrfs_ref_tree_mod()
1013 btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); in btrfs_build_ref_tree()
Dctree.h587 unsigned long mount_opt; member
1198 #define btrfs_test_opt(fs_info, opt) ((fs_info)->mount_opt & \
1205 btrfs_set_opt(fs_info->mount_opt, opt); \
1212 btrfs_clear_opt(fs_info->mount_opt, opt); \
1242 if (!btrfs_raw_test_opt((info)->mount_opt, opt)) { \
1251 if (btrfs_raw_test_opt((info)->mount_opt, opt)) { \
Dtransaction.c2382 btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE); in btrfs_apply_pending_changes()
2387 btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE); in btrfs_apply_pending_changes()
Ddisk-io.c3310 btrfs_clear_opt(fs_info->mount_opt, USEBACKUPROOT); in open_ctree()
3377 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE); in open_ctree()
/Linux-v5.4/fs/ocfs2/
Dsuper.c79 unsigned long mount_opt; member
624 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
631 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { in ocfs2_remount()
640 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { in ocfs2_remount()
707 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount()
1010 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super()
1207 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA && in ocfs2_check_set_options()
1214 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA && in ocfs2_check_set_options()
1221 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL && in ocfs2_check_set_options()
1228 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL | in ocfs2_check_set_options()
[all …]
/Linux-v5.4/fs/erofs/
Dinternal.h90 unsigned int mount_opt; member
100 #define clear_opt(sbi, option) ((sbi)->mount_opt &= ~EROFS_MOUNT_##option)
101 #define set_opt(sbi, option) ((sbi)->mount_opt |= EROFS_MOUNT_##option)
102 #define test_opt(sbi, option) ((sbi)->mount_opt & EROFS_MOUNT_##option)
Dsuper.c580 unsigned int org_mnt_opt = sbi->mount_opt; in erofs_remount()
596 sbi->mount_opt = org_mnt_opt; in erofs_remount()
/Linux-v5.4/fs/ext4/
Dsuper.c1669 int mount_opt; member
1861 if (m->mount_opt & EXT4_MOUNT_DELALLOC) { in handle_mount_opt()
1863 } else if (m->mount_opt & EXT4_MOUNT_JOURNAL_CHECKSUM) { in handle_mount_opt()
1992 else if (test_opt(sb, DATA_FLAGS) != m->mount_opt) { in handle_mount_opt()
1999 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
2004 sbi->s_jquota_fmt != m->mount_opt) { in handle_mount_opt()
2015 sbi->s_jquota_fmt = m->mount_opt; in handle_mount_opt()
2021 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
2027 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
2029 sbi->s_mount_opt &= ~m->mount_opt; in handle_mount_opt()
[all …]
/Linux-v5.4/fs/f2fs/
Dsuper.c1591 org_mount_opt = sbi->mount_opt; in f2fs_remount()
1751 sbi->mount_opt = org_mount_opt; in f2fs_remount()
Df2fs.h104 #define F2FS_OPTION(sbi) ((sbi)->mount_opt)
1283 struct f2fs_mount_info mount_opt; /* mount options */ member