[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 08/10] kern/ieee1275/ieee1275: debug: Display successful memor
From: |
Stefan Berger |
Subject: |
[PATCH v7 08/10] kern/ieee1275/ieee1275: debug: Display successful memory claims |
Date: |
Mon, 27 Nov 2023 06:58:51 -0500 |
Display successful memory claims with exact address and rounded-down
MiB location and rounded-up size in MiB.
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
Cc: Eric Snowberg <eric.snowberg@oracle.com>
Cc: Hari Bathini <hbathini@linux.ibm.com>
Cc: Pavithra Prakash <pavrampu@in.ibm.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Carolyn Scherrer <cpscherr@us.ibm.com>
Cc: Mahesh Salgaonkar <mahesh@linux.ibm.com>
Cc: Sourabh Jain <sourabhjain@linux.ibm.com>
---
grub-core/kern/ieee1275/ieee1275.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/grub-core/kern/ieee1275/ieee1275.c
b/grub-core/kern/ieee1275/ieee1275.c
index db870db47..fef3ccf1a 100644
--- a/grub-core/kern/ieee1275/ieee1275.c
+++ b/grub-core/kern/ieee1275/ieee1275.c
@@ -590,6 +590,8 @@ grub_ieee1275_claim (grub_addr_t addr, grub_size_t size,
unsigned int align,
*result = args.base;
if (args.base == IEEE1275_CELL_INVALID)
return -1;
+ grub_dprintf ("mmap", "CLAIMED: 0x%x (%d MiB) size: %d MiB\n",
+ args.base, args.base >> 20, ALIGN_UP(size, 1 << 20) >> 20);
return 0;
}
--
2.42.0
- [PATCH v7 00/10] ppc64: Restrict memory allocations for kernel and initrd, Stefan Berger, 2023/11/27
- [PATCH v7 02/10] kern/ieee1275/init: ppc64: Decide by request whether to initialize region, Stefan Berger, 2023/11/27
- [PATCH v7 07/10] loader/powerpc/ieee1275: Use new allocation function for kernel and initrd, Stefan Berger, 2023/11/27
- [PATCH v7 04/10] kern/ieee1275/init: ppc64: Add support for alignment requirements, Stefan Berger, 2023/11/27
- [PATCH v7 05/10] kern/ieee1275/init: ppc64: Rename regions_claim to grub_regions_claim, Stefan Berger, 2023/11/27
- [PATCH v7 03/10] kern/ieee1275/init: ppc64: Return allocated address using context, Stefan Berger, 2023/11/27
- [PATCH v7 08/10] kern/ieee1275/ieee1275: debug: Display successful memory claims,
Stefan Berger <=
- [PATCH v7 01/10] kern/ieee1275/init: ppc64: Introduce a request for regions_claim, Stefan Berger, 2023/11/27
- [PATCH v7 09/10] kern/ieee1275/init: ppc64: Fix a comment, Stefan Berger, 2023/11/27
- [PATCH v7 10/10] kern/ieee1275/init: ppc64: Display upper_mem_limit for debugging, Stefan Berger, 2023/11/27
- [PATCH v7 06/10] kern/ieee1275/cmain: ppc64: Introduce flags to identify KVM and Power VM, Stefan Berger, 2023/11/27
- Re: [PATCH v7 00/10] ppc64: Restrict memory allocations for kernel and initrd, John Paul Adrian Glaubitz, 2023/11/27
- Re: [PATCH v7 00/10] ppc64: Restrict memory allocations for kernel and initrd, Stefan Berger, 2023/11/27
- Re: [PATCH v7 00/10] ppc64: Restrict memory allocations for kernel and initrd, Daniel Kiper, 2023/11/30