Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 8 May 2014 07:02:47 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r265636 - stable/9/sys/cam
Message-ID:  <201405080702.s4872lt1049585@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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();



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405080702.s4872lt1049585>