[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4B747239.4070907@kernel.org>
Date: Thu, 11 Feb 2010 13:10:17 -0800
From: Yinghai Lu <yinghai@...nel.org>
To: Ingo Molnar <mingo@...e.hu>
CC: Thomas Gleixner <tglx@...utronix.de>,
"H. Peter Anvin" <hpa@...or.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Jesse Barnes <jbarnes@...tuousgeek.org>,
Christoph Lameter <cl@...ux-foundation.org>,
linux-kernel@...r.kernel.org, linux-pci@...r.kernel.org
Subject: Re: [PATCH -v7 0/35] tip related: not use bootmem for x86
On 02/11/2010 08:14 AM, Ingo Molnar wrote:
>
> i've done some testing of the bits Peter has merged into x86/bootmem in -tip,
> and it crashes during early bootup with:
>
> [ 0.000000] #8 [0000012000 - 000001a000] BOOTMAP ==> [0000012000 - 000001a000]
> [ 0.000000] bootmem alloc of 4194304 bytes failed!
> [ 0.000000] Kernel panic - not syncing: Out of memory
> [ 0.000000] Pid: 0, comm: swapper Not tainted 2.6.33-rc7-tip-00770-g525df42-dirty #16566
> [ 0.000000] Call Trace:
> [ 0.000000] [<ffffffff8167410b>] panic+0x75/0x146
> [ 0.000000] [<ffffffff832b0a04>] ___alloc_bootmem_node+0x0/0x60
> [ 0.000000] [<ffffffff832b0c27>] __alloc_bootmem+0xb/0xd
> [ 0.000000] [<ffffffff832b2d7b>] sparse_init+0x34/0x2d9
> [ 0.000000] [<ffffffff832b0dc9>] ? reserve_bootmem+0x20/0x22
> [ 0.000000] [<ffffffff832aac44>] paging_init+0x43/0x52
> [ 0.000000] [<ffffffff8329fb2e>] setup_arch+0x583/0x615
> [ 0.000000] [<ffffffff8105e794>] ? clockevents_register_notifier+0x3e/0x4a
> [ 0.000000] [<ffffffff8329db07>] start_kernel+0xf3/0x349
> [ 0.000000] [<ffffffff8329d276>] x86_64_start_reservations+0x7d/0x81
> [ 0.000000] [<ffffffff8329d3c6>] x86_64_start_kernel+0x14c/0x15b
> [ 0.000000] Rebooting in 1 seconds..Press any key to enter the menu
sorry, i deleted one line by mistake...
please check
Subject: [PATCH] x86: fix bootmem with non numa after early_res change
Ingo found early_res replacing bootmem code broke original bootmem code for non numa
it crashes during early bootup with:
[ 0.000000] #8 [0000012000 - 000001a000] BOOTMAP ==> [0000012000 - 000001a000]
[ 0.000000] bootmem alloc of 4194304 bytes failed!
[ 0.000000] Kernel panic - not syncing: Out of memory
[ 0.000000] Pid: 0, comm: swapper Not tainted 2.6.33-rc7-tip-00770-g525df42-dirty #16566
[ 0.000000] Call Trace:
[ 0.000000] [<ffffffff8167410b>] panic+0x75/0x146
[ 0.000000] [<ffffffff832b0a04>] ___alloc_bootmem_node+0x0/0x60
[ 0.000000] [<ffffffff832b0c27>] __alloc_bootmem+0xb/0xd
[ 0.000000] [<ffffffff832b2d7b>] sparse_init+0x34/0x2d9
[ 0.000000] [<ffffffff832b0dc9>] ? reserve_bootmem+0x20/0x22
[ 0.000000] [<ffffffff832aac44>] paging_init+0x43/0x52
[ 0.000000] [<ffffffff8329fb2e>] setup_arch+0x583/0x615
[ 0.000000] [<ffffffff8105e794>] ? clockevents_register_notifier+0x3e/0x4a
[ 0.000000] [<ffffffff8329db07>] start_kernel+0xf3/0x349
[ 0.000000] [<ffffffff8329d276>] x86_64_start_reservations+0x7d/0x81
[ 0.000000] [<ffffffff8329d3c6>] x86_64_start_kernel+0x14c/0x15b
[ 0.000000] Rebooting in 1 seconds..Press any key to enter the menu
it turns out that one line should not be deleted...
need to be folded into
| commit 29a79bb1f526e506b97c7e2e794be16f8af16a01
| x86: Make 64 bit use early_res instead of bootmem before slab
Signed-off-by: Yinghai Lu <yinghai@...nel.org>
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index 7ff9cee..276c4ea 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -584,6 +584,7 @@ void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn,
/* don't touch min_low_pfn */
bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT,
0, end_pfn);
+ e820_register_active_regions(0, start_pfn, end_pfn);
free_bootmem_with_active_regions(0, end_pfn);
#else
e820_register_active_regions(0, start_pfn, end_pfn);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists