diff options
-rw-r--r-- | arch/i386/mm/init.c | 7 | ||||
-rw-r--r-- | include/asm-i386/page.h | 1 |
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/i386/mm/init.c b/arch/i386/mm/init.c index 6e72f22e6bbd..e1a9a805c445 100644 --- a/arch/i386/mm/init.c +++ b/arch/i386/mm/init.c | |||
@@ -471,6 +471,10 @@ void zap_low_mappings (void) | |||
471 | flush_tlb_all(); | 471 | flush_tlb_all(); |
472 | } | 472 | } |
473 | 473 | ||
474 | int nx_enabled = 0; | ||
475 | |||
476 | #ifdef CONFIG_X86_PAE | ||
477 | |||
474 | static int disable_nx __initdata = 0; | 478 | static int disable_nx __initdata = 0; |
475 | u64 __supported_pte_mask __read_mostly = ~_PAGE_NX; | 479 | u64 __supported_pte_mask __read_mostly = ~_PAGE_NX; |
476 | EXPORT_SYMBOL_GPL(__supported_pte_mask); | 480 | EXPORT_SYMBOL_GPL(__supported_pte_mask); |
@@ -500,9 +504,6 @@ static int __init noexec_setup(char *str) | |||
500 | } | 504 | } |
501 | early_param("noexec", noexec_setup); | 505 | early_param("noexec", noexec_setup); |
502 | 506 | ||
503 | int nx_enabled = 0; | ||
504 | #ifdef CONFIG_X86_PAE | ||
505 | |||
506 | static void __init set_nx(void) | 507 | static void __init set_nx(void) |
507 | { | 508 | { |
508 | unsigned int v[4], l, h; | 509 | unsigned int v[4], l, h; |
diff --git a/include/asm-i386/page.h b/include/asm-i386/page.h index 99cf5d3692a9..80ecc66b6d86 100644 --- a/include/asm-i386/page.h +++ b/include/asm-i386/page.h | |||
@@ -44,7 +44,6 @@ | |||
44 | extern int nx_enabled; | 44 | extern int nx_enabled; |
45 | 45 | ||
46 | #ifdef CONFIG_X86_PAE | 46 | #ifdef CONFIG_X86_PAE |
47 | extern unsigned long long __supported_pte_mask; | ||
48 | typedef struct { unsigned long pte_low, pte_high; } pte_t; | 47 | typedef struct { unsigned long pte_low, pte_high; } pte_t; |
49 | typedef struct { unsigned long long pmd; } pmd_t; | 48 | typedef struct { unsigned long long pmd; } pmd_t; |
50 | typedef struct { unsigned long long pgd; } pgd_t; | 49 | typedef struct { unsigned long long pgd; } pgd_t; |