qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 03/15] target-i386: cpu: convert 'stepping' to s


From: Eduardo Habkost
Subject: Re: [Qemu-devel] [PATCH 03/15] target-i386: cpu: convert 'stepping' to static property
Date: Mon, 24 Jun 2013 13:53:43 -0300
User-agent: Mutt/1.5.21 (2010-09-15)

On Wed, Jun 05, 2013 at 03:18:34PM +0200, Igor Mammedov wrote:
> Signed-off-by: Igor Mammedov <address@hidden>

Reviewed-by: Eduardo Habkost <address@hidden>


> ---
>  target-i386/cpu.c |   12 +++++++++---
>  1 files changed, 9 insertions(+), 3 deletions(-)
> 
> diff --git a/target-i386/cpu.c b/target-i386/cpu.c
> index 5d379af..1d997ee 100644
> --- a/target-i386/cpu.c
> +++ b/target-i386/cpu.c
> @@ -1282,6 +1282,14 @@ static void x86_cpuid_version_set_stepping(Object 
> *obj, Visitor *v,
>      env->cpuid_version |= value & 0xf;
>  }
>  
> +static PropertyInfo qdev_prop_stepping = {
> +    .name  = "uint32",
> +    .get   = x86_cpuid_version_get_stepping,
> +    .set   = x86_cpuid_version_set_stepping,
> +};
> +#define DEFINE_PROP_STEPPING(_n)                                             
>   \
> +    DEFINE_PROP(_n, X86CPU, env.cpuid_version, qdev_prop_stepping, uint32_t)
> +
>  static void x86_cpuid_get_level(Object *obj, Visitor *v, void *opaque,
>                                  const char *name, Error **errp)
>  {
> @@ -1494,6 +1502,7 @@ static void x86_cpu_get_feature_words(Object *obj, 
> Visitor *v, void *opaque,
>  static Property cpu_x86_properties[] = {
>      DEFINE_PROP_FAMILY("family"),
>      DEFINE_PROP_MODEL("model"),
> +    DEFINE_PROP_STEPPING("stepping"),
>      DEFINE_PROP_END_OF_LIST(),
>  };
>  
> @@ -2473,9 +2482,6 @@ static void x86_cpu_initfn(Object *obj)
>      cs->env_ptr = env;
>      cpu_exec_init(env);
>  
> -    object_property_add(obj, "stepping", "int",
> -                        x86_cpuid_version_get_stepping,
> -                        x86_cpuid_version_set_stepping, NULL, NULL, NULL);
>      object_property_add(obj, "level", "int",
>                          x86_cpuid_get_level,
>                          x86_cpuid_set_level, NULL, NULL, NULL);
> -- 
> 1.7.1
> 
> 

-- 
Eduardo



reply via email to

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