diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-07-09 11:57:34 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-07-09 11:57:34 -0500 |
commit | 3f6e9a5fad982713440c636f5f7b786e1cc86ca2 (patch) | |
tree | ff7b9b9d8400e4fa6f708681d12991c40c8a7d40 /vmstate.h | |
parent | 537cf409421efe68b0df645d8bbb627b2702dd1f (diff) | |
parent | 45f33f01f359d6028ec4b4018a2bf2ff53806e11 (diff) | |
download | qemu-3f6e9a5fad982713440c636f5f7b786e1cc86ca2.zip qemu-3f6e9a5fad982713440c636f5f7b786e1cc86ca2.tar.gz qemu-3f6e9a5fad982713440c636f5f7b786e1cc86ca2.tar.bz2 |
Merge remote-tracking branch 'quintela/migration-anthony-v2' into staging
* quintela/migration-anthony-v2:
Maintain the number of dirty pages
dirty bitmap: abstract its use
Exit loop if we have been there too long
Only calculate expected_time for stage 2
Only TCG needs TLB handling
No need to iterate if we already are over the limit
Add tracepoints for savevm section start/end
Add spent time for migration
Add migration_end function
Add debugging infrastructure
Add save_block_hdr function
Add MigrationParams structure
Add missing check for host_from_stream_offset return value for RAM_SAVE_FLAG_PAGE
Diffstat (limited to 'vmstate.h')
-rw-r--r-- | vmstate.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ #ifndef QEMU_VMSTATE_H #define QEMU_VMSTATE_H 1 -typedef void SaveSetParamsHandler(int blk_enable, int shared, void * opaque); +typedef void SaveSetParamsHandler(const MigrationParams *params, void * opaque); typedef void SaveStateHandler(QEMUFile *f, void *opaque); typedef int SaveLiveStateHandler(QEMUFile *f, int stage, void *opaque); typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id); |