changeset 47ada83a8958 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=47ada83a8958
description:
        X86: Add extended Intel MP entries correctly.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/arch/x86/bios/IntelMP.py |    2 +-

diffs (12 lines):

diff -r 831413564d0c -r 47ada83a8958 src/arch/x86/bios/IntelMP.py
--- a/src/arch/x86/bios/IntelMP.py      Sun Feb 01 00:11:49 2009 -0800
+++ b/src/arch/x86/bios/IntelMP.py      Sun Feb 01 00:15:38 2009 -0800
@@ -90,7 +90,7 @@
         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__)
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to