[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 05/10] target-i386: convert 'hv_relaxed' to static p
From: |
Igor Mammedov |
Subject: |
[Qemu-devel] [PATCH 05/10] target-i386: convert 'hv_relaxed' to static property |
Date: |
Mon, 25 Feb 2013 02:03:04 +0100 |
Signed-off-by: Igor Mammedov <address@hidden>
---
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 443c15e..e38c369 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1349,6 +1349,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(),
};
@@ -1489,7 +1490,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
[Qemu-devel] [PATCH 02/10] target-i386: cpu: convert existing dynamic properties into static properties, Igor Mammedov, 2013/02/24
[Qemu-devel] [PATCH 07/10] target-i386: convert 'check' and 'enforce' to static properties, Igor Mammedov, 2013/02/24
[Qemu-devel] [PATCH 05/10] target-i386: convert 'hv_relaxed' to static property,
Igor Mammedov <=
[Qemu-devel] [PATCH 08/10] target-i386: cleanup 'foo' feature handling', Igor Mammedov, 2013/02/24
[Qemu-devel] [PATCH 04/10] target-i386: convert 'hv_spinlocks' to static property, Igor Mammedov, 2013/02/24
[Qemu-devel] [PATCH 06/10] target-i386: convert 'hv_vapic' to static property, Igor Mammedov, 2013/02/24
[Qemu-devel] [PATCH 09/10] target-i386: cleanup 'foo=val' feature handling, Igor Mammedov, 2013/02/24
[Qemu-devel] [PATCH 10/10] target-i386: set [+-]feature using static properties, Igor Mammedov, 2013/02/24