svn commit: r265635 - stable/10/sys/cam

Alexander Motin mav at FreeBSD.org
Thu May 8 07:01:54 UTC 2014


Author: mav
Date: Thu May  8 07:01:54 2014
New Revision: 265635
URL: http://svnweb.freebsd.org/changeset/base/265635

Log:
  MFC r264406:
  Report more readable state "-" for idle CAM scan thread.

Modified:
  stable/10/sys/cam/cam_xpt.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/cam/cam_xpt.c
==============================================================================
--- stable/10/sys/cam/cam_xpt.c	Thu May  8 07:00:45 2014	(r265634)
+++ stable/10/sys/cam/cam_xpt.c	Thu May  8 07:01:54 2014	(r265635)
@@ -768,7 +768,7 @@ xpt_scanner_thread(void *dummy)
 	for (;;) {
 		if (TAILQ_EMPTY(&xsoftc.ccb_scanq))
 			msleep(&xsoftc.ccb_scanq, &xsoftc.xpt_topo_lock, PRIBIO,
-			       "ccb_scanq", 0);
+			       "-", 0);
 		if ((ccb = (union ccb *)TAILQ_FIRST(&xsoftc.ccb_scanq)) != NULL) {
 			TAILQ_REMOVE(&xsoftc.ccb_scanq, &ccb->ccb_h, sim_links.tqe);
 			xpt_unlock_buses();


More information about the svn-src-stable mailing list