mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
coroutine: Extract qemu_aio_coroutine_enter
It's a variant of qemu_coroutine_enter with an explicit AioContext parameter. Signed-off-by: Fam Zheng <famz@redhat.com> Acked-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
d90fce9446
commit
ba9e75ceef
3 changed files with 14 additions and 4 deletions
|
@ -102,12 +102,12 @@ static void coroutine_delete(Coroutine *co)
|
|||
qemu_coroutine_delete(co);
|
||||
}
|
||||
|
||||
void qemu_coroutine_enter(Coroutine *co)
|
||||
void qemu_aio_coroutine_enter(AioContext *ctx, Coroutine *co)
|
||||
{
|
||||
Coroutine *self = qemu_coroutine_self();
|
||||
CoroutineAction ret;
|
||||
|
||||
trace_qemu_coroutine_enter(self, co, co->entry_arg);
|
||||
trace_qemu_aio_coroutine_enter(ctx, self, co, co->entry_arg);
|
||||
|
||||
if (co->caller) {
|
||||
fprintf(stderr, "Co-routine re-entered recursively\n");
|
||||
|
@ -115,7 +115,7 @@ void qemu_coroutine_enter(Coroutine *co)
|
|||
}
|
||||
|
||||
co->caller = self;
|
||||
co->ctx = qemu_get_current_aio_context();
|
||||
co->ctx = ctx;
|
||||
|
||||
/* Store co->ctx before anything that stores co. Matches
|
||||
* barrier in aio_co_wake and qemu_co_mutex_wake.
|
||||
|
@ -139,6 +139,11 @@ void qemu_coroutine_enter(Coroutine *co)
|
|||
}
|
||||
}
|
||||
|
||||
void qemu_coroutine_enter(Coroutine *co)
|
||||
{
|
||||
qemu_aio_coroutine_enter(qemu_get_current_aio_context(), co);
|
||||
}
|
||||
|
||||
void qemu_coroutine_enter_if_inactive(Coroutine *co)
|
||||
{
|
||||
if (!qemu_coroutine_entered(co)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue