Message ID | 20150415144819.GD19151@google.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
> + /* ACPI_RESOURCE_TYPE_IRQ etc. */ > + printk("host bridge resource %02d length %#02x\n", res->type, > + res->length); > + print_hex_dump(KERN_INFO, " : ", DUMP_PREFIX_OFFSET, 16, 1, > + &res->data, res->length, 0); > + Patch applied to the tree with the offending commit reverted. Serial log attached, -Tony
diff --git a/arch/ia64/pci/pci.c b/arch/ia64/pci/pci.c index 48cc65705db4..9e419c5a3d43 100644 --- a/arch/ia64/pci/pci.c +++ b/arch/ia64/pci/pci.c @@ -276,6 +276,12 @@ static acpi_status add_window(struct acpi_resource *res, void *data) unsigned long flags, offset = 0; struct resource *root; + /* ACPI_RESOURCE_TYPE_IRQ etc. */ + printk("host bridge resource %02d length %#02x\n", res->type, + res->length); + print_hex_dump(KERN_INFO, " : ", DUMP_PREFIX_OFFSET, 16, 1, + &res->data, res->length, 0); + /* Return AE_OK for non-window resources to keep scanning for more */ status = resource_to_window(res, &addr); if (!ACPI_SUCCESS(status))