diff options
author | 2013-11-24 22:09:58 +0000 | |
---|---|---|
committer | 2013-11-24 22:09:58 +0000 | |
commit | 5d8b2782a604b2a04faa511fb58d640226dcd9af (patch) | |
tree | 42b47f5f8b89bff2cc2ea6febb4ce3b87ddd49d9 | |
parent | Rework pmap to use dynamic P0 and P1 region allocation, instead of allocating (diff) | |
download | wireguard-openbsd-5d8b2782a604b2a04faa511fb58d640226dcd9af.tar.xz wireguard-openbsd-5d8b2782a604b2a04faa511fb58d640226dcd9af.zip |
Increase MAXDSIZ to 128MB, and BRKSIZ to 16MB, now that we can afford this.
Also double DFLDSIZ.
-rw-r--r-- | sys/arch/vax/include/vmparam.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/vax/include/vmparam.h b/sys/arch/vax/include/vmparam.h index 412cd23c27a..24dba6abb11 100644 --- a/sys/arch/vax/include/vmparam.h +++ b/sys/arch/vax/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.33 2013/07/05 21:10:50 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.34 2013/11/24 22:09:58 miod Exp $ */ /* $NetBSD: vmparam.h,v 1.32 2000/03/07 00:05:59 matt Exp $ */ /*- @@ -47,7 +47,7 @@ * USRTEXT is the start of the user text/data space, while USRSTACK * is the top (end) of the user stack. Immediately above the user stack * resides kernel. - * */ + */ #define USRTEXT PAGE_SIZE #define USRSTACK KERNBASE @@ -60,13 +60,13 @@ #define MAXTSIZ (8*1024*1024) /* max text size */ #endif #ifndef MAXDSIZ -#define MAXDSIZ (40*1024*1024) /* max data size */ +#define MAXDSIZ (128*1024*1024) /* max data size */ #endif #ifndef MAXSSIZ #define MAXSSIZ (8*1024*1024) /* max stack size */ #endif #ifndef DFLDSIZ -#define DFLDSIZ (4*1024*1024) /* initial data size limit */ +#define DFLDSIZ (8*1024*1024) /* initial data size limit */ #endif #ifndef DFLSSIZ #define DFLSSIZ (512*1024) /* initial stack size limit */ @@ -74,7 +74,7 @@ #define STACKGAP_RANDOM 32*1024 -#define BRKSIZ (8*1024*1024) +#define BRKSIZ (16*1024*1024) /* * Size of shared memory map |