Re: [PATCH 1/2] vfio iommu: Use shift operation for 64-bit integer division

2020-06-02 Thread Alex Williamson
On Wed, 3 Jun 2020 00:12:36 +0530 Kirti Wankhede wrote: > Fixes compilation error with ARCH=i386. > > Error fixed by this commit: > ld: drivers/vfio/vfio_iommu_type1.o: in function `vfio_dma_populate_bitmap': > >> vfio_iommu_type1.c:(.text+0x666): undefined reference to `__udivdi3' > > Fixes:

[PATCH 1/2] vfio iommu: Use shift operation for 64-bit integer division

2020-06-02 Thread Kirti Wankhede
Fixes compilation error with ARCH=i386. Error fixed by this commit: ld: drivers/vfio/vfio_iommu_type1.o: in function `vfio_dma_populate_bitmap': >> vfio_iommu_type1.c:(.text+0x666): undefined reference to `__udivdi3' Fixes: d6a4c185660c (vfio iommu: Implementation of ioctl for dirty pages tracki