grub-devel.gnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Berger <stefanb@linux.ibm.com>
To: The development of GNU GRUB <grub-devel@gnu.org>
Cc: dkiper@net-space.pl, hbathini@linux.ibm.com, pavrampu@in.ibm.com,
	mpe@ellerman.id.au, cpscherr@us.ibm.com, mahesh@linux.ibm.com,
	sourabhjain@linux.ibm.com, avnish.chouhan@ibm.com
Subject: Re: [PATCH v5 00/10] ppc64: Restrict memory allocations for kernel and initrd
Date: Wed, 15 Nov 2023 13:15:19 -0500	[thread overview]
Message-ID: <39eeb8a5-9d56-48f0-97d9-69dea3692368@linux.ibm.com> (raw)
In-Reply-To: <20231115155941.638232-1-stefanb@linux.ibm.com>

Daniel,

  please do not merge this series yet.

Regards,
    Stefan

On 11/15/23 10:59, Stefan Berger wrote:
> This series of patches converts the PowerPC ieee1275 memory allocator
> for kernel and initrd to use the (PowerPC) regions_claim memory allocator
> that takes into account memory regions that are not allowed to be used,
> such as the gap between 640MB and 768MB as well as memory regions beyond
> an address in case an fadump is present. Otherwise those two could be
> loaded into restricted memory regions and either cause a crash or
> corruption of the fadump.
> 
> I adjusted the kernel and initrd load in loader/powerpc/ieee1275 to use the
> new memory allocator only on PowerVM and PowerKVM since this code is shared
> with other platforms, such as old PowerMACs.
> 
> Regards,
>     Stefan
> 
> v5:
>    - Replaced grub with GRUB in commit messages
>    - Fixed copyright holders in alloc.h
> 
> v4:
>    - Fixed typos in commit messages found by Hari
>    - Exporting grub_regions_claim() as suggested by Hari
> 
> v3:
>    - Addressed issues raised by Daniel and added his R-B tags
>    - Added one comment fix patch and one for debugging output
>    - Removed len return parameter from request struct since unused
> 
> 
> Stefan Berger (10):
>    kern/ieee1275/init: ppc64: Introduce a request for regions_claim
>    kern/ieee1275/init: ppc64: Decide by request whether to initialize
>      region
>    kern/ieee1275/init: ppc64: Return allocated address using context
>    kern/ieee1275/init: ppc64: Add support for alignment requirements
>    kern/ieee1275/init: ppc64: Rename regions_claim to grub_regions_claim
>    kern/ieee1275/cmain: ppc64: Introduce flags to identify KVM and Power
>      VM
>    loader/powerpc/ieee1275: Use new allocation function for kernel and
>      initrd
>    kern/ieee1275/ieee1275: debug: Display successful memory claims
>    kern/ieee1275/init: ppc64: Fix a comment
>    kern/ieee1275/init: ppc64: Display upper_mem_limit for debugging
> 
>   grub-core/Makefile.am                     |  1 +
>   grub-core/kern/ieee1275/cmain.c           |  6 +-
>   grub-core/kern/ieee1275/ieee1275.c        |  2 +
>   grub-core/kern/ieee1275/init.c            | 73 ++++++++++++++++++-----
>   grub-core/loader/powerpc/ieee1275/linux.c | 50 +++++++++++++---
>   include/grub/ieee1275/ieee1275.h          |  4 ++
>   include/grub/powerpc/ieee1275/alloc.h     | 39 ++++++++++++
>   7 files changed, 152 insertions(+), 23 deletions(-)
>   create mode 100644 include/grub/powerpc/ieee1275/alloc.h
> 

_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

      parent reply	other threads:[~2023-11-15 18:16 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-15 15:59 [PATCH v5 00/10] ppc64: Restrict memory allocations for kernel and initrd Stefan Berger
2023-11-15 15:59 ` [PATCH v5 01/10] kern/ieee1275/init: ppc64: Introduce a request for regions_claim Stefan Berger
2023-11-15 15:59 ` [PATCH v5 02/10] kern/ieee1275/init: ppc64: Decide by request whether to initialize region Stefan Berger
2023-11-15 15:59 ` [PATCH v5 03/10] kern/ieee1275/init: ppc64: Return allocated address using context Stefan Berger
2023-11-15 15:59 ` [PATCH v5 04/10] kern/ieee1275/init: ppc64: Add support for alignment requirements Stefan Berger
2023-11-15 15:59 ` [PATCH v5 05/10] kern/ieee1275/init: ppc64: Rename regions_claim to grub_regions_claim Stefan Berger
2023-11-15 15:59 ` [PATCH v5 06/10] kern/ieee1275/cmain: ppc64: Introduce flags to identify KVM and Power VM Stefan Berger
2023-11-15 15:59 ` [PATCH v5 07/10] loader/powerpc/ieee1275: Use new allocation function for kernel and initrd Stefan Berger
2023-11-15 15:59 ` [PATCH v5 08/10] kern/ieee1275/ieee1275: debug: Display successful memory claims Stefan Berger
2023-11-15 15:59 ` [PATCH v5 09/10] kern/ieee1275/init: ppc64: Fix a comment Stefan Berger
2023-11-15 15:59 ` [PATCH v5 10/10] kern/ieee1275/init: ppc64: Display upper_mem_limit for debugging Stefan Berger
2023-11-15 18:15 ` Stefan Berger [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=39eeb8a5-9d56-48f0-97d9-69dea3692368@linux.ibm.com \
    --to=stefanb@linux.ibm.com \
    --cc=avnish.chouhan@ibm.com \
    --cc=cpscherr@us.ibm.com \
    --cc=dkiper@net-space.pl \
    --cc=grub-devel@gnu.org \
    --cc=hbathini@linux.ibm.com \
    --cc=mahesh@linux.ibm.com \
    --cc=mpe@ellerman.id.au \
    --cc=pavrampu@in.ibm.com \
    --cc=sourabhjain@linux.ibm.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 read-only IMAP folder(s) and NNTP newsgroup(s).