* [PATCH]: x86-64 system crashes when no memory populating Node 0
@ 2006-12-22 17:47 James Puthukattukaran
0 siblings, 0 replies; only message in thread
From: James Puthukattukaran @ 2006-12-22 17:47 UTC (permalink / raw)
To: linux-kernel
I have a 4 socket AMD Operton system. The 2.6.18 kernel I have crashes
when there is no memory in node0.
--James
diff -uNr linux-2.6.18-orig/arch/x86_64/kernel/aperture.c
linux-2.6.18-new/arch/x86_64/kernel/aperture.c
--- linux-2.6.18-orig/arch/x86_64/kernel/aperture.c 2006-09-19
23:42:06.000000000 -0400
+++ linux-2.6.18-new/arch/x86_64/kernel/aperture.c 2006-12-20
19:43:42.000000000 -0500
@@ -38,7 +38,6 @@
static u32 __init allocate_aperture(void)
{
- pg_data_t *nd0 = NODE_DATA(0);
u32 aper_size;
void *p;
@@ -52,12 +51,13 @@
* Unfortunately we cannot move it up because that would make the
* IOMMU useless.
*/
- p = __alloc_bootmem_node(nd0, aper_size, aper_size, 0);
+
+ p = __alloc_bootmem(aper_size, aper_size, 0);
if (!p || __pa(p)+aper_size > 0xffffffff) {
printk("Cannot allocate aperture memory hole (%p,%uK)\n",
p, aper_size>>10);
if (p)
- free_bootmem_node(nd0, __pa(p), aper_size);
+ free_bootmem(__pa(p), aper_size);
return 0;
}
printk("Mapping aperture over %d KB of RAM @ %lx\n",
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-12-22 18:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-22 17:47 [PATCH]: x86-64 system crashes when no memory populating Node 0 James Puthukattukaran
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.