Fix function name in keg_cachespread_init() assert.

This commit is contained in:
Gleb Smirnoff 2012-08-26 09:54:11 +00:00
parent 7b957f4fe7
commit 42321809c4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=239710

View File

@ -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));
}