From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: "Daniel P. Berrangé" <berrange@redhat.com>
Cc: Juan Quintela <quintela@redhat.com>,
qemu-devel@nongnu.org,
Hailiang Zhang <zhang.zhanghailiang@huawei.com>
Subject: Re: [PATCH 05/33] migration: push Error **errp into qemu_loadvm_state_main()
Date: Mon, 15 Feb 2021 18:35:15 +0000 [thread overview]
Message-ID: <YCq+4/8hUcAWV1HM@work-vm> (raw)
In-Reply-To: <20210204171907.901471-6-berrange@redhat.com>
* Daniel P. Berrangé (berrange@redhat.com) wrote:
> This is an incremental step in converting vmstate loading code to report
> via Error objects instead of printing directly to the console/monitor.
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
> migration/colo.c | 3 +-
> migration/savevm.c | 73 +++++++++++++++++++++++++++++++---------------
> migration/savevm.h | 3 +-
> 3 files changed, 52 insertions(+), 27 deletions(-)
>
> diff --git a/migration/colo.c b/migration/colo.c
> index e344b7cf32..4a050ac579 100644
> --- a/migration/colo.c
> +++ b/migration/colo.c
> @@ -705,11 +705,10 @@ static void colo_incoming_process_checkpoint(MigrationIncomingState *mis,
>
> qemu_mutex_lock_iothread();
> cpu_synchronize_all_states();
> - ret = qemu_loadvm_state_main(mis->from_src_file, mis);
> + ret = qemu_loadvm_state_main(mis->from_src_file, mis, errp);
> qemu_mutex_unlock_iothread();
>
> if (ret < 0) {
> - error_setg(errp, "Load VM's live state (ram) error");
> return;
> }
>
> diff --git a/migration/savevm.c b/migration/savevm.c
> index dd41292d4e..e47aec435c 100644
> --- a/migration/savevm.c
> +++ b/migration/savevm.c
> @@ -1819,6 +1819,7 @@ static void *postcopy_ram_listen_thread(void *opaque)
> QEMUFile *f = mis->from_src_file;
> int load_res;
> MigrationState *migr = migrate_get_current();
> + Error *local_err = NULL;
>
> object_ref(OBJECT(migr));
>
> @@ -1833,7 +1834,7 @@ static void *postcopy_ram_listen_thread(void *opaque)
> * in qemu_file, and thus we must be blocking now.
> */
> qemu_file_set_blocking(f, true);
> - load_res = qemu_loadvm_state_main(f, mis);
> + load_res = qemu_loadvm_state_main(f, mis, &local_err);
>
> /*
> * This is tricky, but, mis->from_src_file can change after it
> @@ -1849,6 +1850,7 @@ static void *postcopy_ram_listen_thread(void *opaque)
> if (load_res < 0) {
> qemu_file_set_error(f, load_res);
> dirty_bitmap_mig_cancel_incoming();
> + error_report_err(local_err);
> if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING &&
> !migrate_postcopy_ram() && migrate_dirty_bitmaps())
> {
> @@ -1859,12 +1861,10 @@ static void *postcopy_ram_listen_thread(void *opaque)
> __func__, load_res);
> load_res = 0; /* prevent further exit() */
> } else {
> - error_report("%s: loadvm failed: %d", __func__, load_res);
> migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
> MIGRATION_STATUS_FAILED);
> }
> - }
> - if (load_res >= 0) {
> + } else {
> /*
> * This looks good, but it's possible that the device loading in the
> * main thread hasn't finished yet, and so we might not be in 'RUN'
> @@ -2116,14 +2116,17 @@ static int loadvm_postcopy_handle_resume(MigrationIncomingState *mis)
> * @mis: Incoming state
> * @length: Length of packaged data to read
> *
> - * Returns: Negative values on error
> - *
> + * Returns:
> + * 0: success
> + * LOADVM_QUIT: success, but stop
> + * -1: error
> */
> static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
> {
> int ret;
> size_t length;
> QIOChannelBuffer *bioc;
> + Error *local_err = NULL;
>
> length = qemu_get_be32(mis->from_src_file);
> trace_loadvm_handle_cmd_packaged(length);
> @@ -2149,8 +2152,11 @@ static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
>
> QEMUFile *packf = qemu_fopen_channel_input(QIO_CHANNEL(bioc));
>
> - ret = qemu_loadvm_state_main(packf, mis);
> + ret = qemu_loadvm_state_main(packf, mis, &local_err);
> trace_loadvm_handle_cmd_packaged_main(ret);
> + if (ret < 0) {
> + error_report_err(local_err);
> + }
> qemu_fclose(packf);
> object_unref(OBJECT(bioc));
>
> @@ -2568,7 +2574,14 @@ static bool postcopy_pause_incoming(MigrationIncomingState *mis)
> return true;
> }
>
> -int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
> +/*
> + * Returns:
> + * 0: success
> + * LOADVM_QUIT: success, but stop
> + * -1: error
> + */
> +int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis,
> + Error **errp)
> {
> uint8_t section_type;
> int ret = 0;
> @@ -2579,7 +2592,9 @@ retry:
>
> if (qemu_file_get_error(f)) {
> ret = qemu_file_get_error(f);
> - break;
> + error_setg(errp,
> + "Failed to load device state section ID: %d", ret);
Can I ask why these don't use strerror(ret) ?
The test I'm running is, start a VM with an actual guest and a useful
amount of ram:
./x86_64-softmmu/qemu-system-x86_64 -M pc,accel=kvm -nographic -m 8G -drive if=virtio,file=/home/vmimages/fedora-33-nest.qcow
./x86_64-softmmu/qemu-system-x86_64 -M pc,accel=kvm -nographic -m 8G -drive if=virtio,file=/home/vmimages/fedora-33-nest.qcow -incoming tcp:0:4444
source:
migrate_set_speed 1m
migrate -d tcp:0:4444
<Now quickly>
migrate_cancel
In the old world I get:
qemu-system-x86_64: load of migration failed: Input/output error
In your world I get:
qemu-system-x86_64: Failed to load device state section ID: -5
(5 being EIO)
Dave
> + goto out;
> }
>
> trace_qemu_loadvm_state_section(section_type);
> @@ -2588,6 +2603,9 @@ retry:
> case QEMU_VM_SECTION_FULL:
> ret = qemu_loadvm_section_start_full(f, mis);
> if (ret < 0) {
> + error_setg(errp,
> + "Failed to load device state section start: %d",
> + ret);
> goto out;
> }
> break;
> @@ -2595,29 +2613,38 @@ retry:
> case QEMU_VM_SECTION_END:
> ret = qemu_loadvm_section_part_end(f, mis);
> if (ret < 0) {
> + error_setg(errp,
> + "Failed to load device state section end: %d", ret);
> goto out;
> }
> break;
> case QEMU_VM_COMMAND:
> ret = loadvm_process_command(f);
> trace_qemu_loadvm_state_section_command(ret);
> - if ((ret < 0) || (ret == LOADVM_QUIT)) {
> + if (ret < 0) {
> + error_setg(errp,
> + "Failed to load device state command: %d", ret);
> + goto out;
> + }
> + if (ret == LOADVM_QUIT) {
> goto out;
> }
> break;
> case QEMU_VM_EOF:
> /* This is the end of migration */
> + ret = 0;
> goto out;
> default:
> - error_report("Unknown savevm section type %d", section_type);
> - ret = -EINVAL;
> + error_setg(errp,
> + "Unknown savevm section type %d", section_type);
> + ret = -1;
> goto out;
> }
> }
>
> out:
> if (ret < 0) {
> - qemu_file_set_error(f, ret);
> + qemu_file_set_error(f, -EINVAL);
>
> /* Cancel bitmaps incoming regardless of recovery */
> dirty_bitmap_mig_cancel_incoming();
> @@ -2643,6 +2670,12 @@ out:
> return ret;
> }
>
> +/*
> + * Returns:
> + * 0: success
> + * LOADVM_QUIT: success, but stop
> + * -1: error
> + */
> int qemu_loadvm_state(QEMUFile *f, Error **errp)
> {
> MigrationIncomingState *mis = migration_incoming_get_current();
> @@ -2662,17 +2695,12 @@ int qemu_loadvm_state(QEMUFile *f, Error **errp)
>
> cpu_synchronize_all_pre_loadvm();
>
> - ret = qemu_loadvm_state_main(f, mis);
> - if (ret < 0) {
> - error_setg(errp, "Error %d while loading VM state", ret);
> - ret = -1;
> - }
> + ret = qemu_loadvm_state_main(f, mis, errp);
> qemu_event_set(&mis->main_thread_load_event);
>
> trace_qemu_loadvm_state_post_main(ret);
>
> if (mis->have_listen_thread) {
> - error_setg(errp, "Error %d while loading VM state", ret);
> /* Listen thread still going, can't clean up yet */
> return ret;
> }
> @@ -2729,13 +2757,10 @@ int qemu_loadvm_state(QEMUFile *f, Error **errp)
> int qemu_load_device_state(QEMUFile *f, Error **errp)
> {
> MigrationIncomingState *mis = migration_incoming_get_current();
> - int ret;
>
> /* Load QEMU_VM_SECTION_FULL section */
> - ret = qemu_loadvm_state_main(f, mis);
> - if (ret < 0) {
> - error_setg(errp, "Failed to load device state: %d", ret);
> - return ret;
> + if (qemu_loadvm_state_main(f, mis, errp) < 0) {
> + return -1;
> }
>
> cpu_synchronize_all_post_init();
> diff --git a/migration/savevm.h b/migration/savevm.h
> index c727bc103e..1cec83c729 100644
> --- a/migration/savevm.h
> +++ b/migration/savevm.h
> @@ -62,7 +62,8 @@ int qemu_save_device_state(QEMUFile *f);
>
> int qemu_loadvm_state(QEMUFile *f, Error **errp);
> void qemu_loadvm_state_cleanup(void);
> -int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis);
> +int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis,
> + Error **errp);
> int qemu_load_device_state(QEMUFile *f, Error **errp);
>
> #endif
> --
> 2.29.2
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2021-02-15 18:41 UTC|newest]
Thread overview: 64+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-04 17:18 [PATCH 00/33] migration: capture error reports into Error object Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 01/33] migration: push Error **errp into qemu_loadvm_state() Daniel P. Berrangé
2021-02-04 21:57 ` Philippe Mathieu-Daudé
2021-02-05 9:33 ` Daniel P. Berrangé
2021-02-05 9:35 ` Philippe Mathieu-Daudé
2021-03-11 12:38 ` Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 02/33] migration: push Error **errp into qemu_loadvm_state_header() Daniel P. Berrangé
2021-02-04 21:58 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 03/33] migration: push Error **errp into qemu_loadvm_state_setup() Daniel P. Berrangé
2021-02-04 21:59 ` Philippe Mathieu-Daudé
2021-02-05 7:50 ` Markus Armbruster
2021-02-04 17:18 ` [PATCH 04/33] migration: push Error **errp into qemu_load_device_state() Daniel P. Berrangé
2021-02-04 22:01 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 05/33] migration: push Error **errp into qemu_loadvm_state_main() Daniel P. Berrangé
2021-02-15 18:35 ` Dr. David Alan Gilbert [this message]
2021-02-15 18:58 ` Daniel P. Berrangé
2021-03-11 12:17 ` Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 06/33] migration: push Error **errp into qemu_loadvm_section_start_full() Daniel P. Berrangé
2021-02-04 22:04 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 07/33] migration: push Error **errp into qemu_loadvm_section_part_end() Daniel P. Berrangé
2021-02-05 16:16 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 08/33] migration: push Error **errp into loadvm_process_command() Daniel P. Berrangé
2021-02-05 16:18 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 09/33] migration: push Error **errp into loadvm_handle_cmd_packaged() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 10/33] migration: push Error **errp into loadvm_postcopy_handle_advise() Daniel P. Berrangé
2021-02-05 16:21 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 11/33] migration: push Error **errp into ram_postcopy_incoming_init() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 12/33] migration: push Error **errp into loadvm_postcopy_handle_listen() Daniel P. Berrangé
2021-02-05 16:23 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 13/33] migration: push Error **errp into loadvm_postcopy_handle_run() Daniel P. Berrangé
2021-02-05 16:23 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 14/33] migration: push Error **errp into loadvm_postcopy_ram_handle_discard() Daniel P. Berrangé
2021-02-05 16:24 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 15/33] migration: make loadvm_postcopy_handle_resume() void Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 16/33] migration: push Error **errp into loadvm_handle_recv_bitmap() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 17/33] migration: push Error **errp into loadvm_process_enable_colo() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 18/33] migration: push Error **errp into colo_init_ram_cache() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 19/33] migration: push Error **errp into check_section_footer() Daniel P. Berrangé
2021-02-05 16:26 ` Philippe Mathieu-Daudé
2021-02-04 17:18 ` [PATCH 20/33] migration: push Error **errp into global_state_store() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 21/33] migration: remove error reporting from qemu_fopen_bdrv() callers Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 22/33] migration: push Error **errp into qemu_savevm_state_iterate() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 23/33] migration: simplify some error reporting in save_snapshot() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 24/33] migration: push Error **errp into qemu_savevm_state_setup() Daniel P. Berrangé
2021-02-04 17:18 ` [PATCH 25/33] migration: push Error **errp into qemu_savevm_state_complete_precopy() Daniel P. Berrangé
2021-02-04 17:19 ` [PATCH 26/33] migration: push Error **errp into qemu_savevm_state_complete_precopy_non_iterable() Daniel P. Berrangé
2021-02-04 17:19 ` [PATCH 27/33] migration: push Error **errp into qemu_savevm_state_complete_precopy() Daniel P. Berrangé
2021-02-04 17:19 ` [PATCH 28/33] migration: push Error **errp into qemu_savevm_send_packaged() Daniel P. Berrangé
2021-02-04 17:19 ` [PATCH 29/33] migration: push Error **errp into qemu_savevm_live_state() Daniel P. Berrangé
2021-02-04 17:19 ` [PATCH 30/33] migration: push Error **errp into qemu_save_device_state() Daniel P. Berrangé
2021-02-04 17:19 ` [PATCH 31/33] migration: push Error **errp into qemu_savevm_state_resume_prepare() Daniel P. Berrangé
2021-02-04 17:19 ` [PATCH 32/33] migration: push Error **errp into postcopy_resume_handshake() Daniel P. Berrangé
2021-02-04 17:19 ` [PATCH 33/33] migration: push Error **errp into postcopy_do_resume() Daniel P. Berrangé
2021-02-04 18:22 ` [PATCH 00/33] migration: capture error reports into Error object Dr. David Alan Gilbert
2021-02-04 19:09 ` Daniel P. Berrangé
2021-02-08 13:29 ` Dr. David Alan Gilbert
2021-02-08 13:42 ` Daniel P. Berrangé
2021-02-08 14:29 ` Dr. David Alan Gilbert
2021-02-08 14:36 ` Daniel P. Berrangé
2021-02-15 18:38 ` Dr. David Alan Gilbert
2021-02-15 18:58 ` Daniel P. Berrangé
2021-02-15 19:01 ` Dr. David Alan Gilbert
2021-02-16 9:30 ` Daniel P. Berrangé
2021-02-16 19:32 ` Dr. David Alan Gilbert
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=YCq+4/8hUcAWV1HM@work-vm \
--to=dgilbert@redhat.com \
--cc=berrange@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=zhang.zhanghailiang@huawei.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).