pgalloc_64.h 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef _SPARC64_PGALLOC_H
#define _SPARC64_PGALLOC_H

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/slab.h>

#include <asm/spitfire.h>
#include <asm/cpudata.h>
#include <asm/cacheflush.h>
#include <asm/page.h>

/* Page table allocation/freeing. */

16 17
extern struct kmem_cache *pgtable_cache;

18 19
static inline pgd_t *pgd_alloc(struct mm_struct *mm)
{
20
	return kmem_cache_alloc(pgtable_cache, GFP_KERNEL);
21 22 23 24
}

static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
{
25
	kmem_cache_free(pgtable_cache, pgd);
26 27 28 29 30 31
}

#define pud_populate(MM, PUD, PMD)	pud_set(PUD, PMD)

static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
{
32 33
	return kmem_cache_alloc(pgtable_cache,
				GFP_KERNEL|__GFP_REPEAT);
34 35 36 37
}

static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
{
38
	kmem_cache_free(pgtable_cache, pmd);
39 40 41 42 43
}

static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
					  unsigned long address)
{
44
	return (pte_t *)__get_free_page(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO);
45 46 47 48 49 50
}

static inline pgtable_t pte_alloc_one(struct mm_struct *mm,
					unsigned long address)
{
	struct page *page;
51
	pte_t *pte;
52

53 54
	pte = pte_alloc_one_kernel(mm, address);
	if (!pte)
55
		return NULL;
56
	page = virt_to_page(pte);
57 58 59 60 61 62
	pgtable_page_ctor(page);
	return page;
}

static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
{
63
	free_page((unsigned long)pte);
64 65 66 67 68
}

static inline void pte_free(struct mm_struct *mm, pgtable_t ptepage)
{
	pgtable_page_dtor(ptepage);
69
	__free_page(ptepage);
70 71 72 73 74 75 76
}

#define pmd_populate_kernel(MM, PMD, PTE)	pmd_set(PMD, PTE)
#define pmd_populate(MM,PMD,PTE_PAGE)		\
	pmd_populate_kernel(MM,PMD,page_address(PTE_PAGE))
#define pmd_pgtable(pmd) pmd_page(pmd)

77
#define check_pgt_cache()	do { } while (0)
78

P
Peter Zijlstra 已提交
79 80 81
#define __pte_free_tlb(tlb, pte, addr)	pte_free((tlb)->mm, pte)
#define __pmd_free_tlb(tlb, pmd, addr)	pmd_free((tlb)->mm, pmd)

82
#endif /* _SPARC64_PGALLOC_H */