Re: [PATCH] coroutine: Drop coroutine_fn annotation from qemu_coroutine_self()

2022-10-06 Thread Kevin Wolf
Am 05.10.2022 um 19:52 hat Alberto Faria geschrieben: > qemu_coroutine_self() can be called from outside coroutine context, > returning the leader coroutine, and several such invocations currently > exist (mostly in qcow2 tracing calls). > > Signed-off-by: Alberto Faria Thanks, applied to the bl

Re: [PATCH] coroutine: Drop coroutine_fn annotation from qemu_coroutine_self()

2022-10-05 Thread Paolo Bonzini
On 10/5/22 19:52, Alberto Faria wrote: qemu_coroutine_self() can be called from outside coroutine context, returning the leader coroutine, and several such invocations currently exist (mostly in qcow2 tracing calls). Signed-off-by: Alberto Faria --- include/qemu/coroutine.h | 2 +- 1 file ch

[PATCH] coroutine: Drop coroutine_fn annotation from qemu_coroutine_self()

2022-10-05 Thread Alberto Faria
qemu_coroutine_self() can be called from outside coroutine context, returning the leader coroutine, and several such invocations currently exist (mostly in qcow2 tracing calls). Signed-off-by: Alberto Faria --- include/qemu/coroutine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff