Commit e83cbf7f authored by Nicholas Piggin's avatar Nicholas Piggin Committed by Michael Ellerman
Browse files

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

parent 655deecf
Loading
Loading
Loading
Loading
+21 −19
Original line number Diff line number Diff line
@@ -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