From owner-cvs-all@FreeBSD.ORG Wed Feb 7 05:46:32 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C472616A403; Wed, 7 Feb 2007 05:46:32 +0000 (UTC) (envelope-from alc@cs.rice.edu) Received: from mail.cs.rice.edu (mail.cs.rice.edu [128.42.1.31]) by mx1.freebsd.org (Postfix) with ESMTP id 93D5713C49D; Wed, 7 Feb 2007 05:46:32 +0000 (UTC) (envelope-from alc@cs.rice.edu) Received: from mail.cs.rice.edu (localhost.localdomain [127.0.0.1]) by mail.cs.rice.edu (Postfix) with ESMTP id 4531C2C2AAE; Tue, 6 Feb 2007 23:46:32 -0600 (CST) X-Virus-Scanned: by amavis-2.4.0 at mail.cs.rice.edu Received: from mail.cs.rice.edu ([127.0.0.1]) by mail.cs.rice.edu (mail.cs.rice.edu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tDSsX1zmNpv7; Tue, 6 Feb 2007 23:46:31 -0600 (CST) Received: from [216.63.78.18] (adsl-216-63-78-18.dsl.hstntx.swbell.net [216.63.78.18]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.cs.rice.edu (Postfix) with ESMTP id 7BAF12C2A9B; Tue, 6 Feb 2007 23:46:31 -0600 (CST) Message-ID: <45C967B6.5020304@cs.rice.edu> Date: Tue, 06 Feb 2007 23:46:30 -0600 From: Alan Cox User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.13) Gecko/20061115 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Robert Watson References: <200702050602.l1562tnI034504@repoman.freebsd.org> <20070206115809.K32369@fledge.watson.org> In-Reply-To: <20070206115809.K32369@fledge.watson.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Alan Cox , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_contig.c vm_page.c vm_pageq.c vm_zeroidle.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: Wed, 07 Feb 2007 05:46:32 -0000 Robert Watson wrote: > On Mon, 5 Feb 2007, Alan Cox wrote: > >> alc 2007-02-05 06:02:55 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/vm vm_contig.c vm_page.c vm_pageq.c >> vm_zeroidle.c >> Log: >> Change the free page queue lock from a spin mutex to a default >> (blocking) >> mutex. With the demise of Alpha support, there is no longer a >> reason for >> it to be a spin mutex. > > > Is there any measurable performance change from this? In the past, > I've observed significantly higher cost for acquiring spin mutexes vs. > sleep mutexes in micro-benchmarking. The change was most striking on > Intel Xeon P4 hardware with an SMP kernel, and quite a bit less so on > other platforms. I didn't notice any difference for buildworld on a 4-way Opteron. Alan