-nop_advlock(struct vop_advlock_args *ap)
-{
- return (0);
-}
-
-int
-err_advlock(struct vop_advlock_args *ap)
-{
- return (EOPNOTSUPP);
-}
-
-
-struct vop_blkatoff_args /* {
- struct vnode *a_vp;
- off_t a_offset;
- char **a_res;
- struct buf **a_bpp;
-} */;
-
-int
-nop_blkatoff(struct vop_blkatoff_args *ap)
-{
- *ap->a_bpp = NULL;
- return (0);
-}
-
-int
-err_blkatoff(struct vop_blkatoff_args *ap)
-{
- (void)nop_blkatoff(ap);
- return (EOPNOTSUPP);
-}
-
-
-struct vop_valloc_args /* {
- struct vnode *a_pvp;
- int a_mode;
- struct ucred *a_cred;
- struct vnode **a_vpp;
-} */;
-
-int
-nop_valloc(struct vop_valloc_args *ap)
-{
- *ap->a_vpp = NULL;
- return (0);
-}
-
-int
-err_valloc(struct vop_valloc_args *ap)
-{
- (void)nop_valloc(ap);
- return (EOPNOTSUPP);
-}
-
-
-struct vop_reallocblks_args /* {
- struct vnode *a_vp;
- struct cluster_save *a_buflist;
-} */;
-
-int
-nop_reallocblks(struct vop_reallocblks_args *ap)
-{
- return (0);
-}
-
-int
-err_reallocblks(struct vop_reallocblks_args *ap)
-{
- return (EOPNOTSUPP);
-}
-
-
-struct vop_vfree_args /* {
- struct vnode *a_pvp;
- ino_t a_ino;
- int a_mode;
-} */;
-
-int
-nop_vfree(struct vop_vfree_args *ap)