mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
Postcopy: Add stats on page requests
On the source, add a count of page requests received from the destination. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Denis V. Lunev <den@openvz.org> Message-id: 1465816605-29488-4-git-send-email-dgilbert@redhat.com Message-Id: <1465816605-29488-4-git-send-email-dgilbert@redhat.com> Signed-off-by: Amit Shah <amit.shah@redhat.com>
This commit is contained in:
parent
a22463a5dc
commit
d3bf5418e2
5 changed files with 14 additions and 1 deletions
4
hmp.c
4
hmp.c
|
@ -217,6 +217,10 @@ void hmp_info_migrate(Monitor *mon, const QDict *qdict)
|
|||
monitor_printf(mon, "dirty pages rate: %" PRIu64 " pages\n",
|
||||
info->ram->dirty_pages_rate);
|
||||
}
|
||||
if (info->ram->postcopy_requests) {
|
||||
monitor_printf(mon, "postcopy request count: %" PRIu64 "\n",
|
||||
info->ram->postcopy_requests);
|
||||
}
|
||||
}
|
||||
|
||||
if (info->has_disk) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue