diff options
author | phk <phk@FreeBSD.org> | 2005-01-28 14:42:17 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-01-28 14:42:17 +0000 |
commit | 1b21636022cb61815279ff37e41229257d83e55b (patch) | |
tree | 9b68e8e84821edbdcbe09680e9f407c8a867f826 /sys/isofs | |
parent | 4f73d0b6fc7bb30749ac302949df13ac9a76c817 (diff) | |
download | FreeBSD-src-1b21636022cb61815279ff37e41229257d83e55b.zip FreeBSD-src-1b21636022cb61815279ff37e41229257d83e55b.tar.gz |
Make filesystems get rid of their own vnodes vnode_pager object in
VOP_RECLAIM().
Diffstat (limited to 'sys/isofs')
-rw-r--r-- | sys/isofs/cd9660/cd9660_node.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/isofs/cd9660/cd9660_node.c b/sys/isofs/cd9660/cd9660_node.c index 0a58bbd..298976c 100644 --- a/sys/isofs/cd9660/cd9660_node.c +++ b/sys/isofs/cd9660/cd9660_node.c @@ -220,6 +220,7 @@ cd9660_reclaim(ap) vrele(ip->i_mnt->im_devvp); FREE(vp->v_data, M_ISOFSNODE); vp->v_data = NULL; + vnode_destroy_vobject(vp); return (0); } |