Home
last modified time | relevance | path

Searched refs:v_mountedhere (Results 1 – 11 of 11) sorted by relevance

/f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dvnode.h86 ((vp)->v_type == VDIR && (vp)->v_mountedhere != NULL)
87 #define vn_mountedvfs(vp) ((vp)->v_mountedhere)
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_vfs.c154 if ((vp->v_iflag & VI_MOUNT) == 0 && vp->v_mountedhere == NULL) in mount_snapshot()
244 vp->v_mountedhere = mp; in mount_snapshot()
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_ctldir.c858 if ((mp = (*vpp)->v_mountedhere) != NULL) { in zfsctl_mounted_here()
1180 mp = vp->v_mountedhere; in zfsctl_snapshot_vptocnp()
1254 if (vp->v_mountedhere != NULL) in zfsctl_lookup_objset()
1255 *zfsvfsp = vp->v_mountedhere->mnt_data; in zfsctl_lookup_objset()
1300 mp = vp->v_mountedhere; in zfsctl_umount_snapshots()
H A Dzfs_vnops_os.c3226 if (((*svpp)->v_type == VDIR && (*svpp)->v_mountedhere != NULL) || in zfs_rename_()
3228 (*tvpp)->v_mountedhere != NULL)) { in zfs_rename_()
/f-stack/freebsd/kern/
H A Dvfs_mountroot.c339 vporoot->v_mountedhere = NULL; in vfs_mountroot_shuffle()
371 vp->v_mountedhere = mporoot; in vfs_mountroot_shuffle()
399 vpdevfs->v_mountedhere = NULL; in vfs_mountroot_shuffle()
406 vp->v_mountedhere = mpdevfs; in vfs_mountroot_shuffle()
H A Dvfs_mount.c942 if ((vp->v_iflag & VI_MOUNT) == 0 && vp->v_mountedhere == NULL) in vfs_domount_first()
1038 vp->v_mountedhere = mp; in vfs_domount_first()
1118 if ((vp->v_iflag & VI_MOUNT) != 0 || vp->v_mountedhere != NULL) { in vfs_domount_update()
1747 if (coveredvp->v_mountedhere != mp || in dounmount()
1748 coveredvp->v_mountedhere->mnt_gen != mnt_gen_r) { in dounmount()
1887 coveredvp->v_mountedhere = NULL; in dounmount()
H A Dvfs_cache.c3153 vp1->v_mountedhere != vp->v_mount) { in vn_fullpath_dir()
5077 mp = atomic_load_ptr(&vp->v_mountedhere); in cache_fplookup_climb_mount()
5111 mp = atomic_load_ptr(&vp->v_mountedhere); in cache_fplookup_climb_mount()
5134 mp = atomic_load_ptr(&vp->v_mountedhere); in cache_fplookup_cross_mount()
5160 mp = atomic_load_ptr(&vp->v_mountedhere); in cache_fplookup_cross_mount()
H A Dvfs_lookup.c1127 while (dp->v_type == VDIR && (mp = dp->v_mountedhere) && in lookup()
H A Dvfs_subr.c1880 vp->v_mountedhere = NULL; in freevnode()
4096 printf(" mountedhere %p\n", vp->v_mountedhere); in vn_printf()
H A Dvfs_syscalls.c904 while (!error && (mp = vp->v_mountedhere) != NULL) { in sys_fchdir()
/f-stack/freebsd/sys/
H A Dvnode.h125 struct mount *v_mountedhere; /* v ptr to mountpoint (VDIR) */ member