Home
last modified time | relevance | path

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

/linux-4.1.27/arch/arm64/mm/
Dpgd.c33 static struct kmem_cache *pgd_cache; variable
40 return kmem_cache_alloc(pgd_cache, PGALLOC_GFP); in pgd_alloc()
48 kmem_cache_free(pgd_cache, pgd); in pgd_free()
57 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_SIZE, in pgd_cache_init()
/linux-4.1.27/arch/x86/mm/
Dpgtable.c293 static struct kmem_cache *pgd_cache; variable
310 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_ALIGN, in pgd_cache_init()
312 if (!pgd_cache) in pgd_cache_init()
332 return kmem_cache_alloc(pgd_cache, PGALLOC_GFP); in _pgd_alloc()
340 kmem_cache_free(pgd_cache, pgd); in _pgd_free()
/linux-4.1.27/arch/microblaze/include/asm/
Dpgalloc.h33 unsigned long *pgd_cache; member
38 #define pgd_quicklist (quicklists.pgd_cache)
/linux-4.1.27/arch/tile/mm/
Dinit.c890 struct kmem_cache *pgd_cache; variable
894 pgd_cache = kmem_cache_create("pgd", SIZEOF_PGD, SIZEOF_PGD, 0, NULL); in pgtable_cache_init()
895 if (!pgd_cache) in pgtable_cache_init()
Dpgtable.c216 pgd_t *pgd = kmem_cache_alloc(pgd_cache, GFP_KERNEL); in pgd_alloc()
225 kmem_cache_free(pgd_cache, pgd); in pgd_free()
/linux-4.1.27/arch/tile/include/asm/
Dpgtable.h47 extern struct kmem_cache *pgd_cache;