diff options
author | Wei Yang | 2019-08-19 08:18:43 +0200 |
---|---|---|
committer | Dr. David Alan Gilbert | 2019-09-25 16:51:19 +0200 |
commit | 64737606e8e54db28ac9dbfc10e175d267d2c8fb (patch) | |
tree | 8647315a7098960df24751e3030a45b587010fcf /migration/trace-events | |
parent | migration/postcopy: unsentmap is not necessary for postcopy (diff) | |
download | qemu-64737606e8e54db28ac9dbfc10e175d267d2c8fb.tar.gz qemu-64737606e8e54db28ac9dbfc10e175d267d2c8fb.tar.xz qemu-64737606e8e54db28ac9dbfc10e175d267d2c8fb.zip |
migration: remove sent parameter in get_queued_page_not_dirty
This is a cleanup for previous removal of unsentmap.
The sent parameter is not necessary now.
Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
Message-Id: <20190819061843.28642-4-richardw.yang@linux.intel.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'migration/trace-events')
-rw-r--r-- | migration/trace-events | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/trace-events b/migration/trace-events index 00ffcd5930..858d415d56 100644 --- a/migration/trace-events +++ b/migration/trace-events @@ -76,7 +76,7 @@ qemu_file_fclose(void) "" # ram.c get_queued_page(const char *block_name, uint64_t tmp_offset, unsigned long page_abs) "%s/0x%" PRIx64 " page_abs=0x%lx" -get_queued_page_not_dirty(const char *block_name, uint64_t tmp_offset, unsigned long page_abs, int sent) "%s/0x%" PRIx64 " page_abs=0x%lx (sent=%d)" +get_queued_page_not_dirty(const char *block_name, uint64_t tmp_offset, unsigned long page_abs) "%s/0x%" PRIx64 " page_abs=0x%lx" migration_bitmap_sync_start(void) "" migration_bitmap_sync_end(uint64_t dirty_pages) "dirty_pages %" PRIu64 migration_bitmap_clear_dirty(char *str, uint64_t start, uint64_t size, unsigned long page) "rb %s start 0x%"PRIx64" size 0x%"PRIx64" page 0x%lx" |