Sun Sep 23 22:31:39 2012 UTC ()
increase powerpc NKMEMPAGES_MAX_DEFAULT to 256MB.  remove the macppc
overrides that are now the same as the powerpc default.


(mrg)
diff -r1.19 -r1.20 src/sys/arch/macppc/include/param.h
diff -r1.27 -r1.28 src/sys/arch/powerpc/include/param.h

cvs diff -r1.19 -r1.20 src/sys/arch/macppc/include/param.h (expand / switch to context diff)
--- src/sys/arch/macppc/include/param.h 2012/02/10 17:35:48 1.19
+++ src/sys/arch/macppc/include/param.h 2012/09/23 22:31:38 1.20
@@ -1,4 +1,4 @@
-/*	$NetBSD: param.h,v 1.19 2012/02/10 17:35:48 para Exp $	*/
+/*	$NetBSD: param.h,v 1.20 2012/09/23 22:31:38 mrg Exp $	*/
 
 /*-
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -45,13 +45,6 @@
 #ifndef MSGBUFSIZE
 #define	MSGBUFSIZE		(3*NBPG)
 #endif
-
-/*
- * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized
- * logical pages.
- */
-#define	NKMEMPAGES_MIN_DEFAULT		((16 * 1024 * 1024) >> PAGE_SHIFT)
-#define	NKMEMPAGES_MAX_DEFAULT		((256 * 1024 * 1024) >> PAGE_SHIFT)
 
 #endif /* _KERNEL && !_MODULE */
 

cvs diff -r1.27 -r1.28 src/sys/arch/powerpc/include/param.h (expand / switch to context diff)
--- src/sys/arch/powerpc/include/param.h 2012/01/30 06:04:32 1.27
+++ src/sys/arch/powerpc/include/param.h 2012/09/23 22:31:39 1.28
@@ -1,4 +1,4 @@
-/*	$NetBSD: param.h,v 1.27 2012/01/30 06:04:32 matt Exp $	*/
+/*	$NetBSD: param.h,v 1.28 2012/09/23 22:31:39 mrg Exp $	*/
 
 /*-
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -110,7 +110,7 @@
 #define	NKMEMPAGES_MIN_DEFAULT	((16 * 1024 * 1024) >> PAGE_SHIFT)
 #endif
 #ifndef NKMEMPAGES_MAX_DEFAULT
-#define	NKMEMPAGES_MAX_DEFAULT	((128 * 1024 * 1024) >> PAGE_SHIFT)
+#define	NKMEMPAGES_MAX_DEFAULT	((256 * 1024 * 1024) >> PAGE_SHIFT)
 #endif
 
 #if defined(_KERNEL) && !defined(_LOCORE)