public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] increment pos before looking for the next cap in __pci_find_next_ht_cap
@ 2007-01-05 22:52 Brice Goglin
  2007-01-07  6:54 ` patch pci-increment-pos-before-looking-for-the-next-cap-in-__pci_find_next_ht_cap.patch added to gregkh-2.6 tree gregkh
  0 siblings, 1 reply; 4+ messages in thread
From: Brice Goglin @ 2007-01-05 22:52 UTC (permalink / raw)
  To: Greg KH, Michael Ellerman; +Cc: LKML

Hi,

While testing 2.6.20-rc3 on a machine with some CK804 chipsets, we
noticed that quirk_nvidia_ck804_msi_ht_cap() was not detecting HT
MSI capabilities anymore. It is actually caused by the MSI mapping
on the root chipset being the 2nd HT capability in the chain.
pci_find_ht_capability() does not seem to find anything but the
first HT cap correctly, because it forgets to increment the position
before looking for the next cap. The following patch seems to fix it.

At least, this prooves that having a ttl is good idea since the
machine would have been stucked in an infinite loop if we didn't
have a ttl :)

The patch should go in 2.6.20 since this quirk was working fine in 2.6.19.
---
[PATCH] increment pos before looking for the next cap in __pci_find_next_ht_cap

We have to pass pos + PCI_CAP_LIST_NEXT to __pci_find_next_cap_ttl to
get the next HT cap instead of the same one again. 

Signed-off-by: Brice Goglin <brice@myri.com>
Signed-off-by: Andrew J. Gallatin <gallatin@myri.com>
---
 drivers/pci/pci.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: linux-rc/drivers/pci/pci.c
===================================================================
--- linux-rc.orig/drivers/pci/pci.c	2007-01-05 23:34:59.000000000 +0100
+++ linux-rc/drivers/pci/pci.c	2007-01-05 23:35:24.000000000 +0100
@@ -254,7 +254,8 @@
 		if ((cap & mask) == ht_cap)
 			return pos;
 
-		pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn, pos,
+		pos = __pci_find_next_cap_ttl(dev->bus, dev->devfn,
+					      pos + PCI_CAP_LIST_NEXT,
 					      PCI_CAP_ID_HT, &ttl);
 	}
 



^ permalink raw reply	[flat|nested] 4+ messages in thread
[parent not found: <fa.HKQ/+MClSV6hJeIdmFjKhgngCZQ@ifi.uio.no>]

end of thread, other threads:[~2007-01-07 23:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-05 22:52 [PATCH] increment pos before looking for the next cap in __pci_find_next_ht_cap Brice Goglin
2007-01-07  6:54 ` patch pci-increment-pos-before-looking-for-the-next-cap-in-__pci_find_next_ht_cap.patch added to gregkh-2.6 tree gregkh
     [not found] <fa.HKQ/+MClSV6hJeIdmFjKhgngCZQ@ifi.uio.no>
2007-01-05 23:58 ` [PATCH] increment pos before looking for the next cap in __pci_find_next_ht_cap Robert Hancock
2007-01-07 23:37   ` Michael Ellerman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox