From 7c8a13c9c4e443bb7bd1cc5492ce8d0eb728f8fe Mon Sep 17 00:00:00 2001 From: Vadim Rozenfeld Date: Mon, 3 Mar 2014 12:09:20 +0100 Subject: [PATCH 08/12] target-i386: Convert 'hv_vapic' to static property MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit RH-Author: Vadim Rozenfeld Message-id: <1393848564-10511-9-git-send-email-vrozenfe@redhat.com> Patchwork-id: 57964 O-Subject: [RHEL-7.0 qemu-kvm v4 PATCH 08/12] target-i386: Convert 'hv_vapic' to static property Bugzilla: 1057173 RH-Acked-by: Paolo Bonzini RH-Acked-by: Igor Mammedov RH-Acked-by: Eduardo Habkost RH-Acked-by: Juan Quintela From: Igor Mammedov Signed-off-by: Igor Mammedov Signed-off-by: Andreas Färber (cherry picked from commit 0f46685d1b03efaaf5189f0e9af8754cb8f8979c) --- target-i386/cpu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Signed-off-by: Miroslav Rezanina --- 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 7c8efaf..7a8cb01 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1651,7 +1651,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); @@ -2589,6 +2589,7 @@ static int64_t x86_cpu_get_arch_id(CPUState *cs) 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() }; -- 1.7.1