[MIPS] Fix dump_tlb.c warning and cleanup.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Родитель
5665a0ac59
Коммит
d1e30a6347
|
@ -158,18 +158,17 @@ void dump_list_process(struct task_struct *t, void *address)
|
|||
printk("task->mm == %8p\n", t->mm);
|
||||
//printk("tasks->mm.pgd == %08x\n", (unsigned int) t->mm->pgd);
|
||||
|
||||
if (addr > KSEG0)
|
||||
if (addr > KSEG0) {
|
||||
page_dir = pgd_offset_k(0);
|
||||
else if (t->mm) {
|
||||
page_dir = pgd_offset(t->mm, 0);
|
||||
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 if (t->mm) {
|
||||
} else if (t->mm) {
|
||||
page_dir = pgd_offset(t->mm, 0);
|
||||
pgd = pgd_offset(t->mm, addr);
|
||||
} else {
|
||||
printk("Current thread has no mm\n");
|
||||
return;
|
||||
}
|
||||
printk("page_dir == %08x\n", (unsigned int) page_dir);
|
||||
printk("pgd == %08x, ", (unsigned int) pgd);
|
||||
pud = pud_offset(pgd, addr);
|
||||
printk("pud == %08x, ", (unsigned int) pud);
|
||||
|
@ -179,8 +178,6 @@ void dump_list_process(struct task_struct *t, void *address)
|
|||
|
||||
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
|
||||
|
|
Загрузка…
Ссылка в новой задаче