From 52562d87aa46cf5c28d6af4ca81986b17b996dc9 Mon Sep 17 00:00:00 2001 From: "Dale S. Rahn" Date: Sun, 28 Nov 1999 23:20:24 +0000 Subject: Lower NKMEMCLUSTERS from 128MB to 16MB. Currently the vm size for powerpc is set to 256MB and this prevented OpenBSD from booting on machine with more than ~128MB, 196MB machines would fail to boot very early. --- sys/arch/powerpc/include/param.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/arch/powerpc') diff --git a/sys/arch/powerpc/include/param.h b/sys/arch/powerpc/include/param.h index d6c79a2a243..a243b1cbac7 100644 --- a/sys/arch/powerpc/include/param.h +++ b/sys/arch/powerpc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.7 1998/08/18 21:28:21 millert Exp $ */ +/* $OpenBSD: param.h,v 1.8 1999/11/28 23:20:23 rahnds Exp $ */ /* $NetBSD: param.h,v 1.1 1996/09/30 16:34:28 ws Exp $ */ /*- @@ -92,7 +92,7 @@ * Size of kernel malloc arena in CLBYTES-sized logical pages. */ #ifndef NKMEMCLUSTERS -#define NKMEMCLUSTERS (128 * 1024 * 1024 / CLBYTES) +#define NKMEMCLUSTERS (16 * 1024 * 1024 / CLBYTES) #endif /* -- cgit v1.2.3