From: Gabe Black Date: Sun, 1 Feb 2009 08:15:38 +0000 (-0800) Subject: X86: Add extended Intel MP entries correctly. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f3b8371dfcad39c609e4bf5ecf50c17e57fca805;p=gem5.git X86: Add extended Intel MP entries correctly. --- diff --git a/src/arch/x86/bios/IntelMP.py b/src/arch/x86/bios/IntelMP.py index 1b9e819b3..04e79b6ac 100644 --- a/src/arch/x86/bios/IntelMP.py +++ b/src/arch/x86/bios/IntelMP.py @@ -90,7 +90,7 @@ class X86IntelMPConfigTable(SimObject): if isinstance(entry, X86IntelMPBaseConfigEntry): self.base_entries.append(entry) elif isinstance(entry, X86IntelMPExtConfigEntry): - self.base_entries.append(entry) + self.ext_entries.append(entry) else: panic("Don't know what type of Intel MP entry %s is." \ % entry.__class__.__name__)