summaryrefslogtreecommitdiffstats
path: root/sys/fs/unionfs
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2012-04-23 14:10:34 +0000
committertrasz <trasz@FreeBSD.org>2012-04-23 14:10:34 +0000
commit023bd7c6bf24588c8650d3cdc2bbe1a905ec1820 (patch)
tree1c7f6ec874620439412eae3b29fc73b1cc70376c /sys/fs/unionfs
parentbaac623cd9f021cfdf826109aecab017d5cae570 (diff)
downloadFreeBSD-src-023bd7c6bf24588c8650d3cdc2bbe1a905ec1820.zip
FreeBSD-src-023bd7c6bf24588c8650d3cdc2bbe1a905ec1820.tar.gz
Remove unused thread argument to vrecycle().
Reviewed by: kib
Diffstat (limited to 'sys/fs/unionfs')
-rw-r--r--sys/fs/unionfs/union_vnops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/unionfs/union_vnops.c b/sys/fs/unionfs/union_vnops.c
index 19ae7d2..47cb3d1 100644
--- a/sys/fs/unionfs/union_vnops.c
+++ b/sys/fs/unionfs/union_vnops.c
@@ -1702,7 +1702,7 @@ static int
unionfs_inactive(struct vop_inactive_args *ap)
{
ap->a_vp->v_object = NULL;
- vrecycle(ap->a_vp, ap->a_td);
+ vrecycle(ap->a_vp);
return (0);
}
OpenPOWER on IntegriCloud