svn commit: r276474 - head/sys/vm

Alan Cox alc at FreeBSD.org
Wed Dec 31 17:44:58 UTC 2014


Author: alc
Date: Wed Dec 31 17:44:57 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 at gmail.com
  MFC after:	3 days

Modified:
  head/sys/vm/uma_core.c

Modified: head/sys/vm/uma_core.c
==============================================================================
--- head/sys/vm/uma_core.c	Wed Dec 31 16:50:46 2014	(r276473)
+++ head/sys/vm/uma_core.c	Wed Dec 31 17:44:57 2014	(r276474)
@@ -1834,9 +1834,6 @@ uma_startup(void *bootmem, int boot_page
 	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
 


More information about the svn-src-all mailing list