summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2001-12-05 18:21:53 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2001-12-05 18:21:53 +0000
commit1b14ca8cec3709856f32370dda7681000782608a (patch)
treeb769c6ad40df96cd64cc30386ffecc1fb20aa781
parent59fa1b4f58c60171e7c81ee86624a4769db547ec (diff)
change KMEMPAGES back to 64M, 128M does not work on large memory machines.
ok art@
-rw-r--r--sys/arch/i386/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h
index a3ce7f80302..572ccded632 100644
--- a/sys/arch/i386/include/param.h
+++ b/sys/arch/i386/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.19 2001/12/05 01:57:14 provos Exp $ */
+/* $OpenBSD: param.h,v 1.20 2001/12/05 18:21:52 drahn Exp $ */
/* $NetBSD: param.h,v 1.29 1996/03/04 05:04:26 cgd Exp $ */
/*-
@@ -116,7 +116,7 @@
* logical pages.
*/
#define NKMEMPAGES_MIN_DEFAULT ((8 * 1024 * 1024) >> PAGE_SHIFT)
-#define NKMEMPAGES_MAX_DEFAULT ((128 * 1024 * 1024) >> PAGE_SHIFT)
+#define NKMEMPAGES_MAX_DEFAULT ((64 * 1024 * 1024) >> PAGE_SHIFT)
/* pages ("clicks") to disk blocks */
#define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT))