diff options
author | Attilio Rao <attilio.rao@citrix.com> | 2012-08-21 16:22:38 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-09-12 09:33:06 -0400 |
commit | 7737b215ad0f94d20a87d98315da9f6cadaf35c9 (patch) | |
tree | ba7c20bfd9c6e002c7ebac9bec0657258ddedfa6 /arch | |
parent | 73090f8993a40a2f67fed1ab866a928c68cd3765 (diff) |
x86: Rename pagetable_setup_start() to pagetable_init()
In preparation for unifying the pagetable_setup_start() and
pagetable_setup_done() setup functions, rename appropriately all the
infrastructure related to pagetable_setup_start().
Signed-off-by: Attilio Rao <attilio.rao@citrix.com>
Ackedd-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-3-git-send-email-attilio.rao@citrix.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/pgtable_types.h | 4 | ||||
-rw-r--r-- | arch/x86/include/asm/x86_init.h | 4 | ||||
-rw-r--r-- | arch/x86/kernel/setup.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/x86_init.c | 4 | ||||
-rw-r--r-- | arch/x86/mm/init_32.c | 4 | ||||
-rw-r--r-- | arch/x86/xen/mmu.c | 4 |
6 files changed, 11 insertions, 11 deletions
diff --git a/arch/x86/include/asm/pgtable_types.h b/arch/x86/include/asm/pgtable_types.h index e02b875e6922..0c01e0730f7b 100644 --- a/arch/x86/include/asm/pgtable_types.h +++ b/arch/x86/include/asm/pgtable_types.h | |||
@@ -303,10 +303,10 @@ void set_pte_vaddr(unsigned long vaddr, pte_t pte); | |||
303 | 303 | ||
304 | extern void native_pagetable_reserve(u64 start, u64 end); | 304 | extern void native_pagetable_reserve(u64 start, u64 end); |
305 | #ifdef CONFIG_X86_32 | 305 | #ifdef CONFIG_X86_32 |
306 | extern void native_pagetable_setup_start(void); | 306 | extern void native_pagetable_init(void); |
307 | extern void native_pagetable_setup_done(pgd_t *base); | 307 | extern void native_pagetable_setup_done(pgd_t *base); |
308 | #else | 308 | #else |
309 | #define native_pagetable_setup_start x86_init_pgd_start_noop | 309 | #define native_pagetable_init x86_init_pgd_init_noop |
310 | #define native_pagetable_setup_done x86_init_pgd_done_noop | 310 | #define native_pagetable_setup_done x86_init_pgd_done_noop |
311 | #endif | 311 | #endif |
312 | 312 | ||
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h index 782ba0c4b266..24084b2b3a43 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h | |||
@@ -81,11 +81,11 @@ struct x86_init_mapping { | |||
81 | 81 | ||
82 | /** | 82 | /** |
83 | * struct x86_init_paging - platform specific paging functions | 83 | * struct x86_init_paging - platform specific paging functions |
84 | * @pagetable_setup_start: platform specific pre paging_init() call | 84 | * @pagetable_init: platform specific paging initialization call |
85 | * @pagetable_setup_done: platform specific post paging_init() call | 85 | * @pagetable_setup_done: platform specific post paging_init() call |
86 | */ | 86 | */ |
87 | struct x86_init_paging { | 87 | struct x86_init_paging { |
88 | void (*pagetable_setup_start)(void); | 88 | void (*pagetable_init)(void); |
89 | void (*pagetable_setup_done)(pgd_t *base); | 89 | void (*pagetable_setup_done)(pgd_t *base); |
90 | }; | 90 | }; |
91 | 91 | ||
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index 90cbbe00adca..61b7d9827afb 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c | |||
@@ -961,7 +961,7 @@ void __init setup_arch(char **cmdline_p) | |||
961 | kvmclock_init(); | 961 | kvmclock_init(); |
962 | #endif | 962 | #endif |
963 | 963 | ||
964 | x86_init.paging.pagetable_setup_start(); | 964 | x86_init.paging.pagetable_init(); |
965 | paging_init(); | 965 | paging_init(); |
966 | x86_init.paging.pagetable_setup_done(swapper_pg_dir); | 966 | x86_init.paging.pagetable_setup_done(swapper_pg_dir); |
967 | 967 | ||
diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c index 3b88493ec7ca..0e1e950113b9 100644 --- a/arch/x86/kernel/x86_init.c +++ b/arch/x86/kernel/x86_init.c | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | void __cpuinit x86_init_noop(void) { } | 27 | void __cpuinit x86_init_noop(void) { } |
28 | void __init x86_init_uint_noop(unsigned int unused) { } | 28 | void __init x86_init_uint_noop(unsigned int unused) { } |
29 | void __init x86_init_pgd_start_noop(void) { } | 29 | void __init x86_init_pgd_init_noop(void) { } |
30 | void __init x86_init_pgd_done_noop(pgd_t *unused) { } | 30 | void __init x86_init_pgd_done_noop(pgd_t *unused) { } |
31 | int __init iommu_init_noop(void) { return 0; } | 31 | int __init iommu_init_noop(void) { return 0; } |
32 | void iommu_shutdown_noop(void) { } | 32 | void iommu_shutdown_noop(void) { } |
@@ -69,7 +69,7 @@ struct x86_init_ops x86_init __initdata = { | |||
69 | }, | 69 | }, |
70 | 70 | ||
71 | .paging = { | 71 | .paging = { |
72 | .pagetable_setup_start = native_pagetable_setup_start, | 72 | .pagetable_init = native_pagetable_init, |
73 | .pagetable_setup_done = native_pagetable_setup_done, | 73 | .pagetable_setup_done = native_pagetable_setup_done, |
74 | }, | 74 | }, |
75 | 75 | ||
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c index c4aa1b25ba34..0e38e0e88046 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c | |||
@@ -445,7 +445,7 @@ static inline void permanent_kmaps_init(pgd_t *pgd_base) | |||
445 | } | 445 | } |
446 | #endif /* CONFIG_HIGHMEM */ | 446 | #endif /* CONFIG_HIGHMEM */ |
447 | 447 | ||
448 | void __init native_pagetable_setup_start(void) | 448 | void __init native_pagetable_init(void) |
449 | { | 449 | { |
450 | unsigned long pfn, va; | 450 | unsigned long pfn, va; |
451 | pgd_t *pgd, *base = swapper_pg_dir; | 451 | pgd_t *pgd, *base = swapper_pg_dir; |
@@ -493,7 +493,7 @@ void __init native_pagetable_setup_done(pgd_t *base) | |||
493 | * If we're booting paravirtualized under a hypervisor, then there are | 493 | * If we're booting paravirtualized under a hypervisor, then there are |
494 | * more options: we may already be running PAE, and the pagetable may | 494 | * more options: we may already be running PAE, and the pagetable may |
495 | * or may not be based in swapper_pg_dir. In any case, | 495 | * or may not be based in swapper_pg_dir. In any case, |
496 | * paravirt_pagetable_setup_start() will set up swapper_pg_dir | 496 | * paravirt_pagetable_init() will set up swapper_pg_dir |
497 | * appropriately for the rest of the initialization to work. | 497 | * appropriately for the rest of the initialization to work. |
498 | * | 498 | * |
499 | * In general, pagetable_init() assumes that the pagetable may already | 499 | * In general, pagetable_init() assumes that the pagetable may already |
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c index 32e66c8d0149..624efbefb942 100644 --- a/arch/x86/xen/mmu.c +++ b/arch/x86/xen/mmu.c | |||
@@ -1174,7 +1174,7 @@ 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 __init xen_pagetable_setup_start(void) | 1177 | static void __init xen_pagetable_init(void) |
1178 | { | 1178 | { |
1179 | } | 1179 | } |
1180 | 1180 | ||
@@ -2068,7 +2068,7 @@ static const struct pv_mmu_ops xen_mmu_ops __initconst = { | |||
2068 | void __init xen_init_mmu_ops(void) | 2068 | void __init xen_init_mmu_ops(void) |
2069 | { | 2069 | { |
2070 | x86_init.mapping.pagetable_reserve = xen_mapping_pagetable_reserve; | 2070 | x86_init.mapping.pagetable_reserve = xen_mapping_pagetable_reserve; |
2071 | x86_init.paging.pagetable_setup_start = xen_pagetable_setup_start; | 2071 | x86_init.paging.pagetable_init = xen_pagetable_init; |
2072 | x86_init.paging.pagetable_setup_done = xen_pagetable_setup_done; | 2072 | x86_init.paging.pagetable_setup_done = xen_pagetable_setup_done; |
2073 | pv_mmu_ops = xen_mmu_ops; | 2073 | pv_mmu_ops = xen_mmu_ops; |
2074 | 2074 | ||