From owner-cvs-sys Thu Feb 13 11:41:43 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA03235 for cvs-sys-outgoing; Thu, 13 Feb 1997 11:41:43 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA03228; Thu, 13 Feb 1997 11:41:42 -0800 (PST) Date: Thu, 13 Feb 1997 11:41:42 -0800 (PST) From: Garrett Wollman Message-Id: <199702131941.LAA03228@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/kern uipc_mbuf.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wollman 97/02/13 11:41:41 Modified: sys/kern uipc_mbuf.c Log: Provide an alternative mbuf cluster allocator which permits use of clusters greater than one page in length by calling contigmalloc1(). This uses a helper process `mclalloc' to do the allocation if the system runs out at interrupt time to avoid calling contigmalloc at high spl. It is not yet clear to me whether this works. Revision Changes Path 1.27 +46 -1 src/sys/kern/uipc_mbuf.c