Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Aug 2020 16:52:34 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r364424 - head/share/man/man9
Message-ID:  <202008201652.07KGqYl1094515@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Thu Aug 20 16:52:34 2020
New Revision: 364424
URL: https://svnweb.freebsd.org/changeset/base/364424

Log:
  Fix function name in zone.9
  
  uma_zone_prealloc -> uma_prealloc. There's no uma_zone_prealloc defined and the
  docs for it describe uma_prealloc exactly.

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

Modified: head/share/man/man9/zone.9
==============================================================================
--- head/share/man/man9/zone.9	Thu Aug 20 15:19:09 2020	(r364423)
+++ head/share/man/man9/zone.9	Thu Aug 20 16:52:34 2020	(r364424)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd August 3, 2020
+.Dd August 20, 2020
 .Dt UMA 9
 .Os
 .Sh NAME
@@ -394,7 +394,7 @@ This uses a guaranteed but slow path in the allocator 
 concurrency.
 .Pp
 The
-.Fn uma_zone_prealloc
+.Fn uma_prealloc
 function allocates slabs for the requested number of items, typically following
 the initial creation of a zone.
 Subsequent allocations from the zone will be satisfied using the pre-allocated
@@ -402,7 +402,7 @@ slabs.
 Note that slab allocation is performed with the
 .Dv M_WAITOK
 flag, so
-.Fn uma_zone_prealloc
+.Fn uma_prealloc
 may sleep.
 .Pp
 The



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008201652.07KGqYl1094515>