Commit 472613b9 authored by Russ Anderson's avatar Russ Anderson Committed by Tony Luck
Browse files

[IA64] fix bootmem regression on Altix



A recent change prevents SGI Altix from booting.
This patch fixes the problem.

The regresson was introduced in commit 434d53b0

Signed-off-by: default avatarRuss Anderson <rja@sgi.com>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 94bc891b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8128,7 +8128,7 @@ void __init sched_init(void)
	 * we use alloc_bootmem().
	 */
	if (alloc_size) {
		ptr = (unsigned long)alloc_bootmem_low(alloc_size);
		ptr = (unsigned long)alloc_bootmem(alloc_size);

#ifdef CONFIG_FAIR_GROUP_SCHED
		init_task_group.se = (struct sched_entity **)ptr;