aboutsummaryrefslogtreecommitdiff
path: root/include/migration
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2023-02-08 14:41:06 +0100
committerJuan Quintela <quintela@redhat.com>2023-02-15 20:04:30 +0100
commit24f254ed794bbd217fbceb6b5840dd4fa6545383 (patch)
treea991164ff0cd6796b1f84b0a7e9b218459ee7a94 /include/migration
parentabbbd04da2b2bdda5ee7dcbbbc89e03e019ade6b (diff)
downloadqemu-24f254ed794bbd217fbceb6b5840dd4fa6545383.zip
qemu-24f254ed794bbd217fbceb6b5840dd4fa6545383.tar.gz
qemu-24f254ed794bbd217fbceb6b5840dd4fa6545383.tar.bz2
migration: Remove unused res_compatible
Nothing assigns to it after previous commit. Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'include/migration')
-rw-r--r--include/migration/register.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/migration/register.h b/include/migration/register.h
index b91a0cd..a958a92 100644
--- a/include/migration/register.h
+++ b/include/migration/register.h
@@ -49,22 +49,19 @@ typedef struct SaveVMHandlers {
/* Note for save_live_pending:
* - res_precopy_only is for data which must be migrated in precopy phase
* or in stopped state, in other words - before target vm start
- * - res_compatible is for data which may be migrated in any phase
* - res_postcopy_only is for data which must be migrated in postcopy phase
* or in stopped state, in other words - after source vm stop
*
- * Sum of res_postcopy_only, res_compatible and res_postcopy_only is the
- * whole amount of pending data.
+ * Sum of res_postcopy_only and res_postcopy_only is the whole
+ * amount of pending data.
*/
/* This estimates the remaining data to transfer */
void (*state_pending_estimate)(void *opaque,
uint64_t *res_precopy_only,
- uint64_t *res_compatible,
uint64_t *res_postcopy_only);
/* This calculate the exact remaining data to transfer */
void (*state_pending_exact)(void *opaque,
uint64_t *res_precopy_only,
- uint64_t *res_compatible,
uint64_t *res_postcopy_only);
LoadStateHandler *load_state;
int (*load_setup)(QEMUFile *f, void *opaque);