artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0824d1a
)
constrain bufcache on sun4m too
author
deraadt
<deraadt@openbsd.org>
Fri, 20 Dec 1996 15:59:12 +0000
(15:59 +0000)
committer
deraadt
<deraadt@openbsd.org>
Fri, 20 Dec 1996 15:59:12 +0000
(15:59 +0000)
sys/arch/sparc/sparc/machdep.c
patch
|
blob
|
history
diff --git
a/sys/arch/sparc/sparc/machdep.c
b/sys/arch/sparc/sparc/machdep.c
index
e2b1955
..
1cb6083
100644
(file)
--- a/
sys/arch/sparc/sparc/machdep.c
+++ b/
sys/arch/sparc/sparc/machdep.c
@@
-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)