svn commit: r244532 - head/sys/vm

Gleb Smirnoff glebius at FreeBSD.org
Fri Dec 21 10:09:45 UTC 2012


Author: glebius
Date: Fri Dec 21 10:09:45 2012
New Revision: 244532
URL: http://svnweb.freebsd.org/changeset/base/244532

Log:
    Comment fix: there is no ub_ptr, instead explain meaning of uz_count
  field verbally.

Modified:
  head/sys/vm/uma_int.h

Modified: head/sys/vm/uma_int.h
==============================================================================
--- head/sys/vm/uma_int.h	Fri Dec 21 05:22:14 2012	(r244531)
+++ head/sys/vm/uma_int.h	Fri Dec 21 10:09:45 2012	(r244532)
@@ -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 */


More information about the svn-src-all mailing list