diff options
author | Juan Quintela <quintela@redhat.com> | 2009-09-29 22:48:55 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-05 09:32:41 -0500 |
commit | ac74d0f1fc1cc7d57b3bb4aea2d0b0f08e755476 (patch) | |
tree | d834379a7d33eeae14372fe783dd013355f44908 /target-i386/cpu.h | |
parent | 60a902f1c329757705dea416abd741c1f11d3186 (diff) |
x86: mce_banks always have the same size
mce_banks is always MCE_BANKS_DEF * 4 in size, value never change
CC: Huang Ying <ying.huang@intel.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index f069018700..1bf027ebfc 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -698,7 +698,7 @@ typedef struct CPUX86State { uint64 mcg_cap; uint64 mcg_status; uint64 mcg_ctl; - uint64 *mce_banks; + uint64 mce_banks[MCE_BANKS_DEF*4]; uint64_t tsc_aux; } CPUX86State; |