public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] fix bootmem regression on Altix
@ 2008-04-24 18:16 Russ Anderson
  2008-06-03  8:56 ` Petr Tesarik
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Russ Anderson @ 2008-04-24 18:16 UTC (permalink / raw)
  To: linux-ia64

[patch] fix bootmem regression on Altix

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

The regresson was introduced in commit 434d53b00d6bb7be0a1d3dcc0d0d5df6c042e164

Signed-off-by: Russ Anderson (rja@sgi.com)

---
 kernel/sched.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: test/kernel/sched.c
=================================--- test.orig/kernel/sched.c	2008-04-23 16:00:58.000000000 -0500
+++ test/kernel/sched.c	2008-04-23 16:01:33.047453963 -0500
@@ -8127,7 +8127,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;
-- 
Russ Anderson, OS RAS/Partitioning Project Lead  
SGI - Silicon Graphics Inc          rja@sgi.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-06-03 16:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-24 18:16 [patch] fix bootmem regression on Altix Russ Anderson
2008-06-03  8:56 ` Petr Tesarik
2008-06-03 16:19 ` Russ Anderson
2008-06-03 16:22 ` Luck, Tony
2008-06-03 16:23 ` Petr Tesarik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox