From owner-cvs-all@FreeBSD.ORG Sat Sep 20 09:43:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC3EF16A4B3; Sat, 20 Sep 2003 09:43:32 -0700 (PDT) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBF4D43FF7; Sat, 20 Sep 2003 09:43:31 -0700 (PDT) (envelope-from jake@locore.ca) Received: by k6.locore.ca (Postfix, from userid 1000) id E747D1AFB2; Sat, 20 Sep 2003 12:42:35 -0400 (EDT) Date: Sat, 20 Sep 2003 12:42:35 -0400 From: Jake Burkholder To: Jeff Roberson Message-ID: <20030920164235.GM981@locore.ca> References: <200309190853.h8J8rX18074215@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200309190853.h8J8rX18074215@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm uma_core.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Sep 2003 16:43:32 -0000 Apparently, On Fri, Sep 19, 2003 at 01:53:33AM -0700, Jeff Roberson said words to the effect of; > jeff 2003/09/19 01:53:33 PDT > > FreeBSD src repository > > Modified files: > sys/vm uma_core.c > Log: > - Move the logic for dealing with the uma_boot_pages cache into the > page_alloc() function from the slab_zalloc() function. This allows us > to unconditionally call uz_allocf(). > - In page_alloc() cleanup the boot_pages logic some. Previously memory from > this cache that was not used by the time the system started was left in > the cache and never used. Typically this wasn't more than a few pages, > but now we will use this cache so long as memory is available. This doesn't take UMA_MD_SMALL_ALLOC into account. uma_small_alloc doesn't know about the boot pages so it wanders into the vm system too early. Jake > > Revision Changes Path > 1.79 +22 -21 src/sys/vm/uma_core.c >