From 689751989c66b8f426c60899a9054af3caab7b8a Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Wed, 29 Jun 2011 11:53:21 +0200 Subject: qxl: only disallow specific io's in vga mode Since the driver is still operation also after moving to UNDEFINED, i.e. by destroying primary in any way. --- hw/qxl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/qxl.c b/hw/qxl.c index 833c76cc7..83c29c0dd 100644 --- a/hw/qxl.c +++ b/hw/qxl.c @@ -1080,8 +1080,9 @@ static void ioport_write(void *opaque, uint32_t addr, uint32_t val) case QXL_IO_LOG: break; default: - if (d->mode == QXL_MODE_NATIVE || d->mode == QXL_MODE_COMPAT) + if (d->mode != QXL_MODE_VGA) { break; + } dprint(d, 1, "%s: unexpected port 0x%x (%s) in vga mode\n", __FUNCTION__, io_port, io_port_to_string(io_port)); /* be nice to buggy guest drivers */ -- cgit v1.2.3