options.c (b890902c9c025b87d02e718eec3090fd3525ab18) | options.c (51b07548f7c31793adc178c7460c5f4369733c61) |
---|---|
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> --- 70 unchanged lines hidden (view full) --- 79{ 80 MigrationState *s; 81 82 s = migrate_get_current(); 83 84 return s->capabilities[MIGRATION_CAPABILITY_LATE_BLOCK_ACTIVATE]; 85} 86 | 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> --- 70 unchanged lines hidden (view full) --- 79{ 80 MigrationState *s; 81 82 s = migrate_get_current(); 83 84 return s->capabilities[MIGRATION_CAPABILITY_LATE_BLOCK_ACTIVATE]; 85} 86 |
87bool migrate_multifd(void) 88{ 89 MigrationState *s; 90 91 s = migrate_get_current(); 92 93 return s->capabilities[MIGRATION_CAPABILITY_MULTIFD]; 94} 95 |
|
87bool migrate_pause_before_switchover(void) 88{ 89 MigrationState *s; 90 91 s = migrate_get_current(); 92 93 return s->capabilities[MIGRATION_CAPABILITY_PAUSE_BEFORE_SWITCHOVER]; 94} --- 54 unchanged lines hidden --- | 96bool migrate_pause_before_switchover(void) 97{ 98 MigrationState *s; 99 100 s = migrate_get_current(); 101 102 return s->capabilities[MIGRATION_CAPABILITY_PAUSE_BEFORE_SWITCHOVER]; 103} --- 54 unchanged lines hidden --- |