PERFORCE change 31187 for review

Juli Mallett jmallett at FreeBSD.org
Wed May 14 13:12:05 PDT 2003


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

Change 31187 by jmallett at jmallett_dalek on 2003/05/14 13:11:06

	real memory in megs not in k.

Affected files ...

.. //depot/projects/mips/sys/mips/mips/machdep.c#25 edit

Differences ...

==== //depot/projects/mips/sys/mips/mips/machdep.c#25 (text+ko) ====

@@ -216,7 +216,8 @@
 {
 	cpu_identify();
 
-	printf("real memory = %lu (%lu MB)\n", physsz, physsz / 1024);
+	printf("real memory = %lu (%lu MB)\n", physsz,
+	       physsz / (1024 * 1024));
 
 	vm_ksubmap_init(&kmi);
 	bufinit();


More information about the p4-projects mailing list