diff options
author | ChenLiang <chenliang88@huawei.com> | 2014-04-04 17:57:55 +0800 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2014-05-05 22:15:03 +0200 |
commit | 58570ed894631904bcdbcd1e8b34479cebe2aae9 (patch) | |
tree | 069f3429dfd05d4ba7d356f1576b4355fbfb87bf /include/migration | |
parent | 71411d358000cf90ced348b1ce9142c13b5a93cd (diff) | |
download | qemu-58570ed894631904bcdbcd1e8b34479cebe2aae9.tar.gz qemu-58570ed894631904bcdbcd1e8b34479cebe2aae9.tar.bz2 qemu-58570ed894631904bcdbcd1e8b34479cebe2aae9.zip |
migration: expose the bitmap_sync_count to the end
expose the count that logs the times of updating the dirty bitmap to
end user.
Signed-off-by: ChenLiang <chenliang88@huawei.com>
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'include/migration')
-rw-r--r-- | include/migration/migration.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/migration/migration.h b/include/migration/migration.h index 31fbf174d2..8d88c7dbd2 100644 --- a/include/migration/migration.h +++ b/include/migration/migration.h @@ -61,6 +61,7 @@ struct MigrationState bool enabled_capabilities[MIGRATION_CAPABILITY_MAX]; int64_t xbzrle_cache_size; int64_t setup_time; + int64_t dirty_sync_count; }; void process_incoming_migration(QEMUFile *f); |