diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2018-03-24 19:26:11 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2018-03-24 19:26:11 +0000 |
| commit | 77fea92dbb2811442b38e9adfa8587a12290bf64 (patch) | |
| tree | 777727102e8b16159d0f42551da20ea41a4a0e26 /migration/migration.c | |
| parent | ed4916e8f88f53a344d4eb636e289c6d5ca34e17 (diff) | |
| parent | 09576e74dbe697c5f0a7bc2ad7b59601457a2ff4 (diff) | |
| download | focaccia-qemu-77fea92dbb2811442b38e9adfa8587a12290bf64.tar.gz focaccia-qemu-77fea92dbb2811442b38e9adfa8587a12290bf64.zip | |
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20180323a' into staging
Migration fixes for 2.12 All small fixes. Dan's is a missing piece of a cleanup that finally completes something, and between Paolo, Dan and myself we recon it's still on the edge of being a bug fix. # gpg: Signature made Fri 23 Mar 2018 20:17:40 GMT # gpg: using RSA key 0516331EBC5BFDE7 # gpg: Good signature from "Dr. David Alan Gilbert (RH2) <dgilbert@redhat.com>" # Primary key fingerprint: 45F5 C71B 4A0C B7FB 977A 9FA9 0516 331E BC5B FDE7 * remotes/dgilbert/tags/pull-migration-20180323a: migration: Fix block migration flag case migration/block: compare only read blocks against the rate limiter migration/block: limit the number of parallel I/O requests migration: Fix rate limiting issue on RDMA migration migration: convert socket server to QIONetListener Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'migration/migration.c')
| -rw-r--r-- | migration/migration.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/migration/migration.c b/migration/migration.c index fc629e5965..52a5092add 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -1428,6 +1428,7 @@ void qmp_migrate(const char *uri, bool has_blk, bool blk, "a valid migration protocol"); migrate_set_state(&s->state, MIGRATION_STATUS_SETUP, MIGRATION_STATUS_FAILED); + block_cleanup_parameters(s); return; } |