diff options
author | John Snow <jsnow@redhat.com> | 2015-07-04 02:06:04 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2015-07-04 02:06:04 -0400 |
commit | 4614619ee4ad96d2715dc41f9430fb43335c15d2 (patch) | |
tree | b73ebe441895cc5cfb0162827d1c8c6532bb1f6a /hw/ide/ahci.h | |
parent | a718978ed58abc1ad92567a9c17525136be02a71 (diff) | |
download | qemu-4614619ee4ad96d2715dc41f9430fb43335c15d2.zip qemu-4614619ee4ad96d2715dc41f9430fb43335c15d2.tar.gz qemu-4614619ee4ad96d2715dc41f9430fb43335c15d2.tar.bz2 |
ahci: stash ncq command
For migration and werror=stop/rerror=stop resume purposes,
it will be convenient to have the command handy inside of
ncq_tfs.
Eventually, we'd like to avoid reading from the FIS entirely
after the initial read, so this is a byte (hah!) sized step
in that direction.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 1435767578-32743-3-git-send-email-jsnow@redhat.com
Diffstat (limited to 'hw/ide/ahci.h')
-rw-r--r-- | hw/ide/ahci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ide/ahci.h b/hw/ide/ahci.h index b8872a4..33607d7 100644 --- a/hw/ide/ahci.h +++ b/hw/ide/ahci.h @@ -259,6 +259,7 @@ typedef struct NCQTransferState { uint16_t sector_count; uint64_t lba; uint8_t tag; + uint8_t cmd; int slot; int used; } NCQTransferState; |