Skip to content

Commit

Permalink
vfio_pci: fix build on 32-bit systems
Browse files Browse the repository at this point in the history
We cannot cast directly from pointer to uint64.

Cc: Alex Williamson <alex.williamson@redhat.com>
Cc: Alex Barcelo <abarcelo@ac.upc.edu>
Reported-by: Alex Barcelo <abarcelo@ac.upc.edu>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
  • Loading branch information
Anthony Liguori committed Oct 1, 2012
1 parent 92e1fb5 commit 0f41dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/vfio_pci.c
Expand Up @@ -768,7 +768,7 @@ static int vfio_dma_map(VFIOContainer *container, target_phys_addr_t iova,
struct vfio_iommu_type1_dma_map map = {
.argsz = sizeof(map),
.flags = VFIO_DMA_MAP_FLAG_READ,
.vaddr = (__u64)vaddr,
.vaddr = (__u64)(intptr_t)vaddr,
.iova = iova,
.size = size,
};
Expand Down

0 comments on commit 0f41dc1

Please sign in to comment.