svn commit: r212859 - stable/7/sys/dev/hptiop

Alexander Motin mav at FreeBSD.org
Sun Sep 19 13:49:02 UTC 2010


Author: mav
Date: Sun Sep 19 13:49:02 2010
New Revision: 212859
URL: http://svn.freebsd.org/changeset/base/212859

Log:
  MFC r209340:
  Report transport type in XPT_PATH_INQ.

Modified:
  stable/7/sys/dev/hptiop/hptiop.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/dev/hptiop/hptiop.c
==============================================================================
--- stable/7/sys/dev/hptiop/hptiop.c	Sun Sep 19 13:44:46 2010	(r212858)
+++ stable/7/sys/dev/hptiop/hptiop.c	Sun Sep 19 13:49:02 2010	(r212859)
@@ -1836,6 +1836,10 @@ scsi_done:
 		strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
 		strncpy(cpi->hba_vid, "HPT   ", HBA_IDLEN);
 		strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
+		cpi->transport = XPORT_SPI;
+		cpi->transport_version = 2;
+		cpi->protocol = PROTO_SCSI;
+		cpi->protocol_version = SCSI_REV_2;
 		cpi->ccb_h.status = CAM_REQ_CMP;
 		break;
 	}


More information about the svn-src-all mailing list