From patchwork Sat Jun 30 01:53:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amos Kong X-Patchwork-Id: 168283 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 46C6AB6F9F for ; Sat, 30 Jun 2012 11:54:18 +1000 (EST) Received: from localhost ([::1]:59253 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Skmt5-00041F-Gm for incoming@patchwork.ozlabs.org; Fri, 29 Jun 2012 21:54:15 -0400 Received: from eggs.gnu.org ([208.118.235.92]:44038) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Skmsy-000413-ND for qemu-devel@nongnu.org; Fri, 29 Jun 2012 21:54:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Skmsw-0002Nu-Vf for qemu-devel@nongnu.org; Fri, 29 Jun 2012 21:54:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27104) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Skmsw-0002NX-NH for qemu-devel@nongnu.org; Fri, 29 Jun 2012 21:54:06 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q5U1s47O011899 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 29 Jun 2012 21:54:04 -0400 Received: from t400.nay.redhat.com (vpn1-115-45.nay.redhat.com [10.66.115.45]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q5U1s0uw005024; Fri, 29 Jun 2012 21:54:01 -0400 From: akong@redhat.com To: pkrempa@redhat.com, aliguori@us.ibm.com, qemu-devel@nongnu.org Date: Sat, 30 Jun 2012 09:53:57 +0800 Message-Id: <1341021237-11293-1-git-send-email-akong@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Amos Kong Subject: [Qemu-devel] [PATCH] vnc: add a more descriptive error message X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Amos Kong Currently qemu would some low-level error in qemu-sockets.c when failed to start vnc server. eg. 'getaddrinfo(127.0.0.1,5902): Name or service not known' This patch added a more descriptive error message. Signed-off-by: Amos Kong --- vl.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vl.c b/vl.c index 1329c30..82607a7 100644 --- a/vl.c +++ b/vl.c @@ -3585,8 +3585,11 @@ int main(int argc, char **argv, char **envp) /* init remote displays */ if (vnc_display) { vnc_display_init(ds); - if (vnc_display_open(ds, vnc_display) < 0) + if (vnc_display_open(ds, vnc_display) < 0) { + fprintf(stderr, "Failed to start VNC server on `%s'\n", + vnc_display); exit(1); + } if (show_vnc_port) { printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));