From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43848) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WA3qv-0005UK-WD for qemu-devel@nongnu.org; Sun, 02 Feb 2014 15:41:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WA3qp-0006nn-Tn for qemu-devel@nongnu.org; Sun, 02 Feb 2014 15:41:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:64333) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WA3qp-0006nj-Lo for qemu-devel@nongnu.org; Sun, 02 Feb 2014 15:41:11 -0500 Date: Sun, 2 Feb 2014 22:46:07 +0200 From: "Michael S. Tsirkin" Message-ID: <20140202204607.GA21698@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] pc.c: better error message on initrd sizing failure List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "Michael S. Tsirkin" , qemu-devel@nongnu.org, Anthony Liguori , Paolo Bonzini , Igor Mammedov , Andreas =?iso-8859-1?Q?F=E4rber?= Signed-off-by: Michael S. Tsirkin --- hw/i386/pc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 348b15f..e715a33 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -835,8 +835,8 @@ static void load_linux(FWCfgState *fw_cfg, initrd_size = get_image_size(initrd_filename); if (initrd_size < 0) { - fprintf(stderr, "qemu: error reading initrd %s\n", - initrd_filename); + fprintf(stderr, "qemu: error reading initrd %s: %s\n", + initrd_filename, strerror(errno)); exit(1); } -- MST