MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vop_unlock

Function vop_unlock

freebsd/kern/vfs_default.c:596–607  ·  view source on GitHub ↗
(ap)

Source from the content-addressed store, hash-verified

594}
595
596int
597vop_unlock(ap)
598 struct vop_unlock_args /* {
599 struct vnode *a_vp;
600 } */ *ap;
601{
602 struct vnode *vp = ap->a_vp;
603
604 MPASS(vp->v_vnlock == &vp->v_lock);
605
606 return (lockmgr_unlock(&vp->v_lock));
607}
608
609int
610vop_islocked(ap)

Callers

nothing calls this directly

Calls 1

lockmgr_unlockFunction · 0.85

Tested by

no test coverage detected