* [PATCH] arm64: Fix initrd requierements
@ 2016-12-07 16:26 Matthias Brugger
2016-12-09 7:59 ` Simon Horman
0 siblings, 1 reply; 2+ messages in thread
From: Matthias Brugger @ 2016-12-07 16:26 UTC (permalink / raw)
To: kexec, geoff; +Cc: panand, catalin.marinas, Matthias Brugger, ard.biesheuvel
The initrd doesn't need to be aligend to 1 GB, which breaks kexec for system with
RAM <= 1 GB. Instead the memory size between the kernel start rounded down to 1 GB
and the end of the initrd rounded up to 1 GB can't be bigger then 32 GB.
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
---
kexec/arch/arm64/kexec-arm64.c | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/kexec/arch/arm64/kexec-arm64.c b/kexec/arch/arm64/kexec-arm64.c
index 288548f..04fd396 100644
--- a/kexec/arch/arm64/kexec-arm64.c
+++ b/kexec/arch/arm64/kexec-arm64.c
@@ -327,6 +327,7 @@ int arm64_load_other_segments(struct kexec_info *info,
unsigned long dtb_base;
unsigned long hole_min;
unsigned long hole_max;
+ unsigned long initrd_end;
char *initrd_buf = NULL;
struct dtb dtb;
char command_line[COMMAND_LINE_SIZE] = "";
@@ -366,27 +367,27 @@ int arm64_load_other_segments(struct kexec_info *info,
if (!initrd_buf)
fprintf(stderr, "kexec: Empty ramdisk file.\n");
else {
- /*
- * Put the initrd after the kernel. As specified in
- * booting.txt, align to 1 GiB.
- */
+ /* Put the initrd after the kernel. */
initrd_base = add_buffer_phys_virt(info, initrd_buf,
- initrd_size, initrd_size, GiB(1),
+ initrd_size, initrd_size, 0,
hole_min, hole_max, 1, 0);
- /* initrd_base is valid if we got here. */
-
- dbgprintf("initrd: base %lx, size %lxh (%ld)\n",
- initrd_base, initrd_size, initrd_size);
+ initrd_end = initrd_base + initrd_size;
- /* Check size limit as specified in booting.txt. */
+ /* Check limits as specified in booting.txt.
+ * The kernel may have as little as 32 GB of address space to map
+ * system memory and both kernel and initrd must be 1GB aligend.
+ */
- if (initrd_base - image_base + initrd_size > GiB(32)) {
+ if (_ALIGN_UP(initrd_end, GiB(1)) - _ALIGN_DOWN(image_base, GiB(1)) > GiB(32)) {
fprintf(stderr, "kexec: Error: image + initrd too big.\n");
return -EFAILED;
}
+ dbgprintf("initrd: base %lx, size %lxh (%ld)\n",
+ initrd_base, initrd_size, initrd_size);
+
result = dtb_set_initrd((char **)&dtb.buf,
&dtb.size, initrd_base,
initrd_base + initrd_size);
--
2.6.6
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] arm64: Fix initrd requierements
2016-12-07 16:26 [PATCH] arm64: Fix initrd requierements Matthias Brugger
@ 2016-12-09 7:59 ` Simon Horman
0 siblings, 0 replies; 2+ messages in thread
From: Simon Horman @ 2016-12-09 7:59 UTC (permalink / raw)
To: Matthias Brugger; +Cc: geoff, panand, ard.biesheuvel, kexec, catalin.marinas
On Wed, Dec 07, 2016 at 05:26:15PM +0100, Matthias Brugger wrote:
> The initrd doesn't need to be aligend to 1 GB, which breaks kexec for system with
> RAM <= 1 GB. Instead the memory size between the kernel start rounded down to 1 GB
> and the end of the initrd rounded up to 1 GB can't be bigger then 32 GB.
>
> Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Thanks, applied.
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-12-09 8:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-07 16:26 [PATCH] arm64: Fix initrd requierements Matthias Brugger
2016-12-09 7:59 ` Simon Horman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox