From b46ba8880c77d9ec7712a3ab4e9da5ac7a24f2ed Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Tue, 17 Jul 2001 15:51:12 +0000 Subject: [PATCH] Increase NMBCLUSTERS by 4x. This takes a GENERIC kernel (MAXUSERS=32) from 1536 to 3072. --- sys/kern/subr_mbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/subr_mbuf.c b/sys/kern/subr_mbuf.c index 18efe4a9909..97ea5869600 100644 --- a/sys/kern/subr_mbuf.c +++ b/sys/kern/subr_mbuf.c @@ -132,7 +132,7 @@ struct mb_pcpu_list { * allocatable by the sfbuf allocator (found in uipc_syscalls.c) */ #ifndef NMBCLUSTERS -#define NMBCLUSTERS (1024 + MAXUSERS * 16) +#define NMBCLUSTERS (1024 + MAXUSERS * 64) #endif #ifndef NMBUFS #define NMBUFS (NMBCLUSTERS * 2)