Skip to content

Commit

Permalink
[IA64] IOSAPIC bogus error cleanup
Browse files Browse the repository at this point in the history
On Altix (sn2) machines the "Error parsing MADT" message is
misleading because the lack of IOSAPIC entries is expected.

Since I am sure someone will ask, I have been told that
the chance of this changing anytime soon is close to nil.

Signed-off-by: George Beshers <gbeshers@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
George Beshers authored and Tony Luck committed Nov 9, 2007
1 parent b8de471 commit 7f6ff62
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions arch/ia64/kernel/acpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -678,9 +678,11 @@ int __init acpi_boot_init(void)
/* I/O APIC */

if (acpi_table_parse_madt
(ACPI_MADT_TYPE_IO_SAPIC, acpi_parse_iosapic, NR_IOSAPICS) < 1)
printk(KERN_ERR PREFIX
"Error parsing MADT - no IOSAPIC entries\n");
(ACPI_MADT_TYPE_IO_SAPIC, acpi_parse_iosapic, NR_IOSAPICS) < 1) {
if (!ia64_platform_is("sn2"))
printk(KERN_ERR PREFIX
"Error parsing MADT - no IOSAPIC entries\n");
}

/* System-Level Interrupt Routing */

Expand Down

0 comments on commit 7f6ff62

Please sign in to comment.