Skip to content

Commit b497500

Browse files
committed
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
2 parents c624406 + 3f81d24 commit b497500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/tile/kernel/setup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ static void __init load_hv_initrd(void)
11391139

11401140
void __init free_initrd_mem(unsigned long begin, unsigned long end)
11411141
{
1142-
free_bootmem(__pa(begin), end - begin);
1142+
free_bootmem_late(__pa(begin), end - begin);
11431143
}
11441144

11451145
static int __init setup_initrd(char *str)

0 commit comments

Comments
 (0)