Home
last modified time | relevance | path

Searched refs:VI_MOUNT (Results 1 – 6 of 6) sorted by relevance

/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()
155 vp->v_iflag |= VI_MOUNT; in mount_snapshot()
215 vp->v_iflag &= ~VI_MOUNT; in mount_snapshot()
242 vp->v_iflag &= ~VI_MOUNT; in mount_snapshot()
/f-stack/freebsd/kern/
H A Dvfs_mount.c942 if ((vp->v_iflag & VI_MOUNT) == 0 && vp->v_mountedhere == NULL) in vfs_domount_first()
943 vp->v_iflag |= VI_MOUNT; in vfs_domount_first()
1002 vp->v_iflag &= ~VI_MOUNT; in vfs_domount_first()
1036 vp->v_iflag &= ~VI_MOUNT; in vfs_domount_first()
1118 if ((vp->v_iflag & VI_MOUNT) != 0 || vp->v_mountedhere != NULL) { in vfs_domount_update()
1124 vp->v_iflag |= VI_MOUNT; in vfs_domount_update()
1276 vp->v_iflag &= ~VI_MOUNT; in vfs_domount_update()
H A Dvfs_mountroot.c337 vporoot->v_iflag &= ~VI_MOUNT; in vfs_mountroot_shuffle()
H A Dvfs_subr.c4169 if (vp->v_iflag & VI_MOUNT) in vn_printf()
4177 flags = vp->v_iflag & ~(VI_TEXT_REF | VI_MOUNT | VI_DOINGINACT | in vn_printf()
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_ctldir.c973 if (((*vpp)->v_iflag & VI_MOUNT) == 0) { in zfsctl_snapdir_lookup()
/f-stack/freebsd/sys/
H A Dvnode.h253 #define VI_MOUNT 0x0002 /* Mount in progress */ macro