[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC 10/20] target-i386: convert 'hv_vapic' feature into pr
From: |
Igor Mammedov |
Subject: |
[Qemu-devel] [RFC 10/20] target-i386: convert 'hv_vapic' feature into property |
Date: |
Fri, 10 Aug 2012 13:22:26 +0200 |
Signed-off-by: Igor Mammedov <address@hidden>
---
target-i386/cpu.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index f73309e..7734613 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1008,6 +1008,26 @@ static void x86_set_hv_relaxed(Object *obj, Visitor *v,
void *opaque,
}
hyperv_enable_relaxed_timing(value);
}
+
+static void x86_get_hv_vapic(Object *obj, Visitor *v, void *opaque,
+ const char *name, Error **errp)
+{
+ bool value = hyperv_vapic_recommended();
+
+ visit_type_bool(v, &value, name, errp);
+}
+
+static void x86_set_hv_vapic(Object *obj, Visitor *v, void *opaque,
+ const char *name, Error **errp)
+{
+ bool value;
+
+ visit_type_bool(v, &value, name, errp);
+ if (error_is_set(errp)) {
+ return;
+ }
+ hyperv_enable_vapic_recommended(value);
+}
#endif
static void cpudef_2_x86_cpu(X86CPU *cpu, x86_def_t *def, Error **errp)
@@ -1951,6 +1971,9 @@ static void x86_cpu_initfn(Object *obj)
object_property_add(obj, "hv_relaxed", "bool",
x86_get_hv_relaxed,
x86_set_hv_relaxed, NULL, NULL, NULL);
+ object_property_add(obj, "hv_vapic", "bool",
+ x86_set_hv_vapic,
+ x86_get_hv_vapic, NULL, NULL, NULL);
#endif
x86_register_cpuid_properties(obj, feature_name);
x86_register_cpuid_properties(obj, ext_feature_name);
--
1.7.11.2
- [Qemu-devel] [RFC 07/20] target-i386: convert cpuid features into properties, (continued)
- [Qemu-devel] [RFC 07/20] target-i386: convert cpuid features into properties, Igor Mammedov, 2012/08/10
- [Qemu-devel] [RFC 08/20] target-i386: convert 'hv_spinlocks' feature into property, Igor Mammedov, 2012/08/10
- [Qemu-devel] [RFC 09/20] target-i386: convert 'hv_relaxed' feature into property, Igor Mammedov, 2012/08/10
- [Qemu-devel] [RFC 11/20] target-i386: convert 'check' and 'enforce' features into properties, Igor Mammedov, 2012/08/10
- [Qemu-devel] [RFC 10/20] target-i386: convert 'hv_vapic' feature into property,
Igor Mammedov <=
- [Qemu-devel] [RFC 12/20] add visitor for parsing hz[KMG] input string, Igor Mammedov, 2012/08/10
- [Qemu-devel] [RFC 16/20] target-i386: replace uint32_t vendor fields by vendor string in x86_def_t, Igor Mammedov, 2012/08/10
- [Qemu-devel] [RFC 17/20] target-i386: parse cpu_model string into set of stringified properties, Igor Mammedov, 2012/08/10
- [Qemu-devel] [RFC 20/20] target-i386: move default init of cpuid_kvm_features bitmap into CPU initializer from cpudef, Igor Mammedov, 2012/08/10
- Re: [Qemu-devel] [RFC 00/20] target-i386: convert CPU features into properties, Igor Mammedov, 2012/08/10