diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-01-28 17:35:01 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2009-01-30 17:51:14 -0500 |
commit | 319f3ba52c71630865b10ac3b99dd020440d681d (patch) | |
tree | 2445f2adc22165ad0b5ea3e6e3ed7af7db19eed0 /arch/x86/xen/xen-ops.h | |
parent | 9b7ed8faa034fc2d350e2eff5c68680eb5c43a07 (diff) |
xen: move remaining mmu-related stuff into mmu.c
Impact: Cleanup
Move remaining mmu-related stuff into mmu.c.
A general cleanup, and lay the groundwork for later patches.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/xen/xen-ops.h')
-rw-r--r-- | arch/x86/xen/xen-ops.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h index c1f8faf0a2c5..11913fc94c14 100644 --- a/arch/x86/xen/xen-ops.h +++ b/arch/x86/xen/xen-ops.h | |||
@@ -13,6 +13,7 @@ extern const char xen_failsafe_callback[]; | |||
13 | struct trap_info; | 13 | struct trap_info; |
14 | void xen_copy_trap_info(struct trap_info *traps); | 14 | void xen_copy_trap_info(struct trap_info *traps); |
15 | 15 | ||
16 | DECLARE_PER_CPU(struct vcpu_info, xen_vcpu_info); | ||
16 | DECLARE_PER_CPU(unsigned long, xen_cr3); | 17 | DECLARE_PER_CPU(unsigned long, xen_cr3); |
17 | DECLARE_PER_CPU(unsigned long, xen_current_cr3); | 18 | DECLARE_PER_CPU(unsigned long, xen_current_cr3); |
18 | 19 | ||
@@ -22,6 +23,13 @@ extern struct shared_info *HYPERVISOR_shared_info; | |||
22 | 23 | ||
23 | void xen_setup_mfn_list_list(void); | 24 | void xen_setup_mfn_list_list(void); |
24 | void xen_setup_shared_info(void); | 25 | void xen_setup_shared_info(void); |
26 | void xen_setup_machphys_mapping(void); | ||
27 | pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn); | ||
28 | void xen_ident_map_ISA(void); | ||
29 | void xen_reserve_top(void); | ||
30 | |||
31 | void xen_leave_lazy(void); | ||
32 | void xen_post_allocator_init(void); | ||
25 | 33 | ||
26 | char * __init xen_memory_setup(void); | 34 | char * __init xen_memory_setup(void); |
27 | void __init xen_arch_setup(void); | 35 | void __init xen_arch_setup(void); |