From: Cole Robinson <crobinso@redhat.com>
To: Yoshiaki Tamura <tamura.yoshiaki@lab.ntt.co.jp>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [Bug 589315] [NEW] qemu: Improve error reporting when migration can't connect
Date: Wed, 09 Jun 2010 12:43:59 -0400 [thread overview]
Message-ID: <4C0FC4CF.1010605@redhat.com> (raw)
In-Reply-To: <AANLkTilenPe9zZAtEeyyNLMxYLWzjV6Ovj3uGj-1GMsA@mail.gmail.com>
On 06/03/2010 05:41 PM, Yoshiaki Tamura wrote:
>
> Hi,
>
> Does the following patch fix the problem?
>
> Thanks,
>
> Yoshi
>
> [PATCH] migration-tcp: call migrate_fd_error() instead of close() and free().
>
> This patch fixes the following error report. When changing
> migration-tcp.c to call migrate_fd_error() instead of close() and
> free() by itself, monitor is resumed, and returns allocated mig_state
> is set to current_migration in migration.c allows us to print "info
> migrate".
>
> Reported-by: Cole Robinson <crobinso@redhat.com>
> Signed-off-by: Yoshiaki Tamura <tamura.yoshiaki@lab.ntt.co.jp>
>
> --
> qemu: Improve error reporting when migration can't connect
> https://bugs.launchpad.net/bugs/589315
> You received this bug notification because you are a member of qemu-
> devel-ml, which is subscribed to QEMU.
>
> Status in QEMU: New
>
> Bug description:
> Tested with upstream qemu as of Jun 3 2010
>
> If the source qemu instance can't connect to the migration destination (say
> there is no listening QEMU instance, or port is blocked by a firewall), all we
> get is info migrate -> Migration status: failed. This is all we have to report
> back to libvirt users if their firewall is misconfigured, which is crappy.
>
> Ideally, if we can't connect, migration would fail immediately with a relevant
> message and strerror(). More info from 'info migrate' would be nice too, no
> idea how this will play with QMP though.
>
> As a slightly related issue, try entering
>
> migrate tcp:127.0.0.0:6000
>
> We get a 'migration failed' error, and then the monitor hangs!
> --
> ---
> migration-tcp.c | 4 +---
> 1 files changed, 1 insertions(+), 3 deletions(-)
>
> diff --git a/migration-tcp.c b/migration-tcp.c
> index 95ce722..43af2e0 100644
> --- a/migration-tcp.c
> +++ b/migration-tcp.c
> @@ -128,9 +128,7 @@ MigrationState *tcp_start_outgoing_migration(Monitor *mon,
>
> if (ret < 0 && ret != -EINPROGRESS && ret != -EWOULDBLOCK) {
> DPRINTF("connect failed\n");
> - close(s->fd);
> - qemu_free(s);
> - return NULL;
> + migrate_fd_error(s);
> } else if (ret >= 0)
> migrate_fd_connect(s);
>
Yes, this fixes the monitor hang. Thanks!
- Cole
next prev parent reply other threads:[~2010-06-09 16:55 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-03 18:19 [Qemu-devel] [Bug 589315] [NEW] qemu: Improve error reporting when migration can't connect Cole Robinson
2010-06-03 21:41 ` Yoshiaki Tamura
2010-06-09 16:43 ` Cole Robinson [this message]
2010-06-04 14:25 ` [Qemu-devel] [Bug 589315] " Luiz Capitulino
2010-06-09 21:38 ` Yoshiaki Tamura
2018-02-14 16:39 ` Dr. David Alan Gilbert
2018-02-16 23:16 ` Thomas Huth
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=4C0FC4CF.1010605@redhat.com \
--to=crobinso@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=tamura.yoshiaki@lab.ntt.co.jp \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.