summaryrefslogtreecommitdiffstats
path: root/sys/fs/devfs/devfs_vnops.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2001-02-18 09:16:49 +0000
committerphk <phk@FreeBSD.org>2001-02-18 09:16:49 +0000
commit15fc7bce144d9639f026ee520c9e1b67f6b926ad (patch)
tree03bb7de6708588fa388478346632ef38e31a594d /sys/fs/devfs/devfs_vnops.c
parentcb0697343ab38ac066f4e817354518600835160d (diff)
downloadFreeBSD-src-15fc7bce144d9639f026ee520c9e1b67f6b926ad.zip
FreeBSD-src-15fc7bce144d9639f026ee520c9e1b67f6b926ad.tar.gz
Remove a debug printf.
Diffstat (limited to 'sys/fs/devfs/devfs_vnops.c')
-rw-r--r--sys/fs/devfs/devfs_vnops.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/fs/devfs/devfs_vnops.c b/sys/fs/devfs/devfs_vnops.c
index e33ad8d..a930b07 100644
--- a/sys/fs/devfs/devfs_vnops.c
+++ b/sys/fs/devfs/devfs_vnops.c
@@ -505,10 +505,8 @@ devfs_reclaim(ap)
vp->v_data = NULL;
if (vp->v_rdev != NODEV && vp->v_rdev != NULL) {
i = vcount(vp);
- if ((vp->v_rdev->si_flags & SI_CHEAPCLONE) && i == 0) {
+ if ((vp->v_rdev->si_flags & SI_CHEAPCLONE) && i == 0)
destroy_dev(vp->v_rdev);
- printf("Reclaim <%s> %d %d Killed\n", vp->v_rdev->si_name, vp->v_rdev->si_flags, i);
- }
}
return (0);
}
OpenPOWER on IntegriCloud