qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Laurent Vivier <lvivier@redhat.com>
To: Greg Kurz <groug@kaod.org>, qemu-devel@nongnu.org
Cc: qemu-ppc@nongnu.org, David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH] spapr/ppc: fix backward migration to QEMU 2.9
Date: Tue, 20 Jun 2017 15:08:47 +0200	[thread overview]
Message-ID: <3f9a94c6-6391-d45e-fbd9-32a8e1e8504f@redhat.com> (raw)
In-Reply-To: <149789192064.8356.6383758991647148922.stgit@bahia.lan>

On 19/06/2017 19:05, Greg Kurz wrote:
> Commit c783b0012708 ("ppc: Rework CPU compatibility testing across
> migration") added a subsection to the vmstate description of CPUs.
> This subsection is sent when the CPU compat_pvr field is non-zero,
> which is likely to happen after CAS negociation (since QEMU 2.9) or
> even before CAS negociation if the user explicitely asked for compat
> mode.
> 
> This breaks backward migration of existing pseries-2.9 machine types
> since they don't know about this "compat" subsection:
> 
> qemu-system-ppc64: error while loading state for instance 0x0 of
>  device 'cpu'
> 
> This patch reverts to the behavior of simply ignoring the PVR when
> migrating older machines (ie, let the migration succeed if the user
> is sure that the CPU on the destination is close enough to work).
> 
> Signed-off-by: Greg Kurz <groug@kaod.org>

Reviewed-by: Laurent Vivier <lvivier@redhat.com>

but I think it should be merged with patch ("ppc: Rework CPU
compatibility testing across migration") that is not merged and in the
maintainer tree.

thanks,
Laurent

> ---
>  hw/ppc/spapr.c              |    7 ++++++-
>  target/ppc/cpu.h            |    1 +
>  target/ppc/machine.c        |    2 +-
>  target/ppc/translate_init.c |    2 ++
>  4 files changed, 10 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> index d4d781876b27..265d49bbcd7f 100644
> --- a/hw/ppc/spapr.c
> +++ b/hw/ppc/spapr.c
> @@ -3474,7 +3474,12 @@ DEFINE_SPAPR_MACHINE(2_10, "2.10", true);
>   * pseries-2.9
>   */
>  #define SPAPR_COMPAT_2_9                                               \
> -    HW_COMPAT_2_9
> +    HW_COMPAT_2_9                                                      \
> +    {                                                                  \
> +        .driver = TYPE_POWERPC_CPU,                                    \
> +        .property = "pre-2.10-migration",                              \
> +        .value    = "on",                                              \
> +    },                                                                 \
>  
>  static void spapr_machine_2_9_instance_options(MachineState *machine)
>  {
> diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
> index 09393e601fd9..6ee2a26a963d 100644
> --- a/target/ppc/cpu.h
> +++ b/target/ppc/cpu.h
> @@ -1211,6 +1211,7 @@ struct PowerPCCPU {
>      uint64_t mig_insns_flags;
>      uint64_t mig_insns_flags2;
>      uint32_t mig_nb_BATs;
> +    bool pre_2_10_migration;
>  };
>  
>  static inline PowerPCCPU *ppc_env_get_cpu(CPUPPCState *env)
> diff --git a/target/ppc/machine.c b/target/ppc/machine.c
> index a29aabe8f079..1b7aede579ea 100644
> --- a/target/ppc/machine.c
> +++ b/target/ppc/machine.c
> @@ -608,7 +608,7 @@ static bool compat_needed(void *opaque)
>      PowerPCCPU *cpu = opaque;
>  
>      assert(!(cpu->compat_pvr && !cpu->vhyp));
> -    return (cpu->compat_pvr != 0);
> +    return !cpu->pre_2_10_migration && cpu->compat_pvr != 0;
>  }
>  
>  static const VMStateDescription vmstate_compat = {
> diff --git a/target/ppc/translate_init.c b/target/ppc/translate_init.c
> index 53aff5a7b734..783bf98217cc 100644
> --- a/target/ppc/translate_init.c
> +++ b/target/ppc/translate_init.c
> @@ -10610,6 +10610,8 @@ static gchar *ppc_gdb_arch_name(CPUState *cs)
>  
>  static Property ppc_cpu_properties[] = {
>      DEFINE_PROP_BOOL("pre-2.8-migration", PowerPCCPU, pre_2_8_migration, false),
> +    DEFINE_PROP_BOOL("pre-2.10-migration", PowerPCCPU, pre_2_10_migration,
> +                     false),
>      DEFINE_PROP_END_OF_LIST(),
>  };
>  
> 
> 

  reply	other threads:[~2017-06-20 13:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-19 17:05 [Qemu-devel] [PATCH] spapr/ppc: fix backward migration to QEMU 2.9 Greg Kurz
2017-06-20 13:08 ` Laurent Vivier [this message]
2017-06-20 14:19   ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-06-21  8:05     ` David Gibson

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=3f9a94c6-6391-d45e-fbd9-32a8e1e8504f@redhat.com \
    --to=lvivier@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=groug@kaod.org \
    --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).