diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-04-19 23:29:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-04-19 23:29:04 +0000 |
commit | c37133af99bb15ff3fe07158e9f06c776536ae5f (patch) | |
tree | 834d8f45b28ddf7b55aa06dcec79f73457bacf2a | |
parent | 1b92e192ad074a1976f53f1730e28441f266910a (diff) |
remove the GATEWAY junk thingy; at the same time, select a new fat
cluster value that noone will really need to crank.
-rw-r--r-- | sys/arch/m68k/include/param.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/arch/m68k/include/param.h b/sys/arch/m68k/include/param.h index 37acac47b79..8610fb2a3bd 100644 --- a/sys/arch/m68k/include/param.h +++ b/sys/arch/m68k/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.8 2003/06/02 23:27:48 millert Exp $ */ +/* $OpenBSD: param.h,v 1.9 2004/04/19 23:29:03 deraadt Exp $ */ /* $NetBSD: param.h,v 1.2 1997/06/10 18:21:23 veego Exp $ */ /* @@ -108,13 +108,7 @@ #define MCLBYTES (1 << MCLSHIFT) #define MCLOFSET (MCLBYTES - 1) -#ifndef NMBCLUSTERS -#ifdef GATEWAY -# define NMBCLUSTERS 1024 /* map size, max cluster allocation */ -#else -# define NMBCLUSTERS 512 /* map size, max cluster allocation */ -#endif -#endif +#define NMBCLUSTERS 1024 /* map size, max cluster allocation */ /* pages ("clicks") to disk blocks */ #define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT)) |