From owner-cvs-src@FreeBSD.ORG Thu Aug 12 04:57:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 271E616A4CF; Thu, 12 Aug 2004 04:57:57 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id A45E843D1D; Thu, 12 Aug 2004 04:57:56 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 9FD55653AD; Thu, 12 Aug 2004 05:57:55 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 03026-07-2; Thu, 12 Aug 2004 05:57:55 +0100 (BST) Received: from empiric.dek.spc.org (adsl-67-124-244-51.dsl.snfc21.pacbell.net [67.124.244.51]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id B7944653AC; Thu, 12 Aug 2004 05:57:53 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id A168A62B7; Wed, 11 Aug 2004 21:57:46 -0700 (PDT) Date: Wed, 11 Aug 2004 21:57:46 -0700 From: Bruce M Simpson To: Andre Oppermann Message-ID: <20040812045746.GD781@empiric.icir.org> Mail-Followup-To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408111726.i7BHQuPC078939@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 04:57:57 -0000 On Wed, Aug 11, 2004 at 05:26:56PM +0000, Andre Oppermann wrote: > Log: > Convert the routing table to use an UMA zone for rtentries. The zone is > called "rtentry". > > This saves a considerable amount of kernel memory. R_Zmalloc previously > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > bytes. Thank you for doing this. This was on my wishlist for some time. This is a considerable improvement. BMS