From: Bastiaan Jacques <b.jacques@planet.nl>
To: linux-ide@vger.kernel.org
Subject: ahci: ahci_host_intr() problem(s)?
Date: Sat, 15 Apr 2006 18:59:45 +0200 [thread overview]
Message-ID: <200604151859.46130.b.jacques@planet.nl> (raw)
Hello,
I was looking at ahci_host_intr() when I noticed something strange: it always
returns 1. Now, that alone is odd because when a function is successful it
ordinarily returns 0 (zero).
But more importantly, it is called in ahci_interrupt():
if (!ahci_host_intr(ap, qc))
if (ata_ratelimit())
dev_printk(KERN_WARNING, host_set->dev,
"unhandled interrupt on port %u\n",
i);
So that if-statement is always false; this seems like a logic error to me.
Back to ahci_host_intr itself. it does:
serr = readl(port_mmio + PORT_SCR_ERR);
writel(serr, port_mmio + PORT_SCR_ERR);
This looks like first we are reading a value from the port, and then writing
the same value back without modification. Why?
I would like to fix the first problem described above, but I don't understand
what this function does.. so perhaps someone who has a greater understanding
of this code should post a patch. Or explain what it should do :)
---
Bastiaan
next reply other threads:[~2006-04-15 16:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-04-15 16:59 Bastiaan Jacques [this message]
2006-04-15 18:47 ` ahci: ahci_host_intr() problem(s)? Jeff Garzik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200604151859.46130.b.jacques@planet.nl \
--to=b.jacques@planet.nl \
--cc=linux-ide@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).