diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-03 21:21:49 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-03 21:21:49 +0000 |
commit | d5007d27bf2a0431beae9ff5f98348240e4cb4a5 (patch) | |
tree | 2c28cc307fd30f9840ac2b733e5de80c253106f4 /sys | |
parent | 37ee72595faa2a5ed589ea833561fe9f79c5829a (diff) |
Lower NKMEMCLUSTERS by a factor of 2 from 32768*1024/NBPG to 16384*1024/NBPG.
Fixes problems on 64meg and 256meg machines; OK'd by deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/param.h b/sys/arch/alpha/include/param.h index 3cf4787fe9b..3556b2f832c 100644 --- a/sys/arch/alpha/include/param.h +++ b/sys/arch/alpha/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.17 2001/02/27 17:13:50 art Exp $ */ +/* $OpenBSD: param.h,v 1.18 2001/03/03 21:21:48 millert 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 (32768*1024/NBPG) +#define NKMEMCLUSTERS (16384*1024/NBPG) #endif |