aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2018-08-23 23:24:28 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2018-08-23 23:24:28 +0000
commita307fb5b0c6093216eccc5d317ed194cecdcc7ff (patch)
treebd996b0934b9bf8866527c126f5466d5663b1b5c
parente94a7c27df33afe469199ecbfe02436c2f0a791b (diff)
Notes
-rw-r--r--sys/vm/uma_int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/uma_int.h b/sys/vm/uma_int.h
index 2057fcf5488bd..3daa50597182c 100644
--- a/sys/vm/uma_int.h
+++ b/sys/vm/uma_int.h
@@ -188,7 +188,7 @@ struct uma_hash {
struct uma_bucket {
LIST_ENTRY(uma_bucket) ub_link; /* Link into the zone */
- int16_t ub_cnt; /* Count of free items. */
+ int16_t ub_cnt; /* Count of allocated items. */
int16_t ub_entries; /* Max items. */
void *ub_bucket[]; /* actual allocation storage */
};