diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2021-04-15 14:33:51 +0100 |
---|---|---|
committer | Daniel P. Berrangé <berrange@redhat.com> | 2021-06-14 13:28:50 +0100 |
commit | 626ff6515d41854dc8a880849ae2744c20a70ba7 (patch) | |
tree | 2b2d99dc81d69341326bb39a1a6fffc6bee1eed5 /migration/migration.c | |
parent | 213de8a2fb12f6962ded0240c900f728a72f8217 (diff) | |
download | qemu-626ff6515d41854dc8a880849ae2744c20a70ba7.zip qemu-626ff6515d41854dc8a880849ae2744c20a70ba7.tar.gz qemu-626ff6515d41854dc8a880849ae2744c20a70ba7.tar.bz2 |
migration: add trace point when vm_stop_force_state fails
This is a critical failure scenario for migration that is hard to
diagnose from existing probes. Most likely it is caused by an error
from bdrv_flush(), but we're not logging the errno anywhere, hence
this new probe.
Reviewed-by: Connor Kuehl <ckuehl@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'migration/migration.c')
-rw-r--r-- | migration/migration.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/migration/migration.c b/migration/migration.c index 4828997..4228635 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -3115,6 +3115,7 @@ static void migration_completion(MigrationState *s) if (!ret) { bool inactivate = !migrate_colo_enabled(); ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE); + trace_migration_completion_vm_stop(ret); if (ret >= 0) { ret = migration_maybe_pause(s, ¤t_active_state, MIGRATION_STATUS_DEVICE); |