Lines Matching refs:ptdesc
17 struct ptdesc *ptdesc = pagetable_alloc((GFP_DMA | __GFP_ZERO) & in pte_alloc_one_kernel() local
20 if (!ptdesc) in pte_alloc_one_kernel()
23 return ptdesc_address(ptdesc); in pte_alloc_one_kernel()
38 struct ptdesc *ptdesc = virt_to_ptdesc(pgtable); in __pte_free_tlb() local
40 pagetable_pte_dtor(ptdesc); in __pte_free_tlb()
41 pagetable_free(ptdesc); in __pte_free_tlb()
46 struct ptdesc *ptdesc = pagetable_alloc(GFP_DMA | __GFP_ZERO, 0); in pte_alloc_one() local
49 if (!ptdesc) in pte_alloc_one()
51 if (!pagetable_pte_ctor(ptdesc)) { in pte_alloc_one()
52 pagetable_free(ptdesc); in pte_alloc_one()
56 pte = ptdesc_address(ptdesc); in pte_alloc_one()
62 struct ptdesc *ptdesc = virt_to_ptdesc(pgtable); in pte_free() local
64 pagetable_pte_dtor(ptdesc); in pte_free()
65 pagetable_free(ptdesc); in pte_free()
82 struct ptdesc *ptdesc = pagetable_alloc((GFP_DMA | __GFP_NOWARN) & in pgd_alloc() local
85 if (!ptdesc) in pgd_alloc()
87 new_pgd = ptdesc_address(ptdesc); in pgd_alloc()