diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-10-26 16:20:44 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-10-26 16:20:44 +0000 |
commit | bbff21c523e3cfcebe3a6ed633df5d6da733e3e2 (patch) | |
tree | 932c16dd31f03278de7fafecb602ed6f64bb80a4 | |
parent | 5124dd6942870d90a2a95f6f812aec98bef36062 (diff) |
higher the kmem limit; fix up the nmbclusters
-rw-r--r-- | sys/arch/hppa/include/param.h | 10 |
1 files 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 */ |