From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35323) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgIxP-0006ME-Mz for qemu-devel@nongnu.org; Thu, 09 Apr 2015 16:21:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YgIxM-00017Z-Ej for qemu-devel@nongnu.org; Thu, 09 Apr 2015 16:21:47 -0400 Received: from mail-wi0-x22d.google.com ([2a00:1450:400c:c05::22d]:38351) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgIxM-00017N-7d for qemu-devel@nongnu.org; Thu, 09 Apr 2015 16:21:44 -0400 Received: by wiun10 with SMTP id n10so2265315wiu.1 for ; Thu, 09 Apr 2015 13:21:43 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <5526DF53.3040205@redhat.com> Date: Thu, 09 Apr 2015 22:21:39 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <5526CDE9.5060209@redhat.com> <1428610053-26148-1-git-send-email-cota@braap.org> In-Reply-To: <1428610053-26148-1-git-send-email-cota@braap.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3] translate-all: use glib for all page descriptor allocations List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Emilio G. Cota" Cc: Peter Maydell , qemu-devel@nongnu.org On 09/04/2015 22:07, Emilio G. Cota wrote: > Since commit > > b7b5233a "bsd-user/mmap.c: Don't try to override g_malloc/g_free" > > the exception we make here for usermode has been unnecessary. > Get rid of it. > > Signed-off-by: Emilio G. Cota > --- > translate-all.c | 18 ++---------------- > 1 file changed, 2 insertions(+), 16 deletions(-) > > diff --git a/translate-all.c b/translate-all.c > index 4d05898..acf792c 100644 > --- a/translate-all.c > +++ b/translate-all.c > @@ -389,18 +389,6 @@ static PageDesc *page_find_alloc(tb_page_addr_t index, int alloc) > void **lp; > int i; > > -#if defined(CONFIG_USER_ONLY) > - /* We can't use g_malloc because it may recurse into a locked mutex. */ > -# define ALLOC(P, SIZE) \ > - do { \ > - P = mmap(NULL, SIZE, PROT_READ | PROT_WRITE, \ > - MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); \ > - } while (0) > -#else > -# define ALLOC(P, SIZE) \ > - do { P = g_malloc0(SIZE); } while (0) > -#endif > - > /* Level 1. Always allocated. */ > lp = l1_map + ((index >> V_L1_SHIFT) & (V_L1_SIZE - 1)); > > @@ -412,7 +400,7 @@ static PageDesc *page_find_alloc(tb_page_addr_t index, int alloc) > if (!alloc) { > return NULL; > } > - ALLOC(p, sizeof(void *) * V_L2_SIZE); > + p = g_new0(void *, V_L2_SIZE); > *lp = p; > } > > @@ -424,12 +412,10 @@ static PageDesc *page_find_alloc(tb_page_addr_t index, int alloc) > if (!alloc) { > return NULL; > } > - ALLOC(pd, sizeof(PageDesc) * V_L2_SIZE); > + pd = g_new0(PageDesc, V_L2_SIZE); > *lp = pd; > } > > -#undef ALLOC > - > return pd + (index & (V_L2_SIZE - 1)); > } > > Thanks, looks good. Paolo