]> git.proxmox.com Git - qemu.git/commitdiff
x86/cpuid: fix missing feature set bits
authorAndre Przywara <andre.przywara@amd.com>
Thu, 11 Mar 2010 13:38:57 +0000 (14:38 +0100)
committerAurelien Jarno <aurelien@aurel32.net>
Sat, 13 Mar 2010 15:50:54 +0000 (16:50 +0100)
This one was accidently removed with commit
bb0300dc57c10b3721451b0ff566a03f9276cc77

Signed-off-by: Andre Przywara <andre.przywara@amd.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
target-i386/cpuid.c

index ea5258fbabdccd32a2de320d7c2fe5fe4b7d2f56..9bba907598f9bf7646303f0d37a255941bfe099b 100644 (file)
@@ -754,6 +754,7 @@ int cpu_x86_register (CPUX86State *env, const char *cpu_model)
     env->pat = 0x0007040600070406ULL;
     env->cpuid_ext_features = def->ext_features;
     env->cpuid_ext2_features = def->ext2_features;
+    env->cpuid_ext3_features = def->ext3_features;
     env->cpuid_xlevel = def->xlevel;
     env->cpuid_kvm_features = def->kvm_features;
     {