From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LxglP-0005Wx-VA for qemu-devel@nongnu.org; Sat, 25 Apr 2009 08:13:48 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LxglK-0005Wl-Vm for qemu-devel@nongnu.org; Sat, 25 Apr 2009 08:13:47 -0400 Received: from [199.232.76.173] (port=49665 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LxglK-0005Wi-QD for qemu-devel@nongnu.org; Sat, 25 Apr 2009 08:13:42 -0400 Received: from mx2.redhat.com ([66.187.237.31]:48524) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LxglK-0007VE-64 for qemu-devel@nongnu.org; Sat, 25 Apr 2009 08:13:42 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n3PCDeUV006659 for ; Sat, 25 Apr 2009 08:13:40 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n3PCDd4k016635 for ; Sat, 25 Apr 2009 08:13:40 -0400 Received: from localhost (vpn-6-15.fab.redhat.com [10.33.6.15]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n3PCDcNN026352 for ; Sat, 25 Apr 2009 08:13:39 -0400 Date: Sat, 25 Apr 2009 13:13:38 +0100 From: "Richard W.M. Jones" Message-ID: <20090425121338.GA27727@amd.home.annexia.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="sm4nu43k4a2Rpi4c" Content-Disposition: inline Subject: [Qemu-devel] [PATCH] Resend patch to remove -initrd debug message List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --sm4nu43k4a2Rpi4c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline This just removes an unnecessary debug message which is printed whenever you use the -initrd option. The only change since previous posting is I rebased it to the latest qemu SVN. Signed-off-by: Richard W.M. Jones Rich. -- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones virt-top is 'top' for virtual machines. Tiny program with many powerful monitoring features, net stats, disk stats, logging, etc. http://et.redhat.com/~rjones/virt-top --sm4nu43k4a2Rpi4c Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="qemu-no-initrd-message.patch" Index: hw/pc.c =================================================================== --- hw/pc.c (revision 7249) +++ hw/pc.c (working copy) @@ -682,9 +682,6 @@ initrd_size = get_file_size(fi); initrd_addr = (initrd_max-initrd_size) & ~4095; - fprintf(stderr, "qemu: loading initrd (%#x bytes) at 0x" TARGET_FMT_plx - "\n", initrd_size, initrd_addr); - if (!fread_targphys_ok(initrd_addr, initrd_size, fi)) { fprintf(stderr, "qemu: read error on initial ram disk '%s'\n", initrd_filename); --sm4nu43k4a2Rpi4c--