Lines Matching refs:devvp
83 struct vnode *devvp; in handlereq() local
99 devvp = devvps[minordev]; in handlereq()
104 RUMP_VOP_LOCK(devvp, RUMP_LK_EXCLUSIVE); in handlereq()
105 rv = RUMP_VOP_OPEN(devvp, pr_open->pm_fmt, rootcred); in handlereq()
106 RUMP_VOP_UNLOCK(devvp); in handlereq()
111 RUMP_VOP_LOCK(devvp, RUMP_LK_EXCLUSIVE); in handlereq()
112 rv = RUMP_VOP_CLOSE(devvp, pr_close->pm_fmt, rootcred); in handlereq()
113 RUMP_VOP_UNLOCK(devvp); in handlereq()
118 rv = RUMP_VOP_IOCTL(devvp, pr_ioctl->pm_iocmd, in handlereq()
127 RUMP_VOP_LOCK(devvp, RUMP_LK_SHARED); in handlereq()
128 rv = RUMP_VOP_READ(devvp, uio, 0, rootcred); in handlereq()
129 RUMP_VOP_UNLOCK(devvp); in handlereq()
139 RUMP_VOP_LOCK(devvp, RUMP_LK_EXCLUSIVE); in handlereq()
140 rv = RUMP_VOP_WRITE(devvp, uio, 0, rootcred); in handlereq()
141 RUMP_VOP_UNLOCK(devvp); in handlereq()