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

Commit 5a9d3225 authored by David Miller's avatar David Miller Committed by Ingo Molnar
Browse files

sched: use alloc_bootmem() instead of alloc_bootmem_low()



There is no guarantee that there is physical ram below 4GB, and in
fact many boxes don't have exactly that.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent b69d3987
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;