Lines Matching refs:pgd
39 pgd_t *pgd; in show_pte() local
42 pgd = mm->pgd; in show_pte()
44 pgd = get_TTB(); in show_pte()
46 if (unlikely(!pgd)) in show_pte()
47 pgd = swapper_pg_dir; in show_pte()
50 printk(KERN_ALERT "pgd = %p\n", pgd); in show_pte()
51 pgd += pgd_index(addr); in show_pte()
53 (u32)(sizeof(*pgd) * 2), (u64)pgd_val(*pgd)); in show_pte()
60 if (pgd_none(*pgd)) in show_pte()
63 if (pgd_bad(*pgd)) { in show_pte()
68 pud = pud_offset(pgd, addr); in show_pte()
106 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address) in vmalloc_sync_one() argument
113 pgd += index; in vmalloc_sync_one()
114 pgd_k = init_mm.pgd + index; in vmalloc_sync_one()
119 pud = pud_offset(pgd, address); in vmalloc_sync_one()