summary refs log tree commit diff stats
path: root/migration-exec.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2013-02-22 17:36:38 +0100
committerJuan Quintela <quintela@redhat.com>2013-03-11 13:32:02 +0100
commit13c7b2da073ec83cb47f9582149c8d28bb038e73 (patch)
tree762b1f60b9a06871b8c04b35add77930f183c938 /migration-exec.c
parentce39ee3184a02eca7f9529cc19b1582f6f704c70 (diff)
downloadfocaccia-qemu-13c7b2da073ec83cb47f9582149c8d28bb038e73.tar.gz
focaccia-qemu-13c7b2da073ec83cb47f9582149c8d28bb038e73.zip
qemu-file: check exit status when closing a pipe QEMUFile
This is what exec_close does.  Move this to the underlying QEMUFile.

Reviewed-by: Orit Wasserman <owasserm@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'migration-exec.c')
-rw-r--r--migration-exec.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/migration-exec.c b/migration-exec.c
index 5dc73139a4..a2b5f8d729 100644
--- a/migration-exec.c
+++ b/migration-exec.c
@@ -50,10 +50,6 @@ static int exec_close(MigrationState *s)
     ret = qemu_fclose(s->opaque);
     s->opaque = NULL;
     s->fd = -1;
-    if (ret >= 0 && !(WIFEXITED(ret) && WEXITSTATUS(ret) == 0)) {
-        /* close succeeded, but non-zero exit code: */
-        ret = -EIO; /* fake errno value */
-    }
     return ret;
 }