[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v4 24/25] vfio: Also trace event failures in vfio_save_comple
From: |
Eric Auger |
Subject: |
Re: [PATCH v4 24/25] vfio: Also trace event failures in vfio_save_complete_precopy() |
Date: |
Thu, 7 Mar 2024 10:28:06 +0100 |
User-agent: |
Mozilla Thunderbird |
On 3/6/24 14:34, Cédric Le Goater wrote:
> 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);
it is arguable if you want to trace if an error occured. If you want to
unconditionally trace the function entry, want don't we put the trace at
the beginning of the function?
Eric
>
[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