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 | e38cc93aca5d40a58e65bb0dfa23eaf3290bbf76 (patch) | |
tree | e7394e3ae1d16edf19ed33153ab47465b9fba7b3 /tests | |
parent | a8973ff50a04f96c3ce5c803c8fd3ec16ed8d6c5 (diff) | |
download | qemu-e38cc93aca5d40a58e65bb0dfa23eaf3290bbf76.zip qemu-e38cc93aca5d40a58e65bb0dfa23eaf3290bbf76.tar.gz qemu-e38cc93aca5d40a58e65bb0dfa23eaf3290bbf76.tar.bz2 |
libqos/ahci: Force all NCQ commands to be LBA48
NCQ commands are LBA48 by definition.
See SATA 3.2 13.6.4.1 "READ FPDMA QUEUED", or
SATA 3.2 13.6.5.1 "WRITE FPDMA QUEUED."
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 1435016308-6150-15-git-send-email-jsnow@redhat.com
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libqos/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libqos/ahci.c b/tests/libqos/ahci.c index 7cf667a..3d62cb6 100644 --- a/tests/libqos/ahci.c +++ b/tests/libqos/ahci.c @@ -781,7 +781,7 @@ void ahci_command_set_offset(AHCICommand *cmd, uint64_t lba_sect) RegH2DFIS *fis = &(cmd->fis); if (cmd->props->lba28) { g_assert_cmphex(lba_sect, <=, 0xFFFFFFF); - } else if (cmd->props->lba48) { + } else if (cmd->props->lba48 || cmd->props->ncq) { g_assert_cmphex(lba_sect, <=, 0xFFFFFFFFFFFF); } else { /* Can't set offset if we don't know the format. */ |