don't play with CLBYTES in cpp

This commit is contained in:
deraadt 1994-09-28 00:44:30 +00:00
parent 042d2d08a1
commit 9d7bdbb0c4
1 changed files with 2 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: uipc_mbuf.c,v 1.11 1994/09/19 08:07:17 mycroft Exp $ */
/* $NetBSD: uipc_mbuf.c,v 1.12 1994/09/28 00:44:30 deraadt Exp $ */
/*
* Copyright (c) 1982, 1986, 1988, 1991, 1993
@ -58,13 +58,8 @@ mbinit()
{
int s;
#if CLBYTES < 4096
#define NCL_INIT (4096/CLBYTES)
#else
#define NCL_INIT 1
#endif
s = splimp();
if (m_clalloc(NCL_INIT, M_DONTWAIT) == 0)
if (m_clalloc(max(4096/CLBYTES, 1), M_DONTWAIT) == 0)
goto bad;
splx(s);
return;