diff options
author | alc <alc@FreeBSD.org> | 2014-12-31 17:44:57 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2014-12-31 17:44:57 +0000 |
commit | b48d1f4410c128a4780b0ffe076b4d5097db68f8 (patch) | |
tree | a393169104354fefceac4e18adc61521dca51605 /sys/vm | |
parent | 58aef892d38f74142b5bf4024b3ee17a49e315de (diff) | |
download | FreeBSD-src-b48d1f4410c128a4780b0ffe076b4d5097db68f8.zip FreeBSD-src-b48d1f4410c128a4780b0ffe076b4d5097db68f8.tar.gz |
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
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/uma_core.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c index 574eba0..5e8eb60 100644 --- a/sys/vm/uma_core.c +++ b/sys/vm/uma_core.c @@ -1834,9 +1834,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 |