Lines Matching refs:pgd
54 pgd_t *pgd; in show_pte() local
57 pgd = mm->pgd; in show_pte()
59 pgd = get_TTB(); in show_pte()
61 if (unlikely(!pgd)) in show_pte()
62 pgd = swapper_pg_dir; in show_pte()
65 printk(KERN_ALERT "pgd = %p\n", pgd); in show_pte()
66 pgd += pgd_index(addr); in show_pte()
68 (u32)(sizeof(*pgd) * 2), (u64)pgd_val(*pgd)); in show_pte()
75 if (pgd_none(*pgd)) in show_pte()
78 if (pgd_bad(*pgd)) { in show_pte()
83 pud = pud_offset(pgd, addr); in show_pte()
121 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address) in vmalloc_sync_one() argument
128 pgd += index; in vmalloc_sync_one()
129 pgd_k = init_mm.pgd + index; in vmalloc_sync_one()
134 pud = pud_offset(pgd, address); in vmalloc_sync_one()