powerpc/64s: xmon do not dump hash fields when using radix mode

Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Nicholas Piggin 2018-09-15 01:30:54 +10:00 committed by Michael Ellerman
parent 655deecf67
commit e83cbf7fb7
1 changed files with 21 additions and 19 deletions

View File

@ -2378,6 +2378,7 @@ static void dump_one_paca(int cpu)
DUMP(p, cpu_start, "%#-*x");
DUMP(p, kexec_state, "%#-*x");
#ifdef CONFIG_PPC_BOOK3S_64
if (!early_radix_enabled()) {
for (i = 0; i < SLB_NUM_BOLTED; i++) {
u64 esid, vsid;
@ -2403,6 +2404,7 @@ static void dump_one_paca(int cpu)
printf(" %-*s[%d] = 0x%016x\n",
22, "slb_cache", i, p->slb_cache[i]);
}
}
DUMP(p, rfi_flush_fallback_area, "%-*px");
#endif