|
@@ -3621,7 +3621,7 @@ void ata_qc_free(struct ata_queued_cmd *qc)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-inline void __ata_qc_complete(struct ata_queued_cmd *qc)
|
|
|
+void __ata_qc_complete(struct ata_queued_cmd *qc)
|
|
|
{
|
|
|
assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
|
|
|
assert(qc->flags & ATA_QCFLAG_ACTIVE);
|
|
@@ -3639,25 +3639,6 @@ inline void __ata_qc_complete(struct ata_queued_cmd *qc)
|
|
|
qc->complete_fn(qc);
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * ata_qc_complete - Complete an active ATA command
|
|
|
- * @qc: Command to complete
|
|
|
- * @err_mask: ATA Status register contents
|
|
|
- *
|
|
|
- * Indicate to the mid and upper layers that an ATA
|
|
|
- * command has completed, with either an ok or not-ok status.
|
|
|
- *
|
|
|
- * LOCKING:
|
|
|
- * spin_lock_irqsave(host_set lock)
|
|
|
- */
|
|
|
-void ata_qc_complete(struct ata_queued_cmd *qc)
|
|
|
-{
|
|
|
- if (unlikely(qc->flags & ATA_QCFLAG_EH_SCHEDULED))
|
|
|
- return;
|
|
|
-
|
|
|
- __ata_qc_complete(qc);
|
|
|
-}
|
|
|
-
|
|
|
static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
|
|
|
{
|
|
|
struct ata_port *ap = qc->ap;
|
|
@@ -4877,7 +4858,7 @@ EXPORT_SYMBOL_GPL(ata_device_add);
|
|
|
EXPORT_SYMBOL_GPL(ata_host_set_remove);
|
|
|
EXPORT_SYMBOL_GPL(ata_sg_init);
|
|
|
EXPORT_SYMBOL_GPL(ata_sg_init_one);
|
|
|
-EXPORT_SYMBOL_GPL(ata_qc_complete);
|
|
|
+EXPORT_SYMBOL_GPL(__ata_qc_complete);
|
|
|
EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
|
|
|
EXPORT_SYMBOL_GPL(ata_eng_timeout);
|
|
|
EXPORT_SYMBOL_GPL(ata_tf_load);
|