Skip to content

Commit

Permalink
Add a few simple error checks to tlb dumper.
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Oct 29, 2005
1 parent d2f755e commit ac351d9
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions arch/mips/lib-32/dump_tlb.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,24 +160,27 @@ void dump_list_process(struct task_struct *t, void *address)

if (addr > KSEG0)
page_dir = pgd_offset_k(0);
else
else if (t->mm) {
page_dir = pgd_offset(t->mm, 0);
printk("page_dir == %08x\n", (unsigned int) page_dir);
printk("page_dir == %08x\n", (unsigned int) page_dir);
} else
printk("Current thread has no mm\n");

if (addr > KSEG0)
pgd = pgd_offset_k(addr);
else
else if (t->mm) {
pgd = pgd_offset(t->mm, addr);
printk("pgd == %08x, ", (unsigned int) pgd);
printk("pgd == %08x, ", (unsigned int) pgd);
pud = pud_offset(pgd, addr);
printk("pud == %08x, ", (unsigned int) pud);

pud = pud_offset(pgd, addr);
printk("pud == %08x, ", (unsigned int) pud);

pmd = pmd_offset(pud, addr);
printk("pmd == %08x, ", (unsigned int) pmd);
pmd = pmd_offset(pud, addr);
printk("pmd == %08x, ", (unsigned int) pmd);

pte = pte_offset(pmd, addr);
printk("pte == %08x, ", (unsigned int) pte);
pte = pte_offset(pmd, addr);
printk("pte == %08x, ", (unsigned int) pte);
} else
printk("Current thread has no mm\n");

page = *pte;
#ifdef CONFIG_64BIT_PHYS_ADDR
Expand Down

0 comments on commit ac351d9

Please sign in to comment.