Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3f81d244 authored by Chris Metcalf's avatar Chris Metcalf
Browse files

tile: use free_bootmem_late() for initrd



We were previously using free_bootmem() and just getting lucky
that nothing too bad happened.

Signed-off-by: default avatarChris Metcalf <cmetcalf@ezchip.com>
Cc: stable@vger.kernel.org
parent 52721d9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1139,7 +1139,7 @@ static void __init load_hv_initrd(void)


void __init free_initrd_mem(unsigned long begin, unsigned long end)
void __init free_initrd_mem(unsigned long begin, unsigned long end)
{
{
	free_bootmem(__pa(begin), end - begin);
	free_bootmem_late(__pa(begin), end - begin);
}
}


static int __init setup_initrd(char *str)
static int __init setup_initrd(char *str)