aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/uma.h
diff options
context:
space:
mode:
authorBosko Milekic <bmilekic@FreeBSD.org>2004-06-01 01:36:26 +0000
committerBosko Milekic <bmilekic@FreeBSD.org>2004-06-01 01:36:26 +0000
commitb83e441b9f4c1fef1d82d1752c138e7ca5767060 (patch)
treee8b5248577f5f3a1dbf626e5375c3bd2f8994a40 /sys/vm/uma.h
parent0c56527f65620028a59792b2cbaa417cf9f32172 (diff)
downloadsrc-b83e441b9f4c1fef1d82d1752c138e7ca5767060.tar.gz
src-b83e441b9f4c1fef1d82d1752c138e7ca5767060.zip
Fix a comment above uma_zsecond_create(), describing its arguments.
It doesn't take 'align' and 'flags' but 'master' instead, which is a reference to the Master Zone, containing the backing Keg. Pointed out by: Tim Robbins (tjr)
Notes
Notes: svn path=/head/; revision=129913
Diffstat (limited to 'sys/vm/uma.h')
-rw-r--r--sys/vm/uma.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/uma.h b/sys/vm/uma.h
index 0d34ca375e55..ff7975d4eb30 100644
--- a/sys/vm/uma.h
+++ b/sys/vm/uma.h
@@ -185,9 +185,9 @@ uma_zone_t uma_zcreate(char *name, size_t size, uma_ctor ctor, uma_dtor dtor,
* zinit/zfini (unset by default for master zone) with
* uma_zone_set_zinit/zfini() (note subtle 'z' prefix).
*
- * align A bitmask that corisponds to the requested alignment
- * eg 4 would be 0x3
- * flags A set of parameters that control the behavior of the zone
+ * master A reference to this zone's Master Zone (Primary Zone),
+ * which contains the backing Keg for the Secondary Zone
+ * being added.
*
* Returns:
* A pointer to a structure which is intended to be opaque to users of