Symbol: mountpoint
fs/mount.h
75
struct mountpoint *mnt_mp; /* where is it mounted */
fs/namei.c
1464
struct dentry *mountpoint;
fs/namei.c
1473
mountpoint = dget(mnt->mnt_mountpoint);
fs/namei.c
1476
path->dentry = mountpoint;
fs/namei.c
1487
struct dentry *mountpoint = m->mnt_mountpoint;
fs/namei.c
1490
if (unlikely(root->dentry == mountpoint &&
fs/namei.c
1493
if (mountpoint != m->mnt.mnt_root) {
fs/namei.c
1495
path->dentry = mountpoint;
fs/namei.c
1496
*seqp = read_seqcount_begin(&mountpoint->d_seq);
fs/namespace.c
1015
struct mountpoint *mp,
fs/namespace.c
1051
struct mountpoint *mp)
fs/namespace.c
1057
void mnt_change_mountpoint(struct mount *parent, struct mountpoint *mp, struct mount *mnt)
fs/namespace.c
1059
struct mountpoint *old_mp = mnt->mnt_mp;
fs/namespace.c
2564
struct mountpoint *dest_mp = dest->mp;
fs/namespace.c
2568
struct mountpoint *shorter = NULL;
fs/namespace.c
2645
struct mountpoint *mp = root.mp;
fs/namespace.c
3287
static void mnt_warn_timestamp_expiry(const struct path *mountpoint,
fs/namespace.c
3299
mntpath = d_path(mountpoint, buf, PAGE_SIZE);
fs/namespace.c
3531
const struct mountpoint *mp)
fs/namespace.c
3759
static int do_new_mount_fc(struct fs_context *fc, const struct path *mountpoint,
fs/namespace.c
3779
mnt_warn_timestamp_expiry(mountpoint, mnt);
fs/namespace.c
3781
LOCK_MOUNT(mp, mountpoint);
fs/namespace.c
854
struct mountpoint *mp;
fs/namespace.c
861
struct mountpoint *mp;
fs/namespace.c
875
struct mountpoint *mp __free(kfree) = NULL;
fs/namespace.c
883
mountpoint:
fs/namespace.c
892
mp = kmalloc_obj(struct mountpoint);
fs/namespace.c
901
goto mountpoint;
fs/namespace.c
922
static void maybe_free_mountpoint(struct mountpoint *mp, struct list_head *list)
fs/namespace.c
989
struct mountpoint *mp;
fs/pnode.c
260
static bool need_secondary(struct mount *m, struct mountpoint *dest_mp)
fs/pnode.c
311
int propagate_mnt(struct mount *dest_mnt, struct mountpoint *dest_mp,
fs/pnode.c
397
const struct mountpoint *mp)
fs/pnode.c
634
struct mountpoint *mp;
fs/pnode.h
46
int propagate_mnt(struct mount *, struct mountpoint *, struct mount *,
fs/pnode.h
54
void mnt_set_mountpoint(struct mount *, struct mountpoint *,
fs/pnode.h
56
void mnt_change_mountpoint(struct mount *parent, struct mountpoint *mp,
fs/pnode.h
64
const struct mountpoint *mp);
tools/lib/api/fs/cgroup.c
102
if (mountpoint[0] && strlen(mountpoint) < maxlen) {
tools/lib/api/fs/cgroup.c
103
strcpy(buf, mountpoint);
tools/lib/api/fs/cgroup.c
13
char mountpoint[PATH_MAX];
tools/lib/api/fs/cgroup.c
25
char mountpoint[PATH_MAX];
tools/lib/api/fs/cgroup.c
28
if (strlen(cached->mountpoint) < maxlen) {
tools/lib/api/fs/cgroup.c
29
strcpy(buf, cached->mountpoint);
tools/lib/api/fs/cgroup.c
45
mountpoint[0] = '\0';
tools/lib/api/fs/cgroup.c
73
strcpy(mountpoint, path);
tools/lib/api/fs/cgroup.c
88
strcpy(mountpoint, path);
tools/lib/api/fs/cgroup.c
99
strcpy(cached->mountpoint, mountpoint);
tools/lib/api/fs/fs.c
133
const char *mountpoint = lower_name##__mountpoint(); \
tools/lib/api/fs/fs.c
136
if (mountpoint) \
tools/lib/api/fs/fs.c
137
return mountpoint; \
tools/lib/api/fs/fs.c
272
const char *mountpoint;
tools/lib/api/fs/fs.c
277
mountpoint = fs__mountpoint(fs);
tools/lib/api/fs/fs.c
278
if (mountpoint)
tools/lib/api/fs/fs.c
281
mountpoint = mount_overload(fs);
tools/lib/api/fs/fs.c
283
if (mount(NULL, mountpoint, fs->name, 0, NULL) == 0 &&
tools/lib/api/fs/fs.c
284
fs__valid_mount(mountpoint, fs->magic) == 0) {
tools/lib/api/fs/fs.c
285
fs->path = strdup(mountpoint);
tools/lib/api/fs/fs.c
286
mountpoint = fs->path;
tools/lib/api/fs/fs.c
290
return mountpoint;
tools/lib/api/fs/tracing_path.c
18
static void __tracing_path_set(const char *tracing, const char *mountpoint)
tools/lib/api/fs/tracing_path.c
21
mountpoint, tracing);
tools/lib/api/fs/tracing_path.h
11
void tracing_path_set(const char *mountpoint);
tools/testing/selftests/resctrl/resctrlfs.c
81
char mountpoint[256];
tools/testing/selftests/resctrl/resctrlfs.c
84
ret = find_resctrl_mount(mountpoint);
tools/testing/selftests/resctrl/resctrlfs.c
90
if (umount(mountpoint)) {