Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Jun 2009 21:45:34 GMT
From:      Alexander Motin <mav@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 164298 for review
Message-ID:  <200906132145.n5DLjYBg080764@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=164298

Change 164298 by mav@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



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