355818b087b52044dfc3494813260911f9f49958
[safe/jmp/linux-2.6] / arch / x86 / mm / setup_nx.c
1 #include <linux/spinlock.h>
2 #include <linux/errno.h>
3 #include <linux/init.h>
4
5 #include <asm/pgtable.h>
6 #include <asm/proto.h>
7
8 static int disable_nx __cpuinitdata;
9
10 /*
11  * noexec = on|off
12  *
13  * Control non-executable mappings for processes.
14  *
15  * on      Enable
16  * off     Disable
17  */
18 static int __init noexec_setup(char *str)
19 {
20         if (!str)
21                 return -EINVAL;
22         if (!strncmp(str, "on", 2)) {
23                 disable_nx = 0;
24         } else if (!strncmp(str, "off", 3)) {
25                 disable_nx = 1;
26         }
27         x86_configure_nx();
28         return 0;
29 }
30 early_param("noexec", noexec_setup);
31
32 void __cpuinit x86_configure_nx(void)
33 {
34         if (cpu_has_nx && !disable_nx)
35                 __supported_pte_mask |= _PAGE_NX;
36         else
37                 __supported_pte_mask &= ~_PAGE_NX;
38 }