[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 7/7] migration: Provide explicit error message for file shutdo
From: |
Peter Xu |
Subject: |
[PATCH v2 7/7] migration: Provide explicit error message for file shutdowns |
Date: |
Wed, 5 Jul 2023 12:35:02 -0400 |
Provide an explicit reason for qemu_file_shutdown()s, which can be
displayed in query-migrate when used.
This will make e.g. migrate-pause to display explicit error descriptions,
from:
"error-desc": "Channel error: Input/output error"
To:
"error-desc": "Channel is explicitly shutdown by the user"
in query-migrate.
Signed-off-by: Peter Xu <peterx@redhat.com>
---
migration/qemu-file.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/migration/qemu-file.c b/migration/qemu-file.c
index 419b4092e7..ff605027de 100644
--- a/migration/qemu-file.c
+++ b/migration/qemu-file.c
@@ -87,7 +87,10 @@ int qemu_file_shutdown(QEMUFile *f)
* --> guest crash!
*/
if (!f->last_error) {
- qemu_file_set_error(f, -EIO);
+ Error *err = NULL;
+
+ error_setg(&err, "Channel is explicitly shutdown by the user");
+ qemu_file_set_error_obj(f, -EIO, err);
}
if (!qio_channel_has_feature(f->ioc,
--
2.41.0
- [PATCH v2 3/7] migration: Introduce migrate_has_error(), (continued)
- [PATCH v2 4/7] migration: Refactor error handling in source return path, Peter Xu, 2023/07/05
- [PATCH v2 7/7] migration: Provide explicit error message for file shutdowns,
Peter Xu <=
- Re: [PATCH v2 7/7] migration: Provide explicit error message for file shutdowns, Fabiano Rosas, 2023/07/05
- Re: [PATCH v2 7/7] migration: Provide explicit error message for file shutdowns, Peter Xu, 2023/07/05
- Re: [PATCH v2 7/7] migration: Provide explicit error message for file shutdowns, Fabiano Rosas, 2023/07/06
- Re: [PATCH v2 7/7] migration: Provide explicit error message for file shutdowns, Peter Xu, 2023/07/06
- Re: [PATCH v2 7/7] migration: Provide explicit error message for file shutdowns, Fabiano Rosas, 2023/07/06
- Re: [PATCH v2 7/7] migration: Provide explicit error message for file shutdowns, Peter Xu, 2023/07/06
- Re: [PATCH v2 7/7] migration: Provide explicit error message for file shutdowns, Fabiano Rosas, 2023/07/06
Re: [PATCH v2 0/7] migration: Better error handling in return path thread, Fabiano Rosas, 2023/07/24