svn commit: r265636 - stable/9/sys/cam

Alexander Motin mav at FreeBSD.org
Thu May 8 07:02:47 UTC 2014


Author: mav
Date: Thu May  8 07:02:46 2014
New Revision: 265636
URL: http://svnweb.freebsd.org/changeset/base/265636

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

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

Modified: stable/9/sys/cam/cam_xpt.c
==============================================================================
--- stable/9/sys/cam/cam_xpt.c	Thu May  8 07:01:54 2014	(r265635)
+++ stable/9/sys/cam/cam_xpt.c	Thu May  8 07:02:46 2014	(r265636)
@@ -792,7 +792,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-9 mailing list