Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 May 2006 05:12:18 GMT
From:      Kip Macy <kmacy@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 96587 for review
Message-ID:  <200605030512.k435CIQC088468@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=96587

Change 96587 by kmacy@kmacy_storage:sun4v_rwbuf on 2006/05/03 05:11:23

	don't enable debugging by default
	remove unused panic

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/pmap.c#41 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/pmap.c#41 (text+ko) ====

@@ -126,7 +126,7 @@
 static uma_zone_t pvzone;
 static struct vm_object pvzone_obj;
 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0;
-int pmap_debug = 1;
+int pmap_debug = 0;
 
 static struct mtx pmap_ctx_lock;
 static uint16_t ctx_stack[PMAP_CONTEXT_MAX];
@@ -1784,9 +1784,6 @@
 		}
 		m = PHYS_TO_VM_PAGE(TTE_GET_PA(tte_data));
 		pmap->pm_stats.resident_count--;
-		if ((uint64_t)m < KERNBASE)
-			panic("m=%p va=0x%lx tte_data=0x%lx",
-			      m, pv->pv_va, tte_data);
 		
 		if (tte_data & VTD_W) {
 			vm_page_dirty(m);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605030512.k435CIQC088468>