From: Trieu Huynh <vikingtc4@gmail.com>
To: qemu-devel@nongnu.org
Cc: Trieu Huynh <vikingtc4@gmail.com>, Peter Xu <peterx@redhat.com>,
Fabiano Rosas <farosas@suse.de>, Eric Blake <eblake@redhat.com>,
Markus Armbruster <armbru@redhat.com>
Subject: [PATCH 2/2] migration: expose RAM stats and timing on destination via query-migrate
Date: Sun, 5 Apr 2026 22:26:08 +0700 [thread overview]
Message-ID: <20260405152612.93027-3-viking4@gmail.com> (raw)
In-Reply-To: <20260405152612.93027-1-viking4@gmail.com>
From: Trieu Huynh <vikingtc4@gmail.com>
MigrationStats had all-required QAPI fields, so partially populating
info->ram on the destination would force display of source-only metrics
(dirty-sync-count, precopy-bytes, etc.) as misleading zeros.
Make those source-only fields optional with '*' in the QAPI schema.
Update populate_ram_info() to set them via has_* setters so source
output is unchanged.
As per schema's changes, fill_destination_migration_info() can now
populate info->ram for the COMPLETED case with the fields that are
meaningful on the receive side:
* total, remaining, page-size (RAM layout)
* transferred, normal, normal-bytes (bytes/pages received)
* duplicate (zero pages received)
* mbps (throughput: transferred*8
/time_ms/1000)
* pages-per-second (total pages / duration in
seconds)
Others optional fields (dirty-sync-count, precopy-bytes,
downtime-bytes, postcopy-bytes, multifd-bytes, postcopy-requests,
dirty-sync-missed-zero-copy, dirty-pages-rate) are left unset and
are absent from the destination output.
On dst, {"execute":"query-migrate"}
* As-is:
{
"return": {
"status": "completed"
}
* To-be:
{
"return": {
"status": "completed",
"total-time": 94,
"ram": {
"total": 554508288,
"pages-per-second": 1440234,
"page-size": 4096,
"remaining": 0,
"mbps": 97.955404255319152,
"transferred": 1150976,
"duplicate": 135101,
"normal-bytes": 1150976,
"normal": 281
}
}
}
Signed-off-by: Trieu Huynh <vikingtc4@gmail.com>
---
migration/migration.c | 35 +++++++++++++++++++++++++++++++++++
qapi/migration.json | 14 +++++++-------
2 files changed, 42 insertions(+), 7 deletions(-)
diff --git a/migration/migration.c b/migration/migration.c
index 17c9a8b344..925d29890d 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -1063,17 +1063,24 @@ static void populate_ram_info(MigrationInfo *info, MigrationState *s)
info->ram->normal = qatomic_read(&mig_stats.normal_pages);
info->ram->normal_bytes = info->ram->normal * page_size;
info->ram->mbps = s->mbps;
+ info->ram->has_dirty_sync_count = true;
info->ram->dirty_sync_count =
qatomic_read(&mig_stats.dirty_sync_count);
+ info->ram->has_dirty_sync_missed_zero_copy = true;
info->ram->dirty_sync_missed_zero_copy =
qatomic_read(&mig_stats.dirty_sync_missed_zero_copy);
+ info->ram->has_postcopy_requests = true;
info->ram->postcopy_requests =
qatomic_read(&mig_stats.postcopy_requests);
info->ram->page_size = page_size;
+ info->ram->has_multifd_bytes = true;
info->ram->multifd_bytes = qatomic_read(&mig_stats.multifd_bytes);
info->ram->pages_per_second = s->pages_per_second;
+ info->ram->has_precopy_bytes = true;
info->ram->precopy_bytes = qatomic_read(&mig_stats.precopy_bytes);
+ info->ram->has_downtime_bytes = true;
info->ram->downtime_bytes = qatomic_read(&mig_stats.downtime_bytes);
+ info->ram->has_postcopy_bytes = true;
info->ram->postcopy_bytes = qatomic_read(&mig_stats.postcopy_bytes);
if (migrate_xbzrle()) {
@@ -1094,6 +1101,7 @@ static void populate_ram_info(MigrationInfo *info, MigrationState *s)
if (s->state != MIGRATION_STATUS_COMPLETED) {
info->ram->remaining = ram_bytes_remaining();
+ info->ram->has_dirty_pages_rate = true;
info->ram->dirty_pages_rate =
qatomic_read(&mig_stats.dirty_pages_rate);
}
@@ -1209,6 +1217,33 @@ static void fill_destination_migration_info(MigrationInfo *info)
case MIGRATION_STATUS_COMPLETED:
info->has_status = true;
fill_destination_postcopy_migration_info(info);
+ if (mis->total_time > 0) {
+ info->has_total_time = true;
+ info->total_time = mis->total_time;
+ }
+ {
+ size_t page_size = qemu_target_page_size();
+ uint64_t normal = mis->received_normal_pages;
+ uint64_t zero = mis->received_zero_pages;
+ uint64_t xbzrle = mis->received_xbzrle_pages;
+
+ info->ram = g_malloc0(sizeof(*info->ram));
+ info->ram->total = ram_bytes_total();
+ info->ram->remaining = 0;
+ info->ram->normal = normal + xbzrle;
+ info->ram->normal_bytes = (normal + xbzrle) * page_size;
+ info->ram->duplicate = zero;
+ info->ram->transferred = (normal + xbzrle) * page_size;
+ info->ram->page_size = page_size;
+
+ if (info->has_total_time) {
+ info->ram->mbps = info->ram->transferred * 8.0
+ / info->total_time / 1000.0;
+ info->ram->pages_per_second = (normal + xbzrle + zero)
+ * 1000.0 / info->total_time;
+ }
+ /* source-only optional omitted from output */
+ }
break;
default:
return;
diff --git a/qapi/migration.json b/qapi/migration.json
index 7134d4ce47..a695d04a22 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -68,13 +68,13 @@
'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
'duplicate': 'int',
'normal': 'int',
- 'normal-bytes': 'int', 'dirty-pages-rate': 'int',
- 'mbps': 'number', 'dirty-sync-count': 'int',
- 'postcopy-requests': 'int', 'page-size': 'int',
- 'multifd-bytes': 'uint64', 'pages-per-second': 'uint64',
- 'precopy-bytes': 'uint64', 'downtime-bytes': 'uint64',
- 'postcopy-bytes': 'uint64',
- 'dirty-sync-missed-zero-copy': 'uint64' } }
+ 'normal-bytes': 'int', '*dirty-pages-rate': 'int',
+ 'mbps': 'number', '*dirty-sync-count': 'int',
+ '*postcopy-requests': 'int', 'page-size': 'int',
+ '*multifd-bytes': 'uint64', 'pages-per-second': 'uint64',
+ '*precopy-bytes': 'uint64', '*downtime-bytes': 'uint64',
+ '*postcopy-bytes': 'uint64',
+ '*dirty-sync-missed-zero-copy': 'uint64' } }
##
# @XBZRLECacheStats:
--
2.43.0
next prev parent reply other threads:[~2026-04-05 15:27 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-05 15:26 [PATCH 0/2] migration: include timing and RAM stats on destination when query-migrate Trieu Huynh
2026-04-05 15:26 ` [PATCH 1/2] migration: track timing and received pages in MigrationIncomingState Trieu Huynh
2026-04-07 12:02 ` Claudio Fontana
2026-04-07 12:11 ` Claudio Fontana
2026-04-07 18:28 ` Trieu Huynh
2026-04-05 15:26 ` Trieu Huynh [this message]
2026-04-08 16:14 ` [PATCH 2/2] migration: expose RAM stats and timing on destination via query-migrate Claudio Fontana
2026-04-08 19:38 ` Trieu Huynh
2026-04-06 14:02 ` [PATCH 0/2] migration: include timing and RAM stats on destination when query-migrate Fabiano Rosas
2026-04-08 20:04 ` Peter Xu
2026-04-09 10:08 ` Claudio Fontana
2026-04-09 13:08 ` Fabian Grünbichler
2026-04-09 13:17 ` Claudio Fontana
2026-04-09 13:29 ` Fabian Grünbichler
2026-04-13 21:07 ` Peter Xu
2026-04-16 16:53 ` Trieu Huynh
2026-04-16 18:50 ` Peter Xu
2026-04-17 10:01 ` Trieu Huynh
2026-04-22 22:46 ` Fabiano Rosas
2026-04-23 13:22 ` Peter Xu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260405152612.93027-3-viking4@gmail.com \
--to=vikingtc4@gmail.com \
--cc=armbru@redhat.com \
--cc=eblake@redhat.com \
--cc=farosas@suse.de \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.