* [Qemu-devel] [PATCH] qxl: Ignore set_client_capabilities pre/post migrate
@ 2012-09-07 19:48 Hans de Goede
2012-09-10 8:50 ` Gerd Hoffmann
0 siblings, 1 reply; 2+ messages in thread
From: Hans de Goede @ 2012-09-07 19:48 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: Hans de Goede, Søren Sandmann, qemu-devel
The recent introduction of set_client_capabilities has broken
(seamless) migration by trying to call qxl_send_events pre (seamless
incoming) and post (*) migration, triggering the following assert:
qxl_send_events: Assertion `qemu_spice_display_is_running(&d->ssd)' failed.
The solution is easy, pre migration the guest will have already received
the client caps on the migration source side, and post migration there no
longer is a guest, so we can simply ignore the set_client_capabilities call
in both those scenarios.
*) Post migration, so not fatal for to the migration itself, but still a crash
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
hw/qxl.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/hw/qxl.c b/hw/qxl.c
index 045432e..1b400f1 100644
--- a/hw/qxl.c
+++ b/hw/qxl.c
@@ -953,6 +953,11 @@ static void interface_set_client_capabilities(QXLInstance *sin,
{
PCIQXLDevice *qxl = container_of(sin, PCIQXLDevice, ssd.qxl);
+ if (runstate_check(RUN_STATE_INMIGRATE) ||
+ runstate_check(RUN_STATE_POSTMIGRATE)) {
+ return;
+ }
+
qxl->shadow_rom.client_present = client_present;
memcpy(qxl->shadow_rom.client_capabilities, caps, sizeof(caps));
qxl->rom->client_present = client_present;
--
1.7.12
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] qxl: Ignore set_client_capabilities pre/post migrate
2012-09-07 19:48 [Qemu-devel] [PATCH] qxl: Ignore set_client_capabilities pre/post migrate Hans de Goede
@ 2012-09-10 8:50 ` Gerd Hoffmann
0 siblings, 0 replies; 2+ messages in thread
From: Gerd Hoffmann @ 2012-09-10 8:50 UTC (permalink / raw)
To: Hans de Goede; +Cc: Søren Sandmann, qemu-devel
On 09/07/12 21:48, Hans de Goede wrote:
> The recent introduction of set_client_capabilities has broken
> (seamless) migration by trying to call qxl_send_events pre (seamless
> incoming) and post (*) migration, triggering the following assert:
> qxl_send_events: Assertion `qemu_spice_display_is_running(&d->ssd)' failed.
>
> The solution is easy, pre migration the guest will have already received
> the client caps on the migration source side, and post migration there no
> longer is a guest, so we can simply ignore the set_client_capabilities call
> in both those scenarios.
Patch added to spice patch queue.
thanks,
Gerd
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-09-10 8:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-07 19:48 [Qemu-devel] [PATCH] qxl: Ignore set_client_capabilities pre/post migrate Hans de Goede
2012-09-10 8:50 ` Gerd Hoffmann
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).