svn commit: r239710 - head/sys/vm
Gleb Smirnoff
glebius at FreeBSD.org
Sun Aug 26 09:54:11 UTC 2012
Author: glebius
Date: Sun Aug 26 09:54:11 2012
New Revision: 239710
URL: http://svn.freebsd.org/changeset/base/239710
Log:
Fix function name in keg_cachespread_init() assert.
Modified:
head/sys/vm/uma_core.c
Modified: head/sys/vm/uma_core.c
==============================================================================
--- head/sys/vm/uma_core.c Sun Aug 26 09:21:59 2012 (r239709)
+++ head/sys/vm/uma_core.c Sun Aug 26 09:54:11 2012 (r239710)
@@ -1238,7 +1238,7 @@ keg_cachespread_init(uma_keg_t keg)
keg->uk_ipers = ((pages * PAGE_SIZE) + trailer) / rsize;
keg->uk_flags |= UMA_ZONE_OFFPAGE | UMA_ZONE_VTOSLAB;
KASSERT(keg->uk_ipers <= uma_max_ipers,
- ("keg_small_init: keg->uk_ipers too high(%d) increase max_ipers",
+ ("%s: keg->uk_ipers too high(%d) increase max_ipers", __func__,
keg->uk_ipers));
}
More information about the svn-src-all
mailing list