svn commit: r196900 - head/sys/cam

Alexander Motin mav at FreeBSD.org
Sun Sep 6 18:56:08 UTC 2009


Author: mav
Date: Sun Sep  6 18:56:08 2009
New Revision: 196900
URL: http://svn.freebsd.org/changeset/base/196900

Log:
  s/bus %d/scbus%d/ in some messages to correct terminology.

Modified:
  head/sys/cam/cam_xpt.c

Modified: head/sys/cam/cam_xpt.c
==============================================================================
--- head/sys/cam/cam_xpt.c	Sun Sep  6 18:49:45 2009	(r196899)
+++ head/sys/cam/cam_xpt.c	Sun Sep  6 18:56:08 2009	(r196900)
@@ -4605,7 +4605,7 @@ xptconfigfunc(struct cam_eb *bus, void *
 					      CAM_TARGET_WILDCARD,
 					      CAM_LUN_WILDCARD)) !=CAM_REQ_CMP){
 			printf("xptconfigfunc: xpt_create_path failed with "
-			       "status %#x for bus %d\n", status, bus->path_id);
+			       "status %#x for scbus%d\n", status, bus->path_id);
 			printf("xptconfigfunc: halting bus configuration\n");
 			xpt_free_ccb(work_ccb);
 			busses_to_config--;
@@ -4616,7 +4616,7 @@ xptconfigfunc(struct cam_eb *bus, void *
 		work_ccb->ccb_h.func_code = XPT_PATH_INQ;
 		xpt_action(work_ccb);
 		if (work_ccb->ccb_h.status != CAM_REQ_CMP) {
-			printf("xptconfigfunc: CPI failed on bus %d "
+			printf("xptconfigfunc: CPI failed on scbus%d "
 			       "with status %d\n", bus->path_id,
 			       work_ccb->ccb_h.status);
 			xpt_finishconfig(xpt_periph, work_ccb);


More information about the svn-src-all mailing list