Commit db1923de authored by Stefan Hajnoczi's avatar Stefan Hajnoczi Committed by Anthony Liguori
Browse files

exec: Remove debugging fprintf() that slipped into qemu_ram_alloc_from_ptr()



Remove the debugging fprintf() slipped in via the following commit:

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

        migration: stable ram block ordering

Signed-off-by: default avatarStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
parent 6a865752
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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);