From: Alex Bennée Date: Wed, 7 Oct 2020 16:00:19 +0000 (+0100) Subject: hw/ide: restore replay support of IDE X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=de00b8b3768c2f854065ab1269bd6d68af3d2263;p=qemu.git hw/ide: restore replay support of IDE A recent change to weak reset handling broke replay due to the use of aio_bh_schedule_oneshot instead of the replay aware replay_bh_schedule_oneshot_event. Fixes: 55adb3c456 ("ide: cancel pending callbacks on SRST") Suggested-by: Pavel Dovgalyuk Signed-off-by: Alex Bennée Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Reviewed-by: John Snow Acked-by: John Snow Message-Id: <20201007160038.26953-4-alex.bennee@linaro.org> --- diff --git a/hw/ide/core.c b/hw/ide/core.c index 0e32abd779..693b352d5e 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -2289,8 +2289,8 @@ void ide_ctrl_write(void *opaque, uint32_t addr, uint32_t val) s = &bus->ifs[i]; s->status |= BUSY_STAT; } - aio_bh_schedule_oneshot(qemu_get_aio_context(), - ide_bus_perform_srst, bus); + replay_bh_schedule_oneshot_event(qemu_get_aio_context(), + ide_bus_perform_srst, bus); } bus->cmd = val;