Module Name:    src
Committed By:   cliff
Date:           Thu Jun 10 05:45:50 UTC 2010

Modified Files:
        src/sys/arch/mips/mips [matt-nb5-mips64]: pmap.c

Log Message:
Move "space on 256MB sbmips" comment into alternate of #ifdef where it applies.
Matthew Green noticed this one, thanks.


To generate a diff of this commit:
cvs rdiff -u -r1.179.16.25 -r1.179.16.26 src/sys/arch/mips/mips/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/mips/mips/pmap.c
diff -u src/sys/arch/mips/mips/pmap.c:1.179.16.25 src/sys/arch/mips/mips/pmap.c:1.179.16.26
--- src/sys/arch/mips/mips/pmap.c:1.179.16.25	Thu Jun 10 00:37:58 2010
+++ src/sys/arch/mips/mips/pmap.c	Thu Jun 10 05:45:50 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.179.16.25 2010/06/10 00:37:58 cliff Exp $	*/
+/*	$NetBSD: pmap.c,v 1.179.16.26 2010/06/10 05:45:50 cliff Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.179.16.25 2010/06/10 00:37:58 cliff Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.179.16.26 2010/06/10 05:45:50 cliff Exp $");
 
 /*
  *	Manages physical address maps.
@@ -517,10 +517,10 @@
 	poolpage.size = nkmempages + MCLBYTES * nmbclusters;
 	Sysmapsize += poolpage.size;
 #endif
-	/* XXX: else runs out of space on 256MB sbmips!! */
 #ifdef _LP64
 	Sysmapsize += physmem;
 #else
+	/* XXX: else runs out of space on 256MB sbmips!! */
 	Sysmapsize += 20000;
 #endif
 

Reply via email to