summaryrefslogtreecommitdiff
path: root/hw/ide/internal.h
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2013-07-15 11:25:55 +0200
committerKevin Wolf <kwolf@redhat.com>2013-07-15 11:53:55 +0200
commita62eaa26c1d6d48fbdc3ac1d32bd1314f5fdc8c9 (patch)
tree9b5f353025bb767ad0fbf10fc9d6488be7831b13 /hw/ide/internal.h
parent0e1146a7a011a69d8cbc958b4f7ebad186730fc3 (diff)
downloadqemu-a62eaa26c1d6d48fbdc3ac1d32bd1314f5fdc8c9.tar.gz
ahci: Fix FLUSH command
AHCI couldn't cope with asynchronous commands that aren't doing DMA, it simply wouldn't complete them. Due to the bug fixed in commit f68ec837, FLUSH commands would seem to have completed immediately even if they were still running on the host. After the commit, they would simply hang and never unset the BSY bit, rendering AHCI unusable on any OS sending flushes. This patch adds another callback for the completion of asynchronous commands. This is what AHCI really wants to use for its command completion logic rather than an DMA completion callback. Cc: qemu-stable@nongnu.org Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/ide/internal.h')
-rw-r--r--hw/ide/internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ide/internal.h b/hw/ide/internal.h
index 03f14896d6..048a052143 100644
--- a/hw/ide/internal.h
+++ b/hw/ide/internal.h
@@ -433,6 +433,7 @@ struct IDEDMAOps {
DMAIntFunc *set_unit;
DMAIntFunc *add_status;
DMAFunc *set_inactive;
+ DMAFunc *async_cmd_done;
DMARestartFunc *restart_cb;
DMAFunc *reset;
};