summaryrefslogtreecommitdiff
path: root/sys/conf
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2007-11-02 21:01:14 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2007-11-02 21:01:14 +0000
commit794d50c83fa0dc3344039e898e8f8d0a677c0f7f (patch)
tree9a59c2329d5462d2a5f06797e5cd96c220d86a84 /sys/conf
parent87fc1754c0afcff5ed120d05b3b786fde17a5e33 (diff)
crank maxfiles; OK deraadt@
Diffstat (limited to 'sys/conf')
-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 3436c43309e..fd46b8f6ca4 100644
--- a/sys/conf/param.c
+++ b/sys/conf/param.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.c,v 1.27 2007/05/31 05:12:41 pedro Exp $ */
+/* $OpenBSD: param.c,v 1.28 2007/11/02 21:01:13 millert Exp $ */
/* $NetBSD: param.c,v 1.16 1996/03/12 03:08:40 mrg Exp $ */
/*
@@ -87,7 +87,7 @@ struct timezone tz = { TIMEZONE, DST };
#define NVNODE (NPROC * 2 + NTEXT + 100)
int desiredvnodes = NVNODE;
int maxproc = NPROC;
-int maxfiles = 3 * (NPROC + MAXUSERS) + 80;
+int maxfiles = 5 * (NPROC + MAXUSERS) + 80;
int nmbclust = NMBCLUSTERS;
#ifndef MBLOWAT