Searched refs:pgd_cache (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/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-6.1.9/arch/x86/mm/ |
D | pgtable.c | 365 static struct kmem_cache *pgd_cache; variable 382 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_ALIGN, in pgtable_cache_init() 400 return kmem_cache_alloc(pgd_cache, GFP_PGTABLE_USER); in _pgd_alloc() 408 kmem_cache_free(pgd_cache, pgd); in _pgd_free()
|