PERFORCE change 153362 for review

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sat Nov 22 09:58:08 PST 2008


http://perforce.freebsd.org/chv.cgi?CH=153362

Change 153362 by nwhitehorn at nwhitehorn_trantor on 2008/11/22 17:57:25

	In retrospect, invoking KTR from pmap_cpu_boostrap() is a bad idea.
	There are no guarantees that something as complicated as a console
	will do anything useful coming right off CPU reset.

Affected files ...

.. //depot/projects/ppc-g5/sys/powerpc/powerpc/pmap_dispatch.c#4 edit

Differences ...

==== //depot/projects/ppc-g5/sys/powerpc/powerpc/pmap_dispatch.c#4 (text+ko) ====

@@ -411,7 +411,10 @@
 void
 pmap_cpu_bootstrap(int ap)
 {
-	CTR3(KTR_PMAP, "%s(%#x, %#x)", __func__, pa, size);
+	/*
+	 * No KTR here because our console probably doesn't work yet
+	 */
+
 	return (MMU_CPU_BOOTSTRAP(mmu_obj, ap));
 }
 


More information about the p4-projects mailing list