Searched refs:mount_opt (Results 1 – 9 of 9) sorted by relevance
/linux-6.3-rc2/fs/btrfs/ |
A D | super.c | 233 if (fs_info->mount_opt & opt) { in check_ro_option() 349 btrfs_set_opt(info->mount_opt, DEGRADED); in btrfs_parse_options() 489 btrfs_clear_opt(info->mount_opt, NOSSD); in btrfs_parse_options() 496 btrfs_clear_opt(info->mount_opt, NOSSD); in btrfs_parse_options() 499 btrfs_set_opt(info->mount_opt, NOSSD); in btrfs_parse_options() 630 btrfs_clear_opt(info->mount_opt, in btrfs_parse_options() 635 btrfs_clear_opt(info->mount_opt, in btrfs_parse_options() 744 btrfs_set_opt(info->mount_opt, in btrfs_parse_options() 747 btrfs_clear_opt(info->mount_opt, in btrfs_parse_options() 792 btrfs_set_opt(info->mount_opt, in btrfs_parse_options() [all …]
|
A D | fs.h | 425 unsigned long mount_opt; member 917 #define btrfs_test_opt(fs_info, opt) ((fs_info)->mount_opt & \ 924 btrfs_set_opt(fs_info->mount_opt, opt); \ 931 btrfs_clear_opt(fs_info->mount_opt, opt); \
|
A D | ref-verify.c | 888 btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); in btrfs_ref_tree_mod() 1019 btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); in btrfs_build_ref_tree()
|
A D | disk-io.c | 2829 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE); in init_tree_roots() 3100 btrfs_clear_opt(fs_info->mount_opt, USEBACKUPROOT); in btrfs_clear_oneshot_options() 3101 btrfs_clear_opt(fs_info->mount_opt, CLEAR_CACHE); in btrfs_clear_oneshot_options() 3483 btrfs_clear_opt(fs_info->mount_opt, SPACE_CACHE); in open_ctree() 3673 btrfs_clear_opt(fs_info->mount_opt, NODISCARD); in open_ctree()
|
/linux-6.3-rc2/fs/ocfs2/ |
A D | super.c | 76 unsigned long mount_opt; member 1245 mopt->mount_opt = OCFS2_MOUNT_NOINTR; in ocfs2_parse_options() 1265 mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL; in ocfs2_parse_options() 1268 mopt->mount_opt |= OCFS2_MOUNT_HB_NONE; in ocfs2_parse_options() 1271 mopt->mount_opt |= OCFS2_MOUNT_HB_GLOBAL; in ocfs2_parse_options() 1279 mopt->mount_opt |= OCFS2_MOUNT_BARRIER; in ocfs2_parse_options() 1284 mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR; in ocfs2_parse_options() 1287 mopt->mount_opt |= OCFS2_MOUNT_NOINTR; in ocfs2_parse_options() 1394 mopt->mount_opt |= OCFS2_MOUNT_INODE64; in ocfs2_parse_options() 1397 mopt->mount_opt |= OCFS2_MOUNT_USRQUOTA; in ocfs2_parse_options() [all …]
|
/linux-6.3-rc2/fs/erofs/ |
A D | internal.h | 76 unsigned int mount_opt; member 188 #define clear_opt(opt, option) ((opt)->mount_opt &= ~EROFS_MOUNT_##option) 189 #define set_opt(opt, option) ((opt)->mount_opt |= EROFS_MOUNT_##option) 190 #define test_opt(opt, option) ((opt)->mount_opt & EROFS_MOUNT_##option)
|
/linux-6.3-rc2/fs/ext4/ |
A D | super.c | 1764 int mount_opt; member 2046 EXT4_SET_CTX(mount_opt); 2047 EXT4_CLEAR_CTX(mount_opt); 2048 EXT4_TEST_CTX(mount_opt); 2308 ctx_set_mount_opt(ctx, m->mount_opt); in ext4_parse_param() 2899 unsigned int mount_opt, def_mount_opt; in _ext4_show_options() local 2906 mount_opt = sbi->s_mount_opt2; in _ext4_show_options() 2909 mount_opt = sbi->s_mount_opt; in _ext4_show_options() 2913 if (!nodefs && !(m->mount_opt & (mount_opt ^ def_mount_opt))) in _ext4_show_options() 2917 (mount_opt & m->mount_opt) != m->mount_opt) || in _ext4_show_options() [all …]
|
/linux-6.3-rc2/fs/f2fs/ |
A D | f2fs.h | 112 #define F2FS_OPTION(sbi) ((sbi)->mount_opt) 1721 struct f2fs_mount_info mount_opt; /* mount options */ member
|
A D | super.c | 2233 org_mount_opt = sbi->mount_opt; in f2fs_remount() 2484 sbi->mount_opt = org_mount_opt; in f2fs_remount()
|
Completed in 66 milliseconds