aboutsummaryrefslogtreecommitdiffstats
path: root/virt/kvm
diff options
context:
space:
mode:
authorSuzuki K Poulose <suzuki.poulose@arm.com>2019-04-10 11:14:57 -0400
committerMarc Zyngier <marc.zyngier@arm.com>2019-04-25 06:50:31 -0400
commit2e8010bb71b39ff18aac9fb209b3c3093f4c4783 (patch)
treec2621543d5bfff86f1fb0db86415b817b47d8609 /virt/kvm
parent811328fc3222f7b55846de0cd0404339e2e1e6d7 (diff)
kvm: arm: Skip stage2 huge mappings for unaligned ipa backed by THP
With commit a80868f398554842b14, we no longer ensure that the THP page is properly aligned in the guest IPA. Skip the stage2 huge mapping for unaligned IPA backed by transparent hugepages. Fixes: a80868f398554842b14 ("KVM: arm/arm64: Enforce PTE mappings at stage2 when needed") Reported-by: Eric Auger <eric.auger@redhat.com> Cc: Marc Zyngier <marc.zyngier@arm.com> Cc: Chirstoffer Dall <christoffer.dall@arm.com> Cc: Zenghui Yu <yuzenghui@huawei.com> Cc: Zheng Xiang <zhengxiang9@huawei.com> Cc: Andrew Murray <andrew.murray@arm.com> Cc: Eric Auger <eric.auger@redhat.com> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'virt/kvm')
-rw-r--r--virt/kvm/arm/mmu.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/virt/kvm/arm/mmu.c b/virt/kvm/arm/mmu.c
index 27c958306449..a39dcfdbcc65 100644
--- a/virt/kvm/arm/mmu.c
+++ b/virt/kvm/arm/mmu.c
@@ -1781,8 +1781,12 @@ static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
1781 * Only PMD_SIZE transparent hugepages(THP) are 1781 * Only PMD_SIZE transparent hugepages(THP) are
1782 * currently supported. This code will need to be 1782 * currently supported. This code will need to be
1783 * updated to support other THP sizes. 1783 * updated to support other THP sizes.
1784 *
1785 * Make sure the host VA and the guest IPA are sufficiently
1786 * aligned and that the block is contained within the memslot.
1784 */ 1787 */
1785 if (transparent_hugepage_adjust(&pfn, &fault_ipa)) 1788 if (fault_supports_stage2_huge_mapping(memslot, hva, PMD_SIZE) &&
1789 transparent_hugepage_adjust(&pfn, &fault_ipa))
1786 vma_pagesize = PMD_SIZE; 1790 vma_pagesize = PMD_SIZE;
1787 } 1791 }
1788 1792