Chameleon

Chameleon Commit Details

Date:2011-10-31 01:03:16 (12 years 5 months ago)
Author:armel cadet-petit
Commit:1679
Parents: 1678
Message:Revert to the previous version
Changes:
M/branches/cparm/i386/modules/ACPICodec/acpi_codec.c

File differences

branches/cparm/i386/modules/ACPICodec/acpi_codec.c
28672867
28682868
28692869
2870
2870
28712871
28722872
2873
2873
28742874
28752875
28762876
......
29022902
29032903
29042904
2905
2905
29062906
29072907
2908
2908
29092909
29102910
29112911
......
29372937
29382938
29392939
2940
2940
29412941
29422942
2943
2943
29442944
29452945
29462946
// Process sub-tables with Type as 4: Local APIC NMI
ACPI_MADT_LOCAL_APIC_NMI *nmi = current;
current = nmi + 1;
/*
if (!(nmi->IntiFlags & ACPI_MADT_ENABLED))
continue;
*/
if (LOCAL_APIC_NMI_CNT >= nb_cpu)
continue;
// Process sub-tables with Type as 7: Local Sapic
ACPI_MADT_LOCAL_SAPIC *sapic = current;
current = sapic + 1;
/*
if (!(sapic->LapicFlags & ACPI_MADT_ENABLED))
continue;
*/
if (LOCAL_SAPIC_CNT >= nb_cpu)
continue;
// Process sub-tables with Type as 8: Platform Interrupt Source
ACPI_MADT_INTERRUPT_SOURCE *intsrc = current;
current = intsrc + 1;
/*
if (!(intsrc->IntiFlags & ACPI_MADT_ENABLED))
continue;
*/
if (INT_SRC_CNT >= nb_cpu)
continue;

Archive Download the corresponding diff file

Revision: 1679