diff options
| author | Eduardo Habkost | 2015-04-02 22:22:27 +0200 |
|---|---|---|
| committer | Eduardo Habkost | 2015-04-27 20:41:03 +0200 |
| commit | 01431f3ce0f31e123172cc99c12c98c0ddbe9917 (patch) | |
| tree | 40f2feca8833beab6e32bd3edd3c11d5d91ee61b /target-i386 | |
| parent | target-i386: Make "level" and "xlevel" properties static (diff) | |
| download | qemu-01431f3ce0f31e123172cc99c12c98c0ddbe9917.tar.gz qemu-01431f3ce0f31e123172cc99c12c98c0ddbe9917.tar.xz qemu-01431f3ce0f31e123172cc99c12c98c0ddbe9917.zip | |
target-i386: X86CPU::xlevel2 QOM property
We already have "level" and "xlevel", only "xlevel2" is missing.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386')
| -rw-r--r-- | target-i386/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 2bbf01df92..e657f10d97 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -2077,7 +2077,7 @@ static void x86_cpu_load_def(X86CPU *cpu, X86CPUDefinition *def, Error **errp) object_property_set_int(OBJECT(cpu), def->model, "model", errp); object_property_set_int(OBJECT(cpu), def->stepping, "stepping", errp); object_property_set_int(OBJECT(cpu), def->xlevel, "xlevel", errp); - env->cpuid_xlevel2 = def->xlevel2; + object_property_set_int(OBJECT(cpu), def->xlevel2, "xlevel2", errp); cpu->cache_info_passthrough = def->cache_info_passthrough; object_property_set_str(OBJECT(cpu), def->model_id, "model-id", errp); for (w = 0; w < FEATURE_WORDS; w++) { @@ -2962,6 +2962,7 @@ static Property x86_cpu_properties[] = { DEFINE_PROP_BOOL("kvm", X86CPU, expose_kvm, true), DEFINE_PROP_UINT32("level", X86CPU, env.cpuid_level, 0), DEFINE_PROP_UINT32("xlevel", X86CPU, env.cpuid_xlevel, 0), + DEFINE_PROP_UINT32("xlevel2", X86CPU, env.cpuid_xlevel2, 0), DEFINE_PROP_END_OF_LIST() }; |
