summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r--sys/arch/mvme68k/mvme68k/machdep.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/mvme68k/machdep.c b/sys/arch/mvme68k/mvme68k/machdep.c
index 836bec8ec95..db6c36898db 100644
--- a/sys/arch/mvme68k/mvme68k/machdep.c
+++ b/sys/arch/mvme68k/mvme68k/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.115 2009/06/03 21:30:20 beck Exp $ */
+/* $OpenBSD: machdep.c,v 1.116 2009/06/15 17:01:26 beck Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -265,6 +265,12 @@ cpu_startup()
if (bufpages == 0)
bufpages = physmem * bufcachepercent / 100;
+ /* Restrict to at most 25% filled kvm */
+ if (bufpages >
+ (VM_MAX_KERNEL_ADDRESS-VM_MIN_KERNEL_ADDRESS) / PAGE_SIZE / 4)
+ bufpages = (VM_MAX_KERNEL_ADDRESS-VM_MIN_KERNEL_ADDRESS) /
+ PAGE_SIZE / 4;
+
/*
* Allocate a submap for exec arguments. This map effectively
* limits the number of processes exec'ing at any time.