Skip to content
Snippets Groups Projects
Commit 0ea971f8 authored by Yan Zhao's avatar Yan Zhao Committed by Alex Williamson
Browse files

vfio: avoid possible overflow in vfio_iommu_type1_pin_pages


add parentheses to avoid possible vaddr overflow.

Fixes: a54eb550 ("vfio iommu type1: Add support for mediated devices")
Signed-off-by: default avatarYan Zhao <yan.y.zhao@intel.com>
Signed-off-by: default avatarAlex Williamson <alex.williamson@redhat.com>
parent 205323b8
No related branches found
No related tags found
No related merge requests found
...@@ -555,7 +555,7 @@ static int vfio_iommu_type1_pin_pages(void *iommu_data, ...@@ -555,7 +555,7 @@ static int vfio_iommu_type1_pin_pages(void *iommu_data,
continue; 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], ret = vfio_pin_page_external(dma, remote_vaddr, &phys_pfn[i],
do_accounting); do_accounting);
if (ret) if (ret)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment