diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-09-17 17:44:07 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-09-17 17:44:07 +0000 |
commit | 2338a1d456b05bdfeb0890ddce66b4b5c7e1d780 (patch) | |
tree | fb195c9b203751aec35e4c3bc7d46a1d3fcba97d /sys/arch/sparc | |
parent | baed375c33e65e3e3345b26df57bf887b3fa7df0 (diff) |
Double default NMBCLUSTERS settings.
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/include/param.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/include/param.h b/sys/arch/sparc/include/param.h index 34573d970f4..9f6ad8aaa18 100644 --- a/sys/arch/sparc/include/param.h +++ b/sys/arch/sparc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.6 1997/08/08 08:26:36 downsj Exp $ */ +/* $OpenBSD: param.h,v 1.7 1997/09/17 17:44:06 downsj Exp $ */ /* $NetBSD: param.h,v 1.29 1997/03/10 22:50:37 pk Exp $ */ /* @@ -118,9 +118,9 @@ extern int nbpg, pgofset, pgshift; #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 |