summaryrefslogtreecommitdiff
path: root/sys/arch/arm
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-04-19 22:55:52 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-04-19 22:55:52 +0000
commit1b92e192ad074a1976f53f1730e28441f266910a (patch)
tree94e0d1de3300d87254701ff80a07e2d3fa733d5e /sys/arch/arm
parentc452a416a25e1f9cc29952c21eabf4bf82a45e64 (diff)
remove the GATEWAY junk thingy; at the same time, select a new fat
cluster value that noone will really need to crank.
Diffstat (limited to 'sys/arch/arm')
-rw-r--r--sys/arch/arm/include/param.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/sys/arch/arm/include/param.h b/sys/arch/arm/include/param.h
index d5e3e304d2a..7f95b432d07 100644
--- a/sys/arch/arm/include/param.h
+++ b/sys/arch/arm/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.2 2004/02/06 17:30:38 drahn Exp $ */
+/* $OpenBSD: param.h,v 1.3 2004/04/19 22:55:48 deraadt Exp $ */
/* $NetBSD: param.h,v 1.9 2002/03/24 03:37:23 thorpej Exp $ */
/*
@@ -62,14 +62,6 @@
#define MSGBUFSIZE PAGE_SIZE /* default message buffer size */
#endif
-#ifndef NMBCLUSTERS
-#ifdef GATEWAY
-#define NMBCLUSTERS 2048 /* map size, max cluster allocation */
-#else
-#define NMBCLUSTERS 1024 /* map size, max cluster allocation */
-#endif
-#endif
-
/*
* Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized
* logical pages.
@@ -196,13 +188,10 @@ void delay __P((unsigned));
* of the hardware page size.
*/
#define MSIZE 256 /* size of an mbuf */
-
-#ifndef MCLSHIFT
#define MCLSHIFT 11 /* convert bytes to m_buf clusters */
/* 2K cluster can hold Ether frame */
-#endif /* MCLSHIFT */
-
#define MCLBYTES (1 << MCLSHIFT) /* size of a m_buf cluster */
+#define NMBCLUSTERS 4096 /* map size, max cluster allocation */
#define ovbcopy bcopy