From: Tejun Heo <htejun@gmail.com>
To: "Matías Alejandro Torres" <torresmat@gmail.com>
Cc: linux-ide@vger.kernel.org, gregkh@suse.de
Subject: Re: SATA SB600 works in 2.6.20.4 but not in 2.6.21-rc5 with irqpoll parameter
Date: Fri, 04 May 2007 21:36:28 +0200 [thread overview]
Message-ID: <463B8B3C.9010509@gmail.com> (raw)
In-Reply-To: <463B89B9.8050104@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 873 bytes --]
Matías Alejandro Torres wrote:
>
>> Well, making it work without pci=nomsi is the whole point here. I dunno
>> why this simple thing doesn't work. Can you post the result of 'lspci
>> -nn' so that we can see the numeric ID?
>>
> I would really like to know the answer to that, but i'm hundred of miles
> away. Attached to this email is the output of lspci -nn .
>
> Maybe you have the wrong id of the pci bridge:
>
> 00:02.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI-X Root Port
> [1002:5a34]
>
> +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x5a3f, quirk_disable_msi);
> /* RS480 PCI bridge */
Yeah, apparently.
00:02.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI-X Root Port
[1002:5a34]
So, there are two broken PCI bridges. Argh.... Okay, please try the
attached patch. It includes both 5a34 and 5a3f.
Thanks for your patience.
--
tejun
[-- Attachment #2: patch --]
[-- Type: text/plain, Size: 622 bytes --]
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 3411483..b0e89db 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -1648,6 +1648,8 @@ static void __devinit quirk_disable_msi(
}
}
DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE, quirk_disable_msi);
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x5a34, quirk_disable_msi); /* RS480 PCI-X root port */
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x5a3f, quirk_disable_msi); /* RS480 PCI bridge */
/* Go through the list of Hypertransport capabilities and
* return 1 if a HT MSI capability is found and enabled */
next prev parent reply other threads:[~2007-05-04 19:36 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-27 2:25 SATA SB600 Matías Alejandro Torres
2007-03-27 2:31 ` Tejun Heo
2007-03-27 2:36 ` Matías Alejandro Torres
2007-03-27 2:39 ` Tejun Heo
2007-03-27 4:00 ` SATA SB600 works in 2.6.20.4 but not in 2.6.21-rc5 with irqpoll parameter Matías Alejandro Torres
2007-03-27 4:13 ` Tejun Heo
2007-03-27 4:42 ` Matías Alejandro Torres
2007-05-04 9:49 ` Tejun Heo
2007-05-04 13:45 ` Matías Alejandro Torres
2007-05-04 17:48 ` Matías Alejandro Torres
2007-05-04 18:00 ` Tejun Heo
2007-05-04 19:30 ` Matías Alejandro Torres
2007-05-04 19:36 ` Tejun Heo [this message]
2007-05-05 17:43 ` Matías Alejandro Torres
2007-05-05 17:55 ` Tejun Heo
2007-05-07 10:03 ` Tejun Heo
2007-05-07 15:12 ` Matías Alejandro Torres
2007-05-07 15:35 ` Tejun Heo
2007-05-07 20:05 ` Matías Alejandro Torres
2007-05-08 8:07 ` Tejun Heo
[not found] ` <46089F28.8060803@gmail.com>
2007-03-27 5:02 ` Tejun Heo
2007-04-13 5:26 ` Tejun Heo
-- strict thread matches above, loose matches on Subject: below --
2007-04-23 21:39 Karsten Vieth
2007-04-23 23:38 ` 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=463B8B3C.9010509@gmail.com \
--to=htejun@gmail.com \
--cc=gregkh@suse.de \
--cc=linux-ide@vger.kernel.org \
--cc=torresmat@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.