Searched refs:ldvp (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/fs/nullfs/ |
H A D | null_vnops.c | 389 struct vnode *vp, *ldvp, *lvp; in null_lookup() local 401 ldvp = NULLVPTOLOWERVP(dvp); in null_lookup() 412 if ((ldvp->v_vflag & VV_ROOT) != 0 && (flags & ISDOTDOT) != 0) { in null_lookup() 414 ("ldvp %p fl %#x dvp %p fl %#x flags %#x", in null_lookup() 415 ldvp, ldvp->v_vflag, dvp, dvp->v_vflag, flags)); in null_lookup() 420 * Hold ldvp. The reference on it, owned by dvp, is lost in in null_lookup() 421 * case of dvp reclamation, and we need ldvp to move our lock in null_lookup() 422 * from ldvp to dvp. in null_lookup() 424 vhold(ldvp); in null_lookup() 477 struct vnode *vp, *ldvp; null_open() local 980 struct vnode *lvp, *ldvp; null_vptocnp() local 1073 struct vnode *dvp, *ldvp, *lvp, *vp, *vp1, **vpp; null_vput_pair() local [all...] |
/freebsd/sys/security/mac_veriexec/ |
H A D | mac_veriexec.c | 1048 struct vnode *ldvp = NULL; in mac_veriexec_bottom_vnode() local 1057 ldvp = NULLVPTOLOWERVP(vp); in mac_veriexec_bottom_vnode() 1058 return (ldvp); in mac_veriexec_bottom_vnode() 1072 struct vnode *ldvp; in mac_veriexec_get_fingerprint_status() local 1082 ldvp = mac_veriexec_bottom_vnode(vp); in mac_veriexec_get_fingerprint_status() 1083 if (ldvp != NULL) in mac_veriexec_get_fingerprint_status() 1084 return mac_veriexec_get_fingerprint_status(ldvp); in mac_veriexec_get_fingerprint_status() 1130 struct vnode *ldvp; in mac_veriexec_set_fingerprint_status() local 1133 ldvp = mac_veriexec_bottom_vnode(vp); in mac_veriexec_set_fingerprint_status() 1134 if (ldvp != NULL) { in mac_veriexec_set_fingerprint_status() [all …]
|
/freebsd/sys/fs/unionfs/ |
H A D | union_vnops.c | 83 struct vnode *dvp, *udvp, *ldvp, *vp, *uvp, *lvp, *dtmpvp; in unionfs_lookup() local 101 ldvp = dunp->un_lowervp; in unionfs_lookup() 155 dtmpvp = ldvp; in unionfs_lookup() 201 if (ldvp != NULLVP && !(cnflags & DOWHITEOUT)) { in unionfs_lookup() 206 vref(ldvp); in unionfs_lookup() 208 vn_lock(ldvp, LK_EXCLUSIVE | LK_RETRY); in unionfs_lookup() 218 unionfs_forward_vop_start(ldvp, &lkflags); in unionfs_lookup() 219 lerror = VOP_LOOKUP(ldvp, &lvp, &lcn); in unionfs_lookup() 221 unionfs_forward_vop_finish(dvp, ldvp, lkflags)) { in unionfs_lookup() 232 if (ldvp == lvp) { /* is dot */ in unionfs_lookup() [all …]
|