qemu-block
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v5 2/6] blkdebug: move post-resume handling to resume_req_by_


From: Max Reitz
Subject: Re: [PATCH v5 2/6] blkdebug: move post-resume handling to resume_req_by_tag
Date: Thu, 15 Jul 2021 11:59:16 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0

On 14.06.21 10:29, Emanuele Giuseppe Esposito wrote:
We want to move qemu_coroutine_yield() after the loop on rules,
because QLIST_FOREACH_SAFE is wrong if the rule list is modified
while the coroutine has yielded.  Therefore move the suspended
request to the heap and clean it up from the remove side.
All that is left is for blkdebug_debug_event to handle the
yielding.

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 | 31 ++++++++++++++++++-------------
  1 file changed, 18 insertions(+), 13 deletions(-)

diff --git a/block/blkdebug.c b/block/blkdebug.c
index 5ccbfcab42..e8fdf7b056 100644
--- a/block/blkdebug.c
+++ b/block/blkdebug.c
@@ -775,25 +775,20 @@ static void blkdebug_close(BlockDriverState *bs)
  static void suspend_request(BlockDriverState *bs, BlkdebugRule *rule)
  {
      BDRVBlkdebugState *s = bs->opaque;
-    BlkdebugSuspendedReq r;
+    BlkdebugSuspendedReq *r;
- r = (BlkdebugSuspendedReq) {
-        .co         = qemu_coroutine_self(),
-        .tag        = g_strdup(rule->options.suspend.tag),
-    };
+    r = g_new(BlkdebugSuspendedReq, 1);
+
+    r->co         = qemu_coroutine_self();
+    r->tag        = g_strdup(rule->options.suspend.tag);

Not wrong, but just as a note: I personally would have done the initialization like

*r = (BlkdebugSuspendedReq) {
    .co = ...,
    .tag = ...,
};

The advantage is that this sets all fields that aren’t mentioned to zero (kind of important, because you don’t use g_new0(), and so now I have to manually verify that there are no other fields that would need to be initialized (which there aren’t)), and in this special case the diff stat also would have been smaller. (But that’s a rare coincidence.)

There are no other fields besides the list entry object (which is fully overwritten by QLIST_INSERT_HEAD()), though, so this patch is correct and I’m happy with it as-is.

Max




reply via email to

[Prev in Thread] Current Thread [Next in Thread]