In addition to r217444 ignore also ATA status errors on DMA Auto-Activation
enabling request. Some HP disks reported to return ABORT error there while declaring support for this feature.
This commit is contained in:
parent
958e4a696f
commit
025e2c1221
@ -778,6 +778,14 @@ probedone(struct cam_periph *periph, union ccb *done_ccb)
|
||||
} else if (softc->action == PROBE_SETPM &&
|
||||
status == CAM_ATA_STATUS_ERROR) {
|
||||
goto noerror;
|
||||
|
||||
/*
|
||||
* Some HP SATA disks report supported DMA Auto-Activation,
|
||||
* but return ABORT on attempt to enable it.
|
||||
*/
|
||||
} else if (softc->action == PROBE_SETDMAAA &&
|
||||
status == CAM_ATA_STATUS_ERROR) {
|
||||
goto noerror;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user