diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-11-03 17:28:02 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-11-03 17:28:02 +0000 |
commit | 0558d47a4799bd4de19df98db36d37ba48c54cad (patch) | |
tree | 60831b290e6edbd3aacb94409cd6098607b2e0f7 | |
parent | aea5c0e8909b28673ec0f44977ef132c84ad5b4e (diff) |
For now use 3 pages like netbsd, allows the kernel to get _MUCH_ farther.
I suspect this is really a bug in the P1_STACK code path.
-rw-r--r-- | sys/arch/sh/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sh/include/param.h b/sys/arch/sh/include/param.h index 9a4493af3ee..a2eec2d29ed 100644 --- a/sys/arch/sh/include/param.h +++ b/sys/arch/sh/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.1 2006/10/06 21:02:55 miod Exp $ */ +/* $OpenBSD: param.h,v 1.2 2006/11/03 17:28:01 drahn Exp $ */ /* $NetBSD: param.h,v 1.15 2006/08/28 13:43:35 yamt Exp $ */ /*- @@ -89,7 +89,7 @@ /* * u-space. */ -#define UPAGES 2 /* pages of u-area */ +#define UPAGES 3 /* pages of u-area */ #define USPACE (UPAGES * NBPG) /* total size of u-area */ #define USPACE_ALIGN (0) #if UPAGES == 1 |