qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kurz <gkurz@linux.vnet.ibm.com>
To: Laurent Dufour <ldufour@linux.vnet.ibm.com>
Cc: Alexey Kardashevskiy <aik@ozlabs.ru>,
	qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
	Alexander Graf <agraf@suse.de>
Subject: Re: [Qemu-devel] [PATCH] target-ppc: KVMPPC_H_CAS fix cpu-version endianess
Date: Fri, 27 Jun 2014 17:16:32 +0200	[thread overview]
Message-ID: <20140627171632.17b0ff18@bahia.local> (raw)
In-Reply-To: <20140627134737.26170.27909.stgit@nimbus>

On Fri, 27 Jun 2014 15:47:37 +0200
Laurent Dufour <ldufour@linux.vnet.ibm.com> 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 <ldufour@linux.vnet.ibm.com>
> ---

Reviewed-by: Greg Kurz <gkurz@linux.vnet.ibm.com>

>  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                                     kurzgreg@fr.ibm.com
                                                 gkurz@linux.vnet.ibm.com
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	other threads:[~2014-06-27 15:17 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-27 13:47 [Qemu-devel] [PATCH] target-ppc: KVMPPC_H_CAS fix cpu-version endianess Laurent Dufour
2014-06-27 15:16 ` Greg Kurz [this message]
2014-06-27 16:13   ` Alexander Graf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140627171632.17b0ff18@bahia.local \
    --to=gkurz@linux.vnet.ibm.com \
    --cc=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --cc=ldufour@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).