Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 154778
b: refs/heads/master
c: 88cb6a7
h: refs/heads/master
v: v3
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Jun 29, 2009
1 parent 5ee953b commit b17414d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b536d24d212c994a7d98469ea3a8891573d45fd4
refs/heads/master: 88cb6a7424d9465faf6caaaadff5af0766c93991
21 changes: 12 additions & 9 deletions trunk/drivers/pci/intel-iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2320,11 +2320,13 @@ int __init init_dmars(void)
return ret;
}

static inline u64 aligned_size(u64 host_addr, size_t size)
static inline unsigned long aligned_nrpages(unsigned long host_addr,
size_t size)
{
u64 addr;
addr = (host_addr & (~PAGE_MASK)) + size;
return PAGE_ALIGN(addr);
host_addr &= ~PAGE_MASK;
host_addr += size + PAGE_SIZE - 1;

return host_addr >> VTD_PAGE_SHIFT;
}

struct iova *
Expand Down Expand Up @@ -2466,7 +2468,7 @@ static dma_addr_t __intel_map_single(struct device *hwdev, phys_addr_t paddr,
return 0;

iommu = domain_get_iommu(domain);
size = aligned_size(paddr, size) >> VTD_PAGE_SHIFT;
size = aligned_nrpages(paddr, size);

iova = __intel_alloc_iova(hwdev, domain, size << VTD_PAGE_SHIFT, pdev->dma_mask);
if (!iova)
Expand Down Expand Up @@ -2757,9 +2759,10 @@ static int intel_map_sg(struct device *hwdev, struct scatterlist *sglist, int ne
iommu = domain_get_iommu(domain);

for_each_sg(sglist, sg, nelems, i)
size += aligned_size(sg->offset, sg->length);
size += aligned_nrpages(sg->offset, sg->length);

iova = __intel_alloc_iova(hwdev, domain, size, pdev->dma_mask);
iova = __intel_alloc_iova(hwdev, domain, size << VTD_PAGE_SHIFT,
pdev->dma_mask);
if (!iova) {
sglist->dma_length = 0;
return 0;
Expand All @@ -2778,7 +2781,7 @@ static int intel_map_sg(struct device *hwdev, struct scatterlist *sglist, int ne
start_vpfn = mm_to_dma_pfn(iova->pfn_lo);
offset_pfn = 0;
for_each_sg(sglist, sg, nelems, i) {
int nr_pages = aligned_size(sg->offset, sg->length) >> VTD_PAGE_SHIFT;
int nr_pages = aligned_nrpages(sg->offset, sg->length);
ret = domain_pfn_mapping(domain, start_vpfn + offset_pfn,
page_to_dma_pfn(sg_page(sg)),
nr_pages, prot);
Expand Down Expand Up @@ -3502,7 +3505,7 @@ static int intel_iommu_map_range(struct iommu_domain *domain,
}
/* Round up size to next multiple of PAGE_SIZE, if it and
the low bits of hpa would take us onto the next page */
size = aligned_size(hpa, size) >> VTD_PAGE_SHIFT;
size = aligned_nrpages(hpa, size);
ret = domain_pfn_mapping(dmar_domain, iova >> VTD_PAGE_SHIFT,
hpa >> VTD_PAGE_SHIFT, size, prot);
return ret;
Expand Down

0 comments on commit b17414d

Please sign in to comment.