From: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>
To: Dave Hansen <dave.hansen@intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>,
Borislav Petkov <bp@alien8.de>, Ard Biesheuvel <ardb@google.com>,
Kees Cook <keescook@chromium.org>, Aaron Lu <aaron.lu@intel.com>,
Bagas Sanjaya <bagasdotme@gmail.com>,
Tom Lendacky <thomas.lendacky@amd.com>,
x86@kernel.org, kexec@lists.infradead.org,
linux-kernel@vger.kernel.org, regressions@lists.linux.de
Subject: Re: [PATCH] x86/boot/compressed: Reserve more memory for page tables
Date: Thu, 14 Sep 2023 20:07:26 +0300 [thread overview]
Message-ID: <20230914170726.4am7xi36m4hdgiyk@box> (raw)
In-Reply-To: <45cdb5ae-986e-d186-f0fd-a308f946ce8d@intel.com>
On Thu, Sep 14, 2023 at 08:51:50AM -0700, Dave Hansen wrote:
> On 9/14/23 05:30, Kirill A. Shutemov wrote:
> > +/*
> > + * Total number of page table kernel_add_identity_map() can allocate,
> > + * including page tables consumed by startup_32().
> > + */
> > +# define BOOT_PGT_SIZE (32*4096)
>
> I agree that needing to know this in advance *exactly* is troublesome.
>
> But I do think that we should preserve the comment about the worst-case
> scenario.
Want me to send v2 for that?
> Also, I thought this was triggered by unaccepted memory. Am
> I remembering it wrong? How was it in play?
Unaccepted memory touched EFI system table. I was able to reproduce
without unaccepted memory enabled: if get_rsdp_addr() takes
efi_get_rsdp_addr() path. So it is not the root cause, just a trigger.
So we need several things to run into the problem:
- System supports 5-level paging and it is enabled;
- Decompressor takes control in 64-bit mode, so it uses page tables
inherited from bootloader until initialize_identity_maps().
In initialize_identity_maps() kernel resets page tables, rebuilding them
from scratch. Here we only map what is definitely required: kernel,
cmdline, boot_patams, setup_data.
Entering in 32-bit mode would make startup_32() map the first 4G
unconditionally, but in this setup we rely more on #PF to fill page
table. It masks problem as we rarely need all four PMD tables.
- Make kernel touch at least one page per-gigabyte in the first 4G.
In our case, unaccepted memory path was the last straw: it triggered
allocation of the fourth PMD table which failed.
We can increase the constant by one and it will work as long as nobody
need anything beyond the first 4G (or any 1G-aligned 4G region where we've
got loaded, I guess). I am not sure we can guarantee this with
(potentially buggy) ACPI and EFI in the picture.
> Either way, I think your general approach here is sound. But let's add
> one little tweak to at least warn when we're getting close to the limit.
Yeah, makes sense.
--
Kiryl Shutsemau / Kirill A. Shutemov
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
next prev parent reply other threads:[~2023-09-14 17:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-14 12:30 [PATCH] x86/boot/compressed: Reserve more memory for page tables Kirill A. Shutemov
2023-09-14 15:51 ` Dave Hansen
2023-09-14 17:07 ` Kirill A. Shutemov [this message]
2023-09-15 7:02 ` [PATCHv2] " Kirill A. Shutemov
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=20230914170726.4am7xi36m4hdgiyk@box \
--to=kirill.shutemov@linux.intel.com \
--cc=aaron.lu@intel.com \
--cc=ardb@google.com \
--cc=bagasdotme@gmail.com \
--cc=bp@alien8.de \
--cc=dave.hansen@intel.com \
--cc=keescook@chromium.org \
--cc=kexec@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=regressions@lists.linux.de \
--cc=tglx@linutronix.de \
--cc=thomas.lendacky@amd.com \
--cc=x86@kernel.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