Re: [PATCH] x86 NUMA panic compile error

From: Andrew Morton
Date: Mon May 15 2006 - 14:49:39 EST


Ingo Molnar <mingo@xxxxxxx> wrote:
>
>
> * Andrew Morton <akpm@xxxxxxxx> wrote:
>
> > > (which has nothing to do with x86_64 anyway)
> >
> > True.
> >
> > I guess the concern here is that we don't want people building these
> > frankenkernels and then sending us bug reports against them.
>
> sure - lets simply turn it into a printk, as per the patch below.
>
> it's not like we are being swamped with these bugreports, it seems i was
> the only one who tried. So lets not over-react it. (and the panic was
> the worst possible thing we could do.)
>
> Ingo
>
> ---
>
> warn users that running CONFIG_NUMA on non-x440 boxes is barely tested.
>
> Signed-off-by: Ingo Molnar <mingo@xxxxxxx>
>
> arch/i386/kernel/srat.c | 9 +++------
> 1 file changed, 3 insertions(+), 6 deletions(-)
>
> Index: linux/arch/i386/kernel/srat.c
> ===================================================================
> --- linux.orig/arch/i386/kernel/srat.c
> +++ linux/arch/i386/kernel/srat.c
> @@ -267,12 +267,9 @@ int __init get_memcfg_from_srat(void)
> int i = 0;
>
> extern int use_cyclone;

argh.

If we didn't do this lazy-ass put-the-declaration-in-the-C-file thing, we'd
have noticed that the declaration of use_cyclone is in
include/asm-i386/mach-summit/mach_mpparse.h.

use_cyclone isn't defined if !CONFIG_X86_CYCLONE_TIMER.
arch/i386/kernel/srat.c is only compiled if X86_SUMMIT || X86_GENERICARCH.

<tries to break it>

I have a config here which has NUMA=y, ACPI_SRAT=y, X86_SUMMIT=n (and
X86_SUMMIT_NUMA=y!!) and, for some reason it set X86_CYCLONE_TIMER=y, which
is dumb. But it will manage to link with this patch applied.

But still, referencing a variable which is implemented in
arch/i386/kernel/timers/timer_cyclone.c from within arch/i386/kernel/srat.c
is asking for trouble, no?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/