[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 5/5] migration: Add tracepoints for downtime checkpoints
|
From: |
Juan Quintela |
|
Subject: |
Re: [PATCH v2 5/5] migration: Add tracepoints for downtime checkpoints |
|
Date: |
Tue, 31 Oct 2023 13:54:04 +0100 |
|
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.3 (gnu/linux) |
Peter Xu <peterx@redhat.com> wrote:
> This patch is inspired by Joao Martin's patch here:
>
> https://lore.kernel.org/r/20230926161841.98464-1-joao.m.martins@oracle.com
>
> Add tracepoints for major downtime checkpoints on both src and dst. They
> share the same tracepoint with a string showing its stage.
>
> Besides the checkpoints in the previous patch, this patch also added
> destination checkpoints.
>
> On src, we have these checkpoints added:
>
> - src-downtime-start: right before vm stops on src
> - src-vm-stopped: after vm is fully stopped
> - src-iterable-saved: after all iterables saved (END sections)
> - src-non-iterable-saved: after all non-iterable saved (FULL sections)
> - src-downtime-stop: migration fully completed
>
> On dst, we have these checkpoints added:
>
> - dst-precopy-loadvm-completes: after loadvm all done for precopy
> - dst-precopy-bh-*: record BH steps to resume VM for precopy
> - dst-postcopy-bh-*: record BH steps to resume VM for postcopy
>
> On dst side, we don't have a good way to trace total time consumed by
> iterable or non-iterable for now. We can mark it by 1st time receiving a
> FULL / END section, but rather than that let's just rely on the other
> tracepoints added for vmstates to back up the information.
>
> With this patch, one can enable "vmstate_downtime*" tracepoints and it'll
> enable all tracepoints for downtime measurements necessary.
>
> Drop loadvm_postcopy_handle_run_bh() tracepoint alongside, because they
> service the same purpose, which was only for postcopy. We then have
> unified prefix for all downtime relevant tracepoints.
>
> Co-developed-by: Joao Martins <joao.m.martins@oracle.com>
> Signed-off-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
- [PATCH v2 0/5] migration: Downtime tracepoints, Peter Xu, 2023/10/30
- [PATCH v2 2/5] migration: Add migration_downtime_start|end() helpers, Peter Xu, 2023/10/30
- [PATCH v2 5/5] migration: Add tracepoints for downtime checkpoints, Peter Xu, 2023/10/30
- Re: [PATCH v2 5/5] migration: Add tracepoints for downtime checkpoints,
Juan Quintela <=
- [PATCH v2 3/5] migration: Add per vmstate downtime tracepoints, Peter Xu, 2023/10/30
- [PATCH v2 4/5] migration: migration_stop_vm() helper, Peter Xu, 2023/10/30
- [PATCH v2 1/5] migration: Set downtime_start even for postcopy, Peter Xu, 2023/10/30