* Juan Quintela (quint...@redhat.com) wrote: > Signed-off-by: Juan Quintela <quint...@redhat.com>
It's probably worth keeping an eye on what happens in the case of Peter's postcopy recovery where a new incoming connection happens later. Dave > --- > migration/socket.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/migration/socket.c b/migration/socket.c > index 08606c665d..b12b0a462e 100644 > --- a/migration/socket.c > +++ b/migration/socket.c > @@ -139,9 +139,8 @@ static gboolean > socket_accept_incoming_migration(QIOChannel *ioc, > sioc = qio_channel_socket_accept(QIO_CHANNEL_SOCKET(ioc), > &err); > if (!sioc) { > - error_report("could not accept migration connection (%s)", > - error_get_pretty(err)); > - goto out; > + migrate_set_error(migrate_get_current(), err); > + return G_SOURCE_REMOVE; > } > > trace_migration_socket_incoming_accepted(); > @@ -150,7 +149,6 @@ static gboolean > socket_accept_incoming_migration(QIOChannel *ioc, > migration_channel_process_incoming(QIO_CHANNEL(sioc)); > object_unref(OBJECT(sioc)); > > -out: > if (migration_has_all_channels()) { > /* Close listening socket as its no longer needed */ > qio_channel_close(ioc, NULL); > -- > 2.14.3 > -- Dr. David Alan Gilbert / dgilb...@redhat.com / Manchester, UK