]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
exec: Remove debugging fprintf() that slipped into qemu_ram_alloc_from_ptr()
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Fri, 3 Dec 2010 17:09:01 +0000 (17:09 +0000)
committerAnthony Liguori <aliguori@us.ibm.com>
Fri, 3 Dec 2010 17:50:20 +0000 (11:50 -0600)
Remove the debugging fprintf() slipped in via the following commit:

    commit b2e0a138e77245290428a7d599a929e2e1bfe510
    Author: Michael S. Tsirkin <mst@redhat.com>
    Date:   Mon Nov 22 19:52:34 2010 +0200

        migration: stable ram block ordering

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
exec.c

diff --git a/exec.c b/exec.c
index 6c8f635ad408f1c71910f415a6f8c2870a8a7cec..42a35e00f9d12c66b9d9e81ce119b6bcecb9ede0 100644 (file)
--- 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);