2005-04-16 18:20:36 -04:00
|
|
|
/* $Id: pgalloc.h,v 1.30 2001/12/21 04:56:17 davem Exp $ */
|
|
|
|
#ifndef _SPARC64_PGALLOC_H
|
|
|
|
#define _SPARC64_PGALLOC_H
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/mm.h>
|
2006-01-31 21:30:27 -05:00
|
|
|
#include <linux/slab.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
#include <asm/spitfire.h>
|
|
|
|
#include <asm/cpudata.h>
|
|
|
|
#include <asm/cacheflush.h>
|
2005-09-19 23:11:57 -04:00
|
|
|
#include <asm/page.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* Page table allocation/freeing. */
|
2006-12-06 23:33:20 -05:00
|
|
|
extern struct kmem_cache *pgtable_cache;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2006-01-31 21:30:27 -05:00
|
|
|
static inline pgd_t *pgd_alloc(struct mm_struct *mm)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2006-01-31 21:30:27 -05:00
|
|
|
return kmem_cache_alloc(pgtable_cache, GFP_KERNEL);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2006-01-31 21:30:27 -05:00
|
|
|
static inline void pgd_free(pgd_t *pgd)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2006-01-31 21:30:27 -05:00
|
|
|
kmem_cache_free(pgtable_cache, pgd);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#define pud_populate(MM, PUD, PMD) pud_set(PUD, PMD)
|
|
|
|
|
2006-01-31 21:30:27 -05:00
|
|
|
static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2006-01-31 21:30:27 -05:00
|
|
|
return kmem_cache_alloc(pgtable_cache,
|
|
|
|
GFP_KERNEL|__GFP_REPEAT);
|
2006-01-31 21:30:13 -05:00
|
|
|
}
|
|
|
|
|
2006-01-31 21:30:27 -05:00
|
|
|
static inline void pmd_free(pmd_t *pmd)
|
2006-01-31 21:30:13 -05:00
|
|
|
{
|
2006-01-31 21:30:27 -05:00
|
|
|
kmem_cache_free(pgtable_cache, pmd);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2006-01-31 21:30:27 -05:00
|
|
|
static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
|
|
|
|
unsigned long address)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2006-01-31 21:30:27 -05:00
|
|
|
return kmem_cache_alloc(pgtable_cache,
|
|
|
|
GFP_KERNEL|__GFP_REPEAT);
|
2006-01-31 21:30:13 -05:00
|
|
|
}
|
|
|
|
|
2006-01-31 21:30:27 -05:00
|
|
|
static inline struct page *pte_alloc_one(struct mm_struct *mm,
|
|
|
|
unsigned long address)
|
2006-01-31 21:30:13 -05:00
|
|
|
{
|
2006-01-31 21:30:27 -05:00
|
|
|
return virt_to_page(pte_alloc_one_kernel(mm, address));
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
2006-01-31 21:30:27 -05:00
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
static inline void pte_free_kernel(pte_t *pte)
|
|
|
|
{
|
2006-01-31 21:30:27 -05:00
|
|
|
kmem_cache_free(pgtable_cache, pte);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void pte_free(struct page *ptepage)
|
|
|
|
{
|
2006-01-31 21:30:27 -05:00
|
|
|
pte_free_kernel(page_address(ptepage));
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2006-01-31 21:30:27 -05:00
|
|
|
|
|
|
|
#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 check_pgt_cache() do { } while (0)
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
#endif /* _SPARC64_PGALLOC_H */
|