diff options
author | 1997-07-07 08:23:22 +0000 | |
---|---|---|
committer | 1997-07-07 08:23:22 +0000 | |
commit | 8831bcb6e326277af64ae5f75a47e12ed2c1c2c5 (patch) | |
tree | 2343e83a086bb71489ee07c749cf95a584100ec7 | |
parent | let the bootup output fit into 80 columns and make more look like the (diff) | |
download | wireguard-openbsd-8831bcb6e326277af64ae5f75a47e12ed2c1c2c5.tar.xz wireguard-openbsd-8831bcb6e326277af64ae5f75a47e12ed2c1c2c5.zip |
set a useful default for NKMEMCLUSTERS here so that we no longer need
to set it in the config file
-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 */ |