From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34840) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHouR-0006x6-4S for qemu-devel@nongnu.org; Tue, 28 Jun 2016 05:02:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bHouM-0003P0-Vy for qemu-devel@nongnu.org; Tue, 28 Jun 2016 05:02:18 -0400 Received: from mx-v6.kamp.de ([2a02:248:0:51::16]:60153 helo=mx01.kamp.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHouM-0003Oo-MT for qemu-devel@nongnu.org; Tue, 28 Jun 2016 05:02:14 -0400 From: Peter Lieven Date: Tue, 28 Jun 2016 11:01:34 +0200 Message-Id: <1467104499-27517-11-git-send-email-pl@kamp.de> In-Reply-To: <1467104499-27517-1-git-send-email-pl@kamp.de> References: <1467104499-27517-1-git-send-email-pl@kamp.de> Subject: [Qemu-devel] [PATCH 10/15] vmware_svga: use mmap for scratch pad List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, mreitz@redhat.com, pbonzini@redhat.com, mst@redhat.com, dgilbert@redhat.com, peter.maydell@linaro.org, kraxel@redhat.com, Peter Lieven the scratch pad is 256kB Signed-off-by: Peter Lieven --- hw/display/vmware_vga.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/display/vmware_vga.c b/hw/display/vmware_vga.c index e51a05e..9942b2d 100644 --- a/hw/display/vmware_vga.c +++ b/hw/display/vmware_vga.c @@ -22,6 +22,7 @@ * THE SOFTWARE. */ #include "qemu/osdep.h" +#include "qemu/mmap-alloc.h" #include "qapi/error.h" #include "hw/hw.h" #include "hw/loader.h" @@ -1247,7 +1248,7 @@ static void vmsvga_init(DeviceState *dev, struct vmsvga_state_s *s, MemoryRegion *address_space, MemoryRegion *io) { s->scratch_size = SVGA_SCRATCH_SIZE; - s->scratch = g_malloc(s->scratch_size * 4); + s->scratch = qemu_anon_ram_mmap(s->scratch_size * 4); s->vga.con = graphic_console_init(dev, 0, &vmsvga_ops, s); -- 1.9.1