PERFORCE change 164298 for review

Alexander Motin mav at FreeBSD.org
Sat Jun 13 21:45:39 UTC 2009


http://perforce.freebsd.org/chv.cgi?CH=164298

Change 164298 by mav at mav_mavbook on 2009/06/13 21:44:42

	Fix copy/paste bug.

Affected files ...

.. //depot/projects/scottl-camlock/src/sys/cam/ata/ata_xpt.c#18 edit

Differences ...

==== //depot/projects/scottl-camlock/src/sys/cam/ata/ata_xpt.c#18 (text+ko) ====

@@ -355,7 +355,7 @@
 		      MSG_SIMPLE_Q_TAG,
 		      /*data_ptr*/NULL,
 		      /*dxfer_len*/0,
-		      (done_ccb->ccb_h.target_id == 15 ? 3 : 15) * 1000);
+		      (start_ccb->ccb_h.target_id == 15 ? 3 : 15) * 1000);
 		ata_reset_cmd(ataio);
 		break;
 	case PROBE_IDENTIFY:
@@ -1029,7 +1029,7 @@
 				softc->pm_found |= (1 << softc->pm_step);
 				softc->pm_step++;
 			} else {
-				if (softc->pm_try < 50) {
+				if (softc->pm_try < 100) {
 					DELAY(10000);
 					softc->pm_try++;
 				} else


More information about the p4-projects mailing list