svn commit: r210845 - head/sys/mips/rmi

Jayachandran C. jchandra at FreeBSD.org
Wed Aug 4 14:03:24 UTC 2010


Author: jchandra
Date: Wed Aug  4 14:03:23 2010
New Revision: 210845
URL: http://svn.freebsd.org/changeset/base/210845

Log:
  ithd_name no longer defined, use td_name. Fix compile with KTR enabled.

Modified:
  head/sys/mips/rmi/on_chip.c

Modified: head/sys/mips/rmi/on_chip.c
==============================================================================
--- head/sys/mips/rmi/on_chip.c	Wed Aug  4 13:20:34 2010	(r210844)
+++ head/sys/mips/rmi/on_chip.c	Wed Aug  4 14:03:23 2010	(r210845)
@@ -356,7 +356,7 @@ create_msgring_thread(int core, int cpu)
 	sched_class(td, PRI_ITHD);
 	sched_add(td, SRQ_INTR);
 	thread_unlock(td);
-	CTR2(KTR_INTR, "%s: created %s", __func__, ithd_name[core]);
+	CTR2(KTR_INTR, "%s: created %s", __func__, td->td_name);
 }
 
 int 


More information about the svn-src-head mailing list