diff options
author | glebius <glebius@FreeBSD.org> | 2012-12-21 10:09:45 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2012-12-21 10:09:45 +0000 |
commit | 1292747048991acc3e6b9238ad78a37864bfafe3 (patch) | |
tree | 540043123a79efd97d5599043fd071f5201ed6bf /sys/vm/uma_int.h | |
parent | ef0b33ada2623351a3f5b05880cb18ac0d729d3a (diff) | |
download | FreeBSD-src-1292747048991acc3e6b9238ad78a37864bfafe3.zip FreeBSD-src-1292747048991acc3e6b9238ad78a37864bfafe3.tar.gz |
Comment fix: there is no ub_ptr, instead explain meaning of uz_count
field verbally.
Diffstat (limited to 'sys/vm/uma_int.h')
-rw-r--r-- | sys/vm/uma_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/uma_int.h b/sys/vm/uma_int.h index 71788ea..aaec926 100644 --- a/sys/vm/uma_int.h +++ b/sys/vm/uma_int.h @@ -329,7 +329,7 @@ struct uma_zone { u_int64_t uz_fails; /* Total number of alloc failures */ u_int64_t uz_sleeps; /* Total number of alloc sleeps */ uint16_t uz_fills; /* Outstanding bucket fills */ - uint16_t uz_count; /* Highest value ub_ptr can have */ + uint16_t uz_count; /* Highest amount of items in bucket */ /* The next three fields are used to print a rate-limited warnings. */ const char *uz_warning; /* Warning to print on failure */ |