| 127 | } |
| 128 | |
| 129 | static __inline int |
| 130 | VOP_GETATTR(struct vnode *vp, struct vattr *vap, struct ucred *cred) |
| 131 | { |
| 132 | bzero(vap, sizeof(struct vattr)); |
| 133 | return (0); |
| 134 | } |
| 135 | |
| 136 | int vn_open(struct nameidata *ndp, int *flagp, int cmode, struct file *fp); |
| 137 | int vn_close(struct vnode *vp, int flags, struct ucred *file_cred, |
no test coverage detected