]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: arm64: Fix exclusive limit for IPA size
authorMarc Zyngier <maz@kernel.org>
Thu, 11 Mar 2021 10:00:16 +0000 (10:00 +0000)
committerMarc Zyngier <maz@kernel.org>
Fri, 12 Mar 2021 15:43:22 +0000 (15:43 +0000)
commit1d30b60d2f99112cb71e6c78a380fc35774b8ec4
tree803d472f432af55bdb4ace9d13d8613c2a6915e8
parent96874ea0d2ff40b156ea14ea9b88707aab221f3b
KVM: arm64: Fix exclusive limit for IPA size

When registering a memslot, we check the size and location of that
memslot against the IPA size to ensure that we can provide guest
access to the whole of the memory.

Unfortunately, this check rejects memslot that end-up at the exact
limit of the addressing capability for a given IPA size. For example,
it refuses the creation of a 2GB memslot at 0x8000000 with a 32bit
IPA space.

Fix it by relaxing the check to accept a memslot reaching the
limit of the IPA space.

Fixes: aac3d51a24c9 ("arm/arm64: KVM: Ensure memslots are within KVM_PHYS_SIZE")
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Cc: stable@vger.kernel.org
Reviewed-by: Andrew Jones <drjones@redhat.com>
Link: https://lore.kernel.org/r/20210311100016.3830038-3-maz@kernel.org
arch/arm64/kvm/mmu.c