diff options
author | Juan Quintela <quintela@redhat.com> | 2023-03-02 10:44:20 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-04-24 15:01:47 +0200 |
commit | f774fde5d4e97cbfc64dab6622c2c53c5fe5c9fe (patch) | |
tree | df1689f46daca0c0ef17f148b6c19be7279947a9 /migration/options.h | |
parent | 873f674c559e3162a6e6e92994301d400c5cc873 (diff) |
migration: Move migrate_postcopy() to options.c
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Diffstat (limited to 'migration/options.h')
-rw-r--r-- | migration/options.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/migration/options.h b/migration/options.h index 99f6bbd7a1..093bc907a1 100644 --- a/migration/options.h +++ b/migration/options.h @@ -38,6 +38,15 @@ bool migrate_xbzrle(void); bool migrate_zero_blocks(void); bool migrate_zero_copy_send(void); +/* + * pseudo capabilities + * + * These are functions that are used in a similar way to capabilities + * check, but they are not a capability. + */ + +bool migrate_postcopy(void); + /* capabilities helpers */ bool migrate_caps_check(bool *old_caps, bool *new_caps, Error **errp); |