projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06cdbe5
)
X86: Add extended Intel MP entries correctly.
author
Gabe Black
<gblack@eecs.umich.edu>
Sun, 1 Feb 2009 08:15:38 +0000
(
00:15
-0800)
committer
Gabe Black
<gblack@eecs.umich.edu>
Sun, 1 Feb 2009 08:15:38 +0000
(
00:15
-0800)
src/arch/x86/bios/IntelMP.py
patch
|
blob
|
history
diff --git
a/src/arch/x86/bios/IntelMP.py
b/src/arch/x86/bios/IntelMP.py
index 1b9e819b3086d36b2283564552a445ce7059dbbb..04e79b6ac073b57d3be5ff27d86a9ca8c37fba72 100644
(file)
--- 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__)