Remove a debug printf.

This commit is contained in:
Poul-Henning Kamp 2001-02-18 09:16:49 +00:00
parent 2f1ac13b0a
commit 3e8bea9634
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=72637

View File

@ -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);
}