From 023bd7c6bf24588c8650d3cdc2bbe1a905ec1820 Mon Sep 17 00:00:00 2001 From: trasz Date: Mon, 23 Apr 2012 14:10:34 +0000 Subject: Remove unused thread argument to vrecycle(). Reviewed by: kib --- sys/fs/nullfs/null_vnops.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/fs/nullfs') diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c index b607666..6f40233 100644 --- a/sys/fs/nullfs/null_vnops.c +++ b/sys/fs/nullfs/null_vnops.c @@ -678,7 +678,6 @@ static int null_inactive(struct vop_inactive_args *ap) { struct vnode *vp = ap->a_vp; - struct thread *td = ap->a_td; vp->v_object = NULL; @@ -686,7 +685,7 @@ null_inactive(struct vop_inactive_args *ap) * If this is the last reference, then free up the vnode * so as not to tie up the lower vnodes. */ - vrecycle(vp, td); + vrecycle(vp); return (0); } -- cgit v1.1