View | Details | Raw Unified | Return to bug 279978
Collapse All | Expand All

(-)b/sys/dev/ahci/ahci.c (-1 / +1 lines)
Lines 2175-2181 ahci_issue_recovery(struct ahci_channel *ch) Link Here
2175
	}
2175
	}
2176
	xpt_setup_ccb(&ccb->ccb_h, ch->hold[i]->ccb_h.path,
2176
	xpt_setup_ccb(&ccb->ccb_h, ch->hold[i]->ccb_h.path,
2177
	    ch->hold[i]->ccb_h.pinfo.priority);
2177
	    ch->hold[i]->ccb_h.pinfo.priority);
2178
	if (ccb->ccb_h.func_code == XPT_ATA_IO) {
2178
	if (ch->hold[i]->ccb_h.func_code == XPT_ATA_IO) {
2179
		/* READ LOG */
2179
		/* READ LOG */
2180
		ccb->ccb_h.recovery_type = RECOVERY_READ_LOG;
2180
		ccb->ccb_h.recovery_type = RECOVERY_READ_LOG;
2181
		ccb->ccb_h.func_code = XPT_ATA_IO;
2181
		ccb->ccb_h.func_code = XPT_ATA_IO;
(-)b/sys/dev/mvs/mvs.c (-1 / +1 lines)
Lines 1798-1804 mvs_issue_recovery(device_t dev) Link Here
1798
	}
1798
	}
1799
	xpt_setup_ccb(&ccb->ccb_h, ch->hold[i]->ccb_h.path,
1799
	xpt_setup_ccb(&ccb->ccb_h, ch->hold[i]->ccb_h.path,
1800
	    ch->hold[i]->ccb_h.pinfo.priority);
1800
	    ch->hold[i]->ccb_h.pinfo.priority);
1801
	if (ccb->ccb_h.func_code == XPT_ATA_IO) {
1801
	if (ch->hold[i]->ccb_h.func_code == XPT_ATA_IO) {
1802
		/* READ LOG */
1802
		/* READ LOG */
1803
		ccb->ccb_h.recovery_type = RECOVERY_READ_LOG;
1803
		ccb->ccb_h.recovery_type = RECOVERY_READ_LOG;
1804
		ccb->ccb_h.func_code = XPT_ATA_IO;
1804
		ccb->ccb_h.func_code = XPT_ATA_IO;
(-)b/sys/dev/siis/siis.c (-1 / +1 lines)
Lines 1394-1400 siis_issue_recovery(device_t dev) Link Here
1394
	}
1394
	}
1395
	xpt_setup_ccb(&ccb->ccb_h, ch->hold[i]->ccb_h.path,
1395
	xpt_setup_ccb(&ccb->ccb_h, ch->hold[i]->ccb_h.path,
1396
	    ch->hold[i]->ccb_h.pinfo.priority);
1396
	    ch->hold[i]->ccb_h.pinfo.priority);
1397
	if (ccb->ccb_h.func_code == XPT_ATA_IO) {
1397
	if (ch->hold[i]->ccb_h.func_code == XPT_ATA_IO) {
1398
		/* READ LOG */
1398
		/* READ LOG */
1399
		ccb->ccb_h.recovery_type = RECOVERY_READ_LOG;
1399
		ccb->ccb_h.recovery_type = RECOVERY_READ_LOG;
1400
		ccb->ccb_h.func_code = XPT_ATA_IO;
1400
		ccb->ccb_h.func_code = XPT_ATA_IO;

Return to bug 279978