diff options
author | Attilio Rao <attilio.rao@citrix.com> | 2012-08-21 16:22:40 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-09-12 09:33:06 -0400 |
commit | c711288727a62f74d48032e56e51333dd104bf58 (patch) | |
tree | cd1bda716eb85172410e80d71844abaa61f49f67 /arch/x86/xen/mmu.c | |
parent | 843b8ed2ec598aae5e3516b21957ede62a070e36 (diff) |
x86: xen: Cleanup and remove x86_init.paging.pagetable_setup_done()
At this stage x86_init.paging.pagetable_setup_done is only used in the
XEN case. Move its content in the x86_init.paging.pagetable_init setup
function and remove the now unused x86_init.paging.pagetable_setup_done
remaining infrastructure.
Signed-off-by: Attilio Rao <attilio.rao@citrix.com>
Acked-by: <konrad.wilk@oracle.com>
Cc: <Ian.Campbell@citrix.com>
Cc: <Stefano.Stabellini@eu.citrix.com>
Cc: <xen-devel@lists.xensource.com>
Link: http://lkml.kernel.org/r/1345580561-8506-5-git-send-email-attilio.rao@citrix.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/xen/mmu.c')
-rw-r--r-- | arch/x86/xen/mmu.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c index c2ff7ea37b8c..7a769b7526cb 100644 --- a/arch/x86/xen/mmu.c +++ b/arch/x86/xen/mmu.c | |||
@@ -1174,9 +1174,13 @@ static void xen_exit_mmap(struct mm_struct *mm) | |||
1174 | spin_unlock(&mm->page_table_lock); | 1174 | spin_unlock(&mm->page_table_lock); |
1175 | } | 1175 | } |
1176 | 1176 | ||
1177 | static void xen_post_allocator_init(void); | ||
1178 | |||
1177 | static void __init xen_pagetable_init(void) | 1179 | static void __init xen_pagetable_init(void) |
1178 | { | 1180 | { |
1179 | paging_init(); | 1181 | paging_init(); |
1182 | xen_setup_shared_info(); | ||
1183 | xen_post_allocator_init(); | ||
1180 | } | 1184 | } |
1181 | 1185 | ||
1182 | static __init void xen_mapping_pagetable_reserve(u64 start, u64 end) | 1186 | static __init void xen_mapping_pagetable_reserve(u64 start, u64 end) |
@@ -1193,14 +1197,6 @@ static __init void xen_mapping_pagetable_reserve(u64 start, u64 end) | |||
1193 | } | 1197 | } |
1194 | } | 1198 | } |
1195 | 1199 | ||
1196 | static void xen_post_allocator_init(void); | ||
1197 | |||
1198 | static void __init xen_pagetable_setup_done(pgd_t *base) | ||
1199 | { | ||
1200 | xen_setup_shared_info(); | ||
1201 | xen_post_allocator_init(); | ||
1202 | } | ||
1203 | |||
1204 | static void xen_write_cr2(unsigned long cr2) | 1200 | static void xen_write_cr2(unsigned long cr2) |
1205 | { | 1201 | { |
1206 | this_cpu_read(xen_vcpu)->arch.cr2 = cr2; | 1202 | this_cpu_read(xen_vcpu)->arch.cr2 = cr2; |
@@ -2070,7 +2066,6 @@ void __init xen_init_mmu_ops(void) | |||
2070 | { | 2066 | { |
2071 | x86_init.mapping.pagetable_reserve = xen_mapping_pagetable_reserve; | 2067 | x86_init.mapping.pagetable_reserve = xen_mapping_pagetable_reserve; |
2072 | x86_init.paging.pagetable_init = xen_pagetable_init; | 2068 | x86_init.paging.pagetable_init = xen_pagetable_init; |
2073 | x86_init.paging.pagetable_setup_done = xen_pagetable_setup_done; | ||
2074 | pv_mmu_ops = xen_mmu_ops; | 2069 | pv_mmu_ops = xen_mmu_ops; |
2075 | 2070 | ||
2076 | memset(dummy_mapping, 0xff, PAGE_SIZE); | 2071 | memset(dummy_mapping, 0xff, PAGE_SIZE); |