From cfe8998cd6367cd1b490ea18d90eff4293219e5e Mon Sep 17 00:00:00 2001 From: Jake Burkholder Date: Mon, 6 Aug 2001 02:27:59 +0000 Subject: [PATCH] Remove some debug code. --- sys/sparc64/sparc64/pv.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/sparc64/sparc64/pv.c b/sys/sparc64/sparc64/pv.c index ca2d29cc6cb2..28e17276c496 100644 --- a/sys/sparc64/sparc64/pv.c +++ b/sys/sparc64/sparc64/pv.c @@ -199,7 +199,6 @@ pv_global_remove_all(vm_page_t m) pa = VM_PAGE_TO_PHYS(m); pvh = pv_lookup(pa); PV_LOCK(); - pv_dump(pvh); for (pstp = pvh_get_first(pvh); pstp != 0; pstp = pv_get_next(pstp)) pv_atomic_bit_clear(pstp, TD_V); PV_UNLOCK(); @@ -207,7 +206,6 @@ pv_global_remove_all(vm_page_t m) PV_LOCK(); while ((pstp = pvh_get_first(pvh)) != 0) pv_remove_phys(pstp); - pv_dump(pvh); PV_UNLOCK(); }