diff options
author | Dr. David Alan Gilbert | 2015-11-05 19:11:18 +0100 |
---|---|---|
committer | Juan Quintela | 2015-11-10 15:00:28 +0100 |
commit | c76201ab52b1dd53823cd81449d17b72224f1623 (patch) | |
tree | 2fd45f9768cb9fe05975d87b6d01459f6f2c8ee4 /trace-events | |
parent | Postcopy; Handle userfault requests (diff) | |
download | qemu-c76201ab52b1dd53823cd81449d17b72224f1623.tar.gz qemu-c76201ab52b1dd53823cd81449d17b72224f1623.tar.xz qemu-c76201ab52b1dd53823cd81449d17b72224f1623.zip |
Start up a postcopy/listener thread ready for incoming page data
The loading of a device state (during postcopy) may access guest
memory that's still on the source machine and thus might need
a page fill; split off a separate thread that handles the incoming
page data so that the original incoming migration code can finish
off the device data.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/trace-events b/trace-events index 60be299b6c..113029216d 100644 --- a/trace-events +++ b/trace-events @@ -1220,6 +1220,8 @@ loadvm_postcopy_ram_handle_discard_end(void) "" loadvm_postcopy_ram_handle_discard_header(const char *ramid, uint16_t len) "%s: %ud" loadvm_process_command(uint16_t com, uint16_t len) "com=0x%x len=%d" loadvm_process_command_ping(uint32_t val) "%x" +postcopy_ram_listen_thread_exit(void) "" +postcopy_ram_listen_thread_start(void) "" qemu_savevm_send_postcopy_advise(void) "" qemu_savevm_send_postcopy_ram_discard(const char *id, uint16_t len) "%s: %ud" savevm_command_send(uint16_t command, uint16_t len) "com=0x%x len=%d" |