Searched refs:pgd_cache (Results 1 – 6 of 6) sorted by relevance
/linux-4.4.14/arch/arm64/mm/ |
D | pgd.c | 31 static struct kmem_cache *pgd_cache; variable 38 return kmem_cache_alloc(pgd_cache, PGALLOC_GFP); in pgd_alloc() 46 kmem_cache_free(pgd_cache, pgd); in pgd_free() 55 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_SIZE, in pgd_cache_init()
|
/linux-4.4.14/arch/x86/mm/ |
D | pgtable.c | 293 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.4.14/arch/microblaze/include/asm/ |
D | pgalloc.h | 33 unsigned long *pgd_cache; member 38 #define pgd_quicklist (quicklists.pgd_cache)
|
/linux-4.4.14/arch/tile/mm/ |
D | init.c | 890 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()
|
D | pgtable.c | 216 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.4.14/arch/tile/include/asm/ |
D | pgtable.h | 47 extern struct kmem_cache *pgd_cache;
|