From owner-svn-src-all@FreeBSD.ORG Fri Jul 12 15:08:38 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 374B594D; Fri, 12 Jul 2013 15:08:38 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0FA4B1B4B; Fri, 12 Jul 2013 15:08:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6CF8bb4042951; Fri, 12 Jul 2013 15:08:37 GMT (envelope-from pluknet@svn.freebsd.org) Received: (from pluknet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6CF8bbd042950; Fri, 12 Jul 2013 15:08:37 GMT (envelope-from pluknet@svn.freebsd.org) Message-Id: <201307121508.r6CF8bbd042950@svn.freebsd.org> From: Sergey Kandaurov Date: Fri, 12 Jul 2013 15:08:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253270 - head/share/man/man9 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 12 Jul 2013 15:08:38 -0000 Author: pluknet Date: Fri Jul 12 15:08:37 2013 New Revision: 253270 URL: http://svnweb.freebsd.org/changeset/base/253270 Log: - mdoc: remove superfluous paragraph macros. - fix typo in xref manual section number. Modified: head/share/man/man9/vmem.9 Modified: head/share/man/man9/vmem.9 ============================================================================== --- head/share/man/man9/vmem.9 Fri Jul 12 14:58:09 2013 (r253269) +++ head/share/man/man9/vmem.9 Fri Jul 12 15:08:37 2013 (r253270) @@ -76,7 +76,6 @@ other than virtual memory. .\" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .Fn vmem_create creates a new vmem arena. -.Pp .Bl -tag -width qcache_max .It Fa name The string to describe the vmem. @@ -129,7 +128,6 @@ wait flag. .\" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .Fn vmem_xalloc allocates a resource from the arena. -.Pp .Bl -tag -width nocross .It Fa vm The arena which we allocate from. @@ -169,7 +167,7 @@ Specify the maximum address which can be if the caller does not care. .It Fa flags A bitwise OR of an allocation strategy and a -.Xr malloc 8 +.Xr malloc 9 wait flag. The allocation strategy is one of .Dv M_FIRSTFIT @@ -189,7 +187,6 @@ overwrites it with the start address of frees resource allocated by .Fn vmem_xalloc to the arena. -.Pp .Bl -tag -width addr .It Fa vm The arena which we free to. @@ -211,7 +208,6 @@ argument used for .\" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .Fn vmem_alloc allocates a resource from the arena. -.Pp .Bl -tag -width flags .It Fa vm The arena which we allocate from. @@ -237,7 +233,6 @@ overwrites it with the start address of frees resource allocated by .Fn vmem_alloc to the arena. -.Pp .Bl -tag -width addr .It Fa vm The arena which we free to. @@ -259,7 +254,6 @@ argument used for .\" ------------------------------------------------------------ .Fn vmem_destroy destroys a vmem arena. -.Pp .Bl -tag -width vm .It Fa vm The vmem arena being destroyed. @@ -315,7 +309,6 @@ The port was made by .An "Jeff Roberson" . .Sh BUGS -.Pp .Nm relies on .Xr malloc 9 ,