[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4A948C4A.8040004@cn.fujitsu.com>
Date: Wed, 26 Aug 2009 09:13:46 +0800
From: Xiao Guangrong <xiaoguangrong@...fujitsu.com>
To: Yinghai Lu <yinghai@...nel.org>
CC: Hugh Dickins <hugh.dickins@...cali.co.uk>,
Ingo Molnar <mingo@...e.hu>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Zachary Amsden <zach@...are.com>,
"H. Peter Anvin" <hpa@...or.com>,
Xiao Guangrong <xiaoguangrong@...fujitsu.com>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-kernel@...r.kernel.org
Subject: Re: linux-next: reservetop fix disables mem=
Yinghai Lu wrote:
>
> yes, that patch will break other built-in command too.
>
> need drop that patch.
>
Sorry for trouble you all by my stupid patch.
The main problem is that can't parse 'reservetop' and 'mem'/'memmap'
parameters at the same time, because we should parse 'mem'/'memmap'
after e820 map detected, and it might use early_memremap() during
e820 map detecting, so we should call early_ioremap_init() before it,
'reservetop' parameter can change 'FIXADDR_TOP', so we parse
'reservetop' first,
like below sequences:
......
___parse 'reservetop'___ ->
early_ioremap_init() ->
setup_memory_map(); /* might call early_memremap()*/ ->
parse_setup_data(); /* might call early_memremap()*/ ->
e820_reserve_setup_data(); ->
___parse 'mem'/'memmap' and other parameters___
......
(the same as 'early_ioremap_debug' parameter)
So, I'm afraid that we need separate parse 'reservetop'/
'early_ioremap_debug' parameters early
Thanks,
Xiao
> also the problem was caused by vmi patch, and that commit should be reverted.
>
> commit ae8d04e2ecbb233926860e9ce145eac19c7835dc
> Author: Zachary Amsden <zach@...are.com>
> Date: Sat Dec 13 12:36:58 2008 -0800
>
> x86 Fix VMI crash on boot in 2.6.28-rc8
>
> VMI initialiation can relocate the fixmap, causing early_ioremap to
> malfunction if it is initialized before the relocation. To fix this,
> VMI activation is split into two phases; the detection, which must
> happen before setting up ioremap, and the activation, which must happen
> after parsing early boot parameters.
>
> This fixes a crash on boot when VMI is enabled under VMware.
>
> Signed-off-by: Zachary Amsden <zach@...are.com>
> Signed-off-by: Linus Torvalds <torvalds@...ux-foundation.org>
>
> diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
> index 9d5674f..bdec76e 100644
> --- a/arch/x86/kernel/setup.c
> +++ b/arch/x86/kernel/setup.c
> @@ -794,6 +794,9 @@ void __init setup_arch(char **cmdline_p)
> printk(KERN_INFO "Command line: %s\n", boot_command_line);
> #endif
>
> + /* VMI may relocate the fixmap; do this before touching ioremap area */
> + vmi_init();
> +
> early_cpu_init();
> early_ioremap_init();
>
> @@ -880,13 +883,8 @@ void __init setup_arch(char **cmdline_p)
> check_efer();
> #endif
>
> -#if defined(CONFIG_VMI) && defined(CONFIG_X86_32)
> - /*
> - * Must be before kernel pagetables are setup
> - * or fixmap area is touched.
> - */
> - vmi_init();
> -#endif
> + /* Must be before kernel pagetables are setup */
> + vmi_activate();
>
> /* after early param, so could get panic from serial */
> reserve_early_setup_data();
>
>
> and according to
> http://lkml.org/lkml/2008/12/10/388
> http://lkml.org/lkml/2008/12/10/456
>
> Zachary should split reserve_top_address() to two functions... before sending that patch to Linus
>
>
> YH
>
>
> --
> 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/
>
>
--
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