From: "Cédric Le Goater" <clg@kaod.org>
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] [PATCH v3 4/5] xics: directly register ICPState objects to vmstate
Date: Wed, 7 Jun 2017 20:14:01 +0200 [thread overview]
Message-ID: <2f1659c4-0bad-a3d1-91fc-a0a802f21fa5@kaod.org> (raw)
In-Reply-To: <149685583778.12025.272004316108066026.stgit@bahia.lan>
On 06/07/2017 07:17 PM, Greg Kurz wrote:
> The ICPState objects are currently registered to vmstate as qdev objects.
> Their instance ids are hence computed automatically in the migration code,
> and thus depends on the order the CPU cores were plugged.
>
> If the destination had its CPU cores plugged in a different order than the
> source, then ICPState objects will have different instance_ids and load
> the wrong state.
>
> Since CPU objects have a reliable cpu_index which is already used as
> instance_id in vmstate, let's use it for ICPState as well.
>
> Signed-off-by: Greg Kurz <groug@kaod.org>
> ---
> hw/intc/xics.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/hw/intc/xics.c b/hw/intc/xics.c
> index 330441ff7fe8..3d76b43876c5 100644
> --- a/hw/intc/xics.c
> +++ b/hw/intc/xics.c
> @@ -348,10 +348,14 @@ static void icp_realize(DeviceState *dev, Error **errp)
> }
>
> qemu_register_reset(icp_reset, dev);
> + vmstate_register(NULL, icp->cs->cpu_index, &vmstate_icp_server, icp);
so, what I just said in the previous email regarding ->cs would break this
patch. Forget about it.
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Thanks,
C.
> }
>
> static void icp_unrealize(DeviceState *dev, Error **errp)
> {
> + ICPState *icp = ICP(dev);
> +
> + vmstate_unregister(NULL, &vmstate_icp_server, icp);
> qemu_unregister_reset(icp_reset, dev);
> }
>
> @@ -359,7 +363,6 @@ static void icp_class_init(ObjectClass *klass, void *data)
> {
> DeviceClass *dc = DEVICE_CLASS(klass);
>
> - dc->vmsd = &vmstate_icp_server;
> dc->realize = icp_realize;
> dc->unrealize = icp_unrealize;
> }
>
next prev parent reply other threads:[~2017-06-07 18:14 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-07 17:16 [Qemu-devel] [PATCH v3 0/5] spapr/xics: fix migration of older machine types Greg Kurz
2017-06-07 17:16 ` [Qemu-devel] [PATCH v3 1/5] pnv_core: drop reference on ICPState object during CPU realization Greg Kurz
2017-06-07 17:49 ` Cédric Le Goater
2017-06-08 1:41 ` David Gibson
2017-06-07 17:17 ` [Qemu-devel] [PATCH v3 2/5] xics: add reset() handler to ICPStateClass Greg Kurz
2017-06-07 17:47 ` Cédric Le Goater
2017-06-08 1:44 ` David Gibson
2017-06-07 17:17 ` [Qemu-devel] [PATCH v3 3/5] xics: setup cpu at realize time Greg Kurz
2017-06-07 18:11 ` Cédric Le Goater
2017-06-07 20:55 ` Greg Kurz
2017-06-08 1:53 ` David Gibson
2017-06-08 9:14 ` Greg Kurz
2017-06-08 9:25 ` Cédric Le Goater
2017-06-08 9:59 ` Greg Kurz
2017-06-08 5:50 ` Cédric Le Goater
2017-06-08 8:54 ` Greg Kurz
2017-06-08 2:01 ` David Gibson
2017-06-08 8:45 ` Greg Kurz
2017-06-08 9:32 ` Cédric Le Goater
2017-06-09 2:24 ` David Gibson
2017-06-09 6:45 ` Greg Kurz
2017-06-09 9:43 ` David Gibson
2017-06-07 17:17 ` [Qemu-devel] [PATCH v3 4/5] xics: directly register ICPState objects to vmstate Greg Kurz
2017-06-07 18:14 ` Cédric Le Goater [this message]
2017-06-07 20:56 ` Greg Kurz
2017-06-08 3:59 ` David Gibson
2017-06-08 9:08 ` Greg Kurz
2017-06-07 17:17 ` [Qemu-devel] [PATCH v3 5/5] spapr: fix migration of ICPState objects from/to older QEMU Greg Kurz
2017-06-08 4:08 ` David Gibson
2017-06-08 9:54 ` Greg Kurz
2017-06-12 14:24 ` David Gibson
2017-06-13 7:33 ` Greg Kurz
2017-06-13 8:06 ` David Gibson
2017-06-13 8:40 ` Greg Kurz
2017-06-13 9:00 ` Dr. David Alan Gilbert
2017-06-13 9:21 ` Greg Kurz
2017-06-13 9:55 ` Dr. David Alan Gilbert
2017-06-13 10:05 ` Greg Kurz
2017-06-13 10:12 ` Dr. David Alan Gilbert
2017-06-13 10:35 ` Greg Kurz
2017-06-13 14:55 ` David Gibson
2017-06-13 10:01 ` David Gibson
2017-06-13 15:24 ` Greg Kurz
2017-06-14 1:40 ` 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=2f1659c4-0bad-a3d1-91fc-a0a802f21fa5@kaod.org \
--to=clg@kaod.org \
--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).