From: Marc Zyngier <maz@kernel.org>
To: Petteri Kangaslampi <pekangas@google.com>
Cc: kvmarm@lists.linux.dev, Oliver Upton <oliver.upton@linux.dev>,
Vincent Donnefort <vdonnefort@google.com>,
Joey Gouly <joey.gouly@arm.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Zenghui Yu <yuzenghui@huawei.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/1] KVM: arm64: Fix hyp VA size between layout and MMU
Date: Tue, 30 Dec 2025 15:37:45 +0000 [thread overview]
Message-ID: <87pl7wdlpy.wl-maz@kernel.org> (raw)
In-Reply-To: <20251223193440.1441657-2-pekangas@google.com>
On Tue, 23 Dec 2025 19:34:40 +0000,
Petteri Kangaslampi <pekangas@google.com> wrote:
>
> Use a consistent hypervisor VA size between memory layout and MMU
> initialization logic when the kernel is configured for less than
> IDMAP_VA_BITS of VA space.
>
> Signed-off-by: Petteri Kangaslampi <pekangas@google.com>
> ---
> arch/arm64/kvm/va_layout.c | 17 ++++++++++++-----
> 1 file changed, 12 insertions(+), 5 deletions(-)
>
> diff --git a/arch/arm64/kvm/va_layout.c b/arch/arm64/kvm/va_layout.c
> index f6ca0193a96f..76cdd62550e1 100644
> --- a/arch/arm64/kvm/va_layout.c
> +++ b/arch/arm64/kvm/va_layout.c
> @@ -49,7 +49,7 @@ static void init_hyp_physvirt_offset(void)
>
> /*
> * We want to generate a hyp VA with the following format (with V ==
> - * vabits_actual):
> + * hypervisor VA bits):
> *
> * 63 ... V | V-1 | V-2 .. tag_lsb | tag_lsb - 1 .. 0
> * ---------------------------------------------------------
> @@ -62,10 +62,17 @@ __init void kvm_compute_layout(void)
> {
> phys_addr_t idmap_addr = __pa_symbol(__hyp_idmap_text_start);
> u64 hyp_va_msb;
> + u32 hyp_va_bits;
> +
> + /*
> + * We use the bigger of IDMAP_VA_BITS and kernel VA size as the
> + * hypervisor VA address space size. See mmu.c.
> + */
> + hyp_va_bits = max(IDMAP_VA_BITS, vabits_actual);
Instead of duplicating the logic from kvm_mmu_init(), I'd rather you
make sure there is a single place where the EL2 VA width is computed,
and use that consistently all over the place.
Since you were complaining about the spread of the VA layout handling,
starting with this sort of consolidation seems like a decent starting
point.
Thanks,
M.
--
Jazz isn't dead. It just smells funny.
next prev parent reply other threads:[~2025-12-30 15:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-23 19:34 [PATCH 0/1] KVM: arm64: Fix hyp VA size between layout and MMU Petteri Kangaslampi
2025-12-23 19:34 ` [PATCH 1/1] " Petteri Kangaslampi
2025-12-30 15:37 ` Marc Zyngier [this message]
2025-12-30 15:34 ` [PATCH 0/1] " Marc Zyngier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87pl7wdlpy.wl-maz@kernel.org \
--to=maz@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=joey.gouly@arm.com \
--cc=kvmarm@lists.linux.dev \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=oliver.upton@linux.dev \
--cc=pekangas@google.com \
--cc=suzuki.poulose@arm.com \
--cc=vdonnefort@google.com \
--cc=will@kernel.org \
--cc=yuzenghui@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).