]> Git Repo - qemu.git/commitdiff
ide: fix halted IO segfault at reset
authorJohn Snow <[email protected]>
Thu, 28 Jul 2016 21:34:19 +0000 (17:34 -0400)
committerJohn Snow <[email protected]>
Thu, 28 Jul 2016 21:34:19 +0000 (17:34 -0400)
If one attempts to perform a system_reset after a failed IO request
that causes the VM to enter a paused state, QEMU will segfault trying
to free up the pending IO requests.

These requests have already been completed and freed, though, so all
we need to do is NULL them before we enter the paused state.

Existing AHCI tests verify that halted requests are still resumed
successfully after a STOP event.

Analyzed-by: Laszlo Ersek <[email protected]>
Reviewed-by: Laszlo Ersek <[email protected]>
Signed-off-by: John Snow <[email protected]>
Message-id: 1469635201[email protected]
Signed-off-by: John Snow <[email protected]>
hw/ide/core.c

index 081c9eb765ab7d666de2b17368541a977db33417..d117b7c202468041c479d7a43bc43609b6b6c723 100644 (file)
@@ -823,6 +823,7 @@ static void ide_dma_cb(void *opaque, int ret)
     }
     if (ret < 0) {
         if (ide_handle_rw_error(s, -ret, ide_dma_cmd_to_retry(s->dma_cmd))) {
+            s->bus->dma->aiocb = NULL;
             return;
         }
     }
This page took 0.023164 seconds and 4 git commands to generate.