From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QhiNb-0002KA-2W for qemu-devel@nongnu.org; Fri, 15 Jul 2011 09:24:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QhiNZ-00022w-97 for qemu-devel@nongnu.org; Fri, 15 Jul 2011 09:24:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14712) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QhiNY-00022l-9z for qemu-devel@nongnu.org; Fri, 15 Jul 2011 09:24:28 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p6FDOR47028728 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 15 Jul 2011 09:24:27 -0400 From: Alon Levy Date: Fri, 15 Jul 2011 16:23:45 +0300 Message-Id: <1310736228-27707-9-git-send-email-alevy@redhat.com> In-Reply-To: <1310736228-27707-1-git-send-email-alevy@redhat.com> References: <1310736228-27707-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH v6 08/11] qxl: only disallow specific io's in vga mode List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: yhalperi@redhat.com, kraxel@redhat.com Since the driver is still in operation even after moving to UNDEFINED, i.e. by destroying primary in any way. Signed-off-by: Alon Levy --- hw/qxl.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/hw/qxl.c b/hw/qxl.c index d645c87..b946942 100644 --- a/hw/qxl.c +++ b/hw/qxl.c @@ -1061,8 +1061,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", __func__, io_port, io_port_to_string(io_port)); return; -- 1.7.6