From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=44147 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POJCl-0000yH-Hy for qemu-devel@nongnu.org; Thu, 02 Dec 2010 19:08:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1POJCk-0003Ie-Bg for qemu-devel@nongnu.org; Thu, 02 Dec 2010 19:08:51 -0500 Received: from e4.ny.us.ibm.com ([32.97.182.144]:38790) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1POJCk-0003IY-5b for qemu-devel@nongnu.org; Thu, 02 Dec 2010 19:08:50 -0500 Received: from d01dlp01.pok.ibm.com (d01dlp01.pok.ibm.com [9.56.224.56]) by e4.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id oB2NpmFX000452 for ; Thu, 2 Dec 2010 18:51:48 -0500 Received: from d01relay02.pok.ibm.com (d01relay02.pok.ibm.com [9.56.227.234]) by d01dlp01.pok.ibm.com (Postfix) with ESMTP id 7336C728045 for ; Thu, 2 Dec 2010 19:08:49 -0500 (EST) Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d01relay02.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id oB308mKV435072 for ; Thu, 2 Dec 2010 19:08:49 -0500 Received: from d03av02.boulder.ibm.com (loopback [127.0.0.1]) by d03av02.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id oB308mbE002007 for ; Thu, 2 Dec 2010 17:08:48 -0700 From: "Venkateswararao Jujjuri (JV)" Date: Thu, 2 Dec 2010 16:34:29 -0800 Message-Id: <1291336469-20804-1-git-send-email-jvrao@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH] Remove debug msg related to alloc ram List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, "Venkateswararao Jujjuri (JV)" QEMU printing msgs like this on stat. They appear to be leftout debug. alloc ram pc.ram len 0x40000000 alloc ram pc.bios len 0x20000 alloc ram pc.rom len 0x20000 alloc ram vga.vram len 0x800000 alloc ram 0000:00:02.0/cirrus_vga.rom len 0x10000 alloc ram 0000:00:03.0/virtio-net-pci.rom len 0x10000 Signed-off-by: Venkateswararao Jujjuri --- 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.6.5.2