mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
migration: Create multifd_bytes ram_counter
This will include how many bytes they are sent through multifd. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
6df264ac5a
commit
a61c45bd22
3 changed files with 7 additions and 1 deletions
2
hmp.c
2
hmp.c
|
@ -234,6 +234,8 @@ void hmp_info_migrate(Monitor *mon, const QDict *qdict)
|
|||
info->ram->dirty_sync_count);
|
||||
monitor_printf(mon, "page size: %" PRIu64 " kbytes\n",
|
||||
info->ram->page_size >> 10);
|
||||
monitor_printf(mon, "multifd bytes: %" PRIu64 " kbytes\n",
|
||||
info->ram->multifd_bytes >> 10);
|
||||
|
||||
if (info->ram->dirty_pages_rate) {
|
||||
monitor_printf(mon, "dirty pages rate: %" PRIu64 " pages\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue