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

Commit 5421d059 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge branch 'for-linus' of...

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-sched-fixes2

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-sched-fixes2:
  sched: use alloc_bootmem() instead of alloc_bootmem_low()
parents 5f3b2878 5a9d3225
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;