Searched refs:pgd_cache (Results 1 – 2 of 2) sorted by relevance
/Linux-v5.4/arch/arm64/mm/ |
D | pgd.c | 18 static struct kmem_cache *pgd_cache __ro_after_init; 27 return kmem_cache_alloc(pgd_cache, gfp); in pgd_alloc() 35 kmem_cache_free(pgd_cache, pgd); in pgd_free() 54 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_SIZE, in pgtable_cache_init()
|
/Linux-v5.4/arch/x86/mm/ |
D | pgtable.c | 358 static struct kmem_cache *pgd_cache; variable 375 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_ALIGN, in pgtable_cache_init() 393 return kmem_cache_alloc(pgd_cache, GFP_PGTABLE_USER); in _pgd_alloc() 401 kmem_cache_free(pgd_cache, pgd); in _pgd_free()
|