diff options
author | 2013-11-24 22:15:24 +0000 | |
---|---|---|
committer | 2013-11-24 22:15:24 +0000 | |
commit | a88a9a615ea87753dc69294d25c95d5f25237b71 (patch) | |
tree | b13ffadb05606c6a070a42ee9c21a421524263ee | |
parent | Increase MAXDSIZ to 128MB, and BRKSIZ to 16MB, now that we can afford this. (diff) | |
download | wireguard-openbsd-a88a9a615ea87753dc69294d25c95d5f25237b71.tar.xz wireguard-openbsd-a88a9a615ea87753dc69294d25c95d5f25237b71.zip |
Increase NMBCLUSTERS a bit. Riding upon the kernel memory saved by the pmap
changes.
-rw-r--r-- | sys/arch/vax/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index 47125f8a309..c9ed3aef2a3 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.41 2013/06/13 05:12:51 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.42 2013/11/24 22:15:24 miod Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -63,7 +63,7 @@ #define USPACE_ALIGN (0) /* u-area alignment 0-none */ #define REDZONEADDR (VAX_NBPG*3) /* Must be > sizeof(struct user) */ -#define NMBCLUSTERS 768 /* map size, max cluster allocation */ +#define NMBCLUSTERS 1024 /* map size, max cluster allocation */ #ifndef MSGBUFSIZE #define MSGBUFSIZE (2 * PAGE_SIZE) /* default message buffer size */ |