xref: /qemu/include/migration/client-options.h (revision 6ff5da16000f908140723e164d33a0b51a6c4162)
1 /*
2  * QEMU public migration capabilities
3  *
4  * Copyright (c) 2012-2023 Red Hat Inc
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2 or later.
7  * See the COPYING file in the top-level directory.
8  */
9 
10 #ifndef QEMU_MIGRATION_CLIENT_OPTIONS_H
11 #define QEMU_MIGRATION_CLIENT_OPTIONS_H
12 
13 
14 /* properties */
15 bool migrate_send_switchover_start(void);
16 
17 /* capabilities */
18 
19 bool migrate_background_snapshot(void);
20 bool migrate_dirty_limit(void);
21 bool migrate_postcopy_ram(void);
22 bool migrate_switchover_ack(void);
23 
24 /* parameters */
25 
26 MigMode migrate_mode(void);
27 uint64_t migrate_vcpu_dirty_limit_period(void);
28 
29 #endif
30