Home
last modified time | relevance | path

Searched refs:pgtable_cache (Results 1 – 6 of 6) sorted by relevance

/arch/sparc/include/asm/
Dpgalloc_64.h16 extern struct kmem_cache *pgtable_cache;
20 return kmem_cache_alloc(pgtable_cache, GFP_KERNEL); in pgd_alloc()
25 kmem_cache_free(pgtable_cache, pgd); in pgd_free()
32 return kmem_cache_alloc(pgtable_cache, in pmd_alloc_one()
38 kmem_cache_free(pgtable_cache, pmd); in pmd_free()
84 kmem_cache_free(pgtable_cache, table); in pgtable_free()
/arch/xtensa/include/asm/
Dpgalloc.h43 extern struct kmem_cache *pgtable_cache;
48 return kmem_cache_alloc(pgtable_cache, GFP_KERNEL|__GFP_REPEAT); in pte_alloc_one_kernel()
63 kmem_cache_free(pgtable_cache, pte); in pte_free_kernel()
69 kmem_cache_free(pgtable_cache, page_address(pte)); in pte_free()
/arch/xtensa/mm/
Dmmu.c50 struct kmem_cache *pgtable_cache __read_mostly;
64 pgtable_cache = kmem_cache_create("pgd", in pgtable_cache_init()
/arch/powerpc/include/asm/
Dpgalloc-64.h37 extern struct kmem_cache *pgtable_cache[];
38 #define PGT_CACHE(shift) (pgtable_cache[(shift)-1])
/arch/sparc/mm/
Dtsb.c265 struct kmem_cache *pgtable_cache __read_mostly;
284 pgtable_cache = kmem_cache_create("pgtable_cache", in pgtable_cache_init()
288 if (!pgtable_cache) { in pgtable_cache_init()
/arch/powerpc/mm/
Dinit_64.c95 struct kmem_cache *pgtable_cache[MAX_PGTABLE_INDEX_SIZE]; variable