From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54040) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VvRZt-0005LA-RE for qemu-devel@nongnu.org; Tue, 24 Dec 2013 07:59:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VvRZh-00041C-RJ for qemu-devel@nongnu.org; Tue, 24 Dec 2013 07:59:17 -0500 Received: from cantor2.suse.de ([195.135.220.15]:51998 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VvRZh-000410-Ld for qemu-devel@nongnu.org; Tue, 24 Dec 2013 07:59:05 -0500 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Tue, 24 Dec 2013 13:58:57 +0100 Message-Id: <1387889941-9896-7-git-send-email-afaerber@suse.de> In-Reply-To: <1387889941-9896-1-git-send-email-afaerber@suse.de> References: <1387889941-9896-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 06/10] 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: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= From: Igor Mammedov Signed-off-by: Igor Mammedov Signed-off-by: Andreas F=C3=A4rber --- 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 0e00a8a..7d5b58c 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1736,7 +1736,7 @@ static void cpu_x86_parse_featurestr(X86CPU *cpu, c= har *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 =3D true; + object_property_parse(OBJECT(cpu), "on", "hv-vapic", errp); } else { error_setg(errp, "feature string `%s' not in format (+featur= e|" "-feature|feature=3Dxyz)", featurestr); @@ -2727,6 +2727,7 @@ static void x86_cpu_synchronize_from_tb(CPUState *c= s, TranslationBlock *tb) static Property x86_cpu_properties[] =3D { 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() }; =20 --=20 1.8.4