diff options
author | Jeff Skirvin <jeffrey.d.skirvin@intel.com> | 2012-03-09 01:41:58 -0500 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2012-05-17 17:33:40 -0400 |
commit | e3c84dfdb8f4c675b0ba5cf3fa252dc4056b7ddd (patch) | |
tree | d7c7216ccd4740f41a926cd467d101e7a01339ff /drivers/scsi | |
parent | c94fc1ad25de885e1c59f714f19bc726e7a21caf (diff) |
isci: Fix the terminated I/O to not call sas_task_abort().
This addresses a regression from the commit "isci: Redesign
device suspension, abort, cleanup." in which the sas_task end
condition for terminated I/Os was made to call back on
sas_task_abort()".
This commit will be rolled into the original.
Signed-off-by: Jeff Skirvin <jeffrey.d.skirvin@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/isci/request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/isci/request.c b/drivers/scsi/isci/request.c index 48b409d68c0d..809d3683d0c9 100644 --- a/drivers/scsi/isci/request.c +++ b/drivers/scsi/isci/request.c | |||
@@ -2832,7 +2832,7 @@ static void isci_request_io_request_complete(struct isci_host *ihost, | |||
2832 | __func__, request, task); | 2832 | __func__, request, task); |
2833 | 2833 | ||
2834 | /* The request was terminated explicitly. */ | 2834 | /* The request was terminated explicitly. */ |
2835 | clear_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); | 2835 | set_bit(IREQ_COMPLETE_IN_TARGET, &request->flags); |
2836 | response = SAS_TASK_UNDELIVERED; | 2836 | response = SAS_TASK_UNDELIVERED; |
2837 | 2837 | ||
2838 | /* See if the device has been/is being stopped. Note | 2838 | /* See if the device has been/is being stopped. Note |