diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-01-25 00:42:16 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-01-25 00:42:16 +0000 |
| commit | 729fcf7efb348f5bce5ebfa3792eaf62e2d31dd5 (patch) | |
| tree | f5b97270998eefa88e922235ffacce7eeef8ec28 /sys/kern/vfs_default.c | |
| parent | 8516dd18e1380699ae90775760436483bfda23a2 (diff) | |
Notes
Diffstat (limited to 'sys/kern/vfs_default.c')
| -rw-r--r-- | sys/kern/vfs_default.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/sys/kern/vfs_default.c b/sys/kern/vfs_default.c index ff53c7552b19..1798a9ec0cbb 100644 --- a/sys/kern/vfs_default.c +++ b/sys/kern/vfs_default.c @@ -80,7 +80,6 @@ struct vop_vector default_vnodeops = { .vop_destroyvobject = vop_stddestroyvobject, .vop_fsync = VOP_NULL, .vop_getpages = vop_stdgetpages, - .vop_getvobject = vop_stdgetvobject, .vop_getwritemount = vop_stdgetwritemount, .vop_inactive = vop_stdinactive, .vop_ioctl = VOP_ENOTTY, @@ -396,29 +395,6 @@ vop_stddestroyvobject(ap) return (0); } -/* - * Return the underlying VM object. This routine may be called with or - * without the vnode interlock held. If called without, the returned - * object is not guarenteed to be valid. The syncer typically gets the - * object without holding the interlock in order to quickly test whether - * it might be dirty before going heavy-weight. vm_object's use zalloc - * and thus stable-storage, so this is safe. - */ -int -vop_stdgetvobject(ap) - struct vop_getvobject_args /* { - struct vnode *vp; - struct vm_object **objpp; - } */ *ap; -{ - struct vnode *vp = ap->a_vp; - struct vm_object **objpp = ap->a_objpp; - - if (objpp) - *objpp = vp->v_object; - return (vp->v_object ? 0 : EINVAL); -} - /* XXX Needs good comment and VOP_BMAP(9) manpage */ int vop_stdbmap(ap) |
