mirror of
https://github.com/qemu/qemu.git
synced 2025-07-31 17:56:52 +00:00
virtio-blk: Release s->rq queue at system_reset
At system_reset, there is no point in retrying the queued request, because the driver that issued the request won't be around any more. Analyzed-by: Laszlo Ersek <lersek@redhat.com> Reported-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Message-id: 1470278654-13525-2-git-send-email-famz@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
5fc8c052ce
commit
26307f6aa4
@ -654,6 +654,7 @@ static void virtio_blk_reset(VirtIODevice *vdev)
|
|||||||
{
|
{
|
||||||
VirtIOBlock *s = VIRTIO_BLK(vdev);
|
VirtIOBlock *s = VIRTIO_BLK(vdev);
|
||||||
AioContext *ctx;
|
AioContext *ctx;
|
||||||
|
VirtIOBlockReq *req;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This should cancel pending requests, but can't do nicely until there
|
* This should cancel pending requests, but can't do nicely until there
|
||||||
@ -663,6 +664,14 @@ static void virtio_blk_reset(VirtIODevice *vdev)
|
|||||||
aio_context_acquire(ctx);
|
aio_context_acquire(ctx);
|
||||||
blk_drain(s->blk);
|
blk_drain(s->blk);
|
||||||
|
|
||||||
|
/* We drop queued requests after blk_drain() because blk_drain() itself can
|
||||||
|
* produce them. */
|
||||||
|
while (s->rq) {
|
||||||
|
req = s->rq;
|
||||||
|
s->rq = req->next;
|
||||||
|
virtio_blk_free_request(req);
|
||||||
|
}
|
||||||
|
|
||||||
if (s->dataplane) {
|
if (s->dataplane) {
|
||||||
virtio_blk_data_plane_stop(s->dataplane);
|
virtio_blk_data_plane_stop(s->dataplane);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user