diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2010-11-26 11:37:35 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2010-11-26 11:37:35 +0000 |
| commit | e3d0922bbfc869d92cb1ca70bdcec6bd39b5d142 (patch) | |
| tree | 9f204c5db168f1053f3fea5553cb1446c12f2b30 /sys/gnu/fs | |
| parent | cfc62ec44666f79484660ae514472ed570e2acf5 (diff) | |
Notes
Diffstat (limited to 'sys/gnu/fs')
| -rw-r--r-- | sys/gnu/fs/ext2fs/ext2_inode.c | 4 | ||||
| -rw-r--r-- | sys/gnu/fs/reiserfs/reiserfs_inode.c | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/sys/gnu/fs/ext2fs/ext2_inode.c b/sys/gnu/fs/ext2fs/ext2_inode.c index 0a62c3000443..8ac02fb6b203 100644 --- a/sys/gnu/fs/ext2fs/ext2_inode.c +++ b/sys/gnu/fs/ext2fs/ext2_inode.c @@ -472,8 +472,6 @@ ext2_inactive(ap) int mode, error = 0; ext2_discard_prealloc(ip); - if (prtactive && vrefcnt(vp) != 0) - vprint("ext2_inactive: pushing active", vp); /* * Ignore inodes related to stale file handles. @@ -513,8 +511,6 @@ ext2_reclaim(ap) struct inode *ip; struct vnode *vp = ap->a_vp; - if (prtactive && vrefcnt(vp) != 0) - vprint("ufs_reclaim: pushing active", vp); ip = VTOI(vp); if (ip->i_flag & IN_LAZYMOD) { ip->i_flag |= IN_MODIFIED; diff --git a/sys/gnu/fs/reiserfs/reiserfs_inode.c b/sys/gnu/fs/reiserfs/reiserfs_inode.c index 46edbf4bf579..b63ed744073a 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) */ |
