isci: Changes in isci_host_completion_routine

Changes to move management of the reqs_in_process entry for the request here.
Made changes to note when the task is already in the abort path and
cannot be completed through callbacks.

Signed-off-by: Jeff Skirvin <jeffrey.d.skirvin@intel.com>
Signed-off-by: Jacek Danecki <Jacek.Danecki@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
Jeff Skirvin
2011-03-04 14:06:40 -08:00
committed by Dan Williams
parent 18d3d72a42
commit 11b00c194c
3 changed files with 64 additions and 25 deletions

View File

@@ -836,7 +836,7 @@ static void isci_task_save_for_upper_layer_completion(
status);
/* Add to the aborted list. */
list_add(&request->completed_node,
&host->requests_to_abort);
&host->requests_to_errorback);
break;
default:
@@ -849,7 +849,7 @@ static void isci_task_save_for_upper_layer_completion(
/* Add to the aborted list. */
list_add(&request->completed_node,
&host->requests_to_abort);
&host->requests_to_errorback);
break;
}
}
@@ -1185,14 +1185,6 @@ void isci_request_io_request_complete(
*/
request->sci_request_handle = NULL;
/* Only remove the request from the remote device list
* of pending requests if we have not requested error
* handling on this request.
*/
if (complete_to_host != isci_perform_error_io_completion)
list_del_init(&request->dev_node);
/* Save possible completion ptr. */
io_request_completion = request->io_request_completion;