constrain bufcache on sun4m too
authorderaadt <deraadt@openbsd.org>
Fri, 20 Dec 1996 15:59:12 +0000 (15:59 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 20 Dec 1996 15:59:12 +0000 (15:59 +0000)
sys/arch/sparc/sparc/machdep.c

index e2b1955..1cb6083 100644 (file)
@@ -344,10 +344,8 @@ allocsys(v)
                if (nbuf < 16)
                        nbuf = 16;
        }
-#if defined(SUN4C) || defined(SUN4)
-       if ((CPU_ISSUN4C || CPU_ISSUN4) && nbuf > 200)
+       if (nbuf > 200)         /* XXX Sorry, our kvm space is too small */
                nbuf = 200;
-#endif
        if (nswbuf == 0) {
                nswbuf = (nbuf / 2) &~ 1;       /* force even */
                if (nswbuf > 256)