Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1e30a63 authored by Atsushi Nemoto's avatar Atsushi Nemoto Committed by Ralf Baechle
Browse files

[MIPS] Fix dump_tlb.c warning and cleanup.

parent 5665a0ac
Loading
Loading
Loading
Loading
+15 −18
Original line number Diff line number Diff line
@@ -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