From b74a76ee1538c112c67e03f9b9a8bfa8c15ac774 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 6 May 1996 17:18:12 +0000 Subject: [PATCH] An old typo MCLBYTES/CLBYTES became more obvious bogus now. Submitted by: wollman --- sys/kern/uipc_mbuf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index 1272bedf09ff..744631a28826 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_mbuf.c 8.2 (Berkeley) 1/4/94 - * $Id: uipc_mbuf.c,v 1.17 1995/12/14 08:32:06 phk Exp $ + * $Id: uipc_mbuf.c,v 1.18 1996/05/02 14:20:29 phk Exp $ */ #include @@ -71,8 +71,8 @@ mbinit(dummy) { int s; -#if PAGE_SIZE < 4096 -#define NCL_INIT (4096/PAGE_SIZE) +#if MCLBYTES < 4096 +#define NCL_INIT (4096/MCLBYTES) #else #define NCL_INIT 1 #endif