Symbol: mount_options
fs/ceph/addr.c
1006
if (fsc->mount_options->wsize < wsize)
fs/ceph/addr.c
1007
wsize = fsc->mount_options->wsize;
fs/ceph/addr.c
1242
CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb);
fs/ceph/addr.c
346
rreq->io_streams[0].sreq_max_len = umin(xlen, fsc->mount_options->rsize);
fs/ceph/addr.c
513
rreq->io_streams[0].sreq_max_len = fsc->mount_options->rsize;
fs/ceph/addr.c
778
CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
fs/ceph/addr.c
861
CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
fs/ceph/addr.c
937
fsc->mount_options->congestion_kb))
fs/ceph/cache.c
89
const char *fscache_uniq = fsc->mount_options->fscache_uniq;
fs/ceph/caps.c
1014
ceph_inode_to_fs_client(&ci->netfs.inode)->mount_options;
fs/ceph/caps.c
4616
struct ceph_mount_options *opt = mdsc->fsc->mount_options;
fs/ceph/caps.c
502
struct ceph_mount_options *opt = mdsc->fsc->mount_options;
fs/ceph/debugfs.c
381
fsc->mount_options->congestion_kb = (int)val;
fs/ceph/debugfs.c
389
*val = (u64)fsc->mount_options->congestion_kb;
fs/ceph/dir.c
1799
lwc.dir_lease_ttl = mdsc->fsc->mount_options->caps_wanted_delay_max * HZ;
fs/ceph/dir.c
731
strcmp(dentry->d_name.name, fsc->mount_options->snapdir_name) == 0) {
fs/ceph/dir.c
833
fsc->mount_options->snapdir_name,
fs/ceph/export.c
465
strscpy(name, fsc->mount_options->snapdir_name,
fs/ceph/file.c
1530
size = min_t(u64, size, fsc->mount_options->wsize);
fs/ceph/file.c
1532
size = min_t(u64, size, fsc->mount_options->rsize);
fs/ceph/file.c
205
ceph_inode_to_fs_client(&ci->netfs.inode)->mount_options;
fs/ceph/inode.c
1702
fsc->mount_options->snapdir_name,
fs/ceph/mds_client.c
1548
struct ceph_mount_options *fsopt = mdsc->fsc->mount_options;
fs/ceph/mds_client.c
2534
struct ceph_mount_options *opt = req->r_mdsc->fsc->mount_options;
fs/ceph/mds_client.c
3486
if (!(mdsc->fsc->mount_options->flags &
fs/ceph/mds_client.c
5591
ceph_adjust_caps_max_min(mdsc, fsc->mount_options);
fs/ceph/mds_client.c
5677
const char *spath = mdsc->fsc->mount_options->server_path;
fs/ceph/mds_client.c
6128
const char *mds_namespace = fsc->mount_options->mds_namespace;
fs/ceph/mdsmap.c
371
if (!namespace_equals(mdsc->fsc->mount_options, m->m_fs_name,
fs/ceph/mdsmap.c
375
mdsc->fsc->mount_options->mds_namespace);
fs/ceph/super.c
1152
const char *path = fsc->mount_options->server_path ?
fs/ceph/super.c
1153
fsc->mount_options->server_path + 1 : "";
fs/ceph/super.c
1160
if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
fs/ceph/super.c
1167
fsc->mount_options);
fs/ceph/super.c
1234
struct ceph_mount_options *fsopt = new->mount_options;
fs/ceph/super.c
1283
sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
fs/ceph/super.c
1286
sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
fs/ceph/super.c
1405
if (strcmp_null(fsc->mount_options->mon_addr, fsopt->mon_addr)) {
fs/ceph/super.c
1406
kfree(fsc->mount_options->mon_addr);
fs/ceph/super.c
1407
fsc->mount_options->mon_addr = fsopt->mon_addr;
fs/ceph/super.c
652
struct ceph_mount_options *fsopt2 = fsc->mount_options;
fs/ceph/super.c
691
struct ceph_mount_options *fsopt = fsc->mount_options;
fs/ceph/super.c
836
fsc->mount_options = fsopt;
fs/ceph/super.c
897
destroy_mount_options(fsc->mount_options);
fs/ceph/super.h
151
struct ceph_mount_options *mount_options;
fs/ceph/super.h
55
(fsc)->mount_options->flags |= CEPH_MOUNT_OPT_##opt
fs/ceph/super.h
57
(fsc)->mount_options->flags &= ~CEPH_MOUNT_OPT_##opt
fs/ceph/super.h
59
(!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt))
fs/ocfs2/super.c
1201
struct mount_options *mopt;
fs/ocfs2/super.c
1203
mopt = kzalloc_obj(struct mount_options);
fs/ocfs2/super.c
1234
struct mount_options *options)
fs/ocfs2/super.c
1283
struct mount_options *mopt = fc->fs_private;
fs/ocfs2/super.c
611
struct mount_options *parsed_options = fc->fs_private;
fs/ocfs2/super.c
853
struct mount_options *mopt)
fs/ocfs2/super.c
88
struct mount_options *options);
fs/ocfs2/super.c
977
struct mount_options *parsed_options = fc->fs_private;
tools/testing/selftests/mount/unprivileged-remount-test.c
182
bool test_unpriv_remount(const char *fstype, const char *mount_options,
tools/testing/selftests/mount/unprivileged-remount-test.c
216
if (mount("testing", "/tmp", fstype, mount_flags, mount_options) != 0) {
tools/testing/selftests/mount/unprivileged-remount-test.c
219
mount_options? mount_options : "",