From bbff21c523e3cfcebe3a6ed633df5d6da733e3e2 Mon Sep 17 00:00:00 2001 From: Michael Shalayeff Date: Tue, 26 Oct 1999 16:20:44 +0000 Subject: higher the kmem limit; fix up the nmbclusters --- sys/arch/hppa/include/param.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/sys/arch/hppa/include/param.h b/sys/arch/hppa/include/param.h index c26eea4efa9..d5d18a49428 100644 --- a/sys/arch/hppa/include/param.h +++ b/sys/arch/hppa/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.6 1999/09/18 19:01:56 mickey Exp $ */ +/* $OpenBSD: param.h,v 1.7 1999/10/26 16:20:43 mickey Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -86,18 +86,14 @@ #define MCLBYTES (1 << MCLSHIFT) /* large enough for ether MTU */ #define MCLOFSET (MCLBYTES - 1) #ifndef NMBCLUSTERS -#ifdef GATEWAY -#define NMBCLUSTERS (1024) /* cl map size: 1MB */ -#else -#define NMBCLUSTERS (512) /* cl map size: 0.5MB */ -#endif +#define NMBCLUSTERS (2048) /* cl map size: 1MB */ #endif /* * Size of kernel malloc arena in CLBYTES-sized logical pages */ #ifndef NKMEMCLUSTERS -#define NKMEMCLUSTERS (8192*1024/CLBYTES) +#define NKMEMCLUSTERS (16 * 1024 * 1024 / CLBYTES) #endif /* pages ("clicks") (4096 bytes) to disk blocks */ -- cgit v1.2.3