Home
last modified time | relevance | path

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

/linux-4.1.27/arch/powerpc/mm/
Dmmu_context_hash64.c90 mm->context.pte_frag = NULL; in init_new_context()
107 void *pte_frag; in destroy_pagetable_page() local
110 pte_frag = mm->context.pte_frag; in destroy_pagetable_page()
111 if (!pte_frag) in destroy_pagetable_page()
114 page = virt_to_page(pte_frag); in destroy_pagetable_page()
116 count = ((unsigned long)pte_frag & ~PAGE_MASK) >> PTE_FRAG_SIZE_SHIFT; in destroy_pagetable_page()
Dpgtable_64.c379 void *pte_frag, *ret; in get_from_cache() local
382 ret = mm->context.pte_frag; in get_from_cache()
384 pte_frag = ret + PTE_FRAG_SIZE; in get_from_cache()
388 if (((unsigned long)pte_frag & ~PAGE_MASK) == 0) in get_from_cache()
389 pte_frag = NULL; in get_from_cache()
390 mm->context.pte_frag = pte_frag; in get_from_cache()
415 if (likely(!mm->context.pte_frag)) { in __alloc_for_cache()
417 mm->context.pte_frag = ret + PTE_FRAG_SIZE; in __alloc_for_cache()
/linux-4.1.27/arch/powerpc/include/asm/
Dmmu-book3e.h239 void *pte_frag; member
Dmmu-hash64.h537 void *pte_frag; member
/linux-4.1.27/arch/powerpc/kernel/
Dsetup_64.c687 init_mm.context.pte_frag = NULL; in setup_arch()