From: Max Reitz <mreitz@redhat.com>
To: Emanuele Giuseppe Esposito <eesposit@redhat.com>, qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
Eric Blake <eblake@redhat.com>,
qemu-devel@nongnu.org
Subject: Re: [PATCH v5 3/6] blkdebug: track all actions
Date: Thu, 15 Jul 2021 11:59:21 +0200 [thread overview]
Message-ID: <31cffc12-b8a3-1e51-a583-f4bce8c41501@redhat.com> (raw)
In-Reply-To: <20210614082931.24925-4-eesposit@redhat.com>
On 14.06.21 10:29, Emanuele Giuseppe Esposito wrote:
> Add a counter for each action that a rule can trigger.
> This is mainly used to keep track of how many coroutine_yield()
> we need to perform after processing all rules in the list.
>
> Co-developed-by: Paolo Bonzini<pbonzini@redhat.com>
> Signed-off-by: Emanuele Giuseppe Esposito<eesposit@redhat.com>
> Reviewed-by: Vladimir Sementsov-Ogievskiy<vsementsov@virtuozzo.com>
> ---
> block/blkdebug.c | 17 ++++++++---------
> 1 file changed, 8 insertions(+), 9 deletions(-)
>
> diff --git a/block/blkdebug.c b/block/blkdebug.c
> index e8fdf7b056..6bdeb2c7b3 100644
> --- a/block/blkdebug.c
> +++ b/block/blkdebug.c
> @@ -74,6 +74,7 @@ enum {
> ACTION_INJECT_ERROR,
> ACTION_SET_STATE,
> ACTION_SUSPEND,
> + ACTION__MAX,
> };
>
> typedef struct BlkdebugRule {
> @@ -791,22 +792,22 @@ static void suspend_request(BlockDriverState *bs, BlkdebugRule *rule)
> qemu_coroutine_yield();
> }
>
> -static bool process_rule(BlockDriverState *bs, struct BlkdebugRule *rule,
> - bool injected)
> +static void process_rule(BlockDriverState *bs, struct BlkdebugRule *rule,
> + int *action_count)
I would have liked a comment above this function explaining that
`action_count` is not merely an int pointer, but actually an
int[ACTION__MAX] pointer.
But it’s too late to complain about that now. O:)
> {
> BDRVBlkdebugState *s = bs->opaque;
>
> /* Only process rules for the current state */
> if (rule->state && rule->state != s->state) {
> - return injected;
> + return;
> }
>
> /* Take the action */
> + action_count[rule->action]++;
> switch (rule->action) {
> case ACTION_INJECT_ERROR:
> - if (!injected) {
> + if (action_count[ACTION_INJECT_ERROR] == 1) {
> QSIMPLEQ_INIT(&s->active_rules);
(I don’t quite understand this part – why do we clear the list of active
rules here? And why only if a new error is injected? For example, if I
have an inject-error rule that should only fire on state 1, and then the
state changes to state 2, it stays active until a new error is injected,
which doesn’t make sense to me. But that has nothing to do with this
series, of course. I’m just wondering.)
Max
> - injected = true;
> }
> QSIMPLEQ_INSERT_HEAD(&s->active_rules, rule, active_next);
> break;
>
>
>
next prev parent reply other threads:[~2021-07-15 10:01 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-14 8:29 [PATCH v5 0/6] blkdebug: fix racing condition when iterating on Emanuele Giuseppe Esposito
2021-06-14 8:29 ` [PATCH v5 1/6] blkdebug: refactor removal of a suspended request Emanuele Giuseppe Esposito
2021-06-14 8:29 ` [PATCH v5 2/6] blkdebug: move post-resume handling to resume_req_by_tag Emanuele Giuseppe Esposito
2021-07-15 9:59 ` Max Reitz
2021-06-14 8:29 ` [PATCH v5 3/6] blkdebug: track all actions Emanuele Giuseppe Esposito
2021-07-15 9:59 ` Max Reitz [this message]
2021-06-14 8:29 ` [PATCH v5 4/6] blkdebug: do not suspend in the middle of QLIST_FOREACH_SAFE Emanuele Giuseppe Esposito
2021-06-14 8:29 ` [PATCH v5 5/6] block/blkdebug: remove new_state field and instead use a local variable Emanuele Giuseppe Esposito
2021-06-19 12:38 ` Vladimir Sementsov-Ogievskiy
2021-06-14 8:29 ` [PATCH v5 6/6] blkdebug: protect rules and suspended_reqs with a lock Emanuele Giuseppe Esposito
2021-06-19 12:42 ` Vladimir Sementsov-Ogievskiy
2021-07-15 10:06 ` [PATCH v5 0/6] blkdebug: fix racing condition when iterating on Max Reitz
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=31cffc12-b8a3-1e51-a583-f4bce8c41501@redhat.com \
--to=mreitz@redhat.com \
--cc=eblake@redhat.com \
--cc=eesposit@redhat.com \
--cc=kwolf@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=vsementsov@virtuozzo.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).