summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1997-09-17 17:45:21 +0000
committerJason Downs <downsj@cvs.openbsd.org>1997-09-17 17:45:21 +0000
commit6baebddc24b5100a926e8e22e5f9731a4375c649 (patch)
treeb591411ba684a5b0fc320157aa3487f31b8e3f98
parent2338a1d456b05bdfeb0890ddce66b4b5c7e1d780 (diff)
Double default NMBCLUSTERS settings.
-rw-r--r--sys/arch/m68k/include/param.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/m68k/include/param.h b/sys/arch/m68k/include/param.h
index 76823a6a876..6480efc46a2 100644
--- a/sys/arch/m68k/include/param.h
+++ b/sys/arch/m68k/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.1 1997/07/06 07:46:26 downsj Exp $ */
+/* $OpenBSD: param.h,v 1.2 1997/09/17 17:45:20 downsj Exp $ */
/* $NetBSD: param.h,v 1.2 1997/06/10 18:21:23 veego Exp $ */
/*
@@ -108,9 +108,9 @@
#define MCLOFSET (MCLBYTES - 1)
#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