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/mvmeppc/include/param.h | |
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/mvmeppc/include/param.h')
-rw-r--r-- | sys/arch/mvmeppc/include/param.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/arch/mvmeppc/include/param.h b/sys/arch/mvmeppc/include/param.h index 6505b73ddc8..e10f2bae165 100644 --- a/sys/arch/mvmeppc/include/param.h +++ b/sys/arch/mvmeppc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.4 2001/12/05 01:57:15 provos Exp $ */ +/* $OpenBSD: param.h,v 1.5 2005/09/12 23:05:05 miod Exp $ */ /* $NetBSD: param.h,v 1.1 1996/09/30 16:34:28 ws Exp $ */ /*- @@ -49,15 +49,3 @@ #define KERNBASE 0x100000 #define MSGBUFSIZE (NBPG*2) - -/* - * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized - * logical pages. - */ -#ifndef NKMEMPAGES_MIN_DEFAULT -#define NKMEMPAGES_MIN_DEFAULT ((8 * 1024 * 1024) >> PAGE_SHIFT) -#endif -#ifndef NKMEMPAGES_MAX_DEFAULT -#define NKMEMPAGES_MAX_DEFAULT ((64 * 1024 * 1024) >> PAGE_SHIFT) -#endif - |