/linux-6.3-rc2/fs/ |
A D | fs_context.c | 67 fc->sb_flags |= token; in vfs_parse_sb_flag() 74 fc->sb_flags &= ~token; in vfs_parse_sb_flag() 249 unsigned int sb_flags, in alloc_fs_context() argument 262 fc->sb_flags = sb_flags; in alloc_fs_context() 302 unsigned int sb_flags) in fs_context_for_mount() argument 304 return alloc_fs_context(fs_type, NULL, sb_flags, 0, in fs_context_for_mount() 310 unsigned int sb_flags, in fs_context_for_reconfigure() argument 313 return alloc_fs_context(dentry->d_sb->s_type, dentry, sb_flags, in fs_context_for_reconfigure() 610 root = fc->fs_type->mount(fc->fs_type, fc->sb_flags, in legacy_get_tree() 633 return sb->s_op->remount_fs(sb, &fc->sb_flags, in legacy_reconfigure() [all …]
|
A D | super.c | 572 s = alloc_super(fc->fs_type, fc->sb_flags, user_ns); in sget_fc() 897 bool force = fc->sb_flags & SB_FORCE; in reconfigure_super() 910 if (!(fc->sb_flags & SB_RDONLY) && sb->s_bdev && in reconfigure_super() 915 remount_ro = (fc->sb_flags & SB_RDONLY) && !sb_rdonly(sb); in reconfigure_super() 958 (fc->sb_flags & fc->sb_flags_mask))); in reconfigure_super() 1236 if (!(fc->sb_flags & SB_RDONLY)) in get_tree_bdev() 1260 fc->sb_flags |= SB_NOSEC; in get_tree_bdev() 1271 if ((fc->sb_flags ^ s->s_flags) & SB_RDONLY) { in get_tree_bdev()
|
A D | namespace.c | 1017 if (fc->sb_flags & SB_KERNMOUNT) in vfs_create_mount() 2677 static int do_remount(struct path *path, int ms_flags, int sb_flags, in do_remount() argument 2694 fc = fs_context_for_reconfigure(path->dentry, sb_flags, MS_RMT_MASK); in do_remount() 3001 static int do_new_mount(struct path *path, const char *fstype, int sb_flags, in do_new_mount() argument 3027 fc = fs_context_for_mount(type, sb_flags); in do_new_mount() 3300 unsigned int mnt_flags = 0, sb_flags; in path_mount() local 3352 sb_flags = flags & (SB_RDONLY | in path_mount() 3364 return do_remount(path, flags, sb_flags, mnt_flags, data_page); in path_mount() 3372 return do_new_mount(path, type_page, sb_flags, mnt_flags, dev_name, in path_mount() 3704 if (fc->sb_flags & SB_MANDLOCK) in SYSCALL_DEFINE3()
|
/linux-6.3-rc2/include/linux/ |
A D | fs_context.h | 104 unsigned int sb_flags; /* Proposed superblock flags (SB_*) */ member 128 unsigned int sb_flags); 130 unsigned int sb_flags,
|
A D | qnx6_fs.h | 100 __fs32 sb_flags; member
|
/linux-6.3-rc2/fs/dlm/ |
A D | ast.c | 104 cb->sb_flags = (sbflags & 0x000000FF); in dlm_enqueue_lkb_callback() 201 lkb->lkb_lksb->sb_flags = cb->sb_flags; in dlm_callback_work()
|
A D | user.c | 71 __u8 sb_flags; member 142 res32->lksb.sb_flags = res->lksb.sb_flags; in compat_output() 907 lkb->lkb_lksb->sb_flags = cb->sb_flags; in device_read()
|
/linux-6.3-rc2/include/uapi/linux/ |
A D | dlm.h | 65 char sb_flags; member
|
/linux-6.3-rc2/drivers/md/ |
A D | md.c | 2832 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags); in add_bound_rdev() 4057 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags); in level_store() 6025 if (mddev->sb_flags) in md_run() 6155 mddev->sb_flags = 0; in md_clean() 6210 mddev->sb_flags)) { in __md_stop_writes() 6914 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags); in hot_remove_disk() 6982 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags); in hot_add_disk() 7155 mddev->sb_flags = 0; in md_set_array_info() 9090 set_mask_bits(&mddev->sb_flags, 0, in md_do_sync() 9364 if (mddev->sb_flags) in md_check_recovery() [all …]
|
A D | dm-cache-metadata.c | 472 unsigned long sb_flags; in __open_metadata() local 507 sb_flags = le32_to_cpu(disk_super->flags); in __open_metadata() 508 cmd->clean_when_opened = test_bit(CLEAN_SHUTDOWN, &sb_flags); in __open_metadata() 571 uint32_t sb_flags = mutator(le32_to_cpu(disk_super->flags)); in update_flags() local 573 disk_super->flags = cpu_to_le32(sb_flags); in update_flags()
|
A D | raid5-cache.c | 696 (!test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags) && in r5c_disable_writeback_async() 1336 set_mask_bits(&mddev->sb_flags, 0, in r5l_write_super_and_discard_space() 2430 if (test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)) { in r5c_recovery_flush_data_only_stripes() 2432 clear_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags); in r5c_recovery_flush_data_only_stripes() 2449 set_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags); in r5c_recovery_flush_data_only_stripes() 2526 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags); in r5l_write_super()
|
/linux-6.3-rc2/fs/romfs/ |
A D | super.c | 430 fc->sb_flags |= SB_RDONLY; in romfs_reconfigure() 509 if (!(fc->sb_flags & SB_SILENT)) in romfs_fill_super() 523 if (!(fc->sb_flags & SB_SILENT)) in romfs_fill_super()
|
/linux-6.3-rc2/fs/sysfs/ |
A D | mount.c | 60 if (!(fc->sb_flags & SB_KERNMOUNT)) { in sysfs_init_fs_context()
|
/linux-6.3-rc2/include/trace/events/ |
A D | dlm.h | 241 __field(u8, sb_flags) 252 __entry->sb_flags = lkb->lkb_lksb->sb_flags; 263 show_dlm_sb_flags(__entry->sb_flags), __entry->sb_status,
|
/linux-6.3-rc2/fs/xfs/ |
A D | xfs_super.c | 1005 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !xfs_is_readonly(mp)) { in xfs_finish_flags() 1492 if (fc->sb_flags & SB_SILENT) in xfs_fs_fill_super() 1863 int flags = fc->sb_flags; in xfs_fs_reconfigure() 1868 fc->sb_flags |= SB_I_VERSION; in xfs_fs_reconfigure() 1959 if (fc->sb_flags & SB_RDONLY) in xfs_init_fs_context() 1961 if (fc->sb_flags & SB_DIRSYNC) in xfs_init_fs_context() 1963 if (fc->sb_flags & SB_SYNCHRONOUS) in xfs_init_fs_context()
|
/linux-6.3-rc2/drivers/mtd/ |
A D | mtdsuper.c | 185 if (!(fc->sb_flags & SB_SILENT)) in get_tree_mtd()
|
/linux-6.3-rc2/fs/erofs/ |
A D | super.c | 841 fc->sb_flags |= SB_POSIXACL; in erofs_fc_reconfigure() 843 fc->sb_flags &= ~SB_POSIXACL; in erofs_fc_reconfigure() 847 fc->sb_flags |= SB_RDONLY; in erofs_fc_reconfigure() 900 if (fc->sb_flags & SB_KERNMOUNT) { in erofs_init_fs_context()
|
/linux-6.3-rc2/Documentation/filesystems/ |
A D | mount_api.rst | 79 unsigned int sb_flags; 166 unsigned int sb_flags 254 will have been weeded out and fc->sb_flags updated in the context. 409 unsigned int sb_flags); 417 sb_flags presets the superblock flags stored therein. 423 unsigned int sb_flags, 428 configured. sb_flags and sb_flags_mask indicate which superblock flags
|
/linux-6.3-rc2/fs/nfs/ |
A D | super.c | 1026 fc->sb_flags |= SB_SYNCHRONOUS; in nfs_reconfigure() 1101 if ((s->s_flags & NFS_SB_MASK) != (fc->sb_flags & NFS_SB_MASK)) in nfs_compare_mount_options() 1271 fc->sb_flags |= SB_SYNCHRONOUS; in nfs_get_tree_common() 1275 fc->sb_flags |= SB_SYNCHRONOUS; in nfs_get_tree_common()
|
/linux-6.3-rc2/fs/ceph/ |
A D | super.c | 559 fc->sb_flags |= SB_POSIXACL; in ceph_parse_mount_param() 564 fc->sb_flags &= ~SB_POSIXACL; in ceph_parse_mount_param() 1156 if (fc->sb_flags != (sb->s_flags & ~SB_BORN)) { in ceph_compare_super() 1354 fc->sb_flags |= SB_POSIXACL; in ceph_init_fs_context()
|
/linux-6.3-rc2/fs/xfs/libxfs/ |
A D | xfs_sb.c | 589 to->sb_flags = from->sb_flags; in __xfs_sb_from_disk() 736 to->sb_flags = from->sb_flags; in xfs_sb_to_disk()
|
/linux-6.3-rc2/fs/squashfs/ |
A D | super.c | 230 if (!(fc->sb_flags & SB_SILENT)) in squashfs_fill_super() 480 fc->sb_flags |= SB_RDONLY; in squashfs_reconfigure()
|
/linux-6.3-rc2/fs/gfs2/ |
A D | ops_fstype.c | 1143 int silent = fc->sb_flags & SB_SILENT; in gfs2_fill_super() 1593 fc->sb_flags |= SB_RDONLY; in gfs2_reconfigure() 1595 if ((sb->s_flags ^ fc->sb_flags) & SB_RDONLY) { in gfs2_reconfigure() 1602 if (fc->sb_flags & SB_RDONLY) { in gfs2_reconfigure() 1706 if ((fc->sb_flags ^ s->s_flags) & SB_RDONLY) { in gfs2_meta_get_tree()
|
A D | lock_dlm.c | 125 BUG_ON(gl->gl_lksb.sb_flags & DLM_SBF_DEMOTED); in gdlm_ast() 127 if ((gl->gl_lksb.sb_flags & DLM_SBF_VALNOTVALID) && gl->gl_lksb.sb_lvbptr) in gdlm_ast() 152 if (gl->gl_lksb.sb_flags & DLM_SBF_ALTMODE) { in gdlm_ast()
|
/linux-6.3-rc2/fs/jffs2/ |
A D | fs.c | 414 if (!(fc->sb_flags & SB_RDONLY)) in jffs2_do_remount_fs() 417 fc->sb_flags |= SB_NOATIME; in jffs2_do_remount_fs()
|