The debug message should have been removed since r145686. Index: sys/vm/uma_core.c =================================================================== --- sys/vm/uma_core.c (revision 270962) +++ sys/vm/uma_core.c (working copy) @@ -1833,9 +1833,6 @@ uma_startup(void *bootmem, int boot_pages) zone_ctor(zones, sizeof(struct uma_zone), &args, M_WAITOK); #ifdef UMA_DEBUG - printf("Initializing pcpu cache locks.\n"); -#endif -#ifdef UMA_DEBUG printf("Creating slab and hash zones.\n"); #endif
A commit references this bug: Author: alc Date: Wed Dec 31 17:44:58 UTC 2014 New revision: 276474 URL: https://svnweb.freebsd.org/changeset/base/276474 Log: Eliminate a stale debug message. The per-CPU cache locks were replaced by critical sections in r145686. PR: 193254 Submitted by: luke.tw@gmail.com MFC after: 3 days Changes: head/sys/vm/uma_core.c
Committed as 276474.