2005-04-16 15:20:36 -07: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 18:30:27 -08:00
# include <linux/slab.h>
2007-05-06 14:49:51 -07:00
# include <linux/quicklist.h>
2005-04-16 15:20:36 -07:00
# include <asm/spitfire.h>
# include <asm/cpudata.h>
# include <asm/cacheflush.h>
2005-09-19 20:11:57 -07:00
# include <asm/page.h>
2005-04-16 15:20:36 -07:00
/* Page table allocation/freeing. */
2006-01-31 18:30:27 -08:00
static inline pgd_t * pgd_alloc ( struct mm_struct * mm )
2005-04-16 15:20:36 -07:00
{
2007-05-06 14:49:51 -07:00
return quicklist_alloc ( 0 , GFP_KERNEL , NULL ) ;
2005-04-16 15:20:36 -07:00
}
2006-01-31 18:30:27 -08:00
static inline void pgd_free ( pgd_t * pgd )
2005-04-16 15:20:36 -07:00
{
2007-05-06 14:49:51 -07:00
quicklist_free ( 0 , NULL , pgd ) ;
2005-04-16 15:20:36 -07:00
}
# define pud_populate(MM, PUD, PMD) pud_set(PUD, PMD)
2006-01-31 18:30:27 -08:00
static inline pmd_t * pmd_alloc_one ( struct mm_struct * mm , unsigned long addr )
2005-04-16 15:20:36 -07:00
{
2007-05-06 14:49:51 -07:00
return quicklist_alloc ( 0 , GFP_KERNEL , NULL ) ;
2006-01-31 18:30:13 -08:00
}
2006-01-31 18:30:27 -08:00
static inline void pmd_free ( pmd_t * pmd )
2006-01-31 18:30:13 -08:00
{
2007-05-06 14:49:51 -07:00
quicklist_free ( 0 , NULL , pmd ) ;
2005-04-16 15:20:36 -07:00
}
2006-01-31 18:30:27 -08:00
static inline pte_t * pte_alloc_one_kernel ( struct mm_struct * mm ,
unsigned long address )
2005-04-16 15:20:36 -07:00
{
2007-05-06 14:49:51 -07:00
return quicklist_alloc ( 0 , GFP_KERNEL , NULL ) ;
2006-01-31 18:30:13 -08:00
}
2006-01-31 18:30:27 -08:00
static inline struct page * pte_alloc_one ( struct mm_struct * mm ,
unsigned long address )
2006-01-31 18:30:13 -08:00
{
2007-05-06 14:49:51 -07:00
void * pg = quicklist_alloc ( 0 , GFP_KERNEL , NULL ) ;
return pg ? virt_to_page ( pg ) : NULL ;
2005-04-16 15:20:36 -07:00
}
2006-01-31 18:30:27 -08:00
2005-04-16 15:20:36 -07:00
static inline void pte_free_kernel ( pte_t * pte )
{
2007-05-06 14:49:51 -07:00
quicklist_free ( 0 , NULL , pte ) ;
2005-04-16 15:20:36 -07:00
}
static inline void pte_free ( struct page * ptepage )
{
2007-05-06 14:49:51 -07:00
quicklist_free_page ( 0 , NULL , ptepage ) ;
2005-04-16 15:20:36 -07:00
}
2006-01-31 18:30:27 -08: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 ) )
2007-05-06 14:49:51 -07:00
static inline void check_pgt_cache ( void )
{
quicklist_trim ( 0 , NULL , 25 , 16 ) ;
}
2005-04-16 15:20:36 -07:00
# endif /* _SPARC64_PGALLOC_H */