list_splice_init(&ihost->requests_to_complete,
&completed_request_list);
- spin_unlock_irq(&ihost->scic_lock);
-
/* Process any completions in the list. */
list_for_each_safe(current_position, next_position,
&completed_request_list) {
completed_node);
task = isci_request_access_task(request);
-
/* Return the task to libsas */
if (task != NULL) {
}
}
}
+ if (test_and_clear_bit(IREQ_ABORT_PATH_ACTIVE, &request->flags))
+ wake_up_all(&ihost->eventq);
- spin_lock_irq(&ihost->scic_lock);
isci_free_tag(ihost, request->io_tag);
- spin_unlock_irq(&ihost->scic_lock);
}
+ spin_unlock_irq(&ihost->scic_lock);
/* the coalesence timeout doubles at each encoding step, so
* update it based on the ilog2 value of the outstanding requests
index = ISCI_TAG_TCI(ireq->io_tag);
clear_bit(IREQ_ACTIVE, &ireq->flags);
- if (test_bit(IREQ_ABORT_PATH_ACTIVE, &ireq->flags))
- wake_up_all(&ihost->eventq);
return SCI_SUCCESS;
default:
dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
return localcount != idev->rnc.suspend_count;
}
+static bool isci_check_reqterm(
+ struct isci_host *ihost,
+ struct isci_remote_device *idev,
+ struct isci_request *ireq,
+ u32 localcount)
+{
+ unsigned long flags;
+ bool res;
+
+ spin_lock_irqsave(&ihost->scic_lock, flags);
+ res = isci_compare_suspendcount(idev, localcount)
+ && !test_bit(IREQ_ABORT_PATH_ACTIVE, &ireq->flags);
+ spin_unlock_irqrestore(&ihost->scic_lock, flags);
+
+ return res;
+}
+
+static bool isci_check_devempty(
+ struct isci_host *ihost,
+ struct isci_remote_device *idev,
+ u32 localcount)
+{
+ unsigned long flags;
+ bool res;
+
+ spin_lock_irqsave(&ihost->scic_lock, flags);
+ res = isci_compare_suspendcount(idev, localcount)
+ && idev->started_request_count == 0;
+ spin_unlock_irqrestore(&ihost->scic_lock, flags);
+
+ return res;
+}
+
enum sci_status isci_remote_device_terminate_requests(
struct isci_host *ihost,
struct isci_remote_device *idev,
sci_remote_device_terminate_req(ihost, idev, 0, ireq);
spin_unlock_irqrestore(&ihost->scic_lock, flags);
wait_event(ihost->eventq,
- (isci_compare_suspendcount(idev,
- rnc_suspend_count)
- && !test_bit(IREQ_ACTIVE, &ireq->flags)));
+ isci_check_reqterm(ihost, idev, ireq,
+ rnc_suspend_count));
} else {
/* Terminate all TCs. */
sci_remote_device_terminate_requests(idev);
spin_unlock_irqrestore(&ihost->scic_lock, flags);
wait_event(ihost->eventq,
- (isci_compare_suspendcount(idev,
- rnc_suspend_count)
- && idev->started_request_count == 0));
+ isci_check_devempty(ihost, idev,
+ rnc_suspend_count));
}
dev_dbg(&ihost->pdev->dev, "%s: idev=%p, wait done\n",
__func__, idev);