diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2006-02-10 07:09:37 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2006-02-10 07:09:37 -0500 |
commit | ca7d5e42d783e54f0057317c9226262d68ab7717 (patch) | |
tree | 209751546842e1200bfbd2fd5144e1727ab18c86 /drivers/scsi/sata_mv.c | |
parent | a0819750024a0056d760a936d72f76882a7e393f (diff) | |
parent | cc9278ed5e992122a654a3f762561ee5e013810f (diff) |
Merge branch 'upstream'
Diffstat (limited to 'drivers/scsi/sata_mv.c')
-rw-r--r-- | drivers/scsi/sata_mv.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/scsi/sata_mv.c b/drivers/scsi/sata_mv.c index 5b36a23455de..cda4c495c10f 100644 --- a/drivers/scsi/sata_mv.c +++ b/drivers/scsi/sata_mv.c | |||
@@ -378,6 +378,7 @@ static struct scsi_host_template mv_sht = { | |||
378 | .name = DRV_NAME, | 378 | .name = DRV_NAME, |
379 | .ioctl = ata_scsi_ioctl, | 379 | .ioctl = ata_scsi_ioctl, |
380 | .queuecommand = ata_scsi_queuecmd, | 380 | .queuecommand = ata_scsi_queuecmd, |
381 | .eh_timed_out = ata_scsi_timed_out, | ||
381 | .eh_strategy_handler = ata_scsi_error, | 382 | .eh_strategy_handler = ata_scsi_error, |
382 | .can_queue = MV_USE_Q_DEPTH, | 383 | .can_queue = MV_USE_Q_DEPTH, |
383 | .this_id = ATA_SHT_THIS_ID, | 384 | .this_id = ATA_SHT_THIS_ID, |
@@ -2025,13 +2026,8 @@ static void mv_eng_timeout(struct ata_port *ap) | |||
2025 | mv_err_intr(ap); | 2026 | mv_err_intr(ap); |
2026 | mv_stop_and_reset(ap); | 2027 | mv_stop_and_reset(ap); |
2027 | 2028 | ||
2028 | if (!qc) { | 2029 | qc->err_mask |= AC_ERR_TIMEOUT; |
2029 | printk(KERN_ERR "ata%u: BUG: timeout without command\n", | 2030 | ata_eh_qc_complete(qc); |
2030 | ap->id); | ||
2031 | } else { | ||
2032 | qc->err_mask |= AC_ERR_TIMEOUT; | ||
2033 | ata_eh_qc_complete(qc); | ||
2034 | } | ||
2035 | } | 2031 | } |
2036 | 2032 | ||
2037 | /** | 2033 | /** |