From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkDcQ-0003WQ-D6 for qemu-devel@nongnu.org; Wed, 05 Jun 2013 09:19:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UkDcP-0001IS-2F for qemu-devel@nongnu.org; Wed, 05 Jun 2013 09:19:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28600) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkDcO-0001ID-QT for qemu-devel@nongnu.org; Wed, 05 Jun 2013 09:19:12 -0400 From: Igor Mammedov Date: Wed, 5 Jun 2013 15:18:42 +0200 Message-Id: <1370438326-27054-12-git-send-email-imammedo@redhat.com> In-Reply-To: <1370438326-27054-1-git-send-email-imammedo@redhat.com> References: <1370438326-27054-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH 11/15] 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: ehabkost@redhat.com, afaerber@suse.de Signed-off-by: Igor Mammedov --- 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 c2125f4..95ffb2e 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1561,6 +1561,7 @@ static Property cpu_x86_properties[] = { DEFINE_PROP_MODEL_ID("model-id"), DEFINE_PROP_TSC_FREQ("tsc-frequency"), DEFINE_PROP_HV_SPINLOCKS("hv-spinlocks", HYPERV_SPINLOCK_NEVER_RETRY), + DEFINE_PROP_BOOL("hv-relaxed", X86CPU, env.hyperv_relaxed_timing, false), DEFINE_PROP_END_OF_LIST(), }; @@ -1700,7 +1701,7 @@ static void cpu_x86_parse_featurestr(X86CPU *cpu, char *features, Error **errp) } else if (!strcmp(featurestr, "enforce")) { check_cpuid = enforce_cpuid = 1; } else if (!strcmp(featurestr, "hv_relaxed")) { - env->hyperv_relaxed_timing = true; + object_property_parse(OBJECT(cpu), "on", "hv-relaxed", errp); } else if (!strcmp(featurestr, "hv_vapic")) { env->hyperv_vapic = true; } else { -- 1.7.1