mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-24 21:24:00 +08:00
Merge branch 'stable' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile
Pull arch/tile bugfix from Chris Metcalf: "This fixes a bug in freeing the initramfs memory" * 'stable' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile: tile: use free_bootmem_late() for initrd
This commit is contained in:
commit
b497500069
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user