Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29318
b: refs/heads/master
c: 2a3917a
h: refs/heads/master
v: v3
  • Loading branch information
Tejun Heo committed May 15, 2006
1 parent a89805b commit d1ca2de
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 78cd52d02fa0735949a9fa30a6b79bf02c94c250
refs/heads/master: 2a3917a8bb40a2cb75b458da9c356e8557e8fbed
13 changes: 12 additions & 1 deletion trunk/drivers/scsi/ahci.c
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,18 @@ static void ahci_host_intr(struct ata_port *ap)
}
}

/* spurious interrupt */
/* hmmm... a spurious interupt */

/* ignore interim PIO setup fis interrupts */
if (ata_tag_valid(ap->active_tag)) {
struct ata_queued_cmd *qc =
ata_qc_from_tag(ap, ap->active_tag);

if (qc && qc->tf.protocol == ATA_PROT_PIO &&
(status & PORT_IRQ_PIOS_FIS))
return;
}

if (ata_ratelimit())
ata_port_printk(ap, KERN_INFO, "spurious interrupt "
"(irq_stat 0x%x active_tag %d)\n",
Expand Down

0 comments on commit d1ca2de

Please sign in to comment.