From owner-svn-src-head@FreeBSD.ORG  Wed Feb 10 19:03:48 2010
Return-Path: <owner-svn-src-head@FreeBSD.ORG>
Delivered-To: svn-src-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id C1614106566B;
	Wed, 10 Feb 2010 19:03:48 +0000 (UTC)
	(envelope-from trasz@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id B096B8FC0A;
	Wed, 10 Feb 2010 19:03:48 +0000 (UTC)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o1AJ3m0E081157;
	Wed, 10 Feb 2010 19:03:48 GMT (envelope-from trasz@svn.freebsd.org)
Received: (from trasz@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1AJ3mrc081155;
	Wed, 10 Feb 2010 19:03:48 GMT (envelope-from trasz@svn.freebsd.org)
Message-Id: <201002101903.o1AJ3mrc081155@svn.freebsd.org>
From: Edward Tomasz Napierala <trasz@FreeBSD.org>
Date: Wed, 10 Feb 2010 19:03:48 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r203762 - head/share/man/man9
X-BeenThere: svn-src-head@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: SVN commit messages for the src tree for head/-current
	<svn-src-head.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-head>,
	<mailto:svn-src-head-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-head>
List-Post: <mailto:svn-src-head@freebsd.org>
List-Help: <mailto:svn-src-head-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-head>,
	<mailto:svn-src-head-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 10 Feb 2010 19:03:48 -0000

Author: trasz
Date: Wed Feb 10 19:03:48 2010
New Revision: 203762
URL: http://svn.freebsd.org/changeset/base/203762

Log:
  Start sentences with a new line.
  
  Submitted by:	brueffer

Modified:
  head/share/man/man9/locking.9

Modified: head/share/man/man9/locking.9
==============================================================================
--- head/share/man/man9/locking.9	Wed Feb 10 18:56:49 2010	(r203761)
+++ head/share/man/man9/locking.9	Wed Feb 10 19:03:48 2010	(r203762)
@@ -152,7 +152,8 @@ Shared/exclusive locks are similar to re
 between them is that shared/exclusive locks may be held during unbounded sleep
 (and may thus perform an unbounded sleep).
 They are inherently less efficient than mutexes, reader/writer locks
-and read-mostly locks.  They don't support priority propagation.
+and read-mostly locks.
+They don't support priority propagation.
 They should be considered to be closely related to
 .Xr sleep 9 .
 In fact it could in some cases be 
@@ -192,9 +193,9 @@ Giant is an instance of a mutex, with so
 It is recursive.
 .It
 Drivers and filesystems can request that Giant be locked around them
-by not marking themselves MPSAFE.  Note that infrastructure to do this
-is slowly going away as non-MPSAFE drivers either became properly locked
-or disappear.
+by not marking themselves MPSAFE.
+Note that infrastructure to do this is slowly going away as non-MPSAFE
+drivers either became properly locked or disappear.
 .It
 Giant must be locked first before other locks.
 .It