diff options
author | Huang, Ying <ying.huang@intel.com> | 2008-01-30 07:32:11 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:32:11 -0500 |
commit | 8b2cb7a8f531d6ca72a8aff873b9bb1c6b3122ba (patch) | |
tree | f53edab6bdc4e1f39ef2cea8d13f15242617262e /arch/x86/kernel/efi_64.c | |
parent | bfd074e05bdb69652d24ebc60b126899174ca788 (diff) |
x86: 32-bit EFI runtime service support: fixes in sync with 64-bit support
support according to fixes of x86_64 support.
- Delete efi_rt_lock because it is used during system early boot,
before SMP is initialized.
- Change local_flush_tlb() to __flush_tlb_all() to flush global page
mapping.
- Clean up includes.
- Revise Kconfig description.
- Enable noefi kernel parameter on i386.
Signed-off-by: Huang Ying <ying.huang@intel.com>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/efi_64.c')
-rw-r--r-- | arch/x86/kernel/efi_64.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/x86/kernel/efi_64.c b/arch/x86/kernel/efi_64.c index f2000dbc7195..269de2e049a3 100644 --- a/arch/x86/kernel/efi_64.c +++ b/arch/x86/kernel/efi_64.c | |||
@@ -40,13 +40,6 @@ | |||
40 | static pgd_t save_pgd __initdata; | 40 | static pgd_t save_pgd __initdata; |
41 | static unsigned long efi_flags __initdata; | 41 | static unsigned long efi_flags __initdata; |
42 | 42 | ||
43 | static int __init setup_noefi(char *arg) | ||
44 | { | ||
45 | efi_enabled = 0; | ||
46 | return 0; | ||
47 | } | ||
48 | early_param("noefi", setup_noefi); | ||
49 | |||
50 | static void __init early_mapping_set_exec(unsigned long start, | 43 | static void __init early_mapping_set_exec(unsigned long start, |
51 | unsigned long end, | 44 | unsigned long end, |
52 | int executable) | 45 | int executable) |