summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2004-01-25 01:53:12 +0000
committermillert <millert@openbsd.org>2004-01-25 01:53:12 +0000
commitc6e9df338e9e38e286185c2327c898605086c93f (patch)
tree89e25b09211e890627a0472b680718c8139751f1
parentUse %lu to print u_long values, not %d or %ld. Fixes display of (diff)
downloadwireguard-openbsd-c6e9df338e9e38e286185c2327c898605086c93f.tar.xz
wireguard-openbsd-c6e9df338e9e38e286185c2327c898605086c93f.zip
Crank SHMMAXPGS to 32mb; OK mickey@
-rw-r--r--sys/arch/hppa/include/vmparam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/vmparam.h b/sys/arch/hppa/include/vmparam.h
index d22388b13cf..f720756fa5e 100644
--- a/sys/arch/hppa/include/vmparam.h
+++ b/sys/arch/hppa/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.27 2003/04/16 07:31:38 mickey Exp $ */
+/* $OpenBSD: vmparam.h,v 1.28 2004/01/25 01:53:12 millert Exp $ */
/*
* Copyright (c) 1988-1994, The University of Utah and
@@ -65,7 +65,7 @@
* This is basically slop for kmempt which we actually allocate (malloc) from.
*/
#ifndef SHMMAXPGS
-#define SHMMAXPGS ((1024*1024*10)/NBPG) /* 10mb */
+#define SHMMAXPGS 8192 /* 32mb */
#endif
/*