]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
x86: setup_smep needs to be __cpuinit
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 23 May 2011 04:37:01 +0000 (21:37 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 23 May 2011 04:44:13 +0000 (21:44 -0700)
The setup_smep function gets calle at resume time too, and is thus not a
pure __init function.  When marked as __init, it gets thrown out after
the kernel has initialized, and when the kernel is suspended and
resumed, the code will no longer be around, and we'll get a nice "kernel
tried to execute NX-protected page" oops because the page is no longer
marked executable.

Reported-and-tested-by: Parag Warudkar <parag.lkml@gmail.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: "H. Peter Anvin" <hpa@linux.intel.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/x86/kernel/cpu/common.c

index cbc70a27430ce3dc7010fbf07909ed886674c5e0..c8b41623377f14462a248b245ffab97792e9409c 100644 (file)
@@ -254,7 +254,7 @@ static inline void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
 }
 #endif
 
-static int disable_smep __initdata;
+static int disable_smep __cpuinitdata;
 static __init int setup_disable_smep(char *arg)
 {
        disable_smep = 1;
@@ -262,7 +262,7 @@ static __init int setup_disable_smep(char *arg)
 }
 __setup("nosmep", setup_disable_smep);
 
-static __init void setup_smep(struct cpuinfo_x86 *c)
+static __cpuinit void setup_smep(struct cpuinfo_x86 *c)
 {
        if (cpu_has(c, X86_FEATURE_SMEP)) {
                if (unlikely(disable_smep)) {