From owner-p4-projects Mon Apr 29 11:51:27 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0610137B416; Mon, 29 Apr 2002 11:51:11 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 63B3A37B41C for ; Mon, 29 Apr 2002 11:51:10 -0700 (PDT) Received: (from perforce@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3TIpAI63141 for perforce@freebsd.org; Mon, 29 Apr 2002 11:51:10 -0700 (PDT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Mon, 29 Apr 2002 11:51:10 -0700 (PDT) Message-Id: <200204291851.g3TIpAI63141@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson Subject: PERFORCE change 10467 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://people.freebsd.org/~peter/p4db/chv.cgi?CH=10467 Change 10467 by rwatson@rwatson_curry on 2002/04/29 11:50:48 Integ kern_malloc.c stability fix to MAC branch from TrustedBSD base branch. Affected files ... ... //depot/projects/trustedbsd/mac/sys/kern/kern_malloc.c#8 integrate Differences ... ==== //depot/projects/trustedbsd/mac/sys/kern/kern_malloc.c#8 (text+ko) ==== @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_malloc.c 8.3 (Berkeley) 1/4/94 - * $FreeBSD: src/sys/kern/kern_malloc.c,v 1.100 2002/04/23 18:50:25 phk Exp $ + * $FreeBSD: src/sys/kern/kern_malloc.c,v 1.102 2002/04/29 17:53:23 rwatson Exp $ */ #include "opt_vm.h" @@ -91,7 +91,7 @@ #define KMEM_ZBASE 16 #define KMEM_ZMASK (KMEM_ZBASE - 1) -#define KMEM_ZMAX 8192 +#define KMEM_ZMAX 65536 #define KMEM_ZSIZE (KMEM_ZMAX >> KMEM_ZSHIFT) static u_int8_t kmemsize[KMEM_ZSIZE + 1]; @@ -111,6 +111,9 @@ {2048, "2048", NULL}, {4096, "4096", NULL}, {8192, "8192", NULL}, + {16384, "16384", NULL}, + {32768, "32768", NULL}, + {65536, "65536", NULL}, {0, NULL}, }; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message