PERFORCE change 28467 for review

Peter Wemm peter at FreeBSD.org
Mon Apr 7 17:32:18 PDT 2003


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

Change 28467 by peter at peter_daintree on 2003/04/07 17:31:49

	nuke some more noisy printfs

Affected files ...

.. //depot/projects/hammer/sys/x86_64/x86_64/machdep.c#46 edit

Differences ...

==== //depot/projects/hammer/sys/x86_64/x86_64/machdep.c#46 (text+ko) ====

@@ -1086,22 +1086,14 @@
 
 	/* Allocate pages */
 	KPTphys = allocpages(NKPT);
-	printf("KPTphys = 0x%lx\n", KPTphys);
 	IdlePML4 = allocpages(NKPML4E);
-	printf("IdlePML4 = 0x%lx\n", IdlePML4);
 	IdlePDP = allocpages(NKPDPE);
-	printf("IdlePDP = 0x%lx\n", IdlePDP);
 	IdlePTD = allocpages(NPGPTD);
-	printf("IdlePTD = 0x%lx\n", IdlePTD);
 	p0upa = allocpages(UAREA_PAGES);
-	printf("p0upa = 0x%lx\n", p0upa);
 	p0kpa = allocpages(KSTACK_PAGES);
-	printf("p0kpa = 0x%lx\n", p0kpa);
 
 	proc0uarea = (struct user *)(p0upa + KERNBASE);
-	printf("proc0uarea = 0x%lx\n", proc0uarea);
 	proc0kstack = p0kpa + KERNBASE;
-	printf("proc0kstack = 0x%lx\n", proc0kstack);
 
 	/* Fill in the underlying page table pages */
 	/* Read-only from zero to physfree */


More information about the p4-projects mailing list