diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-03-15 12:26:21 +0100 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2011-03-16 17:11:05 -0300 |
commit | aa761e57a37fa4f28c46aaa8bf3f8d8598f23883 (patch) | |
tree | bebb3a9b4f319af91ad7d1c70e00f74c6bb4054b /target-i386/cpuid.c | |
parent | b18bb7cbdfd226ad967735d56577ea989d56eb1b (diff) | |
download | qemu-aa761e57a37fa4f28c46aaa8bf3f8d8598f23883.tar.gz qemu-aa761e57a37fa4f28c46aaa8bf3f8d8598f23883.tar.bz2 qemu-aa761e57a37fa4f28c46aaa8bf3f8d8598f23883.zip |
x86: Properly reset PAT MSR
Conforming to the Intel spec, set the power-on value of PAT also on
reset, but save it across INIT.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'target-i386/cpuid.c')
-rw-r--r-- | target-i386/cpuid.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target-i386/cpuid.c b/target-i386/cpuid.c index 5382a283f5..814d13e767 100644 --- a/target-i386/cpuid.c +++ b/target-i386/cpuid.c @@ -847,7 +847,6 @@ int cpu_x86_register (CPUX86State *env, const char *cpu_model) env->cpuid_version |= ((def->model & 0xf) << 4) | ((def->model >> 4) << 16); env->cpuid_version |= def->stepping; env->cpuid_features = def->features; - env->pat = 0x0007040600070406ULL; env->cpuid_ext_features = def->ext_features; env->cpuid_ext2_features = def->ext2_features; env->cpuid_ext3_features = def->ext3_features; |