diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2005-06-29 06:43:51 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:31:32 -0400 |
commit | 4c0a2d4275b6993066810c42c4c6b0729d3b67a9 (patch) | |
tree | 1fed3157fbefd60023559a152b5f768be74633a9 /arch/mips/mm | |
parent | 41986a6e7ea3b3acb452d00d56acda7c63761736 (diff) |
Fix the diagnostic dump for the XTLB refill handler.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/tlbex.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index c7b3bf22bf3f..19bf0cc40917 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -1238,8 +1238,15 @@ static void __init build_r4000_tlb_refill_handler(void) | |||
1238 | { | 1238 | { |
1239 | int i; | 1239 | int i; |
1240 | 1240 | ||
1241 | f = final_handler; | ||
1242 | #ifdef CONFIG_64BIT | ||
1243 | if (final_len > 32) | ||
1244 | final_len = 64; | ||
1245 | else | ||
1246 | f = final_handler + 32; | ||
1247 | #endif /* CONFIG_64BIT */ | ||
1241 | for (i = 0; i < final_len; i++) | 1248 | for (i = 0; i < final_len; i++) |
1242 | printk("%08x\n", final_handler[i]); | 1249 | printk("%08x\n", f[i]); |
1243 | } | 1250 | } |
1244 | #endif | 1251 | #endif |
1245 | 1252 | ||