From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35198) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UyrE3-000289-GN for qemu-devel@nongnu.org; Mon, 15 Jul 2013 18:26:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UyrE2-0001kJ-1b for qemu-devel@nongnu.org; Mon, 15 Jul 2013 18:26:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:23029) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UyrE1-0001k4-Q0 for qemu-devel@nongnu.org; Mon, 15 Jul 2013 18:26:33 -0400 From: Igor Mammedov Date: Tue, 16 Jul 2013 00:25:57 +0200 Message-Id: <1373927181-24247-5-git-send-email-imammedo@redhat.com> In-Reply-To: <1373927181-24247-1-git-send-email-imammedo@redhat.com> References: <1373927181-24247-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH 04/20] target-i386: convert 'hv_vapic' to static property List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , Eduardo Habkost , Vadim Rozenfeld , Paolo Bonzini , =?UTF-8?q?Andreas=20F=C3=A4rber?= Signed-off-by: Igor Mammedov --- v2: - rebase on top of hv_vapic in X86CPU --- target-i386/cpu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 001c5ff..3013722 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1514,6 +1514,7 @@ static PropertyInfo qdev_prop_spinlocks = { static Property cpu_x86_properties[] = { { .name = "hv-spinlocks", .info = &qdev_prop_spinlocks }, DEFINE_PROP_BOOL("hv-relaxed", X86CPU, hyperv_relaxed_timing, false), + DEFINE_PROP_BOOL("hv-vapic", X86CPU, hyperv_vapic, false), DEFINE_PROP_END_OF_LIST(), }; @@ -1655,7 +1656,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); -- 1.8.3.1