Commit 7d0e11fb authored by Jeremy Higdon's avatar Jeremy Higdon Committed by James Bottomley

[SCSI] qla1280.c - fix result for device Busy and Queue Full

I discovered that the qla1280 driver does not send the correct status
to the midlayer when it gets Queue Full or Busy from a device.
Signed-off-by: default avatarJeremy Higdon <jeremy@sgi.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent d335cc38
...@@ -4038,11 +4038,10 @@ qla1280_status_entry(struct scsi_qla_host *ha, struct response *pkt, ...@@ -4038,11 +4038,10 @@ qla1280_status_entry(struct scsi_qla_host *ha, struct response *pkt,
scsi_status, handle); scsi_status, handle);
} }
/* Target busy */ /* Target busy or queue full */
if (scsi_status & SS_BUSY_CONDITION && if ((scsi_status & 0xFF) == SAM_STAT_TASK_SET_FULL ||
scsi_status != SS_RESERVE_CONFLICT) { (scsi_status & 0xFF) == SAM_STAT_BUSY) {
CMD_RESULT(cmd) = CMD_RESULT(cmd) = scsi_status & 0xff;
DID_BUS_BUSY << 16 | (scsi_status & 0xff);
} else { } else {
/* Save ISP completion status */ /* Save ISP completion status */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment