[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 24/25] vfio: Also trace event failures in vfio_save_complete_p
From: |
Cédric Le Goater |
Subject: |
[PATCH v4 24/25] vfio: Also trace event failures in vfio_save_complete_precopy() |
Date: |
Wed, 6 Mar 2024 14:34:39 +0100 |
vfio_save_complete_precopy() currently returns before doing the trace
event. Change that.
Signed-off-by: Cédric Le Goater <clg@redhat.com>
---
hw/vfio/migration.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/hw/vfio/migration.c b/hw/vfio/migration.c
index
bd48f2ee472a5230c2c84bff829dae1e217db33f..c8aeb43b4249ec76ded2542d62792e8c469d5f97
100644
--- a/hw/vfio/migration.c
+++ b/hw/vfio/migration.c
@@ -580,9 +580,6 @@ static int vfio_save_complete_precopy(QEMUFile *f, void
*opaque)
qemu_put_be64(f, VFIO_MIG_FLAG_END_OF_STATE);
ret = qemu_file_get_error(f);
- if (ret) {
- return ret;
- }
trace_vfio_save_complete_precopy(vbasedev->name, ret);
--
2.44.0
[PATCH v4 25/25] vfio: Extend vfio_set_migration_error() with Error* argument, Cédric Le Goater, 2024/03/06
Re: [PATCH v4 00/25] migration: Improve error reporting, Peter Xu, 2024/03/08