summaryrefslogtreecommitdiffstats
path: root/util/iov.c
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2014-07-09 19:17:30 +0200
committerKevin Wolf <kwolf@redhat.com>2014-07-14 12:03:21 +0200
commit58f423fbd5f7f435e8dc56dfa565b043d20d1e1b (patch)
tree7d9178c0b85596d3ea4b2565ce1054e8213ce423 /util/iov.c
parent80504dcaa11097b99842312014f5954a54fe1826 (diff)
downloadhqemu-58f423fbd5f7f435e8dc56dfa565b043d20d1e1b.zip
hqemu-58f423fbd5f7f435e8dc56dfa565b043d20d1e1b.tar.gz
dma-helpers: Fix too long qiov
If the size of the scatter/gather list isn't a multiple of 512, the number of sectors for the block layer request is rounded down, resulting in a qiov that doesn't match the request length. Truncate the qiov to the new length of the request. This fixes the IDE qtest case /x86_64/ide/bmdma/short_prdt. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'util/iov.c')
-rw-r--r--util/iov.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/util/iov.c b/util/iov.c
index 2b4f46d..24566c8 100644
--- a/util/iov.c
+++ b/util/iov.c
@@ -550,3 +550,16 @@ size_t iov_discard_back(struct iovec *iov, unsigned int *iov_cnt,
return total;
}
+
+void qemu_iovec_discard_back(QEMUIOVector *qiov, size_t bytes)
+{
+ size_t total;
+ unsigned int niov = qiov->niov;
+
+ assert(qiov->size >= bytes);
+ total = iov_discard_back(qiov->iov, &niov, bytes);
+ assert(total == bytes);
+
+ qiov->niov = niov;
+ qiov->size -= bytes;
+}
OpenPOWER on IntegriCloud