mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 11:33:28 +02:00
AMD IOMMU: fix iommu_map_page function
Impact: bugfix in iommu_map_page function Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
parent
218d11a8b0
commit
bb9d4ff80b
|
|
@ -344,7 +344,7 @@ static int iommu_map(struct protection_domain *dom,
|
||||||
u64 __pte, *pte, *page;
|
u64 __pte, *pte, *page;
|
||||||
|
|
||||||
bus_addr = PAGE_ALIGN(bus_addr);
|
bus_addr = PAGE_ALIGN(bus_addr);
|
||||||
phys_addr = PAGE_ALIGN(bus_addr);
|
phys_addr = PAGE_ALIGN(phys_addr);
|
||||||
|
|
||||||
/* only support 512GB address spaces for now */
|
/* only support 512GB address spaces for now */
|
||||||
if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
|
if (bus_addr > IOMMU_MAP_SIZE_L3 || !(prot & IOMMU_PROT_MASK))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user