Commit 980d3aeb authored by Dan Williams's avatar Dan Williams

isci: fix isci_terminate_pending() list management

Walk through the list of pending requests being careful to consider that
multiple requests can be terminated when the lock is dropped (i.e.
invalidating the 'next' reference established by
list_for_each_entry_safe).

Also noticed that all callers to isci_terminate_pending_requests()
specifying terminating, so just drop the parameter.
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 77c852f3
...@@ -1272,7 +1272,7 @@ void isci_remote_device_nuke_requests(struct isci_host *ihost, struct isci_remot ...@@ -1272,7 +1272,7 @@ void isci_remote_device_nuke_requests(struct isci_host *ihost, struct isci_remot
"%s: idev = %p\n", __func__, idev); "%s: idev = %p\n", __func__, idev);
/* Cleanup all requests pending for this device. */ /* Cleanup all requests pending for this device. */
isci_terminate_pending_requests(ihost, idev, terminating); isci_terminate_pending_requests(ihost, idev);
dev_dbg(&ihost->pdev->dev, dev_dbg(&ihost->pdev->dev,
"%s: idev = %p, done\n", __func__, idev); "%s: idev = %p, done\n", __func__, idev);
......
...@@ -776,9 +776,8 @@ isci_request_io_request_get_next_sge(struct isci_request *request, ...@@ -776,9 +776,8 @@ isci_request_io_request_get_next_sge(struct isci_request *request,
} }
void void
isci_terminate_pending_requests(struct isci_host *isci_host, isci_terminate_pending_requests(struct isci_host *ihost,
struct isci_remote_device *isci_device, struct isci_remote_device *idev);
enum isci_request_status new_request_state);
enum sci_status enum sci_status
scic_task_request_construct(struct scic_sds_controller *scic, scic_task_request_construct(struct scic_sds_controller *scic,
struct scic_sds_remote_device *sci_dev, struct scic_sds_remote_device *sci_dev,
......
...@@ -796,81 +796,79 @@ static void isci_terminate_request_core( ...@@ -796,81 +796,79 @@ static void isci_terminate_request_core(
* @isci_host: This parameter specifies SCU. * @isci_host: This parameter specifies SCU.
* @isci_device: This parameter specifies the target. * @isci_device: This parameter specifies the target.
* *
*
*/ */
void isci_terminate_pending_requests( void isci_terminate_pending_requests(struct isci_host *ihost,
struct isci_host *isci_host, struct isci_remote_device *idev)
struct isci_remote_device *isci_device,
enum isci_request_status new_request_state)
{ {
struct isci_request *request; struct completion request_completion;
struct isci_request *next_request;
unsigned long flags;
enum isci_request_status old_state; enum isci_request_status old_state;
DECLARE_COMPLETION_ONSTACK(request_completion); unsigned long flags;
LIST_HEAD(list);
dev_dbg(&isci_host->pdev->dev,
"%s: isci_device = %p (new request state = %d)\n",
__func__, isci_device, new_request_state);
spin_lock_irqsave(&isci_host->scic_lock, flags); spin_lock_irqsave(&ihost->scic_lock, flags);
list_splice_init(&idev->reqs_in_process, &list);
/* Iterate through the list. */ /* assumes that isci_terminate_request_core deletes from the list */
list_for_each_entry_safe(request, next_request, while (!list_empty(&list)) {
&isci_device->reqs_in_process, dev_node) { struct isci_request *ireq = list_entry(list.next, typeof(*ireq), dev_node);
init_completion(&request_completion); /* Change state to "terminating" if it is currently
* "started".
*/
old_state = isci_request_change_started_to_newstate(ireq,
&request_completion,
terminating);
switch (old_state) {
case started:
case completed:
case aborting:
break;
default:
/* termination in progress, or otherwise dispositioned.
* We know the request was on 'list' so should be safe
* to move it back to reqs_in_process
*/
list_move(&ireq->dev_node, &idev->reqs_in_process);
ireq = NULL;
break;
}
/* Change state to "new_request_state" if it is currently if (!ireq)
* "started". continue;
*/ spin_unlock_irqrestore(&ihost->scic_lock, flags);
old_state = isci_request_change_started_to_newstate(
request,
&request_completion,
new_request_state);
spin_unlock_irqrestore(&isci_host->scic_lock, flags); init_completion(&request_completion);
if ((old_state == started) || dev_dbg(&ihost->pdev->dev,
(old_state == completed) || "%s: idev=%p request=%p; task=%p old_state=%d\n",
(old_state == aborting)) { __func__, idev, ireq,
ireq->ttype == io_task ? isci_request_access_task(ireq) : NULL,
dev_warn(&isci_host->pdev->dev, old_state);
"%s: isci_device=%p request=%p; task=%p "
"old_state=%d\n", /* If the old_state is started:
__func__, * This request was not already being aborted. If it had been,
isci_device, request, * then the aborting I/O (ie. the TMF request) would not be in
((request->ttype == io_task) * the aborting state, and thus would be terminated here. Note
? isci_request_access_task(request) * that since the TMF completion's call to the kernel function
: NULL), * "complete()" does not happen until the pending I/O request
old_state); * terminate fully completes, we do not have to implement a
* special wait here for already aborting requests - the
/* If the old_state is started: * termination of the TMF request will force the request
* This request was not already being aborted. If it had been, * to finish it's already started terminate.
* then the aborting I/O (ie. the TMF request) would not be in *
* the aborting state, and thus would be terminated here. Note * If old_state == completed:
* that since the TMF completion's call to the kernel function * This request completed from the SCU hardware perspective
* "complete()" does not happen until the pending I/O request * and now just needs cleaning up in terms of freeing the
* terminate fully completes, we do not have to implement a * request and potentially calling up to libsas.
* special wait here for already aborting requests - the *
* termination of the TMF request will force the request * If old_state == aborting:
* to finish it's already started terminate. * This request has already gone through a TMF timeout, but may
* * not have been terminated; needs cleaning up at least.
* If old_state == completed: */
* This request completed from the SCU hardware perspective isci_terminate_request_core(ihost, idev, ireq);
* and now just needs cleaning up in terms of freeing the spin_lock_irqsave(&ihost->scic_lock, flags);
* request and potentially calling up to libsas.
*
* If old_state == aborting:
* This request has already gone through a TMF timeout, but may
* not have been terminated; needs cleaning up at least.
*/
isci_terminate_request_core(isci_host, isci_device,
request);
}
spin_lock_irqsave(&isci_host->scic_lock, flags);
} }
spin_unlock_irqrestore(&isci_host->scic_lock, flags); spin_unlock_irqrestore(&ihost->scic_lock, flags);
} }
/** /**
...@@ -965,8 +963,7 @@ int isci_task_lu_reset(struct domain_device *domain_device, u8 *lun) ...@@ -965,8 +963,7 @@ int isci_task_lu_reset(struct domain_device *domain_device, u8 *lun)
if (ret == TMF_RESP_FUNC_COMPLETE) if (ret == TMF_RESP_FUNC_COMPLETE)
/* Terminate all I/O now. */ /* Terminate all I/O now. */
isci_terminate_pending_requests(isci_host, isci_terminate_pending_requests(isci_host,
isci_device, isci_device);
terminating);
return ret; return ret;
} }
......
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