summaryrefslogtreecommitdiffstats
path: root/sys/fs/cd9660
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2010-11-19 21:17:34 +0000
committerkib <kib@FreeBSD.org>2010-11-19 21:17:34 +0000
commit7980fb6d3a02d0329ef2263493dc0c6e59d193d9 (patch)
tree28ad17a8af8b65af2dc189da44c7f431a6697c32 /sys/fs/cd9660
parent30e82871824e76964d848069429fe0b075834b18 (diff)
downloadFreeBSD-src-7980fb6d3a02d0329ef2263493dc0c6e59d193d9.zip
FreeBSD-src-7980fb6d3a02d0329ef2263493dc0c6e59d193d9.tar.gz
Remove prtactive variable and related printf()s in the vop_inactive
and vop_reclaim() methods. They seems to be unused, and the reported situation is normal for the forced unmount. MFC after: 1 week X-MFC-note: keep prtactive symbol in vfs_subr.c
Diffstat (limited to 'sys/fs/cd9660')
-rw-r--r--sys/fs/cd9660/cd9660_node.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c
index 64d449e..e1c68c6 100644
--- a/sys/fs/cd9660/cd9660_node.c
+++ b/sys/fs/cd9660/cd9660_node.c
@@ -69,9 +69,6 @@ cd9660_inactive(ap)
struct iso_node *ip = VTOI(vp);
int error = 0;
- if (prtactive && vrefcnt(vp) != 0)
- vprint("cd9660_inactive: pushing active", vp);
-
/*
* If we are done with the inode, reclaim it
* so that it can be reused immediately.
@@ -93,8 +90,6 @@ cd9660_reclaim(ap)
{
struct vnode *vp = ap->a_vp;
- if (prtactive && vrefcnt(vp) != 0)
- vprint("cd9660_reclaim: pushing active", vp);
/*
* Destroy the vm object and flush associated pages.
*/
OpenPOWER on IntegriCloud