diff options
author | Tejun Heo <htejun@gmail.com> | 2006-01-22 23:09:37 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2006-01-26 22:36:28 -0500 |
commit | a72ec4ce6d3ae92e76baf5b2c65cc26e5e775e83 (patch) | |
tree | f5a177cc30c9b39d8ae7dcad29d03d27534b9f78 /drivers/scsi/ahci.c | |
parent | 041c5fc33cb7ed4fe5322585a611fb6e29a05d3a (diff) |
[PATCH] libata: implement and apply ata_eh_qc_complete/retry()
Implement ata_eh_qc_complete/retry() using scsi_eh_finish_cmd() and
scsi_eh_flush_done_q(). This removes all eh scsicmd finish hacks from
low level drivers.
This change was first suggested by Jeff Garzik.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/scsi/ahci.c')
-rw-r--r-- | drivers/scsi/ahci.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/drivers/scsi/ahci.c b/drivers/scsi/ahci.c index 0f6e4dd22901..5a6b23009897 100644 --- a/drivers/scsi/ahci.c +++ b/drivers/scsi/ahci.c | |||
@@ -672,19 +672,13 @@ static void ahci_eng_timeout(struct ata_port *ap) | |||
672 | ap->id); | 672 | ap->id); |
673 | } else { | 673 | } else { |
674 | ahci_restart_port(ap, readl(port_mmio + PORT_IRQ_STAT)); | 674 | ahci_restart_port(ap, readl(port_mmio + PORT_IRQ_STAT)); |
675 | |||
676 | /* hack alert! We cannot use the supplied completion | ||
677 | * function from inside the ->eh_strategy_handler() thread. | ||
678 | * libata is the only user of ->eh_strategy_handler() in | ||
679 | * any kernel, so the default scsi_done() assumes it is | ||
680 | * not being called from the SCSI EH. | ||
681 | */ | ||
682 | qc->scsidone = scsi_finish_command; | ||
683 | qc->err_mask |= AC_ERR_TIMEOUT; | 675 | qc->err_mask |= AC_ERR_TIMEOUT; |
684 | ata_qc_complete(qc); | ||
685 | } | 676 | } |
686 | 677 | ||
687 | spin_unlock_irqrestore(&host_set->lock, flags); | 678 | spin_unlock_irqrestore(&host_set->lock, flags); |
679 | |||
680 | if (qc) | ||
681 | ata_eh_qc_complete(qc); | ||
688 | } | 682 | } |
689 | 683 | ||
690 | static inline int ahci_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc) | 684 | static inline int ahci_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc) |