The patch titled cc: gregkh-pci-pci-ignore-pre-set-64-bit-bars-on-32-bit-platforms fix has been removed from the -mm tree. Its filename is mm-gregkh-pci-pci-ignore-pre-set-64-bit-bars-on-32-bit-platforms-fix.patch This patch was dropped because bah ------------------------------------------------------ Subject: cc: gregkh-pci-pci-ignore-pre-set-64-bit-bars-on-32-bit-platforms fix From: Bjorn Helgaas <bjorn.helgaas@xxxxxx> Anyway, the error seems to be that the line: } else if (l) { ... should be ... + } else if (lhi) { ... since l contains the lower half of the pre-set address at that point, and lhi is the upper half. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@xxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/pci/probe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/pci/probe.c~mm-gregkh-pci-pci-ignore-pre-set-64-bit-bars-on-32-bit-platforms-fix drivers/pci/probe.c --- devel/drivers/pci/probe.c~mm-gregkh-pci-pci-ignore-pre-set-64-bit-bars-on-32-bit-platforms-fix 2006-06-09 11:42:27.000000000 -0700 +++ devel-akpm/drivers/pci/probe.c 2006-06-09 11:42:27.000000000 -0700 @@ -199,7 +199,7 @@ static void pci_read_bases(struct pci_de printk(KERN_ERR "PCI: Unable to handle 64-bit BAR for device %s\n", pci_name(dev)); res->start = 0; res->flags = 0; - } else if (l) { + } else if (lhi) { /* 64-bit wide address, treat as disabled */ pci_write_config_dword(dev, reg, l & ~(u32)PCI_BASE_ADDRESS_MEM_MASK); pci_write_config_dword(dev, reg+4, 0); _ Patches currently in -mm which might be from bjorn.helgaas@xxxxxx are git-acpi.patch acpi-update-asus_acpi-driver-registration-fix.patch 2.6-sony_acpi4.patch git-ia64.patch git-klibc.patch e100-disable-interrupts-at-boot.patch mm-gregkh-pci-pci-ignore-pre-set-64-bit-bars-on-32-bit-platforms-fix.patch vgacon-make-vga_map_mem-take-size-remove-extra-use.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html