summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-03-16 16:56:26 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-03-16 16:56:26 +0000
commitb5782d9edc3309a67d99e373e790e939e91c5878 (patch)
treed6e51597fda9f7178733b3eebd3491857c3a6404
parent48ef832219531db57508c4ee7eb353c590054f98 (diff)
Now that pmap_growkernel is implemented set NKMEMCLUSTERS to 32m again.
millert@ ok.
-rw-r--r--sys/arch/alpha/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/param.h b/sys/arch/alpha/include/param.h
index 3556b2f832c..5e6e01ebaa4 100644
--- a/sys/arch/alpha/include/param.h
+++ b/sys/arch/alpha/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.18 2001/03/03 21:21:48 millert Exp $ */
+/* $OpenBSD: param.h,v 1.19 2001/03/16 16:56:25 art Exp $ */
/* $NetBSD: param.h,v 1.30 2000/06/09 16:03:04 thorpej Exp $ */
/*
@@ -128,7 +128,7 @@
* Size of kernel malloc arena in CLBYTES-sized logical pages
*/
#ifndef NKMEMCLUSTERS
-#define NKMEMCLUSTERS (16384*1024/NBPG)
+#define NKMEMCLUSTERS (32768*1024/NBPG)
#endif