svn commit: r364424 - head/share/man/man9
Warner Losh
imp at FreeBSD.org
Thu Aug 20 16:52:34 UTC 2020
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
More information about the svn-src-head
mailing list