aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mm/init.c
diff options
context:
space:
mode:
authorBen Peddell <klightspeed@killerwolves.net>2014-01-13 17:25:18 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2014-01-28 09:34:23 -0500
commit4c235cb9e35407bdb4a2debeef4dc8721e8f91f2 (patch)
tree15b0b511a1a8d5d74d17c22c0942359d40a2c307 /arch/arm/mm/init.c
parent2ab4e8c06dc084c1bba8c8edfa1b33424c16d336 (diff)
ARM: 7941/2: Fix incorrect FDT initrd parameter override
Commit 65939301acdb (arm: set initrd_start/initrd_end for fdt scan) caused the FDT initrd_start and initrd_end to override the phys_initrd_start and phys_initrd_size set by the initrd= kernel parameter. With this patch initrd_start and initrd_end will be overridden if phys_initrd_start and phys_initrd_size are set by the kernel initrd= parameter. Fixes: 65939301acdb (arm: set initrd_start/initrd_end for fdt scan) Signed-off-by: Ben Peddell <klightspeed@killerwolves.net> Acked-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/init.c')
-rw-r--r--arch/arm/mm/init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c
index 3e8f106ee5fe..ac1d883460c7 100644
--- a/arch/arm/mm/init.c
+++ b/arch/arm/mm/init.c
@@ -345,10 +345,11 @@ void __init arm_memblock_init(struct meminfo *mi,
345#endif 345#endif
346#ifdef CONFIG_BLK_DEV_INITRD 346#ifdef CONFIG_BLK_DEV_INITRD
347 /* FDT scan will populate initrd_start */ 347 /* FDT scan will populate initrd_start */
348 if (initrd_start) { 348 if (initrd_start && !phys_initrd_size) {
349 phys_initrd_start = __virt_to_phys(initrd_start); 349 phys_initrd_start = __virt_to_phys(initrd_start);
350 phys_initrd_size = initrd_end - initrd_start; 350 phys_initrd_size = initrd_end - initrd_start;
351 } 351 }
352 initrd_start = initrd_end = 0;
352 if (phys_initrd_size && 353 if (phys_initrd_size &&
353 !memblock_is_region_memory(phys_initrd_start, phys_initrd_size)) { 354 !memblock_is_region_memory(phys_initrd_start, phys_initrd_size)) {
354 pr_err("INITRD: 0x%08llx+0x%08lx is not a memory region - disabling initrd\n", 355 pr_err("INITRD: 0x%08llx+0x%08lx is not a memory region - disabling initrd\n",