summaryrefslogtreecommitdiff
path: root/sys/arch/hp300
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2009-06-03 21:30:21 +0000
committerBob Beck <beck@cvs.openbsd.org>2009-06-03 21:30:21 +0000
commite4c01a324522cec2879a3f95a917b6434020498a (patch)
treeef6db87f8ac740cc6d4f3d0065d284571f6c9e72 /sys/arch/hp300
parentcffdd398610e708a53403eb903038d25b2ce9319 (diff)
add kern.bufcachepercent sysctl to allow adjusting the buffer cache
size on a running system. ok art@, oga@
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r--sys/arch/hp300/hp300/machdep.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c
index ed2c256b29c..d560a1b7c58 100644
--- a/sys/arch/hp300/hp300/machdep.c
+++ b/sys/arch/hp300/hp300/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.120 2008/06/27 17:22:14 miod Exp $ */
+/* $OpenBSD: machdep.c,v 1.121 2009/06/03 21:30:19 beck Exp $ */
/* $NetBSD: machdep.c,v 1.121 1999/03/26 23:41:29 mycroft Exp $ */
/*
@@ -290,12 +290,6 @@ 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.