diff options
author | Juan Quintela <quintela@redhat.com> | 2017-04-05 20:45:22 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-05-18 18:04:54 +0200 |
commit | ce7c817c85e704b2f5dc3a976c7a1c5ce0fd93c2 (patch) | |
tree | d3ccb2d24ff20989a2cb1b8b9699552e17a6f8e5 /include | |
parent | 2833c59b947cf909020c4d6194aac35f383e832b (diff) |
migration: Remove use of old MigrationParams
We have change in the previous patch to use migration capabilities for
it. Notice that we continue using the old command line flags from
migrate command from the time being. Remove the set_params method as
now it is empty.
For savevm, one can't do a:
savevm -b/-i foo
but now one can do:
migrate_set_capability block on
savevm foo
And we can't use block migration. We could disable block capability
unconditionally, but it would not be much better.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
---
- Maintain shared/enabled dependency (Xu suggestion)
- Now we maintain the dependency on the setter functions
- improve error messages
Diffstat (limited to 'include')
-rw-r--r-- | include/migration/migration.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/migration/migration.h b/include/migration/migration.h index 024a048ee4..4dedc66a48 100644 --- a/include/migration/migration.h +++ b/include/migration/migration.h @@ -39,8 +39,7 @@ #define QEMU_VM_SECTION_FOOTER 0x7e struct MigrationParams { - bool blk; - bool shared; + bool unused; /* C doesn't allow empty structs */ }; /* Messages sent on the return path from destination to source */ |