[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 06/15] target-i386: cpu: convert 'vendor' to sta
From: |
Eduardo Habkost |
Subject: |
Re: [Qemu-devel] [PATCH 06/15] target-i386: cpu: convert 'vendor' to static property |
Date: |
Mon, 24 Jun 2013 14:02:51 -0300 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Wed, Jun 05, 2013 at 03:18:37PM +0200, Igor Mammedov wrote:
> Signed-off-by: Igor Mammedov <address@hidden>
Reviewed-by: Eduardo Habkost <address@hidden>
> ---
> target-i386/cpu.c | 31 ++++++++++++++++++++++++-------
> 1 files changed, 24 insertions(+), 7 deletions(-)
>
> diff --git a/target-i386/cpu.c b/target-i386/cpu.c
> index f42282e..21e7334 100644
> --- a/target-i386/cpu.c
> +++ b/target-i386/cpu.c
> @@ -1290,7 +1290,8 @@ static PropertyInfo qdev_prop_stepping = {
> #define DEFINE_PROP_STEPPING(_n)
> \
> DEFINE_PROP(_n, X86CPU, env.cpuid_version, qdev_prop_stepping, uint32_t)
>
> -static char *x86_cpuid_get_vendor(Object *obj, Error **errp)
> +static void x86_cpuid_get_vendor(Object *obj, Visitor *v, void *opaque,
> + const char *name, Error **errp)
> {
> X86CPU *cpu = X86_CPU(obj);
> CPUX86State *env = &cpu->env;
> @@ -1299,16 +1300,23 @@ static char *x86_cpuid_get_vendor(Object *obj, Error
> **errp)
> value = (char *)g_malloc(CPUID_VENDOR_SZ + 1);
> x86_cpu_vendor_words2str(value, env->cpuid_vendor1, env->cpuid_vendor2,
> env->cpuid_vendor3);
> - return value;
> + visit_type_str(v, &value, name, errp);
> + g_free(value);
> }
>
> -static void x86_cpuid_set_vendor(Object *obj, const char *value,
> - Error **errp)
> +static void x86_cpuid_set_vendor(Object *obj, Visitor *v, void *opaque,
> + const char *name, Error **errp)
> {
> X86CPU *cpu = X86_CPU(obj);
> CPUX86State *env = &cpu->env;
> + char *value;
> int i;
>
> + visit_type_str(v, &value, name, errp);
> + if (error_is_set(errp)) {
> + return;
> + }
> +
> if (strlen(value) != CPUID_VENDOR_SZ) {
> error_set(errp, QERR_PROPERTY_VALUE_BAD, "",
> "vendor", value);
> @@ -1323,6 +1331,17 @@ static void x86_cpuid_set_vendor(Object *obj, const
> char *value,
> env->cpuid_vendor2 |= ((uint8_t)value[i + 4]) << (8 * i);
> env->cpuid_vendor3 |= ((uint8_t)value[i + 8]) << (8 * i);
> }
> + g_free(value);
> +}
> +
> +static PropertyInfo qdev_prop_vendor = {
> + .name = "string",
> + .get = x86_cpuid_get_vendor,
> + .set = x86_cpuid_set_vendor,
> +};
> +#define DEFINE_PROP_VENDOR(_n) {
> \
> + .name = _n,
> \
> + .info = &qdev_prop_vendor
> \
> }
>
> static char *x86_cpuid_get_model_id(Object *obj, Error **errp)
> @@ -1473,6 +1492,7 @@ static Property cpu_x86_properties[] = {
> DEFINE_PROP_STEPPING("stepping"),
> DEFINE_PROP_UINT32("level", X86CPU, env.cpuid_level, 0),
> DEFINE_PROP_UINT32("xlevel", X86CPU, env.cpuid_xlevel, 0),
> + DEFINE_PROP_VENDOR("vendor"),
> DEFINE_PROP_END_OF_LIST(),
> };
>
> @@ -2452,9 +2472,6 @@ static void x86_cpu_initfn(Object *obj)
> cs->env_ptr = env;
> cpu_exec_init(env);
>
> - object_property_add_str(obj, "vendor",
> - x86_cpuid_get_vendor,
> - x86_cpuid_set_vendor, NULL);
> object_property_add_str(obj, "model-id",
> x86_cpuid_get_model_id,
> x86_cpuid_set_model_id, NULL);
> --
> 1.7.1
>
>
--
Eduardo
- [Qemu-devel] [PATCH qom-cpu 00/15 v8] target-i386: convert CPU features into properties, part 1, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 02/15] target-i386: cpu: convert 'model' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 03/15] target-i386: cpu: convert 'stepping' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 04/15] target-i386: cpu: convert 'level' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 05/15] target-i386: cpu: convert 'xlevel' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 06/15] target-i386: cpu: convert 'vendor' to static property, Igor Mammedov, 2013/06/05
- Re: [Qemu-devel] [PATCH 06/15] target-i386: cpu: convert 'vendor' to static property,
Eduardo Habkost <=
- [Qemu-devel] [PATCH 08/15] target-i386: cpu: convert 'tsc-frequency' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 07/15] target-i386: cpu: convert 'model-id' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 01/15] target-i386: cpu: convert 'family' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 11/15] target-i386: convert 'hv_relaxed' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 12/15] target-i386: convert 'hv_vapic' to static property, Igor Mammedov, 2013/06/05
- [Qemu-devel] [PATCH 09/15] target-i386: move hyperv_* static globals to CPUState, Igor Mammedov, 2013/06/05