diff options
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/include/param.h | 15 |
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 |