Searched defs:pmd_table (Results 1 - 7 of 7) sorted by relevance

/arch/unicore32/kernel/
H A Dhibernate.c39 pmd_t *pmd_table; local
42 pmd_table = pmd_offset(pud, 0);
44 return pmd_table;
/arch/x86/power/
H A Dhibernate_32.c36 pmd_t *pmd_table; local
39 pmd_table = (pmd_t *)get_safe_page(GFP_ATOMIC);
40 if (!pmd_table)
43 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
46 BUG_ON(pmd_table != pmd_offset(pud, 0));
49 pmd_table = pmd_offset(pud, 0);
52 return pmd_table;
/arch/um/kernel/
H A Dmem.c96 pmd_t *pmd_table = (pmd_t *) alloc_bootmem_low_pages(PAGE_SIZE); local
97 set_pud(pud, __pud(_KERNPG_TABLE + (unsigned long) __pa(pmd_table)));
98 if (pmd_table != pmd_offset(pud, 0))
/arch/arm/include/asm/
H A Dpgtable-3level.h145 #define pmd_table(pmd) ((pmd_val(pmd) & PMD_TYPE_MASK) == \ macro
234 #define pmd_trans_huge(pmd) (pmd_val(pmd) && !pmd_table(pmd))
/arch/x86/mm/
H A Dinit_32.c72 pmd_t *pmd_table; local
76 pmd_table = (pmd_t *)alloc_low_page();
77 paravirt_alloc_pmd(&init_mm, __pa(pmd_table) >> PAGE_SHIFT);
78 set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
80 BUG_ON(pmd_table != pmd_offset(pud, 0));
82 return pmd_table;
86 pmd_table = pmd_offset(pud, 0);
88 return pmd_table;
/arch/arm/kvm/
H A Dmmu.c104 pmd_t *pmd_table = pmd_offset(pud, 0); local
108 pmd_free(NULL, pmd_table);
/arch/arm64/include/asm/
H A Dpgtable.h338 #define pmd_table(pmd) ((pmd_val(pmd) & PMD_TYPE_MASK) == \ macro

Completed in 178 milliseconds