diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-12 23:05:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-12 23:05:07 +0000 |
commit | 78151583cdbf7fec9bd8ed3de542bdb1dc8983f4 (patch) | |
tree | d5400b809ffedc93752432bae7ac65f8cdfc56c7 /sys/arch/mips64 | |
parent | 096dc2b114f3ad0390816a8c4a1af3fb2c427c75 (diff) |
Change the NKMEMPAGES range to 4-64MB for 32bit arches, and 8-128MB for 64bit
arches; except on sparc where the range is 4-8 for !sun4m and 4-64 for sun4m,
selected at runtime.
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/param.h b/sys/arch/mips64/include/param.h index 6aaf7549419..ab0ce4b99af 100644 --- a/sys/arch/mips64/include/param.h +++ b/sys/arch/mips64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.8 2005/08/07 07:29:44 miod Exp $ */ +/* $OpenBSD: param.h,v 1.9 2005/09/12 23:05:05 miod Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -112,7 +112,7 @@ /* Default malloc arena size */ #define NKMEMPAGES_MIN_DEFAULT ((8 * 1024 * 1024) >> PAGE_SHIFT) -#define NKMEMPAGES_MAX_DEFAULT ((64 * 1024 * 1024) >> PAGE_SHIFT) +#define NKMEMPAGES_MAX_DEFAULT ((128 * 1024 * 1024) >> PAGE_SHIFT) /* pages ("clicks") (4096 bytes) to disk blocks */ #define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT)) |