提交 cbb65c66 编写于 作者: J Jeff Skirvin 提交者: Dan Williams

isci: Code review change for completion pointer cleanup.

Since the request structure contains a pointer to the completion to be
used if the request is being aborted or terminated, there is no reason
to pass the completion as a pointer to isci_terminate_request_core().
Signed-off-by: NJeff Skirvin <jeffrey.d.skirvin@intel.com>
Signed-off-by: NJacek Danecki <Jacek.Danecki@intel.com>
Signed-off-by: NDan Williams <dan.j.williams@intel.com>
上级 f0846c68
......@@ -677,8 +677,7 @@ static void isci_request_cleanup_completed_loiterer(
static void isci_terminate_request_core(
struct isci_host *isci_host,
struct isci_remote_device *isci_device,
struct isci_request *isci_request,
struct completion *request_completion)
struct isci_request *isci_request)
{
enum sci_status status = SCI_SUCCESS;
bool was_terminated = false;
......@@ -720,6 +719,7 @@ static void isci_terminate_request_core(
*/
if (isci_request->sci_request_handle != NULL) {
was_terminated = true;
needs_cleanup_handling = true;
status = scic_controller_terminate_request(
isci_host->core_controller,
to_sci_dev(isci_device),
......@@ -744,15 +744,15 @@ static void isci_terminate_request_core(
dev_dbg(&isci_host->pdev->dev,
"%s: before completion wait (%p)\n",
__func__,
request_completion);
isci_request->io_request_completion);
/* Wait here for the request to complete. */
wait_for_completion(request_completion);
wait_for_completion(isci_request->io_request_completion);
dev_dbg(&isci_host->pdev->dev,
"%s: after completion wait (%p)\n",
__func__,
request_completion);
isci_request->io_request_completion);
}
if (needs_cleanup_handling)
......@@ -760,7 +760,10 @@ static void isci_terminate_request_core(
isci_host, isci_device, isci_request
);
}
/* Clear the completion pointer from the request. */
isci_request->io_request_completion = NULL;
}
static void isci_terminate_request(
struct isci_host *isci_host,
struct isci_remote_device *isci_device,
......@@ -800,7 +803,7 @@ static void isci_terminate_request(
* request and potentially calling up to libsas.
*/
isci_terminate_request_core(isci_host, isci_device,
isci_request, &request_completion);
isci_request);
}
}
......@@ -1268,8 +1271,7 @@ int isci_task_abort_task(struct sas_task *task)
/* Clean up the request on our side, and wait for the aborted I/O to
* complete.
*/
isci_terminate_request_core(isci_host, isci_device, old_request,
&aborted_io_completion);
isci_terminate_request_core(isci_host, isci_device, old_request);
}
/* Make sure we do not leave a reference to aborted_io_completion */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册