summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1997-09-17 17:40:24 +0000
committerJason Downs <downsj@cvs.openbsd.org>1997-09-17 17:40:24 +0000
commitbaed375c33e65e3e3345b26df57bf887b3fa7df0 (patch)
treed4d2cd43912d46bf863c337660bdc25c13a85bef
parent9354a62a5f41b7c55a762422bd199bfd534f75b3 (diff)
Double default NMBCLUSTERS, they're too small for modern networks.
-rw-r--r--sys/arch/i386/include/param.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h
index 4e7f087db1c..8489f295d60 100644
--- a/sys/arch/i386/include/param.h
+++ b/sys/arch/i386/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.4 1996/10/25 11:14:15 deraadt Exp $ */
+/* $OpenBSD: param.h,v 1.5 1997/09/17 17:40:23 downsj Exp $ */
/* $NetBSD: param.h,v 1.29 1996/03/04 05:04:26 cgd Exp $ */
/*-
@@ -105,9 +105,9 @@
#ifndef NMBCLUSTERS
#ifdef GATEWAY
-#define NMBCLUSTERS 512 /* map size, max cluster allocation */
+#define NMBCLUSTERS 1024 /* map size, max cluster allocation */
#else
-#define NMBCLUSTERS 256 /* map size, max cluster allocation */
+#define NMBCLUSTERS 512 /* map size, max cluster allocation */
#endif
#endif