diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-07-07 08:23:23 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-07-07 08:23:23 +0000 |
commit | 374f482785ae83bd6ed5c3dd02ef39ad410d0f4c (patch) | |
tree | dbd6852b3d0d923c2c44f33f4a30a6320b1c75fd /sys/arch/pmax | |
parent | 96a4ce63e0e4684a336e9c40d8b2b7a5f392281c (diff) |
set a useful default for NKMEMCLUSTERS here so that we no longer need
to set it in the config file
Diffstat (limited to 'sys/arch/pmax')
-rw-r--r-- | sys/arch/pmax/include/mips_param.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/include/mips_param.h b/sys/arch/pmax/include/mips_param.h index 0a4b1947385..f3a5c148d4c 100644 --- a/sys/arch/pmax/include/mips_param.h +++ b/sys/arch/pmax/include/mips_param.h @@ -22,7 +22,7 @@ * Size of kernel malloc arena in CLBYTES-sized logical pages */ #ifndef NKMEMCLUSTERS -#define NKMEMCLUSTERS (512*1024/CLBYTES) +#define NKMEMCLUSTERS (4*1024*1024/CLBYTES) #endif /* pages ("clicks") (4096 bytes) to disk blocks */ |