diff options
| author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2015-11-05 18:10:46 +0000 |
|---|---|---|
| committer | Juan Quintela <quintela@redhat.com> | 2015-11-10 15:00:25 +0100 |
| commit | 2e37701efdba7bb89f7159eff055bb71dbb9f02f (patch) | |
| tree | 776153fa48fb0c327ab1669da199442c98c5a97e /include/migration | |
| parent | c76ca1888f49b4155a9de5a915dc9f814800c817 (diff) | |
| download | focaccia-qemu-2e37701efdba7bb89f7159eff055bb71dbb9f02f.tar.gz focaccia-qemu-2e37701efdba7bb89f7159eff055bb71dbb9f02f.zip | |
Return path: Control commands
Add two src->dest commands: * OPEN_RETURN_PATH - To request that the destination open the return path * PING - Request an acknowledge from the destination Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Amit Shah <amit.shah@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'include/migration')
| -rw-r--r-- | include/migration/migration.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/migration/migration.h b/include/migration/migration.h index 0bb4383302..98a6d079fd 100644 --- a/include/migration/migration.h +++ b/include/migration/migration.h @@ -48,6 +48,8 @@ typedef QLIST_HEAD(, LoadStateEntry) LoadStateEntry_Head; struct MigrationIncomingState { QEMUFile *from_src_file; + QEMUFile *to_src_file; + /* See savevm.c */ LoadStateEntry_Head loadvm_handlers; }; |