From 4d067ed7a778c5b903b048b5f13b8fa3873d1211 Mon Sep 17 00:00:00 2001 From: Andre Przywara Date: Thu, 11 Mar 2010 14:38:57 +0100 Subject: [PATCH] x86/cpuid: fix missing feature set bits This one was accidently removed with commit bb0300dc57c10b3721451b0ff566a03f9276cc77 Signed-off-by: Andre Przywara Signed-off-by: Aurelien Jarno --- target-i386/cpuid.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target-i386/cpuid.c b/target-i386/cpuid.c index ea5258fbab..9bba907598 100644 --- a/target-i386/cpuid.c +++ b/target-i386/cpuid.c @@ -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; {