* Third sched.git regression...
@ 2008-04-24 15:15 David Miller
0 siblings, 0 replies; only message in thread
From: David Miller @ 2008-04-24 15:15 UTC (permalink / raw)
To: mingo; +Cc: linux-kernel
The fun just doesn't end. Every machine I try the current tree on
fails in some new spectacular way due to the sched.git merge earlier
this week.
kernel/sched.c now does an alloc_bootmem_low() call
How, pray tell, is that supposed to work on systems that have no ram
below 4GB?
Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/kernel/sched.c b/kernel/sched.c
index 0014b03..09ca69b 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -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;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-04-24 15:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-24 15:15 Third sched.git regression David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®