From cb795fd1b84a92c04369b9176d110568aa2bdfc9 Mon Sep 17 00:00:00 2001 From: deraadt Date: Sun, 23 Feb 1997 20:47:25 +0000 Subject: [PATCH] constrain nbuf until we find a better fix --- sys/arch/sparc/sparc/machdep.c | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.20.1