diff options
author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2015-11-05 18:10:51 +0000 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2015-11-10 15:00:26 +0100 |
commit | 53dd370ced9b61a8113fc1c19ac8d61ca572a29c (patch) | |
tree | f29c6b11378c11b1aa3795ae99a04a022e839a62 /include/migration/migration.h | |
parent | 7b89bf279f16c093ed46845b8e6e0fb61b7ef639 (diff) | |
download | qemu-53dd370ced9b61a8113fc1c19ac8d61ca572a29c.zip |
Add migration-capability boolean for postcopy-ram.
The 'postcopy ram' capability allows postcopy migration of RAM;
note that the migration starts off in precopy mode until
postcopy mode is triggered (see the migrate_start_postcopy
patch later in the series).
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'include/migration/migration.h')
-rw-r--r-- | include/migration/migration.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/migration/migration.h b/include/migration/migration.h index 3dc95f49da..4ed7931d5f 100644 --- a/include/migration/migration.h +++ b/include/migration/migration.h @@ -186,6 +186,7 @@ void migrate_add_blocker(Error *reason); */ void migrate_del_blocker(Error *reason); +bool migrate_postcopy_ram(void); bool migrate_zero_blocks(void); bool migrate_auto_converge(void); |