From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=44886 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POZ8K-0007zL-Gx for qemu-devel@nongnu.org; Fri, 03 Dec 2010 12:09:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1POZ8I-0004v1-Rn for qemu-devel@nongnu.org; Fri, 03 Dec 2010 12:09:20 -0500 Received: from mtagate1.uk.ibm.com ([194.196.100.161]:40726) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1POZ8I-0004u0-Ja for qemu-devel@nongnu.org; Fri, 03 Dec 2010 12:09:18 -0500 Received: from d06nrmr1707.portsmouth.uk.ibm.com (d06nrmr1707.portsmouth.uk.ibm.com [9.149.39.225]) by mtagate1.uk.ibm.com (8.13.1/8.13.1) with ESMTP id oB3H9FHO017749 for ; Fri, 3 Dec 2010 17:09:15 GMT Received: from d06av03.portsmouth.uk.ibm.com (d06av03.portsmouth.uk.ibm.com [9.149.37.213]) by d06nrmr1707.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id oB3H9D3A3338446 for ; Fri, 3 Dec 2010 17:09:15 GMT Received: from d06av03.portsmouth.uk.ibm.com (localhost.localdomain [127.0.0.1]) by d06av03.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id oB3H9C5S022197 for ; Fri, 3 Dec 2010 10:09:12 -0700 From: Stefan Hajnoczi Date: Fri, 3 Dec 2010 17:09:01 +0000 Message-Id: <1291396141-25541-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH] exec: Remove debugging fprintf() that slipped into qemu_ram_alloc_from_ptr() List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Hajnoczi , "Michael S. Tsirkin" Remove the debugging fprintf() slipped in via the following commit: commit b2e0a138e77245290428a7d599a929e2e1bfe510 Author: Michael S. Tsirkin Date: Mon Nov 22 19:52:34 2010 +0200 migration: stable ram block ordering Signed-off-by: Stefan Hajnoczi --- exec.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/exec.c b/exec.c index 6c8f635..42a35e0 100644 --- a/exec.c +++ b/exec.c @@ -2858,7 +2858,6 @@ ram_addr_t qemu_ram_alloc_from_ptr(DeviceState *dev, const char *name, new_block->length = size; QLIST_INSERT_HEAD(&ram_list.blocks, new_block, next); - fprintf(stderr, "alloc ram %s len 0x%x\n", new_block->idstr, (int)new_block->length); ram_list.phys_dirty = qemu_realloc(ram_list.phys_dirty, last_ram_offset() >> TARGET_PAGE_BITS); -- 1.7.2.3