| /Linux-v5.4/fs/ufs/ |
| D | super.c | 383 static int ufs_parse_options (char * options, unsigned * mount_options) in ufs_parse_options() argument 401 ufs_clear_opt (*mount_options, UFSTYPE); in ufs_parse_options() 402 ufs_set_opt (*mount_options, UFSTYPE_OLD); in ufs_parse_options() 405 ufs_clear_opt (*mount_options, UFSTYPE); in ufs_parse_options() 406 ufs_set_opt (*mount_options, UFSTYPE_SUNx86); in ufs_parse_options() 409 ufs_clear_opt (*mount_options, UFSTYPE); in ufs_parse_options() 410 ufs_set_opt (*mount_options, UFSTYPE_SUN); in ufs_parse_options() 413 ufs_clear_opt(*mount_options, UFSTYPE); in ufs_parse_options() 414 ufs_set_opt(*mount_options, UFSTYPE_SUNOS); in ufs_parse_options() 417 ufs_clear_opt (*mount_options, UFSTYPE); in ufs_parse_options() [all …]
|
| /Linux-v5.4/fs/ceph/ |
| D | super.c | 438 struct ceph_mount_options *fsopt2 = fsc->mount_options; in compare_mount_options() 555 struct ceph_mount_options *fsopt = fsc->mount_options; in ceph_show_options() 689 fsc->mount_options = fsopt; in create_fs_client() 711 page_count = fsc->mount_options->wsize >> PAGE_SHIFT; in create_fs_client() 749 destroy_mount_options(fsc->mount_options); in destroy_fs_client() 954 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) { in ceph_real_mount() 960 if (!fsc->mount_options->server_path) { in ceph_real_mount() 964 path = fsc->mount_options->server_path + 1; in ceph_real_mount() 997 s->s_flags = fsc->mount_options->sb_flags; in ceph_set_super() 1031 struct ceph_mount_options *fsopt = new->mount_options; in ceph_compare_super() [all …]
|
| D | debugfs.c | 221 fsc->mount_options->congestion_kb = (int)val; in CEPH_DEFINE_SHOW_FUNC() 229 *val = (u64)fsc->mount_options->congestion_kb; in congestion_kb_get()
|
| D | addr.c | 461 max = fsc->mount_options->rsize >> PAGE_SHIFT; in ceph_readpages() 627 CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb)) in writepage_nounlock() 664 CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb)) in writepage_nounlock() 743 fsc->mount_options->congestion_kb)) in writepages_finish() 809 if (fsc->mount_options->wsize < wsize) in ceph_writepages_start() 810 wsize = fsc->mount_options->wsize; in ceph_writepages_start() 990 fsc->mount_options->congestion_kb)) { in ceph_writepages_start()
|
| D | super.h | 52 (fsc)->mount_options->flags |= CEPH_MOUNT_OPT_##opt; 54 (!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt)) 102 struct ceph_mount_options *mount_options; member
|
| D | cache.c | 55 const char *fscache_uniq = fsc->mount_options->fscache_uniq; in ceph_fscache_register_fs()
|
| D | dir.c | 675 fsc->mount_options->snapdir_name) == 0) { in ceph_handle_snapdir() 757 fsc->mount_options->snapdir_name, in ceph_lookup() 1397 lwc.dir_lease_ttl = mdsc->fsc->mount_options->caps_wanted_delay_max * HZ; in ceph_trim_dentries()
|
| D | export.c | 417 strcpy(name, fsc->mount_options->snapdir_name); in __get_snap_name()
|
| D | mds_client.c | 1079 struct ceph_mount_options *fsopt = mdsc->fsc->mount_options; in create_session_open_msg() 2033 struct ceph_mount_options *opt = req->r_mdsc->fsc->mount_options; in ceph_alloc_readdir_reply_buffer() 2550 if (!(mdsc->fsc->mount_options->flags & in __do_request() 4184 ceph_adjust_caps_max_min(mdsc, fsc->mount_options); in ceph_mdsc_init() 4461 const char *mds_namespace = fsc->mount_options->mds_namespace; in ceph_mdsc_handle_fsmap()
|
| D | file.c | 971 size = min_t(u64, size, fsc->mount_options->wsize); in ceph_direct_read_write() 973 size = min_t(u64, size, fsc->mount_options->rsize); in ceph_direct_read_write()
|
| D | inode.c | 1327 fsc->mount_options->snapdir_name, in ceph_fill_trace()
|
| D | caps.c | 492 struct ceph_mount_options *opt = mdsc->fsc->mount_options; in __cap_set_timeouts()
|
| /Linux-v5.4/tools/testing/selftests/mount/ |
| D | unprivileged-remount-test.c | 182 bool test_unpriv_remount(const char *fstype, const char *mount_options, in test_unpriv_remount() argument 216 if (mount("testing", "/tmp", fstype, mount_flags, mount_options) != 0) { in test_unpriv_remount() 219 mount_options? mount_options : "", in test_unpriv_remount()
|
| /Linux-v5.4/fs/reiserfs/ |
| D | super.c | 1120 unsigned long *mount_options, in reiserfs_parse_options() argument 1188 c = reiserfs_getopt(s, &pos, opts, &arg, mount_options); in reiserfs_parse_options() 1285 *mount_options |= 1 << REISERFS_USRQUOTA; in reiserfs_parse_options() 1287 *mount_options |= 1 << REISERFS_GRPQUOTA; in reiserfs_parse_options() 1294 *mount_options &= ~(1 << REISERFS_USRQUOTA); in reiserfs_parse_options() 1296 *mount_options &= ~(1 << REISERFS_GRPQUOTA); in reiserfs_parse_options() 1335 if ((!(*mount_options & (1 << REISERFS_USRQUOTA)) && in reiserfs_parse_options() 1337 (!(*mount_options & (1 << REISERFS_GRPQUOTA)) && in reiserfs_parse_options() 1356 static void handle_data_mode(struct super_block *s, unsigned long mount_options) in handle_data_mode() argument 1358 if (mount_options & (1 << REISERFS_DATA_LOG)) { in handle_data_mode() [all …]
|
| /Linux-v5.4/fs/ocfs2/ |
| D | super.c | 76 struct mount_options struct 89 struct mount_options *mopt, argument 92 struct mount_options *options); 610 struct mount_options parsed_options; in ocfs2_remount() 852 struct mount_options *mopt) in ocfs2_verify_userspace_stack() 976 struct mount_options parsed_options; in ocfs2_fill_super() 1205 struct mount_options *options) in ocfs2_check_set_options() 1240 struct mount_options *mopt, in ocfs2_parse_options()
|