From: Marc Zyngier <maz@kernel.org>
To: Andrew Jones <drjones@redhat.com>
Cc: peter.maydell@linaro.org, qemu-arm@nongnu.org,
qemu-devel@nongnu.org, eric.auger@redhat.com
Subject: Re: [PATCH] hw/arm/virt: KVM: The IPA lower bound is 32
Date: Tue, 09 Mar 2021 21:35:14 +0000 [thread overview]
Message-ID: <87y2ewqact.wl-maz@kernel.org> (raw)
In-Reply-To: <20210309200606.kjjbxyyzijv2qsd4@kamzik.brq.redhat.com>
On Tue, 09 Mar 2021 20:06:06 +0000,
Andrew Jones <drjones@redhat.com> wrote:
>
> On Tue, Mar 09, 2021 at 07:21:58PM +0000, Marc Zyngier wrote:
> > Hi Andrew,
> >
> > On Tue, 09 Mar 2021 18:59:39 +0000,
> > Andrew Jones <drjones@redhat.com> wrote:
> > >
> > > The virt machine already checks KVM_CAP_ARM_VM_IPA_SIZE to get the
> > > upper bound of the IPA size. If that bound is lower than the highest
> > > possible GPA for the machine, then QEMU will error out. However, the
> > > IPA is set to 40 when the highest GPA is less than or equal to 40,
> > > even when KVM may only support an IPA limit as low as 32. This means
> > > KVM may fail the VM creation unnecessarily. Additionally, 40 is
> > > selected with the value 0, which means use the default, and that gets
> > > around a check in some versions of KVM, causing a difficult to debug
> > > fail. Always use the IPA size that corresponds to the highest possible
> > > GPA, unless it's lower than 32, in which case use 32.
> > >
> > > Signed-off-by: Andrew Jones <drjones@redhat.com>
> > > ---
> > > hw/arm/virt.c | 9 ++++-----
> > > 1 file changed, 4 insertions(+), 5 deletions(-)
> > >
> > > diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> > > index 371147f3ae9c..7bf563715b4e 100644
> > > --- a/hw/arm/virt.c
> > > +++ b/hw/arm/virt.c
> > > @@ -2547,14 +2547,13 @@ static int virt_kvm_type(MachineState *ms, const char *type_str)
> > > "require an IPA range (%d bits) larger than "
> > > "the one supported by the host (%d bits)",
> > > requested_pa_size, max_vm_pa_size);
> > > - exit(1);
> > > + exit(1);
> > > }
> > > +
> > > /*
> > > - * By default we return 0 which corresponds to an implicit legacy
> > > - * 40b IPA setting. Otherwise we return the actual requested PA
> > > - * logsize
> > > + * KVM requires the IPA size to be at least 32 bits.
> > > */
> > > - return requested_pa_size > 40 ? requested_pa_size : 0;
> > > + return requested_pa_size < 32 ? 32 : requested_pa_size;
> >
> > Doesn't this break on older kernels (pre 233a7cb23531, which is
> > anything up 4.19), where the 'type' parameter passed at VM creation
> > time was expected to be 0 and nothing else?
>
> Doh, of course!
>
> >
> > I had a quick go at qemu a couple of weeks back and came up with the
> > following hack, but never actually tested it (there is no way qemu can
> > fit in the initramfs I am feeding to this damn machine...).
> >
> > Thanks,
> >
> > M.
> >
> > diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> > index 371147f3ae..3301bb8dba 100644
> > --- a/hw/arm/virt.c
> > +++ b/hw/arm/virt.c
> > @@ -2534,8 +2534,11 @@ static HotplugHandler *virt_machine_get_hotplug_handler(MachineState *machine,
> > static int virt_kvm_type(MachineState *ms, const char *type_str)
> > {
> > VirtMachineState *vms = VIRT_MACHINE(ms);
> > - int max_vm_pa_size = kvm_arm_get_max_vm_ipa_size(ms);
> > + int max_vm_pa_size;
> > int requested_pa_size;
> > + bool fixed_ipa;
> > +
> > + max_vm_pa_size = kvm_arm_get_max_vm_ipa_size(ms, &fixed_ipa);
> >
> > /* we freeze the memory map to compute the highest gpa */
> > virt_set_memmap(vms);
> > @@ -2550,11 +2553,12 @@ static int virt_kvm_type(MachineState *ms, const char *type_str)
> > exit(1);
> > }
> > /*
> > - * By default we return 0 which corresponds to an implicit legacy
> > - * 40b IPA setting. Otherwise we return the actual requested PA
> > - * logsize
> > + * We return the requested PA log size, unless KVM only supports
> > + * the implicit legacy 40b IPA setting, in which case we return 0.
> > */
> > - return requested_pa_size > 40 ? requested_pa_size : 0;
> > + if (fixed_ipa)
> > + return 0;
> > + return requested_pa_size;
>
> Looks good to me. I think we should still ensure requested_pa_size is at
> least 32 though.
Yes, absolutely.
> I can add that and test this tomorrow. Should I post it with your
> authorship?
No, please keep it with yours (add a Suggested-by: tag if you really
want to). If you can give it a good shake, that'd be great. I'll try
and repost the kernel fixes tomorrow.
Thanks,
M.
--
Without deviation from the norm, progress is not possible.
prev parent reply other threads:[~2021-03-09 21:36 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-09 18:59 [PATCH] hw/arm/virt: KVM: The IPA lower bound is 32 Andrew Jones
2021-03-09 19:21 ` Marc Zyngier
2021-03-09 20:06 ` Andrew Jones
2021-03-09 21:35 ` Marc Zyngier [this message]
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=87y2ewqact.wl-maz@kernel.org \
--to=maz@kernel.org \
--cc=drjones@redhat.com \
--cc=eric.auger@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/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).