Merge tag 'hw-misc-20240312' of https://github.com/philmd/qemu into staging
[qemu/armbru.git] / include / migration / client-options.h
blob59f4b55cf4f744f222c161ab0b5b9828b53198be
1 /*
2 * QEMU public migration capabilities
4 * Copyright (c) 2012-2023 Red Hat Inc
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 */
10 #ifndef QEMU_MIGRATION_CLIENT_OPTIONS_H
11 #define QEMU_MIGRATION_CLIENT_OPTIONS_H
13 /* capabilities */
15 bool migrate_background_snapshot(void);
16 bool migrate_dirty_limit(void);
17 bool migrate_postcopy_ram(void);
18 bool migrate_switchover_ack(void);
20 /* parameters */
22 MigMode migrate_mode(void);
23 uint64_t migrate_vcpu_dirty_limit_period(void);
25 #endif