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/cd9660 | |
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/cd9660')
-rw-r--r-- | sys/fs/cd9660/cd9660_node.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c index e1c68c6..19d723e 100644 --- a/sys/fs/cd9660/cd9660_node.c +++ b/sys/fs/cd9660/cd9660_node.c @@ -65,7 +65,6 @@ cd9660_inactive(ap) } */ *ap; { struct vnode *vp = ap->a_vp; - struct thread *td = ap->a_td; struct iso_node *ip = VTOI(vp); int error = 0; @@ -74,7 +73,7 @@ cd9660_inactive(ap) * so that it can be reused immediately. */ if (ip->inode.iso_mode == 0) - vrecycle(vp, td); + vrecycle(vp); return error; } |