diff options
author | John Snow <jsnow@redhat.com> | 2015-04-28 15:27:51 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2015-04-28 15:27:51 -0400 |
commit | 727be1a7550b5caad0b94098a41de8033ad43f85 (patch) | |
tree | 56ba3043f0c411e957ef5c91d8845683f708e1dc /tests/libqos/ahci.h | |
parent | 122fdf2d8822699482723e6f50f34c9c3933360b (diff) | |
download | qemu-727be1a7550b5caad0b94098a41de8033ad43f85.zip qemu-727be1a7550b5caad0b94098a41de8033ad43f85.tar.gz qemu-727be1a7550b5caad0b94098a41de8033ad43f85.tar.bz2 |
qtest/ahci: test different disk sectors
Test sector offset 0, 1, and the last sector(s)
in LBA28 and LBA48 modes.
Signed-off-by: John Snow <jsnow@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 1426274523-22661-3-git-send-email-jsnow@redhat.com
Diffstat (limited to 'tests/libqos/ahci.h')
-rw-r--r-- | tests/libqos/ahci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libqos/ahci.h b/tests/libqos/ahci.h index 888545d..40e8ca4 100644 --- a/tests/libqos/ahci.h +++ b/tests/libqos/ahci.h @@ -523,9 +523,9 @@ void ahci_write_fis(AHCIQState *ahci, RegH2DFIS *fis, uint64_t addr); unsigned ahci_pick_cmd(AHCIQState *ahci, uint8_t port); unsigned size_to_prdtl(unsigned bytes, unsigned bytes_per_prd); void ahci_guest_io(AHCIQState *ahci, uint8_t port, uint8_t ide_cmd, - uint64_t gbuffer, size_t size); + uint64_t gbuffer, size_t size, uint64_t sector); void ahci_io(AHCIQState *ahci, uint8_t port, uint8_t ide_cmd, - void *buffer, size_t bufsize); + void *buffer, size_t bufsize, uint64_t sector); /* Command Lifecycle */ AHCICommand *ahci_command_create(uint8_t command_name); |