diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-02-28 18:24:19 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-02-28 18:24:19 +0000 |
commit | 259ed6ea302c9e91218350dac8b05b3b5ffa3834 (patch) | |
tree | 419bf141aa10f46b1119f7fedff8e5093dd132b3 | |
parent | 807e28a4982693b9fbdeefc274851b8099ba4cef (diff) |
Shrink NKMEMPAGES_MAX back to 4MB for 3.9, as this still has issues on >= 512MB
machines; this will be fixed post release. Reported by Serge Basterot.
ok deraadt@
-rw-r--r-- | sys/arch/sparc/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/include/param.h b/sys/arch/sparc/include/param.h index 7cfedabcd4e..d355b11d880 100644 --- a/sys/arch/sparc/include/param.h +++ b/sys/arch/sparc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.34 2005/11/01 21:37:09 martin Exp $ */ +/* $OpenBSD: param.h,v 1.35 2006/02/28 18:24:18 miod Exp $ */ /* $NetBSD: param.h,v 1.29 1997/03/10 22:50:37 pk Exp $ */ /* @@ -110,7 +110,7 @@ * logical pages. */ #define NKMEMPAGES_MIN_DEFAULT ((4 * 1024 * 1024) >> PAGE_SHIFT) -#define NKMEMPAGES_MAX_DEFAULT ((8 * 1024 * 1024) >> PAGE_SHIFT) +#define NKMEMPAGES_MAX_DEFAULT ((4 * 1024 * 1024) >> PAGE_SHIFT) /* pages ("clicks") to disk blocks */ #define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT)) |