On 10/11/2011 05:00 AM, Juan Quintela wrote:
Signed-off-by: Juan Quintela<quint...@redhat.com>
Reviewed-by: Anthony Liguori <aligu...@us.ibm.com> Regards, Anthony Liguori
--- migration.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/migration.c b/migration.c index 090c925..56c2b1c 100644 --- a/migration.c +++ b/migration.c @@ -457,6 +457,10 @@ void migrate_fd_wait_for_unfreeze(void *opaque) ret = select(s->fd + 1, NULL,&wfds, NULL, NULL); } while (ret == -1&& (s->get_error(s)) == EINTR); + + if (ret == -1) { + qemu_file_set_error(s->file); + } } int migrate_fd_close(void *opaque)