diff options
author | trasz <trasz@FreeBSD.org> | 2012-04-23 14:10:34 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2012-04-23 14:10:34 +0000 |
commit | 023bd7c6bf24588c8650d3cdc2bbe1a905ec1820 (patch) | |
tree | 1c7f6ec874620439412eae3b29fc73b1cc70376c /sys/fs/unionfs | |
parent | baac623cd9f021cfdf826109aecab017d5cae570 (diff) | |
download | FreeBSD-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.c | 2 |
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); } |