Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
arch/tile/kernel/setup.c
··· 1139 1139 1140 1140 void __init free_initrd_mem(unsigned long begin, unsigned long end) 1141 1141 { 1142 - free_bootmem(__pa(begin), end - begin); 1142 + free_bootmem_late(__pa(begin), end - begin); 1143 1143 } 1144 1144 1145 1145 static int __init setup_initrd(char *str)