From owner-freebsd-hackers Thu Jan 18 04:55:05 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id EAA06101 for hackers-outgoing; Thu, 18 Jan 1996 04:55:05 -0800 (PST) Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id EAA06095 for ; Thu, 18 Jan 1996 04:55:03 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by Root.COM (8.6.12/8.6.5) with SMTP id EAA06699; Thu, 18 Jan 1996 04:54:54 -0800 Message-Id: <199601181254.EAA06699@Root.COM> X-Authentication-Warning: implode.Root.COM: Host localhost didn't use HELO protocol To: davide@galactica.it cc: hackers@FreeBSD.org Subject: Re: panic !! In-reply-to: Your message of "18 Jan 1996 12:00:32 GMT." <199601181100.DAA25186@freefall.freebsd.org> From: David Greenman Reply-To: davidg@Root.COM Date: Thu, 18 Jan 1996 04:54:54 -0800 Sender: owner-hackers@FreeBSD.org Precedence: bulk >Sometimes my FreeBSD 2.0 reboots saying: >Panic: kmem_map (or mb_map) too small ! > >I know that this problem is caused by a vm problem, >My system has 48mb Ram ... I think that's' enought... >Can anyone help me to avoi this problem ? >Can I increase the size of these maps ? The panic indicates that the system ran out of virtual memory for network buffers (specifically, mbuf clusters). You can increase the amount of VM avaliable for mbuf clusters by adding: options "NMBCLUSTERS=" ...to your kernel config file, where is a number in the range 512-4096, depending on the number of concurrent TCP connections you need to support. I'd recommend trying 2048 - this should get rid of the panic completely. You can monitor the number of mbuf clusters allocated/in use on the system with netstat -m. -DG David Greenman Core Team/Principal Architect, The FreeBSD Project