diff options
| -rw-r--r-- | sys/fs/devfs/devfs_vnops.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/fs/devfs/devfs_vnops.c b/sys/fs/devfs/devfs_vnops.c index e33ad8d2ed0c..a930b0735857 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); } |
