diff options
author | Attilio Rao <attilio.rao@citrix.com> | 2012-08-21 16:22:37 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-09-12 09:33:06 -0400 |
commit | 73090f8993a40a2f67fed1ab866a928c68cd3765 (patch) | |
tree | da93d0afc6135448c27899fdbd5afae46153d44c /arch | |
parent | 55d512e245bc7699a8800e23df1a24195dd08217 (diff) |
x86: Remove base argument from x86_init.paging.pagetable_setup_start
We either use swapper_pg_dir or the argument is unused. Preparatory
patch to simplify platform pagetable setup further.
Signed-off-by: Attilio Rao <attilio.rao@citrix.com>
Ackedb-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-2-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 | 6 | ||||
-rw-r--r-- | arch/x86/include/asm/x86_init.h | 2 | ||||
-rw-r--r-- | arch/x86/kernel/setup.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/x86_init.c | 3 | ||||
-rw-r--r-- | arch/x86/mm/init_32.c | 4 | ||||
-rw-r--r-- | arch/x86/xen/mmu.c | 2 |
6 files changed, 10 insertions, 9 deletions
diff --git a/arch/x86/include/asm/pgtable_types.h b/arch/x86/include/asm/pgtable_types.h index 013286a10c2c..e02b875e6922 100644 --- a/arch/x86/include/asm/pgtable_types.h +++ b/arch/x86/include/asm/pgtable_types.h | |||
@@ -303,11 +303,11 @@ 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(pgd_t *base); | 306 | extern void native_pagetable_setup_start(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_noop | 309 | #define native_pagetable_setup_start x86_init_pgd_start_noop |
310 | #define native_pagetable_setup_done x86_init_pgd_noop | 310 | #define native_pagetable_setup_done x86_init_pgd_done_noop |
311 | #endif | 311 | #endif |
312 | 312 | ||
313 | struct seq_file; | 313 | struct seq_file; |
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h index 38155f667144..782ba0c4b266 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h | |||
@@ -85,7 +85,7 @@ struct x86_init_mapping { | |||
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)(pgd_t *base); | 88 | void (*pagetable_setup_start)(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 f4b9b80e1b95..90cbbe00adca 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(swapper_pg_dir); | 964 | x86_init.paging.pagetable_setup_start(); |
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 9f3167e891ef..3b88493ec7ca 100644 --- a/arch/x86/kernel/x86_init.c +++ b/arch/x86/kernel/x86_init.c | |||
@@ -26,7 +26,8 @@ | |||
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_noop(pgd_t *unused) { } | 29 | void __init x86_init_pgd_start_noop(void) { } |
30 | void __init x86_init_pgd_done_noop(pgd_t *unused) { } | ||
30 | int __init iommu_init_noop(void) { return 0; } | 31 | int __init iommu_init_noop(void) { return 0; } |
31 | void iommu_shutdown_noop(void) { } | 32 | void iommu_shutdown_noop(void) { } |
32 | 33 | ||
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c index 575d86f85ce4..c4aa1b25ba34 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c | |||
@@ -445,10 +445,10 @@ 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(pgd_t *base) | 448 | void __init native_pagetable_setup_start(void) |
449 | { | 449 | { |
450 | unsigned long pfn, va; | 450 | unsigned long pfn, va; |
451 | pgd_t *pgd; | 451 | pgd_t *pgd, *base = swapper_pg_dir; |
452 | pud_t *pud; | 452 | pud_t *pud; |
453 | pmd_t *pmd; | 453 | pmd_t *pmd; |
454 | pte_t *pte; | 454 | pte_t *pte; |
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c index 5141d808e751..32e66c8d0149 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(pgd_t *base) | 1177 | static void __init xen_pagetable_setup_start(void) |
1178 | { | 1178 | { |
1179 | } | 1179 | } |
1180 | 1180 | ||