summaryrefslogtreecommitdiffstats
path: root/sys/cam/scsi/scsi_pt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/cam/scsi/scsi_pt.c')
-rw-r--r--sys/cam/scsi/scsi_pt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/cam/scsi/scsi_pt.c b/sys/cam/scsi/scsi_pt.c
index 8f51ea8..541964f 100644
--- a/sys/cam/scsi/scsi_pt.c
+++ b/sys/cam/scsi/scsi_pt.c
@@ -490,8 +490,7 @@ ptasync(void *callback_arg, u_int32_t code, struct cam_path *path, void *arg)
* that will occur.
*/
softc->flags |= PT_FLAG_RETRY_UA;
- for (ccbh = LIST_FIRST(&softc->pending_ccbs);
- ccbh != NULL; ccbh = LIST_NEXT(ccbh, periph_links.le))
+ LIST_FOREACH(ccbh, &softc->pending_ccbs, periph_links.le)
ccbh->ccb_state |= PT_CCB_RETRY_UA;
splx(s);
/* FALLTHROUGH */
OpenPOWER on IntegriCloud