diff options
author | 2000-03-21 14:55:52 +0000 | |
---|---|---|
committer | 2000-03-21 14:55:52 +0000 | |
commit | ec714d530f3350ff777f4922e63d47667f62af52 (patch) | |
tree | 2071add444ccca346e46cafffaa593878d6f1248 | |
parent | Add HISTORY sections; from FreeBSD. Information originally obtained from (diff) | |
download | wireguard-openbsd-ec714d530f3350ff777f4922e63d47667f62af52.tar.xz wireguard-openbsd-ec714d530f3350ff777f4922e63d47667f62af52.zip |
double ncallout, until art fixes this further
-rw-r--r-- | sys/conf/param.c | 4 |
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 |