summaryrefslogtreecommitdiffstats
path: root/sys/gnu
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/gnu
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/gnu')
-rw-r--r--sys/gnu/fs/reiserfs/reiserfs_inode.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/gnu/fs/reiserfs/reiserfs_inode.c b/sys/gnu/fs/reiserfs/reiserfs_inode.c
index 46edbf4..b63ed74 100644
--- a/sys/gnu/fs/reiserfs/reiserfs_inode.c
+++ b/sys/gnu/fs/reiserfs/reiserfs_inode.c
@@ -114,8 +114,6 @@ reiserfs_inactive(struct vop_inactive_args *ap)
reiserfs_log(LOG_DEBUG, "deactivating inode used %d times\n",
vp->v_usecount);
- if (prtactive && vrefcnt(vp) != 0)
- vprint("ReiserFS/reclaim: pushing active", vp);
#if 0
/* Ignore inodes related to stale file handles. */
@@ -147,8 +145,6 @@ reiserfs_reclaim(struct vop_reclaim_args *ap)
reiserfs_log(LOG_DEBUG, "reclaiming inode used %d times\n",
vp->v_usecount);
- if (prtactive && vrefcnt(vp) != 0)
- vprint("ReiserFS/reclaim: pushing active", vp);
ip = VTOI(vp);
/* XXX Update this node (write to the disk) */
OpenPOWER on IntegriCloud