blob: 0d15e21eefec89efb7b382f5292ade7b987bc3c6 [file] [log] [blame]
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07001#ifndef _ASM_X86_PGALLOC_H
2#define _ASM_X86_PGALLOC_H
3
4#include <linux/threads.h>
5#include <linux/mm.h> /* for struct page */
6#include <linux/pagemap.h>
7
Jeremy Fitzhardinge1d262d32008-03-17 16:36:56 -07008#ifdef CONFIG_PARAVIRT
9#include <asm/paravirt.h>
10#else
11#define paravirt_alloc_pt(mm, pfn) do { } while (0)
12#define paravirt_alloc_pd(mm, pfn) do { } while (0)
13#define paravirt_alloc_pd_clone(pfn, clonepfn, start, count) do { } while (0)
14#define paravirt_release_pt(pfn) do { } while (0)
15#define paravirt_release_pd(pfn) do { } while (0)
16#endif
17
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070018/*
19 * Allocate and free page tables.
20 */
21extern pgd_t *pgd_alloc(struct mm_struct *);
22extern void pgd_free(struct mm_struct *mm, pgd_t *pgd);
23
24extern pte_t *pte_alloc_one_kernel(struct mm_struct *, unsigned long);
25extern pgtable_t pte_alloc_one(struct mm_struct *, unsigned long);
26
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070027/* Should really implement gc for free page table pages. This could be
28 done with a reference count in struct page. */
29
30static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
31{
32 BUG_ON((unsigned long)pte & (PAGE_SIZE-1));
33 free_page((unsigned long)pte);
34}
35
36static inline void pte_free(struct mm_struct *mm, struct page *pte)
37{
38 __free_page(pte);
39}
40
41extern void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte);
42
Thomas Gleixner96a388d2007-10-11 11:20:03 +020043#ifdef CONFIG_X86_32
44# include "pgalloc_32.h"
45#else
46# include "pgalloc_64.h"
47#endif
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070048
49#endif /* _ASM_X86_PGALLOC_H */