Remove vop_stddestroyvobject()

This commit is contained in:
Poul-Henning Kamp 2005-02-07 09:26:39 +00:00
parent 61f9cf813f
commit 7c5d36fb80
2 changed files with 0 additions and 14 deletions

View file

@ -77,7 +77,6 @@ struct vop_vector default_vnodeops = {
.vop_advlock = VOP_EINVAL,
.vop_bmap = vop_stdbmap,
.vop_close = VOP_NULL,
.vop_destroyvobject = vop_stddestroyvobject,
.vop_fsync = VOP_NULL,
.vop_getpages = vop_stdgetpages,
.vop_getwritemount = vop_stdgetwritemount,
@ -359,18 +358,6 @@ vop_stdgetwritemount(ap)
return (0);
}
/* Destroy the VM system object associated with this vnode */
int
vop_stddestroyvobject(ap)
struct vop_destroyvobject_args /* {
struct vnode *vp;
} */ *ap;
{
vnode_destroy_vobject(ap->a_vp);
return (0);
}
/* XXX Needs good comment and VOP_BMAP(9) manpage */
int
vop_stdbmap(ap)

View file

@ -675,7 +675,6 @@ int vop_einval(struct vop_generic_args *ap);
int vop_enotty(struct vop_generic_args *ap);
int vop_null(struct vop_generic_args *ap);
int vop_panic(struct vop_generic_args *ap);
int vop_stddestroyvobject(struct vop_destroyvobject_args *ap);
void vfree(struct vnode *);
void vput(struct vnode *vp);