cciss: fix missed command status value CMD_UNABORTABLE
and fix a nearby typo, "do" that should have been "due" Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com> Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
This commit is contained in:
parent
fcab1c112a
commit
6d9a4f9e21
@ -2691,6 +2691,10 @@ static int process_sendcmd_error(ctlr_info_t *h, CommandList_struct *c)
|
||||
c->Request.CDB[0]);
|
||||
return_status = IO_NEEDS_RETRY;
|
||||
break;
|
||||
case CMD_UNABORTABLE:
|
||||
dev_warn(&h->pdev->dev, "cmd unabortable\n");
|
||||
return_status = IO_ERROR;
|
||||
break;
|
||||
default:
|
||||
dev_warn(&h->pdev->dev, "cmd 0x%02x returned "
|
||||
"unknown status %x\n", c->Request.CDB[0],
|
||||
@ -3141,6 +3145,13 @@ static inline void complete_command(ctlr_info_t *h, CommandList_struct *cmd,
|
||||
(cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
|
||||
DID_PASSTHROUGH : DID_ERROR);
|
||||
break;
|
||||
case CMD_UNABORTABLE:
|
||||
dev_warn(&h->pdev->dev, "cmd %p unabortable\n", cmd);
|
||||
rq->errors = make_status_bytes(SAM_STAT_GOOD,
|
||||
cmd->err_info->CommandStatus, DRIVER_OK,
|
||||
cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC ?
|
||||
DID_PASSTHROUGH : DID_ERROR);
|
||||
break;
|
||||
default:
|
||||
dev_warn(&h->pdev->dev, "cmd %p returned "
|
||||
"unknown status %x\n", cmd,
|
||||
|
@ -833,13 +833,18 @@ static void complete_scsi_command(CommandList_struct *c, int timeout,
|
||||
break;
|
||||
case CMD_UNSOLICITED_ABORT:
|
||||
cmd->result = DID_ABORT << 16;
|
||||
dev_warn(&h->pdev->dev, "%p aborted do to an "
|
||||
dev_warn(&h->pdev->dev, "%p aborted due to an "
|
||||
"unsolicited abort\n", c);
|
||||
break;
|
||||
case CMD_TIMEOUT:
|
||||
cmd->result = DID_TIME_OUT << 16;
|
||||
dev_warn(&h->pdev->dev, "%p timedout\n", c);
|
||||
break;
|
||||
case CMD_UNABORTABLE:
|
||||
cmd->result = DID_ERROR << 16;
|
||||
dev_warn(&h->pdev->dev, "c %p command "
|
||||
"unabortable\n", c);
|
||||
break;
|
||||
default:
|
||||
cmd->result = DID_ERROR << 16;
|
||||
dev_warn(&h->pdev->dev,
|
||||
@ -1016,11 +1021,15 @@ cciss_scsi_interpret_error(ctlr_info_t *h, CommandList_struct *c)
|
||||
break;
|
||||
case CMD_UNSOLICITED_ABORT:
|
||||
dev_warn(&h->pdev->dev,
|
||||
"%p aborted do to an unsolicited abort\n", c);
|
||||
"%p aborted due to an unsolicited abort\n", c);
|
||||
break;
|
||||
case CMD_TIMEOUT:
|
||||
dev_warn(&h->pdev->dev, "%p timedout\n", c);
|
||||
break;
|
||||
case CMD_UNABORTABLE:
|
||||
dev_warn(&h->pdev->dev,
|
||||
"%p unabortable\n", c);
|
||||
break;
|
||||
default:
|
||||
dev_warn(&h->pdev->dev,
|
||||
"%p returned unknown status %x\n",
|
||||
|
Loading…
Reference in New Issue
Block a user