diff options
author | Peter Xu <peterx@redhat.com> | 2017-06-27 12:10:15 +0800 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-06-28 11:18:38 +0200 |
commit | 3df663e575f1876d7f3bc684f80e72fca0703d39 (patch) | |
tree | eb60fd3480e91e3b24ac5ad298fec10a3a992e96 /migration/savevm.c | |
parent | 5272298c48eb3a01c41a7822e6303d0a0a05f004 (diff) | |
download | qemu-3df663e575f1876d7f3bc684f80e72fca0703d39.zip qemu-3df663e575f1876d7f3bc684f80e72fca0703d39.tar.gz qemu-3df663e575f1876d7f3bc684f80e72fca0703d39.tar.bz2 |
migration: move only_migratable to MigrationState
One less global variable, and it does only matter with migration.
We keep the old "--only-migratable" option, but also now we support:
-global migration.only-migratable=true
Currently still keep the old interface.
Hmm, now vl.c has no way to access migrate_get_current(). Export a
function for it to setup only_migratable.
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Peter Xu <peterx@redhat.com>
Message-Id: <1498536619-14548-7-git-send-email-peterx@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'migration/savevm.c')
-rw-r--r-- | migration/savevm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/savevm.c b/migration/savevm.c index c7a49c9..1499cd3 100644 --- a/migration/savevm.c +++ b/migration/savevm.c @@ -2336,7 +2336,7 @@ void vmstate_register_ram_global(MemoryRegion *mr) bool vmstate_check_only_migratable(const VMStateDescription *vmsd) { /* check needed if --only-migratable is specified */ - if (!only_migratable) { + if (!migrate_get_current()->only_migratable) { return true; } |