Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Nov 2008 17:58:07 GMT
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 153362 for review
Message-ID:  <200811221758.mAMHw7cB070468@repoman.freebsd.org>

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

Change 153362 by nwhitehorn@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));
 }
 



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