Home
last modified time | relevance | path

Searched refs:pte_frag (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/arch/powerpc/mm/
Dmmu_context_hash64.c90 mm->context.pte_frag = NULL; in init_new_context()
110 void *pte_frag; in destroy_pagetable_page() local
113 pte_frag = mm->context.pte_frag; in destroy_pagetable_page()
114 if (!pte_frag) in destroy_pagetable_page()
117 page = virt_to_page(pte_frag); in destroy_pagetable_page()
119 count = ((unsigned long)pte_frag & ~PAGE_MASK) >> PTE_FRAG_SIZE_SHIFT; in destroy_pagetable_page()
Dpgtable_64.c369 void *pte_frag, *ret; in get_from_cache() local
372 ret = mm->context.pte_frag; in get_from_cache()
374 pte_frag = ret + PTE_FRAG_SIZE; in get_from_cache()
378 if (((unsigned long)pte_frag & ~PAGE_MASK) == 0) in get_from_cache()
379 pte_frag = NULL; in get_from_cache()
380 mm->context.pte_frag = pte_frag; in get_from_cache()
405 if (likely(!mm->context.pte_frag)) { in __alloc_for_cache()
407 mm->context.pte_frag = ret + PTE_FRAG_SIZE; in __alloc_for_cache()
/linux-4.4.14/arch/powerpc/include/asm/
Dmmu-book3e.h239 void *pte_frag; member
Dmmu-hash64.h538 void *pte_frag; member
/linux-4.4.14/arch/powerpc/kernel/
Dsetup_64.c711 init_mm.context.pte_frag = NULL; in setup_arch()