diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-03-17 19:36:54 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-24 17:57:30 -0400 |
commit | 79bf6d66abb5a20813a19dd365dfc49104f0bb88 (patch) | |
tree | 53fd5c0ab26ef78490a102b47f3743cf0d99bc42 /arch | |
parent | 94bc891b00e40cbec375feb4568780af183fd7f4 (diff) |
x86: convert pgalloc_64.h from macros to inlines
Convert asm-x86/pgalloc_64.h from macros into functions (#include hell
prevents __*_free_tlb from being inline, but they're probably a bit
big to inline anyway).
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/mm/init_64.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index 1ff7906a9a4d..2d89b7abbc54 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -662,6 +662,22 @@ int memory_add_physaddr_to_nid(u64 start) | |||
662 | EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid); | 662 | EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid); |
663 | #endif | 663 | #endif |
664 | 664 | ||
665 | void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte) | ||
666 | { | ||
667 | pgtable_page_dtor(pte); | ||
668 | tlb_remove_page(tlb, pte); | ||
669 | } | ||
670 | |||
671 | void __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd) | ||
672 | { | ||
673 | tlb_remove_page(tlb, virt_to_page(pmd)); | ||
674 | } | ||
675 | |||
676 | void __pud_free_tlb(struct mmu_gather *tlb, pud_t *pud) | ||
677 | { | ||
678 | tlb_remove_page(tlb, virt_to_page(pud)); | ||
679 | } | ||
680 | |||
665 | #endif /* CONFIG_MEMORY_HOTPLUG */ | 681 | #endif /* CONFIG_MEMORY_HOTPLUG */ |
666 | 682 | ||
667 | static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel, | 683 | static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel, |