From: Alon Levy <alevy@redhat.com>
To: qemu-devel@nongnu.org, kraxel@redhat.com
Cc: yhalperi@redhat.com
Subject: [Qemu-devel] [PATCH] qxl: create slots on post_load in any state (fix RHBZ 740547)
Date: Mon, 17 Oct 2011 12:24:20 +0200 [thread overview]
Message-ID: <1318847060-14080-1-git-send-email-alevy@redhat.com> (raw)
If we migrate when the device is not in a native state the guest
still believes the slots are created, and will cause operations
that reference the slots, causing a "panic: virtual address out of range"
on the first of them. Easy to see by migrating in vga mode (with
a driver loaded, for instance windows cmd window in full screen mode)
and then exiting vga mode back to native mode will cause said panic.
Fixed by doing the slot recreation unconditionally at post_load
Signed-off-by: Alon Levy <alevy@redhat.com>
---
hw/qxl.c | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/hw/qxl.c b/hw/qxl.c
index 03848ed..4e9f39f 100644
--- a/hw/qxl.c
+++ b/hw/qxl.c
@@ -1684,6 +1684,14 @@ static int qxl_post_load(void *opaque, int version)
qxl_mode_to_string(d->mode));
newmode = d->mode;
d->mode = QXL_MODE_UNDEFINED;
+ for (i = 0; i < NUM_MEMSLOTS; i++) {
+ if (!d->guest_slots[i].active) {
+ continue;
+ }
+ dprint(d, 1, "%s: restoring guest slot %d delta %"PRIu64"\n",
+ __func__, i, d->guest_slots[i].delta);
+ qxl_add_memslot(d, i, d->guest_slots[i].delta, QXL_SYNC);
+ }
switch (newmode) {
case QXL_MODE_UNDEFINED:
break;
@@ -1691,12 +1699,6 @@ static int qxl_post_load(void *opaque, int version)
qxl_enter_vga_mode(d);
break;
case QXL_MODE_NATIVE:
- for (i = 0; i < NUM_MEMSLOTS; i++) {
- if (!d->guest_slots[i].active) {
- continue;
- }
- qxl_add_memslot(d, i, 0, QXL_SYNC);
- }
qxl_create_guest_primary(d, 1, QXL_SYNC);
/* replay surface-create and cursor-set commands */
--
1.7.6.4
next reply other threads:[~2011-10-17 10:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-17 10:24 Alon Levy [this message]
2011-10-17 10:41 ` [Qemu-devel] [PATCH] qxl: create slots on post_load in any state (fix RHBZ 740547) Yonit Halperin
2011-10-17 11:43 ` Alon Levy
-- strict thread matches above, loose matches on Subject: below --
2011-09-22 12:33 Alon Levy
2011-10-14 13:01 ` Gerd Hoffmann
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=1318847060-14080-1-git-send-email-alevy@redhat.com \
--to=alevy@redhat.com \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=yhalperi@redhat.com \
/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).