From patchwork Fri Dec 3 17:09:01 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 74172 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 318301007D1 for ; Sat, 4 Dec 2010 04:11:30 +1100 (EST) Received: from localhost ([127.0.0.1]:54360 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POZAN-0000zH-Nt for incoming@patchwork.ozlabs.org; Fri, 03 Dec 2010 12:11:27 -0500 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 Received: from stefan-thinkpad.manchester-maybrook.uk.ibm.com (dyn-9-174-219-22.manchester-maybrook.uk.ibm.com [9.174.219.22]) by d06av03.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id oB3H9C3w022173; Fri, 3 Dec 2010 10:09:12 -0700 From: Stefan Hajnoczi To: Date: Fri, 3 Dec 2010 17:09:01 +0000 Message-Id: <1291396141-25541-1-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.2.3 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Cc: Stefan Hajnoczi , "Michael S. Tsirkin" Subject: [Qemu-devel] [PATCH] exec: Remove debugging fprintf() that slipped into qemu_ram_alloc_from_ptr() 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 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);