[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080428085044.GB16963@elte.hu>
Date: Mon, 28 Apr 2008 10:50:44 +0200
From: Ingo Molnar <mingo@...e.hu>
To: Sergio Luis <sergio@...e.br>
Cc: Glauber de Oliveira Costa <gcosta@...hat.com>,
linux-kernel@...r.kernel.org, akpm@...ux-foundation.org,
tglx@...utronix.de, ak@...e.de, Avi Kivity <avi@...ranet.com>
Subject: Re: [PATCH] build fix for smp
* Sergio Luis <sergio@...e.br> wrote:
> Hello, what's the final fix for this issue? 2.6.25-git11 is still
> broken, just gave me
> arch/x86/kernel/built-in.o: In function `native_smp_send_stop':
> smp.c:(.text+0xc751): undefined reference to `reboot_force'
> make: *** [.tmp_vmlinux1] Error 1
> for a randconfig. Same reported at http://lkml.org/lkml/2008/4/27/39
btw., that's a VISWS config - that wont boot on any PC. The patch below
should fix this.
Ingo
--------------------------->
Subject: x86 VISWS: build fix
From: Ingo Molnar <mingo@...e.hu>
Date: Mon Apr 28 10:46:58 CEST 2008
the 'reboot_force' flag is a notion that non-PC subarchitectures do
not have.
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
include/asm-x86/proto.h | 4 ++++
1 file changed, 4 insertions(+)
Index: linux/include/asm-x86/proto.h
===================================================================
--- linux.orig/include/asm-x86/proto.h
+++ linux/include/asm-x86/proto.h
@@ -20,7 +20,11 @@ extern void syscall32_cpu_init(void);
extern void check_efer(void);
+#ifdef X86_BIOS_REBOOT
extern int reboot_force;
+#else
+static const int reboot_force = 0;
+#endif
long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
--
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