diff --git a/sys/cam/ata/ata_xpt.c b/sys/cam/ata/ata_xpt.c index 4021298354d7..a86796f30715 100644 --- a/sys/cam/ata/ata_xpt.c +++ b/sys/cam/ata/ata_xpt.c @@ -799,6 +799,16 @@ probedone(struct cam_periph *periph, union ccb *done_ccb) status == CAM_ATA_STATUS_ERROR) { goto noerror; + /* + * Some old WD SATA disks have broken SPINUP handling. + * If we really fail to spin up the disk, then there will be + * some media access errors later on, but at least we will + * have a device to interact with for recovery attempts. + */ + } else if (softc->action == PROBE_SPINUP && + status == CAM_ATA_STATUS_ERROR) { + goto noerror; + /* * Some HP SATA disks report supported DMA Auto-Activation, * but return ABORT on attempt to enable it.