30 lines
824 B
Diff
30 lines
824 B
Diff
|
From 8ceaa64ed2f20a7af865eb9bac0bc6e54f5f7eea Mon Sep 17 00:00:00 2001
|
||
|
From: Alon Levy <alevy@redhat.com>
|
||
|
Date: Tue, 2 Oct 2012 11:39:14 +0200
|
||
|
Subject: [PATCH 516/522] hw/qxl: fix condition for exiting guest_bug
|
||
|
|
||
|
Reported and suggested by Paolo Bonzini, thanks.
|
||
|
|
||
|
Signed-off-by: Alon Levy <alevy@redhat.com>
|
||
|
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
||
|
---
|
||
|
hw/qxl.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/hw/qxl.c b/hw/qxl.c
|
||
|
index db6440e..445705e 100644
|
||
|
--- a/hw/qxl.c
|
||
|
+++ b/hw/qxl.c
|
||
|
@@ -1461,7 +1461,7 @@ static void ioport_write(void *opaque, target_phys_addr_t addr,
|
||
|
qxl_async_io async = QXL_SYNC;
|
||
|
uint32_t orig_io_port = io_port;
|
||
|
|
||
|
- if (d->guest_bug && !io_port == QXL_IO_RESET) {
|
||
|
+ if (d->guest_bug && io_port != QXL_IO_RESET) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
1.8.0.2
|
||
|
|