Date: Wed, 14 May 2003 13:12:03 -0700 (PDT) From: Juli Mallett <jmallett@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 31187 for review Message-ID: <200305142012.h4EKC3n3055159@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=31187 Change 31187 by jmallett@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();
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200305142012.h4EKC3n3055159>