diff options
author | Juan Quintela <quintela@redhat.com> | 2023-03-01 22:20:13 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-04-24 15:01:46 +0200 |
commit | 87dca0c9bb63014ef73ad82f7aedea1cb5a822e7 (patch) | |
tree | 28046c849afa74dd7fc5e697cd5c37c5464066fe /migration/options.h | |
parent | b4bc342c766640e0cb8a0b72f71e0ee5545fb790 (diff) |
migration: Move migrate_use_xbzrle() to options.c
Once that we are there, we rename the function to migrate_xbzrle()
to be consistent with all other capabilities.
We change the type to return bool also for consistency.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Diffstat (limited to 'migration/options.h')
-rw-r--r-- | migration/options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/migration/options.h b/migration/options.h index ad22f4d24a..8f76a88329 100644 --- a/migration/options.h +++ b/migration/options.h @@ -31,6 +31,7 @@ bool migrate_postcopy_preempt(void); bool migrate_postcopy_ram(void); bool migrate_release_ram(void); bool migrate_validate_uuid(void); +bool migrate_xbzrle(void); bool migrate_zero_blocks(void); bool migrate_zero_copy_send(void); |