Commit c9d8dda4 authored by Mahesh Salgaonkar's avatar Mahesh Salgaonkar Committed by Michael Ellerman

powerpc/pseries/mce: Improve array initialization.

This is a follow up to the patch that fixed misleading print for TLB
mutlihit due to wrongly populated mc_err_types[] array. Convert all the
static array initialization to '[x] = val' style for better
readability of array indexing and avoid any further confusion.
Suggested-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Signed-off-by: default avatarMahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 56c46bba
...@@ -539,44 +539,44 @@ static void pseries_print_mce_info(struct pt_regs *regs, ...@@ -539,44 +539,44 @@ static void pseries_print_mce_info(struct pt_regs *regs,
int disposition = rtas_error_disposition(errp); int disposition = rtas_error_disposition(errp);
static const char * const initiators[] = { static const char * const initiators[] = {
"Unknown", [0] = "Unknown",
"CPU", [1] = "CPU",
"PCI", [2] = "PCI",
"ISA", [3] = "ISA",
"Memory", [4] = "Memory",
"Power Mgmt", [5] = "Power Mgmt",
}; };
static const char * const mc_err_types[] = { static const char * const mc_err_types[] = {
"UE", [0] = "UE",
"SLB", [1] = "SLB",
"ERAT", [2] = "ERAT",
"Unknown", [3] = "Unknown",
"TLB", [4] = "TLB",
"D-Cache", [5] = "D-Cache",
"Unknown", [6] = "Unknown",
"I-Cache", [7] = "I-Cache",
}; };
static const char * const mc_ue_types[] = { static const char * const mc_ue_types[] = {
"Indeterminate", [0] = "Indeterminate",
"Instruction fetch", [1] = "Instruction fetch",
"Page table walk ifetch", [2] = "Page table walk ifetch",
"Load/Store", [3] = "Load/Store",
"Page table walk Load/Store", [4] = "Page table walk Load/Store",
}; };
/* SLB sub errors valid values are 0x0, 0x1, 0x2 */ /* SLB sub errors valid values are 0x0, 0x1, 0x2 */
static const char * const mc_slb_types[] = { static const char * const mc_slb_types[] = {
"Parity", [0] = "Parity",
"Multihit", [1] = "Multihit",
"Indeterminate", [2] = "Indeterminate",
}; };
/* TLB and ERAT sub errors valid values are 0x1, 0x2, 0x3 */ /* TLB and ERAT sub errors valid values are 0x1, 0x2, 0x3 */
static const char * const mc_soft_types[] = { static const char * const mc_soft_types[] = {
"Unknown", [0] = "Unknown",
"Parity", [1] = "Parity",
"Multihit", [2] = "Multihit",
"Indeterminate", [3] = "Indeterminate",
}; };
if (!rtas_error_extended(errp)) { if (!rtas_error_extended(errp)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment