From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59140) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TaR8q-0004UI-BE for qemu-devel@nongnu.org; Mon, 19 Nov 2012 08:12:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TaR8n-0001zM-9T for qemu-devel@nongnu.org; Mon, 19 Nov 2012 08:12:00 -0500 Received: from mx1.redhat.com ([209.132.183.28]:27442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TaR8n-0001zD-21 for qemu-devel@nongnu.org; Mon, 19 Nov 2012 08:11:57 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qAJDBt6w009424 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 19 Nov 2012 08:11:55 -0500 From: Alexander Larsson Date: Mon, 19 Nov 2012 14:11:51 +0100 Message-Id: <1353330711-20207-1-git-send-email-alexl@redhat.com> Subject: [Qemu-devel] [PATCH] qxl: Export "mode" as a property List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexander Larsson This way you can easily tell from qemu if the guest is using a qxl driver or not. --- hw/qxl.c | 1 + hw/qxl.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/qxl.c b/hw/qxl.c index 1d16863..98af0bb 100644 --- a/hw/qxl.c +++ b/hw/qxl.c @@ -2261,6 +2261,7 @@ static Property qxl_properties[] = { DEFINE_PROP_UINT32("vram64_size_mb", PCIQXLDevice, vram_size_mb, -1), DEFINE_PROP_UINT32("vgamem_mb", PCIQXLDevice, vgamem_size_mb, 16), DEFINE_PROP_INT32("surfaces", PCIQXLDevice, ssd.num_surfaces, 1024), + DEFINE_PROP_UINT32("mode", PCIQXLDevice, mode, 0), DEFINE_PROP_END_OF_LIST(), }; diff --git a/hw/qxl.h b/hw/qxl.h index e583cfb..c4414ba 100644 --- a/hw/qxl.h +++ b/hw/qxl.h @@ -34,7 +34,7 @@ typedef struct PCIQXLDevice { uint32_t guest_bug; - enum qxl_mode mode; + uint32_t mode; uint32_t cmdflags; int generation; uint32_t revision; -- 1.7.12.1