aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iommu
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2011-10-11 17:41:32 +0200
committerJoerg Roedel <joerg.roedel@amd.com>2011-10-11 17:41:32 +0200
commitfcd0861db1cf4e6ed99f60a815b7b72c2ed36ea4 (patch)
treeeda4a79003476bd19a819dba3c12d5bc9b3d574d /drivers/iommu
parentiommu/amd: Don't take domain->lock recursivly (diff)
downloadlinux-dev-fcd0861db1cf4e6ed99f60a815b7b72c2ed36ea4.tar.xz
linux-dev-fcd0861db1cf4e6ed99f60a815b7b72c2ed36ea4.zip
iommu/amd: Fix wrong shift direction
The shift direction was wrong because the function takes a page number and i is the address is the loop. Cc: stable@kernel.org Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'drivers/iommu')
-rw-r--r--drivers/iommu/amd_iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
index 0e4227f457af..cc79045bc527 100644
--- a/drivers/iommu/amd_iommu.c
+++ b/drivers/iommu/amd_iommu.c
@@ -1283,7 +1283,7 @@ static int alloc_new_range(struct dma_ops_domain *dma_dom,
if (!pte || !IOMMU_PTE_PRESENT(*pte))
continue;
- dma_ops_reserve_addresses(dma_dom, i << PAGE_SHIFT, 1);
+ dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
}
update_domain(&dma_dom->domain);