From patchwork Thu Dec 17 22:08:11 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dave Airlie X-Patchwork-Id: 41351 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3ACE3B6F07 for ; Fri, 18 Dec 2009 09:19:41 +1100 (EST) Received: from localhost ([127.0.0.1]:46235 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NLOh8-00064J-Aq for incoming@patchwork.ozlabs.org; Thu, 17 Dec 2009 17:19:38 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NLOYZ-0001mE-MY for qemu-devel@nongnu.org; Thu, 17 Dec 2009 17:10:47 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NLOYT-0001iI-EW for qemu-devel@nongnu.org; Thu, 17 Dec 2009 17:10:46 -0500 Received: from [199.232.76.173] (port=36360 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NLOYT-0001i1-5q for qemu-devel@nongnu.org; Thu, 17 Dec 2009 17:10:41 -0500 Received: from mx1.redhat.com ([209.132.183.28]:14861) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NLOYS-0003m3-Oy for qemu-devel@nongnu.org; Thu, 17 Dec 2009 17:10:41 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nBHMAe7h027782 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 17 Dec 2009 17:10:40 -0500 Received: from localhost.localdomain (dhcp-0-222.bne.redhat.com [10.64.0.222]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nBHMAUQG005737 for ; Thu, 17 Dec 2009 17:10:39 -0500 From: Dave Airlie To: qemu-devel@nongnu.org Date: Fri, 18 Dec 2009 08:08:11 +1000 Message-Id: <1261087691-8319-7-git-send-email-airlied@gmail.com> In-Reply-To: <1261087691-8319-6-git-send-email-airlied@gmail.com> References: <1261087691-8319-1-git-send-email-airlied@gmail.com> <1261087691-8319-2-git-send-email-airlied@gmail.com> <1261087691-8319-3-git-send-email-airlied@gmail.com> <1261087691-8319-4-git-send-email-airlied@gmail.com> <1261087691-8319-5-git-send-email-airlied@gmail.com> <1261087691-8319-6-git-send-email-airlied@gmail.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 6/6] vmware: increase cursor buffer size. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Dave Airlie The cursor pixmap size we calculate later ends up being 4096 dwords long by the looks of it. This boots an F12 LiveCD now. Signed-off-by: Dave Airlie --- hw/vmware_vga.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index e3d5706..7ab1c79 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -467,7 +467,7 @@ struct vmsvga_cursor_definition_s { int hot_x; int hot_y; uint32_t mask[1024]; - uint32_t image[1024]; + uint32_t image[4096]; }; #define SVGA_BITMAP_SIZE(w, h) ((((w) + 31) >> 5) * (h))