From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=39581 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q8rqR-00060W-FY for qemu-devel@nongnu.org; Sun, 10 Apr 2011 06:26:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q8rqP-0007TC-NP for qemu-devel@nongnu.org; Sun, 10 Apr 2011 06:26:15 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53167) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q8rqP-0007Sp-Cr for qemu-devel@nongnu.org; Sun, 10 Apr 2011 06:26:13 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p3AAQBAK012408 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 10 Apr 2011 06:26:11 -0400 Received: from playa.tlv.redhat.com (dhcp-3-110.tlv.redhat.com [10.35.3.110]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p3AAQ76Q013116 for ; Sun, 10 Apr 2011 06:26:10 -0400 From: Alon Levy Date: Sun, 10 Apr 2011 13:26:04 +0300 Message-Id: <1302431166-17771-3-git-send-email-alevy@redhat.com> In-Reply-To: <1302431166-17771-1-git-send-email-alevy@redhat.com> References: <1302431166-17771-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH 2/4] qxl: add mode to debugprint on destroy primary List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --- hw/qxl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/qxl.c b/hw/qxl.c index 63e295b..ccd820c 100644 --- a/hw/qxl.c +++ b/hw/qxl.c @@ -1009,7 +1009,7 @@ static void ioport_write(void *opaque, uint32_t addr, uint32_t val) break; case QXL_IO_DESTROY_PRIMARY: PANIC_ON(val != 0); - dprint(d, 1, "QXL_IO_DESTROY_PRIMARY\n"); + dprint(d, 1, "QXL_IO_DESTROY_PRIMARY (%s)\n", qxl_mode_to_string(d->mode)); qxl_destroy_primary(d); break; case QXL_IO_DESTROY_SURFACE_WAIT: -- 1.7.4.2