Searched refs:s_mount_opt (Results 1 – 21 of 21) sorted by relevance
| /linux/fs/ext2/ |
| A D | super.c | 586 set_opt(opts->s_mount_opt, XIP); in parse_options() 592 set_opt(opts->s_mount_opt, DAX); in parse_options() 680 sbi->s_mount_opt); in ext2_setup_super() 879 opts.s_mount_opt = 0; in ext2_fill_super() 883 set_opt(opts.s_mount_opt, DEBUG); in ext2_fill_super() 885 set_opt(opts.s_mount_opt, GRPID); in ext2_fill_super() 912 sbi->s_mount_opt = opts.s_mount_opt; in ext2_fill_super() 953 clear_opt(sbi->s_mount_opt, DAX); in ext2_fill_super() 1322 new_opts.s_mount_opt = sbi->s_mount_opt; in ext2_remount() 1332 if ((sbi->s_mount_opt ^ new_opts.s_mount_opt) & EXT2_MOUNT_DAX) { in ext2_remount() [all …]
|
| A D | ext2.h | 88 unsigned long s_mount_opt; member 395 #define test_opt(sb, opt) (EXT2_SB(sb)->s_mount_opt & \ 627 unsigned long s_mount_opt; member
|
| /linux/fs/ufs/ |
| A D | super.c | 291 switch (UFS_SB(sb)->s_mount_opt & UFS_MOUNT_ONERROR) { in ufs_error() 476 unsigned mtype = sbi->s_mount_opt & UFS_MOUNT_UFSTYPE; in ufs_setup_cstotal() 820 sbi->s_mount_opt = 0; in ufs_fill_super() 821 ufs_set_opt (sbi->s_mount_opt, ONERROR_LOCK); in ufs_fill_super() 826 if (!(sbi->s_mount_opt & UFS_MOUNT_UFSTYPE)) { in ufs_fill_super() 833 ufs_set_opt (sbi->s_mount_opt, UFSTYPE_OLD); in ufs_fill_super() 849 switch (sbi->s_mount_opt & UFS_MOUNT_UFSTYPE) { in ufs_fill_super() 1342 UFS_SB(sb)->s_mount_opt = new_mount_opt; in ufs_remount() 1386 UFS_SB(sb)->s_mount_opt = new_mount_opt; in ufs_remount() 1394 unsigned mval = sbi->s_mount_opt & UFS_MOUNT_UFSTYPE; in ufs_show_options() [all …]
|
| A D | ufs.h | 27 unsigned s_mount_opt; member
|
| /linux/fs/reiserfs/ |
| A D | reiserfs.h | 550 unsigned long s_mount_opt; member 715 #define reiserfs_r5_hash(s) (REISERFS_SB(s)->s_mount_opt & (1 << FORCE_R5_HASH)) 717 #define reiserfs_tea_hash(s) (REISERFS_SB(s)->s_mount_opt & (1 << FORCE_TEA_HASH)) 722 #define reiserfs_test4(s) (REISERFS_SB(s)->s_mount_opt & (1 << REISERFS_TEST4)) 724 #define have_large_tails(s) (REISERFS_SB(s)->s_mount_opt & (1 << REISERFS_LARGETAIL)) 725 #define have_small_tails(s) (REISERFS_SB(s)->s_mount_opt & (1 << REISERFS_SMALLTAIL)) 726 #define replay_only(s) (REISERFS_SB(s)->s_mount_opt & (1 << REPLAYONLY)) 727 #define reiserfs_attrs(s) (REISERFS_SB(s)->s_mount_opt & (1 << REISERFS_ATTRS)) 729 #define convert_reiserfs(s) (REISERFS_SB(s)->s_mount_opt & (1 << REISERFS_CONVERT)) 730 #define reiserfs_data_log(s) (REISERFS_SB(s)->s_mount_opt & (1 << REISERFS_DATA_LOG)) [all …]
|
| A D | super.c | 725 long opts = REISERFS_SB(s)->s_mount_opt; in reiserfs_show_options() 1352 REISERFS_SB(s)->s_mount_opt |= (1 << mode); in switch_data_mode() 1382 REISERFS_SB(s)->s_mount_opt &= ~all_barrier; in handle_barrier_mode() 1384 REISERFS_SB(s)->s_mount_opt |= flush; in handle_barrier_mode() 1387 REISERFS_SB(s)->s_mount_opt |= none; in handle_barrier_mode() 1493 REISERFS_SB(s)->s_mount_opt = in reiserfs_remount() 1909 sbi->s_mount_opt |= (1 << REISERFS_SMALLTAIL); in reiserfs_fill_super() 1910 sbi->s_mount_opt |= (1 << REISERFS_ERROR_RO); in reiserfs_fill_super() 1911 sbi->s_mount_opt |= (1 << REISERFS_BARRIER_FLUSH); in reiserfs_fill_super() 2008 sbi->s_mount_opt |= (1 << REISERFS_DATA_ORDERED); in reiserfs_fill_super() [all …]
|
| A D | xattr.c | 1033 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt); in reiserfs_xattr_init() 1034 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt); in reiserfs_xattr_init()
|
| /linux/fs/ocfs2/ |
| A D | super.c | 244 osb->s_mount_opt, osb->s_atime_quantum); in ocfs2_osb_dump() 646 if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64) && in ocfs2_remount() 714 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount() 724 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? in ocfs2_remount() 821 if (osb->s_mount_opt & hb_enabled) { in ocfs2_verify_heartbeat() 834 ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) && in ocfs2_verify_heartbeat() 841 if (!(osb->s_mount_opt & hb_enabled)) { in ocfs2_verify_heartbeat() 1016 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super() 1050 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) { in ocfs2_fill_super() 1148 if ((osb->s_mount_opt & OCFS2_MOUNT_NOCLUSTER) && in ocfs2_fill_super() [all …]
|
| A D | acl.c | 304 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL)) in ocfs2_iop_get_acl() 329 if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL)) in ocfs2_acl_chmod() 364 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) { in ocfs2_init_acl() 381 if ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) && acl) { in ocfs2_init_acl()
|
| A D | ocfs2.h | 333 unsigned long s_mount_opt; member 484 if (OCFS2_SB(inode->i_sb)->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) in ocfs2_should_order_data() 677 || (osb->s_mount_opt & OCFS2_MOUNT_NOCLUSTER)); in ocfs2_mount_local()
|
| A D | locks.c | 105 if ((osb->s_mount_opt & OCFS2_MOUNT_LOCALFLOCKS) || in ocfs2_flock()
|
| A D | xattr.c | 630 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) { in ocfs2_calc_xattr_init() 686 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL && in ocfs2_calc_xattr_init() 891 if (OCFS2_SB(sb)->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR) in ocfs2_xattr_list_entry() 7347 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR) in ocfs2_xattr_user_get() 7361 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR) in ocfs2_xattr_user_set()
|
| A D | inode.c | 270 if ((osb->s_mount_opt & OCFS2_MOUNT_LOCALFLOCKS) || in ocfs2_populate_inode()
|
| A D | journal.c | 806 if (osb->s_mount_opt & OCFS2_MOUNT_BARRIER) in ocfs2_set_journal_params()
|
| A D | suballoc.c | 1050 if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64)) in ocfs2_reserve_new_inode()
|
| A D | file.c | 2359 int full_coherency = !(osb->s_mount_opt & in ocfs2_file_write_iter()
|
| A D | dlmglue.c | 1477 int wait, catch_signals = !(osb->s_mount_opt & OCFS2_MOUNT_NOINTR); in __ocfs2_cluster_lock()
|
| /linux/fs/qnx6/ |
| A D | qnx6.h | 34 unsigned long s_mount_opt; /* all mount options */ member 71 #define test_opt(sb, opt) (QNX6_SB(sb)->s_mount_opt & \
|
| A D | inode.c | 52 if (sbi->s_mount_opt & QNX6_MOUNT_MMI_FS) in qnx6_show_options() 247 set_opt(sbi->s_mount_opt, MMI_FS); in qnx6_parse_options()
|
| /linux/fs/ext4/ |
| A D | super.c | 2323 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt() 2394 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt() 2396 sbi->s_mount_opt &= ~m->mount_opt; in handle_mount_opt() 2422 sbi->s_mount_opt |= m->mount_opt; in handle_mount_opt() 2424 sbi->s_mount_opt &= ~m->mount_opt; in handle_mount_opt() 2604 (sbi->s_mount_opt ^ def_mount_opt)) { in _ext4_show_options() 2714 sbi->s_mount_opt, sbi->s_mount_opt2); in ext4_setup_super() 5718 unsigned long s_mount_opt; member 5754 old_opts.s_mount_opt = sbi->s_mount_opt; in ext4_remount() 5823 if ((sbi->s_mount_opt ^ old_opts.s_mount_opt) & EXT4_MOUNT_NO_MBCACHE) { in ext4_remount() [all …]
|
| A D | ext4.h | 1258 #define clear_opt(sb, opt) EXT4_SB(sb)->s_mount_opt &= \ 1260 #define set_opt(sb, opt) EXT4_SB(sb)->s_mount_opt |= \ 1262 #define test_opt(sb, opt) (EXT4_SB(sb)->s_mount_opt & \ 1519 unsigned int s_mount_opt; member
|
Completed in 129 milliseconds