diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-01-10 01:26:50 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-01-10 01:26:50 +0000 |
commit | cd8731a3b3f538a8c51fa53e1c55c9a0aa5a62ab (patch) | |
tree | c5162706a26edd9f8b0b3e095ae20c9d4f61b561 /sys/arch/hppa/include | |
parent | d62036ff6633498aac682a9147f1abd467b086d2 (diff) |
larger SSIZE and smaller NKMEMPAGES_MIN_DEFAULT
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/param.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/include/param.h b/sys/arch/hppa/include/param.h index 5b2802990cf..8392d7de823 100644 --- a/sys/arch/hppa/include/param.h +++ b/sys/arch/hppa/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.14 2001/12/05 01:57:14 provos Exp $ */ +/* $OpenBSD: param.h,v 1.15 2002/01/10 01:26:49 mickey Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -63,7 +63,7 @@ #define MACHINE_STACK_GROWS_UP 1 /* stack grows to higher addresses */ -#define SSIZE (1) /* initial stack size/NBPG */ +#define SSIZE (4) /* initial stack size/NBPG */ #define SINCR (1) /* increment of stack/NBPG */ #define UADDR 0x7ffe6000 /* u-area lives here */ @@ -94,7 +94,7 @@ * Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized * logical pages. */ -#define NKMEMPAGES_MIN_DEFAULT ((8 * 1024 * 1024) >> PAGE_SHIFT) +#define NKMEMPAGES_MIN_DEFAULT ((4 * 1024 * 1024) >> PAGE_SHIFT) #define NKMEMPAGES_MAX_DEFAULT ((64 * 1024 * 1024) >> PAGE_SHIFT) /* pages ("clicks") (4096 bytes) to disk blocks */ |