[PATCH] update unexpected IO APIC detection

From: Randy.Dunlap (rddunlap@osdl.org)
Date: Fri Apr 18 2003 - 10:26:31 EST


Hi,

This patch updates 2.4.21-pre to use the same IO APIC data structures
and detection as 2.5.67. This will help reduce the number of emails
about UNEXPECTED IO APIC detected, which are mostly noise.

Please apply.

--
~Randy

--- linux-2421-pre7/include/asm-i386/io_apic.h 2003-04-16 21:34:08.000000000 +0000 +++ linux/include/asm-i386/io_apic.h 2003-04-07 17:31:56.000000000 +0000 @@ -22,9 +23,12 @@ * The structure of the IO-APIC: */ struct IO_APIC_reg_00 { - __u32 __reserved_2 : 24, + __u32 __reserved_2 : 14, + LTS : 1, + delivery_type : 1, + __reserved_1 : 8, ID : 4, - __reserved_1 : 4; + __reserved_0 : 4; } __attribute__ ((packed)); struct IO_APIC_reg_01 { --- linux-2421-pre7/arch/i386/kernel/io_apic.c 2003-04-16 21:34:02.000000000 +0000 +++ linux/arch/i386/kernel/io_apic.c 2003-04-16 21:32:46.000000000 +0000 @@ -776,7 +1286,9 @@ void __init print_IO_APIC(void) printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid); printk(KERN_DEBUG ".... register #00: %08X\n", *(int *)&reg_00); printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.ID); - if (reg_00.__reserved_1 || reg_00.__reserved_2) + printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.delivery_type); + printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.LTS); + if (reg_00.__reserved_0 || reg_00.__reserved_1 || reg_00.__reserved_2) UNEXPECTED_IO_APIC(); printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Apr 23 2003 - 22:00:24 EST