diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-03-05 08:39:03 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-05 08:39:03 -0500 |
commit | 62436fe9ee10f5e0dd087b106d69d93c9549935a (patch) | |
tree | da068f2b8420392f2c86c5e9e40e444de2bc4605 /arch | |
parent | 4fcb208391be5cf82c6fe2779c5eb9245ac97e91 (diff) |
x86: move init_memory_mapping() to common mm/init.c, build fix on 32-bit PAE
Impact: build fix
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <1236257708-27269-14-git-send-email-penberg@cs.helsinki.fi>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/pgtable_types.h | 1 | ||||
-rw-r--r-- | arch/x86/mm/init_32.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/include/asm/pgtable_types.h b/arch/x86/include/asm/pgtable_types.h index 4d258ad76a0f..b8238dc8786d 100644 --- a/arch/x86/include/asm/pgtable_types.h +++ b/arch/x86/include/asm/pgtable_types.h | |||
@@ -273,6 +273,7 @@ typedef struct page *pgtable_t; | |||
273 | 273 | ||
274 | extern pteval_t __supported_pte_mask; | 274 | extern pteval_t __supported_pte_mask; |
275 | extern int nx_enabled; | 275 | extern int nx_enabled; |
276 | extern void set_nx(void); | ||
276 | 277 | ||
277 | #define pgprot_writecombine pgprot_writecombine | 278 | #define pgprot_writecombine pgprot_writecombine |
278 | extern pgprot_t pgprot_writecombine(pgprot_t prot); | 279 | extern pgprot_t pgprot_writecombine(pgprot_t prot); |
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c index 1669693e97de..5e5126e0d544 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c | |||
@@ -605,7 +605,7 @@ static int __init noexec_setup(char *str) | |||
605 | } | 605 | } |
606 | early_param("noexec", noexec_setup); | 606 | early_param("noexec", noexec_setup); |
607 | 607 | ||
608 | static void __init set_nx(void) | 608 | void __init set_nx(void) |
609 | { | 609 | { |
610 | unsigned int v[4], l, h; | 610 | unsigned int v[4], l, h; |
611 | 611 | ||