From patchwork Mon Dec 6 14:25:34 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jes Sorensen X-Patchwork-Id: 74366 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 332E1B6EED for ; Tue, 7 Dec 2010 01:34:08 +1100 (EST) Received: from localhost ([127.0.0.1]:59925 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PPc8i-0006Sh-Rb for incoming@patchwork.ozlabs.org; Mon, 06 Dec 2010 09:34:05 -0500 Received: from [140.186.70.92] (port=38768 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PPc0o-00030p-8P for qemu-devel@nongnu.org; Mon, 06 Dec 2010 09:25:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PPc0i-0000K4-7z for qemu-devel@nongnu.org; Mon, 06 Dec 2010 09:25:53 -0500 Received: from mx1.redhat.com ([209.132.183.28]:50257) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PPc0i-0000Jm-10 for qemu-devel@nongnu.org; Mon, 06 Dec 2010 09:25:48 -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 oB6EPiMC032123 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 6 Dec 2010 09:25:44 -0500 Received: from red-feather.redhat.com (ovpn-113-53.phx2.redhat.com [10.3.113.53]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id oB6EPfkV018335; Mon, 6 Dec 2010 09:25:43 -0500 From: Jes.Sorensen@redhat.com To: kwolf@redhat.com Date: Mon, 6 Dec 2010 15:25:34 +0100 Message-Id: <1291645540-9784-2-git-send-email-Jes.Sorensen@redhat.com> In-Reply-To: <1291645540-9784-1-git-send-email-Jes.Sorensen@redhat.com> References: <1291645540-9784-1-git-send-email-Jes.Sorensen@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: stefanha@linux.vnet.ibm.com, qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 1/7] Add missing tracing to qemu_mallocz() 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: Jes Sorensen Signed-off-by: Jes Sorensen Reviewed-by: Stefan Hajnoczi --- qemu-malloc.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/qemu-malloc.c b/qemu-malloc.c index 28fb05a..b9b3851 100644 --- a/qemu-malloc.c +++ b/qemu-malloc.c @@ -64,10 +64,13 @@ void *qemu_realloc(void *ptr, size_t size) void *qemu_mallocz(size_t size) { + void *ptr; if (!size && !allow_zero_malloc()) { abort(); } - return qemu_oom_check(calloc(1, size ? size : 1)); + ptr = qemu_oom_check(calloc(1, size ? size : 1)); + trace_qemu_malloc(size, ptr); + return ptr; } char *qemu_strdup(const char *str)