1 /* 2 * QEMU migration capabilities 3 * 4 * Copyright (c) 2012-2023 Red Hat Inc 5 * 6 * Authors: 7 * Orit Wasserman <owasserm@redhat.com> 8 * Juan Quintela <quintela@redhat.com> 9 * 10 * This work is licensed under the terms of the GNU GPL, version 2 or later. 11 * See the COPYING file in the top-level directory. 12 */ 13 14 #ifndef QEMU_MIGRATION_OPTIONS_H 15 #define QEMU_MIGRATION_OPTIONS_H 16 17 /* capabilities */ 18 19 bool migrate_auto_converge(void); 20 bool migrate_background_snapshot(void); 21 bool migrate_colo(void); 22 bool migrate_compress(void); 23 bool migrate_dirty_bitmaps(void); 24 bool migrate_events(void); 25 bool migrate_ignore_shared(void); 26 bool migrate_late_block_activate(void); 27 bool migrate_pause_before_switchover(void); 28 bool migrate_postcopy_blocktime(void); 29 bool migrate_postcopy_preempt(void); 30 bool migrate_postcopy_ram(void); 31 bool migrate_release_ram(void); 32 bool migrate_validate_uuid(void); 33 bool migrate_zero_blocks(void); 34 35 #endif 36