qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: Amos Kong <akong@redhat.com>,
	qemu-devel@nongnu.org,
	Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH 3/5] vnc: add a more descriptive error message
Date: Fri, 13 Jul 2012 11:38:00 +0100	[thread overview]
Message-ID: <1342175882-4995-4-git-send-email-stefanha@linux.vnet.ibm.com> (raw)
In-Reply-To: <1342175882-4995-1-git-send-email-stefanha@linux.vnet.ibm.com>

From: Amos Kong <akong@redhat.com>

Currently qemu outputs 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'

Some libvirt users could not know what's happened with this
unclear error message. This patch added a more descriptive
error message.

Signed-off-by: Amos Kong <akong@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 vl.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/vl.c b/vl.c
index 2e140f5..46248b9 100644
--- a/vl.c
+++ b/vl.c
@@ -3584,8 +3584,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));
-- 
1.7.10.4

  parent reply	other threads:[~2012-07-13 10:38 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-13 10:37 [Qemu-devel] [PULL 0/5] Trivial patches for July 3 to 13 2012 Stefan Hajnoczi
2012-07-13 10:37 ` [Qemu-devel] [PATCH 1/5] megasas: mark mfi_frame_desc as 'static' Stefan Hajnoczi
2012-07-13 10:37 ` [Qemu-devel] [PATCH 2/5] bitops: Fix documentation Stefan Hajnoczi
2012-07-13 10:38 ` Stefan Hajnoczi [this message]
2012-07-13 10:38 ` [Qemu-devel] [PATCH 4/5] qemu-keymaps: Finnish keyboard mapping broken Stefan Hajnoczi
2012-07-13 10:38 ` [Qemu-devel] [PATCH 5/5] make: Remove 'build-all' rule Stefan Hajnoczi
2012-07-14 12:21 ` [Qemu-devel] [PULL 0/5] Trivial patches for July 3 to 13 2012 Blue Swirl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1342175882-4995-4-git-send-email-stefanha@linux.vnet.ibm.com \
    --to=stefanha@linux.vnet.ibm.com \
    --cc=akong@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).