mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
initramfs: don't free a non-existent initrd
[ Upstream commit5d59aa8f9c] Since commit54c7a8916a("initramfs: free initrd memory if opening /initrd.image fails"), the kernel has unconditionally attempted to free the initrd even if it doesn't exist. In the non-existent case this causes a boot-time splat if CONFIG_DEBUG_VIRTUAL is enabled due to a call to virt_to_phys() with a NULL address. Instead we should check that the initrd actually exists and only attempt to free it if it does. Link: http://lkml.kernel.org/r/20190516143125.48948-1-steven.price@arm.com Fixes:54c7a8916a("initramfs: free initrd memory if opening /initrd.image fails") Signed-off-by: Steven Price <steven.price@arm.com> Reported-by: Mark Rutland <mark.rutland@arm.com> Tested-by: Mark Rutland <mark.rutland@arm.com> Reviewed-by: Mike Rapoport <rppt@linux.ibm.com> Cc: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
ad16dfef4a
commit
75448f40b9
|
|
@ -524,7 +524,7 @@ static void __init free_initrd(void)
|
|||
unsigned long crashk_start = (unsigned long)__va(crashk_res.start);
|
||||
unsigned long crashk_end = (unsigned long)__va(crashk_res.end);
|
||||
#endif
|
||||
if (do_retain_initrd)
|
||||
if (do_retain_initrd || !initrd_start)
|
||||
goto skip;
|
||||
|
||||
#ifdef CONFIG_KEXEC_CORE
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user