vfio: avoid possible overflow in vfio_iommu_type1_pin_pages
commit0ea971f8dcupstream. add parentheses to avoid possible vaddr overflow. Fixes:a54eb55045("vfio iommu type1: Add support for mediated devices") Signed-off-by: Yan Zhao <yan.y.zhao@intel.com> Signed-off-by: Alex Williamson <alex.williamson@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
751e8b062a
commit
f034b331ef
1 changed files with 1 additions and 1 deletions
|
|
@ -598,7 +598,7 @@ static int vfio_iommu_type1_pin_pages(void *iommu_data,
|
|||
continue;
|
||||
}
|
||||
|
||||
remote_vaddr = dma->vaddr + iova - dma->iova;
|
||||
remote_vaddr = dma->vaddr + (iova - dma->iova);
|
||||
ret = vfio_pin_page_external(dma, remote_vaddr, &phys_pfn[i],
|
||||
do_accounting);
|
||||
if (ret)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue