diff options
author | Igor Mammedov <imammedo@redhat.com> | 2012-08-08 13:54:27 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-12-24 12:30:46 +0100 |
commit | 0f46685d1b03efaaf5189f0e9af8754cb8f8979c (patch) | |
tree | ae5d967e7e01a4f8598426fcc71bcc709a8a4c18 /target-i386/cpu.c | |
parent | 89314504197b305173e3f2d23ce541898ef2691c (diff) |
target-i386: Convert 'hv_vapic' to static property
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-i386/cpu.c')
-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 0e00a8ad09..7d5b58c6da 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1736,7 +1736,7 @@ static void cpu_x86_parse_featurestr(X86CPU *cpu, char *features, Error **errp) } else if (!strcmp(featurestr, "hv_relaxed")) { object_property_parse(OBJECT(cpu), "on", "hv-relaxed", errp); } else if (!strcmp(featurestr, "hv_vapic")) { - cpu->hyperv_vapic = true; + object_property_parse(OBJECT(cpu), "on", "hv-vapic", errp); } else { error_setg(errp, "feature string `%s' not in format (+feature|" "-feature|feature=xyz)", featurestr); @@ -2727,6 +2727,7 @@ static void x86_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb) static Property x86_cpu_properties[] = { DEFINE_PROP_BOOL("pmu", X86CPU, enable_pmu, false), DEFINE_PROP_BOOL("hv-relaxed", X86CPU, hyperv_relaxed_timing, false), + DEFINE_PROP_BOOL("hv-vapic", X86CPU, hyperv_vapic, false), DEFINE_PROP_END_OF_LIST() }; |