From: Paolo Bonzini <pbonzini@redhat.com>
To: Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru>, qemu-devel@nongnu.org
Cc: alex.bennee@linaro.org
Subject: Re: [PATCH] replay: fix recursive checkpoints
Date: Mon, 29 Mar 2021 11:42:13 +0200 [thread overview]
Message-ID: <a2b1a26f-4ed9-cb0c-5fbe-0ae599006738@redhat.com> (raw)
In-Reply-To: <161700476500.1140362.10108444973730452257.stgit@pasha-ThinkPad-X280>
On 29/03/21 09:59, Pavel Dovgalyuk wrote:
> Record/replay uses checkpoints to synchronize the execution
> of the threads and timers. Hardware events such as BH are
> processed at the checkpoints too.
> Event processing can cause refreshing the virtual timers
> and calling the icount-related functions, that also use checkpoints.
> This patch prevents recursive processing of such checkpoints,
> because they have their own records in the log and should be
> processed later.
>
> Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
> ---
> replay/replay.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/replay/replay.c b/replay/replay.c
> index c806fec69a..6df2abc18c 100644
> --- a/replay/replay.c
> +++ b/replay/replay.c
> @@ -180,12 +180,13 @@ bool replay_checkpoint(ReplayCheckpoint checkpoint)
> }
>
> if (in_checkpoint) {
> - /* If we are already in checkpoint, then there is no need
> - for additional synchronization.
> + /*
> Recursion occurs when HW event modifies timers.
> - Timer modification may invoke the checkpoint and
> - proceed to recursion. */
> - return true;
> + Prevent performing icount warp in this case and
> + wait for another invocation of the checkpoint.
> + */
> + g_assert(replay_mode == REPLAY_MODE_PLAY);
> + return false;
> }
> in_checkpoint = true;
>
>
Queued, thanks.
Paolo
next prev parent reply other threads:[~2021-03-29 9:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-29 7:59 [PATCH] replay: fix recursive checkpoints Pavel Dovgalyuk
2021-03-29 9:42 ` Paolo Bonzini [this message]
2021-03-29 11:25 ` Alex Bennée
2021-03-30 8:24 ` Pavel Dovgalyuk
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=a2b1a26f-4ed9-cb0c-5fbe-0ae599006738@redhat.com \
--to=pbonzini@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=pavel.dovgalyuk@ispras.ru \
--cc=qemu-devel@nongnu.org \
/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).