aboutsummaryrefslogtreecommitdiff
path: root/hw/rdma
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2021-12-31 11:33:29 +0100
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2022-01-18 12:56:29 +0100
commitbfa30f3903e0542611196b21f5832a4be5775a21 (patch)
tree6b2e7195df4f014b0fcb330e2112b6478c6127ed /hw/rdma
parent026644cf5f9fd8c27ea7f4f2fd4fea8102b30001 (diff)
downloadqemu-bfa30f3903e0542611196b21f5832a4be5775a21.zip
qemu-bfa30f3903e0542611196b21f5832a4be5775a21.tar.gz
qemu-bfa30f3903e0542611196b21f5832a4be5775a21.tar.bz2
hw/dma: Use dma_addr_t type definition when relevant
Update the obvious places where dma_addr_t should be used (instead of uint64_t, hwaddr, size_t, int32_t types). This allows to have &dma_addr_t type portable on 32/64-bit hosts. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220111184309.28637-11-f4bug@amsat.org>
Diffstat (limited to 'hw/rdma')
-rw-r--r--hw/rdma/rdma_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/rdma/rdma_utils.c b/hw/rdma/rdma_utils.c
index 61cb8ed..5a7ef63 100644
--- a/hw/rdma/rdma_utils.c
+++ b/hw/rdma/rdma_utils.c
@@ -20,7 +20,7 @@
void *rdma_pci_dma_map(PCIDevice *dev, dma_addr_t addr, dma_addr_t len)
{
void *p;
- hwaddr pci_len = len;
+ dma_addr_t pci_len = len;
if (!addr) {
rdma_error_report("addr is NULL");