Commit 2ac4b64f authored by Andrew Vasquez's avatar Andrew Vasquez Committed by James Bottomley

[SCSI] qla2xxx: Correct regression in EH abort handling.

Commit 73208dfd (qla2xxx: add
support for multi-queue adapter) inadvertently backed-out the fix
in 5bff55db (qla2xxx: Return a
FAILED status when abort mailbox-command fails.).
Signed-off-by: default avatarAndrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
parent 7c283177
...@@ -800,6 +800,7 @@ qla2xxx_eh_abort(struct scsi_cmnd *cmd) ...@@ -800,6 +800,7 @@ qla2xxx_eh_abort(struct scsi_cmnd *cmd)
if (ha->isp_ops->abort_command(vha, sp, req)) { if (ha->isp_ops->abort_command(vha, sp, req)) {
DEBUG2(printk("%s(%ld): abort_command " DEBUG2(printk("%s(%ld): abort_command "
"mbx failed.\n", __func__, vha->host_no)); "mbx failed.\n", __func__, vha->host_no));
ret = FAILED;
} else { } else {
DEBUG3(printk("%s(%ld): abort_command " DEBUG3(printk("%s(%ld): abort_command "
"mbx success.\n", __func__, vha->host_no)); "mbx success.\n", __func__, vha->host_no));
......
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