[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 02/10] Fix the qemu crash when guest shutdown during checkpoi
From: |
Lukas Straub |
Subject: |
Re: [PATCH 02/10] Fix the qemu crash when guest shutdown during checkpoint |
Date: |
Wed, 20 Jan 2021 20:12:44 +0100 |
On Wed, 13 Jan 2021 10:46:27 +0800
leirao <lei.rao@intel.com> wrote:
> From: "Rao, Lei" <lei.rao@intel.com>
>
> This patch fixes the following:
> qemu-system-x86_64: invalid runstate transition: 'colo' ->'shutdown'
> Aborted (core dumped)
>
> Signed-off-by: Lei Rao <lei.rao@intel.com>
I wonder how that is possible, since the VM is stopped during 'colo' state.
Unrelated to this patch, I think this area needs some work since
the following unintended runstate transition is possible:
'shutdown' -> 'colo' -> 'running'.
> ---
> softmmu/runstate.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/softmmu/runstate.c b/softmmu/runstate.c
> index 636aab0..455ad0d 100644
> --- a/softmmu/runstate.c
> +++ b/softmmu/runstate.c
> @@ -125,6 +125,7 @@ static const RunStateTransition
> runstate_transitions_def[] = {
> { RUN_STATE_RESTORE_VM, RUN_STATE_PRELAUNCH },
>
> { RUN_STATE_COLO, RUN_STATE_RUNNING },
> + { RUN_STATE_COLO, RUN_STATE_SHUTDOWN},
>
> { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
> { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
--
pgp6f7SvT8FoA.pgp
Description: OpenPGP digital signature
- [PATCH 00/10] Fixed some bugs and optimized some codes for COLO, leirao, 2021/01/12
- [PATCH 01/10] Remove some duplicate trace code., leirao, 2021/01/12
- [PATCH 02/10] Fix the qemu crash when guest shutdown during checkpoint, leirao, 2021/01/12
- Re: [PATCH 02/10] Fix the qemu crash when guest shutdown during checkpoint,
Lukas Straub <=
- [PATCH 03/10] Optimize the function of filter_send, leirao, 2021/01/12
- [PATCH 04/10] Remove migrate_set_block_enabled in checkpoint, leirao, 2021/01/12
- [PATCH 05/10] Optimize the function of packet_new, leirao, 2021/01/12