From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54041) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VvRZt-0005LC-RS 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-000415-Qn for qemu-devel@nongnu.org; Tue, 24 Dec 2013 07:59:17 -0500 Received: from cantor2.suse.de ([195.135.220.15]:51997 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VvRZh-00040y-K6 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:56 +0100 Message-Id: <1387889941-9896-6-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 05/10] target-i386: Convert 'hv_relaxed' 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 e20b0c8..0e00a8a 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1734,7 +1734,7 @@ static void cpu_x86_parse_featurestr(X86CPU *cpu, c= har *features, Error **errp) } else if (!strcmp(featurestr, "enforce")) { check_cpuid =3D enforce_cpuid =3D 1; } else if (!strcmp(featurestr, "hv_relaxed")) { - cpu->hyperv_relaxed_timing =3D true; + object_property_parse(OBJECT(cpu), "on", "hv-relaxed", errp)= ; } else if (!strcmp(featurestr, "hv_vapic")) { cpu->hyperv_vapic =3D true; } else { @@ -2726,6 +2726,7 @@ static void x86_cpu_synchronize_from_tb(CPUState *c= s, TranslationBlock *tb) =20 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_END_OF_LIST() }; =20 --=20 1.8.4