Home | History | Annotate | Download | only in rumpvfs

Lines Matching refs:vp

55 RUMP_VOP_BWRITE(struct vnode *vp,
61 error = VOP_BWRITE(vp, bp);
126 RUMP_VOP_OPEN(struct vnode *vp,
133 error = VOP_OPEN(vp, mode, cred);
140 RUMP_VOP_CLOSE(struct vnode *vp,
147 error = VOP_CLOSE(vp, fflag, cred);
154 RUMP_VOP_ACCESS(struct vnode *vp,
161 error = VOP_ACCESS(vp, accmode, cred);
168 RUMP_VOP_ACCESSX(struct vnode *vp,
175 error = VOP_ACCESSX(vp, accmode, cred);
182 RUMP_VOP_GETATTR(struct vnode *vp,
189 error = VOP_GETATTR(vp, vap, cred);
196 RUMP_VOP_SETATTR(struct vnode *vp,
203 error = VOP_SETATTR(vp, vap, cred);
210 RUMP_VOP_READ(struct vnode *vp,
218 error = VOP_READ(vp, uio, ioflag, cred);
225 RUMP_VOP_WRITE(struct vnode *vp,
233 error = VOP_WRITE(vp, uio, ioflag, cred);
240 RUMP_VOP_FALLOCATE(struct vnode *vp,
247 error = VOP_FALLOCATE(vp, pos, len);
254 RUMP_VOP_FDISCARD(struct vnode *vp,
261 error = VOP_FDISCARD(vp, pos, len);
268 RUMP_VOP_IOCTL(struct vnode *vp,
277 error = VOP_IOCTL(vp, command, data, fflag, cred);
284 RUMP_VOP_FCNTL(struct vnode *vp,
293 error = VOP_FCNTL(vp, command, data, fflag, cred);
300 RUMP_VOP_POLL(struct vnode *vp,
306 error = VOP_POLL(vp, events);
313 RUMP_VOP_KQFILTER(struct vnode *vp,
319 error = VOP_KQFILTER(vp, kn);
326 RUMP_VOP_REVOKE(struct vnode *vp,
332 error = VOP_REVOKE(vp, flags);
339 RUMP_VOP_MMAP(struct vnode *vp,
346 error = VOP_MMAP(vp, prot, cred);
353 RUMP_VOP_FSYNC(struct vnode *vp,
362 error = VOP_FSYNC(vp, cred, flags, offlo, offhi);
369 RUMP_VOP_SEEK(struct vnode *vp,
377 error = VOP_SEEK(vp, oldoff, newoff, cred);
385 struct vnode *vp,
391 error = VOP_REMOVE(dvp, vp, cnp);
399 struct vnode *vp,
405 error = VOP_LINK(dvp, vp, cnp);
445 struct vnode *vp,
451 error = VOP_RMDIR(dvp, vp, cnp);
474 RUMP_VOP_READDIR(struct vnode *vp,
484 error = VOP_READDIR(vp, uio, cred, eofflag, cookies, ncookies);
491 RUMP_VOP_READLINK(struct vnode *vp,
498 error = VOP_READLINK(vp, uio, cred);
518 RUMP_VOP_INACTIVE(struct vnode *vp,
524 error = VOP_INACTIVE(vp, recycle);
531 RUMP_VOP_RECLAIM(struct vnode *vp)
536 error = VOP_RECLAIM(vp);
543 RUMP_VOP_LOCK(struct vnode *vp,
549 error = VOP_LOCK(vp, flags);
556 RUMP_VOP_UNLOCK(struct vnode *vp)
561 error = VOP_UNLOCK(vp);
568 RUMP_VOP_BMAP(struct vnode *vp,
577 error = VOP_BMAP(vp, bn, vpp, bnp, runp);
584 RUMP_VOP_STRATEGY(struct vnode *vp,
590 error = VOP_STRATEGY(vp, bp);
597 RUMP_VOP_PRINT(struct vnode *vp)
602 error = VOP_PRINT(vp);
609 RUMP_VOP_ISLOCKED(struct vnode *vp)
614 error = VOP_ISLOCKED(vp);
621 RUMP_VOP_PATHCONF(struct vnode *vp,
628 error = VOP_PATHCONF(vp, name, retval);
635 RUMP_VOP_ADVLOCK(struct vnode *vp,
644 error = VOP_ADVLOCK(vp, id, op, fl, flags);
665 RUMP_VOP_GETPAGES(struct vnode *vp,
677 error = VOP_GETPAGES(vp, offset, m, count, centeridx, access_type, advice, flags);
684 RUMP_VOP_PUTPAGES(struct vnode *vp,
692 error = VOP_PUTPAGES(vp, offlo, offhi, flags);
699 RUMP_VOP_GETACL(struct vnode *vp,
707 error = VOP_GETACL(vp, type, aclp, cred);
714 RUMP_VOP_SETACL(struct vnode *vp,
722 error = VOP_SETACL(vp, type, aclp, cred);
729 RUMP_VOP_ACLCHECK(struct vnode *vp,
737 error = VOP_ACLCHECK(vp, type, aclp, cred);
744 RUMP_VOP_CLOSEEXTATTR(struct vnode *vp,
751 error = VOP_CLOSEEXTATTR(vp, commit, cred);
758 RUMP_VOP_GETEXTATTR(struct vnode *vp,
768 error = VOP_GETEXTATTR(vp, attrnamespace, name, uio, size, cred);
775 RUMP_VOP_LISTEXTATTR(struct vnode *vp,
785 error = VOP_LISTEXTATTR(vp, attrnamespace, uio, size, flag, cred);
792 RUMP_VOP_OPENEXTATTR(struct vnode *vp,
798 error = VOP_OPENEXTATTR(vp, cred);
805 RUMP_VOP_DELETEEXTATTR(struct vnode *vp,
813 error = VOP_DELETEEXTATTR(vp, attrnamespace, name, cred);
820 RUMP_VOP_SETEXTATTR(struct vnode *vp,
829 error = VOP_SETEXTATTR(vp, attrnamespace, name, uio, cred);