diff options
| author | John Snow <jsnow@redhat.com> | 2015-03-19 20:24:15 -0400 |
|---|---|---|
| committer | John Snow <jsnow@redhat.com> | 2015-03-23 12:24:16 -0400 |
| commit | ac38123609742ce3fbdf53774a797ac230cbf118 (patch) | |
| tree | d14a1a9f13a6fff76db9063ad3b224a2b43c201c | |
| parent | dd0bf7baab2201bd8f834be9eb87766662f50b19 (diff) | |
| download | focaccia-qemu-ac38123609742ce3fbdf53774a797ac230cbf118.tar.gz focaccia-qemu-ac38123609742ce3fbdf53774a797ac230cbf118.zip | |
ahci: Fix sglist offset manipulation for BE machines
This does not bother DMA, because DMA generally transfers the entire SGList in one shot if it can. PIO, on the other hand, tries to transfer just one sector at a time, and will make multiple visits to the sglist to fetch memory addresses. Fix the memory address calculaton when we have an offset by moving the offset addition OUTSIDE of the le64_to_cpu calculation. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Tested-by: Andreas Färber <afaerber@suse.de> Message-id: 1426811056-2202-4-git-send-email-jsnow@redhat.com
| -rw-r--r-- | hw/ide/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c index e1ae36f7cd..7a223bede7 100644 --- a/hw/ide/ahci.c +++ b/hw/ide/ahci.c @@ -799,7 +799,7 @@ static int ahci_populate_sglist(AHCIDevice *ad, QEMUSGList *sglist, qemu_sglist_init(sglist, qbus->parent, (sglist_alloc_hint - off_idx), ad->hba->as); - qemu_sglist_add(sglist, le64_to_cpu(tbl[off_idx].addr + off_pos), + qemu_sglist_add(sglist, le64_to_cpu(tbl[off_idx].addr) + off_pos, prdt_tbl_entry_size(&tbl[off_idx]) - off_pos); for (i = off_idx + 1; i < sglist_alloc_hint; i++) { |