From: deraadt Date: Sun, 23 Feb 1997 20:47:25 +0000 (+0000) Subject: constrain nbuf until we find a better fix X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=cb795fd1b84a92c04369b9176d110568aa2bdfc9;p=openbsd constrain nbuf until we find a better fix --- diff --git a/sys/arch/sparc/sparc/machdep.c b/sys/arch/sparc/sparc/machdep.c index adc9ef338fd..2007caae930 100644 --- a/sys/arch/sparc/sparc/machdep.c +++ b/sys/arch/sparc/sparc/machdep.c @@ -339,6 +339,8 @@ allocsys(v) if (nbuf < 16) nbuf = 16; } + if (nbuf > 200) + nbuf = 200; /* or we run out of PMEGS */ /* Restrict to at most 70% filled kvm */ if (nbuf * MAXBSIZE > (VM_MAX_KERNEL_ADDRESS-VM_MIN_KERNEL_ADDRESS) * 7 / 10)