qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] target-ppc: KVMPPC_H_CAS fix cpu-version endian


From: Greg Kurz
Subject: Re: [Qemu-devel] [PATCH] target-ppc: KVMPPC_H_CAS fix cpu-version endianess
Date: Fri, 27 Jun 2014 17:16:32 +0200

On Fri, 27 Jun 2014 15:47:37 +0200
Laurent Dufour <address@hidden> wrote:

> During KVMPPC_H_CAS processing, the cpu-version updated value is stored
> without taking care of the current endianess. As a consequence, the guest
> may not switch to the right CPU model, leading to unexpected results.
> 
> If needed, the value is now converted.
> 
> Fixes: 6d9412ea8132 ("target-ppc: Implement "compat" CPU option")
> Signed-off-by: Laurent Dufour <address@hidden>
> ---

Reviewed-by: Greg Kurz <address@hidden>

>  hw/ppc/spapr.c |    3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> index 82f183f173ee..85e9f4a74933 100644
> --- a/hw/ppc/spapr.c
> +++ b/hw/ppc/spapr.c
> @@ -228,8 +228,7 @@ static int spapr_fixup_cpu_smt_dt(void *fdt, int offset, 
> PowerPCCPU *cpu,
>      int index = ppc_get_vcpu_dt_id(cpu);
> 
>      if (cpu->cpu_version) {
> -        ret = fdt_setprop(fdt, offset, "cpu-version",
> -                          &cpu->cpu_version, sizeof(cpu->cpu_version));
> +        ret = fdt_setprop_cell(fdt, offset, "cpu-version", cpu->cpu_version);
>          if (ret < 0) {
>              return ret;
>          }
> 
> 



-- 
Gregory Kurz                                     address@hidden
                                                 address@hidden
Software Engineer @ IBM/Meiosys                  http://www.ibm.com
Tel +33 (0)562 165 496

"Anarchy is about taking complete responsibility for yourself."
        Alan Moore.




reply via email to

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