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/amiga | |
parent | baed375c33e65e3e3345b26df57bf887b3fa7df0 (diff) |
Double default NMBCLUSTERS settings.
Diffstat (limited to 'sys/arch/amiga')
-rw-r--r-- | sys/arch/amiga/include/param.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amiga/include/param.h b/sys/arch/amiga/include/param.h index 6fad68ccfcc..be4d5b0b21d 100644 --- a/sys/arch/amiga/include/param.h +++ b/sys/arch/amiga/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.8 1997/01/16 09:25:58 niklas Exp $ */ +/* $OpenBSD: param.h,v 1.9 1997/09/17 17:44:05 downsj Exp $ */ /* $NetBSD: param.h,v 1.30 1996/09/28 15:54:04 mhitch Exp $ */ /* @@ -102,9 +102,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 |