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

/freebsd-9.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-9.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
374 vp = lvp = NULL;
375 error = VOP_LOOKUP(ldvp, &lvp, cnp);
381 if ((error == 0 || error == EJUSTRETURN) && lvp != NULL) {
382 if (ldvp == lvp) {
385 vrele(lvp);
531 struct vnode *lvp; local
591 struct vnode *lvp; local
664 struct vnode *lvp; local
700 struct vnode *vp, *lvp; local
808 struct vnode *lvp; local
819 struct vnode *lvp, *ldvp; local
[all...]
/freebsd-9.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;
215 lerror = VOP_LOOKUP(ldvp, &lvp, cnp);
222 if (ldvp == lvp) { /* is dot */
225 vrele(lvp);
234 VOP_UNLOCK(lvp, LK_RELEASE);
241 if (uvp == NULLVP && lvp == NULLVP) {
250 if (uvp != NULLVP && lvp != NULLVP && uvp->v_type != lvp->v_type) {
251 vrele(lvp);
468 struct vnode *lvp; local
676 struct vnode *lvp; local
757 struct vnode *lvp; local
809 struct vnode *lvp; local
970 struct vnode *lvp; local
1387 struct vnode *lvp; local
1486 struct vnode *lvp; local
1840 struct vnode *lvp; local
1984 struct vnode *lvp; local
2173 struct vnode *lvp; local
2323 struct vnode *lvp; local
2412 struct vnode *lvp; local
2478 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),
339 struct vnode *lvp; local
349 lvp = unp->un_lowervp;
358 if (lvp != NULLVP)
359 VOP_UNLOCK(lvp, LK_RELEASE);
369 if (lvp != NULLVP) {
370 vfslocked = VFS_LOCK_GIANT(lvp->v_mount);
371 vrele(lvp);
503 unionfs_create_uppervattr(struct unionfs_mount *ump, struct vnode *lvp, struct vattr *uva, struct ucred *cred, struct thread *td) argument
715 struct vnode *lvp; local
761 struct vnode *lvp; local
904 struct vnode *lvp; local
979 unionfs_copyfile_core(struct vnode *lvp, struct vnode *uvp, struct ucred *cred, struct thread *td) argument
1053 struct vnode *lvp; local
1120 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-9.3-release/bin/sh/
H A Dvar.c763 struct localvar *lvp; local
768 lvp = ckmalloc(sizeof (struct localvar));
770 lvp->text = ckmalloc(sizeof optlist);
771 memcpy(lvp->text, optlist, sizeof optlist);
781 lvp->text = NULL;
782 lvp->flags = VUNSET;
784 lvp->text = vp->text;
785 lvp->flags = vp->flags;
791 lvp->vp = vp;
792 lvp
805 struct localvar *lvp; local
[all...]
/freebsd-9.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-9.3-release/sys/kern/
H A Dvfs_bio.c2666 flushbufqueues(struct vnode *lvp, int queue, int flushdeps) argument
2678 if (lvp == NULL) {
2708 if (lvp != NULL && bp->b_vp != lvp)
2757 if (lvp == NULL) {
/freebsd-9.3-release/sys/ufs/ffs/
H A Dffs_softdep.c12832 struct vnode *lvp, *mvp; local
12932 MNT_VNODE_FOREACH_ALL(lvp, mp, mvp) {
12933 if (TAILQ_FIRST(&lvp->v_bufobj.bo_dirty.bv_hd) == 0) {
12934 VI_UNLOCK(lvp);
12937 if (vget(lvp, LK_EXCLUSIVE | LK_INTERLOCK | LK_NOWAIT,
12940 if (lvp->v_vflag & VV_NOSYNC) { /* unlinked */
12941 vput(lvp);
12944 (void) ffs_syncvnode(lvp, MNT_NOWAIT, 0);
12945 vput(lvp);
12947 lvp
[all...]

Completed in 150 milliseconds