mirror of
https://github.com/qemu/qemu.git
synced 2024-11-30 23:33:51 +08:00
sheepdog: Use bdrv_coroutine_enter before BDRV_POLL_WHILE
When called from main thread, the coroutine should run in the context of bs. Use bdrv_coroutine_enter to ensure that. Signed-off-by: Fam Zheng <famz@redhat.com>
This commit is contained in:
parent
49ca625913
commit
76296dff97
@ -736,7 +736,7 @@ static int do_req(int sockfd, BlockDriverState *bs, SheepdogReq *hdr,
|
||||
} else {
|
||||
co = qemu_coroutine_create(do_co_req, &srco);
|
||||
if (bs) {
|
||||
qemu_coroutine_enter(co);
|
||||
bdrv_coroutine_enter(bs, co);
|
||||
BDRV_POLL_WHILE(bs, !srco.finished);
|
||||
} else {
|
||||
qemu_coroutine_enter(co);
|
||||
|
Loading…
Reference in New Issue
Block a user