From owner-cvs-all@FreeBSD.ORG Mon May 1 21:33:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 31CE916A49A; Mon, 1 May 2006 21:33:18 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 065A443D6D; Mon, 1 May 2006 21:32:58 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.255.17] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.4/8.13.4) with ESMTP id k41LWtJJ028166 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 1 May 2006 14:32:56 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <44567E83.7010705@FreeBSD.org> Date: Mon, 01 May 2006 14:32:51 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.2 (Windows/20060308) MIME-Version: 1.0 To: Peter Wemm References: <200605012122.k41LMcxB058613@repoman.freebsd.org> In-Reply-To: <200605012122.k41LMcxB058613@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 01 May 2006 21:33:18 -0000 Just curious what does it bring us in terms of performance/memory savings? -Maxim Peter Wemm wrote: > peter 2006-05-01 21:22:38 UTC > > FreeBSD src repository > > Modified files: > sys/i386/i386 pmap.c > Log: > Using an idea from Stephan Uphoff, use the empty pte's that correspond > to the unused kva in the pv memory block to thread a freelist through. > This allows us to free pages that used to be used for pv entry chunks > since we can now track holes in the kva memory block. > > Idea from: ups > > Revision Changes Path > 1.555 +115 -50 src/sys/i386/i386/pmap.c > >