summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-03-21 14:55:53 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-03-21 14:55:53 +0000
commitfa163a21fbf20cb3fd476385485a6d4d509a3386 (patch)
tree470d136ec1a3530c494c1bc5fdfc145f4cfb041a
parent120968c747fe9055821ab5b1fe8af2df28c8966f (diff)
double ncallout, until art fixes this further
-rw-r--r--sys/conf/param.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/param.c b/sys/conf/param.c
index a4735813780..db37665a492 100644
--- a/sys/conf/param.c
+++ b/sys/conf/param.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.c,v 1.7 1999/11/26 16:22:03 art Exp $ */
+/* $OpenBSD: param.c,v 1.8 2000/03/21 14:55:52 deraadt Exp $ */
/* $NetBSD: param.c,v 1.16 1996/03/12 03:08:40 mrg Exp $ */
/*
@@ -96,7 +96,7 @@ int vm_cache_max = NTEXT; /* XXX these probably needs some measurements */
#define NVNODE (NPROC * 2 + NTEXT + 100)
int desiredvnodes = NVNODE;
int maxfiles = 3 * (NPROC + MAXUSERS) + 80;
-int ncallout = 16 + NPROC;
+int ncallout = (16 + NPROC) * 2;
#ifdef REAL_CLISTS
int nclist = 60 + 12 * MAXUSERS;
#endif