qemu-block
[Top][All Lists]
Advanced

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

Re: [PATCH v6 02/14] block-copy: add missing coroutine_fn annotations


From: Vladimir Sementsov-Ogievskiy
Subject: Re: [PATCH v6 02/14] block-copy: add missing coroutine_fn annotations
Date: Fri, 25 Nov 2022 20:08:09 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.2

On 11/25/22 16:35, Emanuele Giuseppe Esposito wrote:
These functions end up calling bdrv_common_block_status_above(), a
generated_co_wrapper function.
In addition, they also happen to be always called in coroutine context,
meaning all callers are coroutine_fn.
This means that the g_c_w function will enter the qemu_in_coroutine()
case and eventually suspend (or in other words call qemu_coroutine_yield()).
Therefore we need to mark such functions coroutine_fn too.

I still think that "we need to mark" is not quite correct. Actually "we can 
mark", as such marking doesn't brake things. And we do have a reason for it, which comes in 
the following patches, but the commit message say nothing about it.

As well as in subject: they are not "missing", as nothing wrong for function not to be 
"coroutine_fn", when it doesn't call other "coroutine_fn"s.


Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>

change is OK:
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>

--
Best regards,
Vladimir




reply via email to

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