Home
last modified time | relevance | path

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

/linux-4.4.14/fs/btrfs/
Dsuper.c277 if (fs_info && (fs_info->mount_opt & BTRFS_MOUNT_PANIC_ON_FATAL_ERROR)) in __btrfs_panic()
387 btrfs_set_opt(info->mount_opt, SPACE_CACHE); in btrfs_parse_options()
411 btrfs_set_opt(info->mount_opt, DEGRADED); in btrfs_parse_options()
433 btrfs_clear_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
434 btrfs_clear_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
446 btrfs_clear_opt(info->mount_opt, COMPRESS); in btrfs_parse_options()
447 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS); in btrfs_parse_options()
448 btrfs_set_opt(info->mount_opt, NODATACOW); in btrfs_parse_options()
449 btrfs_set_opt(info->mount_opt, NODATASUM); in btrfs_parse_options()
466 btrfs_set_opt(info->mount_opt, COMPRESS); in btrfs_parse_options()
[all …]
Dctree.h1479 unsigned long mount_opt; member
2194 #define btrfs_test_opt(root, opt) ((root)->fs_info->mount_opt & \
2201 btrfs_set_opt(root->fs_info->mount_opt, opt); \
2208 btrfs_clear_opt(root->fs_info->mount_opt, opt); \
2250 if (!btrfs_raw_test_opt((info)->mount_opt, opt)) { \
2259 if (btrfs_raw_test_opt((info)->mount_opt, opt)) { \
Dtransaction.c2242 btrfs_set_opt(fs_info->mount_opt, INODE_MAP_CACHE); in btrfs_apply_pending_changes()
2247 btrfs_clear_opt(fs_info->mount_opt, INODE_MAP_CACHE); in btrfs_apply_pending_changes()
Ddisk-io.c3017 btrfs_set_opt(fs_info->mount_opt, SSD); in open_ctree()
3198 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE); in open_ctree()
Dextent-tree.c637 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { in cache_block_group()
/linux-4.4.14/fs/ocfs2/
Dsuper.c97 unsigned long mount_opt; member
658 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
665 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { in ocfs2_remount()
674 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { in ocfs2_remount()
741 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount()
1045 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super()
1244 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA && in ocfs2_check_set_options()
1251 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA && in ocfs2_check_set_options()
1258 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL && in ocfs2_check_set_options()
1265 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL | in ocfs2_check_set_options()
[all …]
/linux-4.4.14/fs/ext4/
Dsuper.c1366 int mount_opt; member
1521 if (m->mount_opt & EXT4_MOUNT_DELALLOC) { in handle_mount_opt()
1523 } else if (m->mount_opt & EXT4_MOUNT_JOURNAL_CHECKSUM) { in handle_mount_opt()
1643 else if (test_opt(sb, DATA_FLAGS) != m->mount_opt) { in handle_mount_opt()
1650 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
1655 sbi->s_jquota_fmt != m->mount_opt) { in handle_mount_opt()
1666 sbi->s_jquota_fmt = m->mount_opt; in handle_mount_opt()
1672 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
1689 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt()
1691 sbi->s_mount_opt &= ~m->mount_opt; in handle_mount_opt()
[all …]
/linux-4.4.14/fs/f2fs/
Dsuper.c766 org_mount_opt = sbi->mount_opt; in f2fs_remount()
769 sbi->mount_opt.opt = 0; in f2fs_remount()
835 sbi->mount_opt = org_mount_opt; in f2fs_remount()
Df2fs.h58 #define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
59 #define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option)
60 #define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option)
785 struct f2fs_mount_info mount_opt; /* mount options */ member