From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: Leif Lindholm <leif.lindholm@linaro.org>
Cc: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [PATCH] ArmPkg/ArmMmuLib ARM: trim high memory regions instead of rejecting them
Date: Mon, 28 Jan 2019 20:03:01 +0100 [thread overview]
Message-ID: <CAKv+Gu_ZNefCt+QUToswM7Cp7PqGuVQd7_2m56vt9OYE+AAKvQ@mail.gmail.com> (raw)
In-Reply-To: <20190128181152.n6orfozwmiozny4w@bivouac.eciton.net>
On Mon, 28 Jan 2019 at 19:11, Leif Lindholm <leif.lindholm@linaro.org> wrote:
>
> On Mon, Jan 28, 2019 at 05:23:32PM +0100, Ard Biesheuvel wrote:
> > ArmSetMemoryAttributes() still chokes in some cases, i.e., when the
> > length of the region exceeds 4 GB, the subtraction overflows, which
> > results in the region being misidentified as being 32-bit addressable.
> >
> > Let's update the logic to trim the length to what we can address with
> > 32 bits. This fixes the issue, and also deals with the issue where an
> > entire region is disregarded if part of it exceeds beyond what we can
> > map with 32 bits.
> >
> > Contributed-under: TianoCore Contribution Agreement 1.1
> > Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>
> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
>
Thanks
Pushed as 9a00a7164a39..66509f90fc66
> > ---
> > ArmPkg/Library/ArmMmuLib/Arm/ArmMmuLibCore.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/ArmPkg/Library/ArmMmuLib/Arm/ArmMmuLibCore.c b/ArmPkg/Library/ArmMmuLib/Arm/ArmMmuLibCore.c
> > index bffab83d4fd0..baa085c3849a 100644
> > --- a/ArmPkg/Library/ArmMmuLib/Arm/ArmMmuLibCore.c
> > +++ b/ArmPkg/Library/ArmMmuLib/Arm/ArmMmuLibCore.c
> > @@ -744,10 +744,11 @@ ArmSetMemoryAttributes (
> > UINT64 ChunkLength;
> > BOOLEAN FlushTlbs;
> >
> > - if (BaseAddress > (UINT64)MAX_ADDRESS - Length + 1) {
> > + if (BaseAddress > (UINT64)MAX_ADDRESS) {
> > return EFI_UNSUPPORTED;
> > }
> >
> > + Length = MIN (Length, (UINT64)MAX_ADDRESS - BaseAddress + 1);
> > if (Length == 0) {
> > return EFI_SUCCESS;
> > }
> > --
> > 2.20.1
> >
prev parent reply other threads:[~2019-01-28 19:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-28 16:23 [PATCH] ArmPkg/ArmMmuLib ARM: trim high memory regions instead of rejecting them Ard Biesheuvel
2019-01-28 18:11 ` Leif Lindholm
2019-01-28 19:03 ` Ard Biesheuvel [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-list 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=CAKv+Gu_ZNefCt+QUToswM7Cp7PqGuVQd7_2m56vt9OYE+AAKvQ@mail.gmail.com \
--to=devel@edk2.groups.io \
/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