Searched refs:lvp (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.3-release/sys/compat/linux/
H A Dlinux_getcwd.c77 * lvp, *lvpp: the "lower" vnode
100 * entry pointing at lvp.
127 struct vnode *lvp = *lvpp; local
137 error = VOP_GETATTR(lvp, &va, td->td_ucred);
139 vput(lvp);
161 * At this point, lvp is locked and will be unlocked by the lookup.
165 error = mac_vnode_check_lookup(td->td_ucred, lvp, &cn);
168 error = VOP_LOOKUP(lvp, uvpp, &cn);
170 vput(lvp);
179 vput(lvp);
[all...]
/freebsd-10.3-release/sys/fs/nullfs/
H A Dnull_vnops.c335 struct vnode *lvp, *vp; local
339 lvp = NULLVPTOLOWERVP(vp);
342 error = VOP_ADD_WRITECOUNT(lvp, -1);
344 error = VOP_ADD_WRITECOUNT(lvp, 1);
363 struct vnode *vp, *ldvp, *lvp; local
376 vp = lvp = NULL;
389 error = VOP_LOOKUP(ldvp, &lvp, cnp);
399 if (lvp != NULL)
400 vput(lvp);
421 if ((error == 0 || error == EJUSTRETURN) && lvp !
571 struct vnode *lvp, *vp; local
641 struct vnode *lvp; local
714 struct vnode *lvp; local
750 struct vnode *vp, *lvp; local
858 struct vnode *lvp; local
869 struct vnode *lvp, *ldvp; local
[all...]
/freebsd-10.3-release/sys/fs/unionfs/
H A Dunion_vnops.c87 struct vnode *dvp, *udvp, *ldvp, *vp, *uvp, *lvp, *dtmpvp; local
102 vp = uvp = lvp = NULLVP;
214 lerror = VOP_LOOKUP(ldvp, &lvp, cnp);
221 if (ldvp == lvp) { /* is dot */
224 vrele(lvp);
233 VOP_UNLOCK(lvp, LK_RELEASE);
240 if (uvp == NULLVP && lvp == NULLVP) {
249 if (uvp != NULLVP && lvp != NULLVP && uvp->v_type != lvp->v_type) {
250 vrele(lvp);
467 struct vnode *lvp; local
675 struct vnode *lvp; local
756 struct vnode *lvp; local
808 struct vnode *lvp; local
969 struct vnode *lvp; local
1386 struct vnode *lvp; local
1485 struct vnode *lvp; local
1839 struct vnode *lvp; local
1982 struct vnode *lvp; local
2171 struct vnode *lvp; local
2321 struct vnode *lvp; local
2410 struct vnode *lvp; local
2476 struct vnode *lvp; local
[all...]
H A Dunion_subr.c107 unionfs_get_cached_vnode(struct vnode *uvp, struct vnode *lvp, argument
116 KASSERT((lvp == NULLVP || lvp->v_type == VDIR),
332 struct vnode *lvp; local
342 lvp = unp->un_lowervp;
351 if (lvp != NULLVP)
352 VOP_UNLOCK(lvp, LK_RELEASE);
362 if (lvp != NULLVP)
363 vrele(lvp);
489 struct vnode *lvp,
488 unionfs_create_uppervattr(struct unionfs_mount *ump, struct vnode *lvp, struct vattr *uva, struct ucred *cred, struct thread *td) argument
702 struct vnode *lvp; local
748 struct vnode *lvp; local
891 struct vnode *lvp; local
968 unionfs_copyfile_core(struct vnode *lvp, struct vnode *uvp, struct ucred *cred, struct thread *td) argument
1042 struct vnode *lvp; local
1111 struct vnode *lvp; local
[all...]
H A Dunion.h117 int unionfs_create_uppervattr(struct unionfs_mount *ump, struct vnode *lvp, struct vattr *uva, struct ucred *cred, struct thread *td);
/freebsd-10.3-release/bin/sh/
H A Dvar.c744 struct localvar *lvp; local
749 lvp = ckmalloc(sizeof (struct localvar));
751 lvp->text = ckmalloc(sizeof optlist);
752 memcpy(lvp->text, optlist, sizeof optlist);
762 lvp->text = NULL;
763 lvp->flags = VUNSET;
765 lvp->text = vp->text;
766 lvp->flags = vp->flags;
772 lvp->vp = vp;
773 lvp
786 struct localvar *lvp; local
[all...]
/freebsd-10.3-release/usr.sbin/sicontrol/
H A Dsicontrol.c650 struct lv *lvp; local
656 for (lvp = lv; lvp->lv_name; lvp++)
657 if (strcmp(lvp->lv_name, tk) == 0)
658 return(lvp->lv_bit);
711 struct lv *lvp; local
721 for (lvp = lv; lvp->lv_name; lvp
[all...]
/freebsd-10.3-release/sys/kern/
H A Dvfs_bio.c2672 flushbufqueues(struct vnode *lvp, int target, int flushdeps) argument
2711 if (bp->b_qindex == QUEUE_SENTINEL || (lvp != NULL &&
2712 bp->b_vp != lvp)) {
2763 if (lvp == NULL) {
/freebsd-10.3-release/sys/ufs/ffs/
H A Dffs_softdep.c13123 struct vnode *lvp, *mvp; local
13222 MNT_VNODE_FOREACH_ALL(lvp, mp, mvp) {
13223 if (TAILQ_FIRST(&lvp->v_bufobj.bo_dirty.bv_hd) == 0) {
13224 VI_UNLOCK(lvp);
13227 if (vget(lvp, LK_EXCLUSIVE | LK_INTERLOCK | LK_NOWAIT,
13230 if (lvp->v_vflag & VV_NOSYNC) { /* unlinked */
13231 vput(lvp);
13234 (void) ffs_syncvnode(lvp, MNT_NOWAIT, 0);
13235 vput(lvp);
13237 lvp
[all...]

Completed in 106 milliseconds