From owner-svn-src-all@freebsd.org Wed Jul 1 10:04:23 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C2FD990748; Wed, 1 Jul 2015 10:04:23 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 9D7C71E10; Wed, 1 Jul 2015 10:04:12 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id NAA07445; Wed, 01 Jul 2015 13:04:02 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1ZAEs6-0008oh-23; Wed, 01 Jul 2015 13:04:02 +0300 Message-ID: <5593BADF.6060307@FreeBSD.org> Date: Wed, 01 Jul 2015 13:03:11 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Glen Barber , src-committers@FreeBSD.org, svn-src-all@FreeBSD.org, svn-src-head@FreeBSD.org Subject: Re: svn commit: r284829 - in head/release/doc: en_US.ISO8859-1/relnotes share/xml References: <201506251844.t5PIiWS7047224@svn.freebsd.org> In-Reply-To: <201506251844.t5PIiWS7047224@svn.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jul 2015 10:04:23 -0000 On 25/06/2015 21:44, Glen Barber wrote: > Author: gjb > Date: Thu Jun 25 18:44:31 2015 > New Revision: 284829 > URL: https://svnweb.freebsd.org/changeset/base/284829 > > Log: > Document r284297, lockstat(1) improvements. > Add ClusterHQ to sponsors.ent. Glen, thank you very much. A couple of small suggestions / corrections below: > Sponsored by: The FreeBSD Foundation > > Modified: > head/release/doc/en_US.ISO8859-1/relnotes/article.xml > head/release/doc/share/xml/sponsor.ent > > Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml > ============================================================================== > --- head/release/doc/en_US.ISO8859-1/relnotes/article.xml Thu Jun 25 18:44:29 2015 (r284828) > +++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml Thu Jun 25 18:44:31 2015 (r284829) > @@ -345,6 +345,32 @@ > would cause final results to be sent to &man.stderr.4; when > receiving the SIGINFO signal has been > fixed. > + > + + sponsor="&clusterhq;">The &man.lockstat.1; utility has been > + updated with several improvements: > + > + > + > + Spin locks are now reported as the amount of time > + spinning, instead of loop iterations. > + > + > + > + Reader locks are now recognized as adaptive and can > + spin on &os;. Reader locks are now recognized as adaptive that can spin [contesting threads can both block/sleep and spin on the adaptive locks depending on a state of a current lock holder -- avg]. > + > + > + > + Lock aquisition events for successful reader try-lock > + events are now reported. > + > + > + > + Spin-and-block events that occur before lock > + acquisition are now reported. > + Spin and block events [two different kinds of events -- avg] are now reported before lock acquisition events [temporal order -- avg]. > + > > > > > Modified: head/release/doc/share/xml/sponsor.ent > ============================================================================== > --- head/release/doc/share/xml/sponsor.ent Thu Jun 25 18:44:29 2015 (r284828) > +++ head/release/doc/share/xml/sponsor.ent Thu Jun 25 18:44:31 2015 (r284829) > @@ -15,6 +15,8 @@ > > > > + > + > > > > -- Andriy Gapon