Home
last modified time | relevance | path

Searched refs:targetvp (Results 1 – 2 of 2) sorted by relevance

/dports/misc/rump/buildrump.sh-b914579/src/sys/fs/unionfs/
H A Dunionfs_vnops.c402 struct vnode *targetvp; in unionfs_open() local
411 targetvp = NULLVP; in unionfs_open()
419 targetvp = uvp; in unionfs_open()
421 targetvp = lvp; in unionfs_open()
423 if (targetvp == lvp && in unionfs_open()
425 targetvp = NULLVP; in unionfs_open()
427 if (targetvp == NULLVP) { in unionfs_open()
434 targetvp = uvp = unp->un_uppervp; in unionfs_open()
436 targetvp = lvp; in unionfs_open()
438 targetvp = uvp; in unionfs_open()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/fs/union/
H A Dunion_vnops.c1084 struct vnode *targetvp; in union_fsync() local
1102 targetvp = OTHERVP(ap->a_vp); in union_fsync()
1103 if (targetvp != NULLVP) { in union_fsync()
1104 int dolock = (targetvp == LOWERVP(ap->a_vp)); in union_fsync()
1107 vn_lock(targetvp, LK_EXCLUSIVE | LK_RETRY); in union_fsync()
1108 error = VOP_FSYNC(targetvp, ap->a_cred, ap->a_flags, in union_fsync()
1111 VOP_UNLOCK(targetvp); in union_fsync()