powerpc/64s: Machine check print NIP
Print the faulting address of the machine check that may help with debugging. The effective address reported can be a target memory address rather than the faulting instruction address. Fix up a dangling bracket while here. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
6c8343e82b
commit
fc84427b7e
|
@ -310,7 +310,8 @@ void machine_check_print_event_info(struct machine_check_event *evt)
|
|||
|
||||
printk("%s%s Machine check interrupt [%s]\n", level, sevstr,
|
||||
evt->disposition == MCE_DISPOSITION_RECOVERED ?
|
||||
"Recovered" : "[Not recovered");
|
||||
"Recovered" : "Not recovered");
|
||||
printk("%s NIP: %016llx\n", level, evt->srr0);
|
||||
printk("%s Initiator: %s\n", level,
|
||||
evt->initiator == MCE_INITIATOR_CPU ? "CPU" : "Unknown");
|
||||
switch (evt->error_type) {
|
||||
|
|
Loading…
Reference in New Issue