]> git.proxmox.com Git - mirror_qemu.git/commitdiff
ahci: clear aiocb in ncq_cb
authorJohn Snow <jsnow@redhat.com>
Mon, 26 Sep 2016 18:33:37 +0000 (14:33 -0400)
committerJohn Snow <jsnow@redhat.com>
Thu, 29 Sep 2016 19:50:29 +0000 (15:50 -0400)
Similar to existing fixes for IDE (87ac25fd) and ATAPI (7f951b2d), the
AIOCB must be cleared in the callback. Otherwise, we may accidentally
try to reset a dangling pointer in bdrv_aio_cancel() from a port reset.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 1474575040-32079-2-git-send-email-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
hw/ide/ahci.c

index f3438ad78a4fd703ccd3346c11b237dff504a324..63ead21047f46a9823093cde61a60e4d11a50130 100644 (file)
@@ -948,6 +948,7 @@ static void ncq_cb(void *opaque, int ret)
     NCQTransferState *ncq_tfs = (NCQTransferState *)opaque;
     IDEState *ide_state = &ncq_tfs->drive->port.ifs[0];
 
+    ncq_tfs->aiocb = NULL;
     if (ret == -ECANCELED) {
         return;
     }