diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-03-17 19:36:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-24 17:57:30 -0400 |
commit | 397f687ab7f840dbe50353c4b60108672b653d0c (patch) | |
tree | 4b33f2c8e999029a2360bf2dd35cb5f72a8f7041 /arch/x86/mm/pgtable.c | |
parent | 1d262d3a4932b5ae7222c8d9900696650ee95188 (diff) |
x86: move pte functions into common asm/pgalloc.h
Common definitions for 2-level pagetable functions.
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/x86/mm/pgtable.c')
-rw-r--r-- | arch/x86/mm/pgtable.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/mm/pgtable.c b/arch/x86/mm/pgtable.c index ed16b7704a3c..83765328e265 100644 --- a/arch/x86/mm/pgtable.c +++ b/arch/x86/mm/pgtable.c | |||
@@ -21,6 +21,13 @@ pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address) | |||
21 | return pte; | 21 | return pte; |
22 | } | 22 | } |
23 | 23 | ||
24 | void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte) | ||
25 | { | ||
26 | pgtable_page_dtor(pte); | ||
27 | paravirt_release_pt(page_to_pfn(pte)); | ||
28 | tlb_remove_page(tlb, pte); | ||
29 | } | ||
30 | |||
24 | #ifdef CONFIG_X86_64 | 31 | #ifdef CONFIG_X86_64 |
25 | static inline void pgd_list_add(pgd_t *pgd) | 32 | static inline void pgd_list_add(pgd_t *pgd) |
26 | { | 33 | { |