svn commit: r256234 - stable/9/sys/dev/mps

Alexander Motin mav at FreeBSD.org
Wed Oct 9 19:55:56 UTC 2013


Author: mav
Date: Wed Oct  9 19:55:55 2013
New Revision: 256234
URL: http://svnweb.freebsd.org/changeset/base/256234

Log:
  MFC r241759 (by jwd):
  Don't lose the 255'th disk behind the initiator.

Modified:
  stable/9/sys/dev/mps/mps_sas.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/mps/mps_sas.c
==============================================================================
--- stable/9/sys/dev/mps/mps_sas.c	Wed Oct  9 19:53:42 2013	(r256233)
+++ stable/9/sys/dev/mps/mps_sas.c	Wed Oct  9 19:55:55 2013	(r256234)
@@ -961,7 +961,7 @@ mpssas_action(struct cam_sim *sim, union
 		cpi->hba_eng_cnt = 0;
 		cpi->max_target = sassc->sc->facts->MaxTargets - 1;
 		cpi->max_lun = 255;
-		cpi->initiator_id = 255;
+		cpi->initiator_id = sassc->sc->facts->MaxTargets - 1;
 		strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
 		strncpy(cpi->hba_vid, "LSILogic", HBA_IDLEN);
 		strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);


More information about the svn-src-stable-9 mailing list