From: Marc Dionne Date: Wed, 24 Sep 2008 02:40:02 +0000 (-0400) Subject: x86: prevent stale state of c1e_mask across CPU offline/online, fix X-Git-Tag: v2.6.27-rc8~21^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1eda81495a49a4ee91d8863b0a441a624375efea;p=profile%2Fivi%2Fkernel-x86-ivi.git x86: prevent stale state of c1e_mask across CPU offline/online, fix Fix build error introduced by commit 4faac97d44ac27 ("x86: prevent stale state of c1e_mask across CPU offline/online"). process_32.c needs to include idle.h to get the prototype for c1e_remove_cpu() Signed-off-by: Marc Dionne Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c index 4b3cfdf..31f40b2 100644 --- a/arch/x86/kernel/process_32.c +++ b/arch/x86/kernel/process_32.c @@ -55,6 +55,7 @@ #include #include #include +#include asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");