qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 03/20] target-i386: convert 'hv_relaxed' to static p


From: Igor Mammedov
Subject: [Qemu-devel] [PATCH 03/20] target-i386: convert 'hv_relaxed' to static property
Date: Tue, 16 Jul 2013 00:25:56 +0200

Signed-off-by: Igor Mammedov <address@hidden>
v2:
 - rebase on top of hyperv_relaxed_timing 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 00c2882..001c5ff 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1513,6 +1513,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_END_OF_LIST(),
 };
 
@@ -1652,7 +1653,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")) {
-            cpu->hyperv_relaxed_timing = true;
+            object_property_parse(OBJECT(cpu), "on", "hv-relaxed", errp);
         } else if (!strcmp(featurestr, "hv_vapic")) {
             cpu->hyperv_vapic = true;
         } else {
-- 
1.8.3.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]