Ver Fonte

Fix the diagnostic dump for the XTLB refill handler.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Maciej W. Rozycki há 20 anos atrás
pai
commit
4c0a2d4275
1 ficheiros alterados com 8 adições e 1 exclusões
  1. 8 1
      arch/mips/mm/tlbex.c

+ 8 - 1
arch/mips/mm/tlbex.c

@@ -1238,8 +1238,15 @@ static void __init build_r4000_tlb_refill_handler(void)
 	{
 		int i;
 
+		f = final_handler;
+#ifdef CONFIG_64BIT
+		if (final_len > 32)
+			final_len = 64;
+		else
+			f = final_handler + 32;
+#endif /* CONFIG_64BIT */
 		for (i = 0; i < final_len; i++)
-			printk("%08x\n", final_handler[i]);
+			printk("%08x\n", f[i]);
 	}
 #endif