diff mbox series

rasdaemon: decode AER error according to PCIe specifications

Message ID 1582517369-25825-1-git-send-email-lvying6@huawei.com (mailing list archive)
State New, archived
Headers show
Series rasdaemon: decode AER error according to PCIe specifications | expand

Commit Message

Lv Ying Feb. 24, 2020, 4:09 a.m. UTC
Corrected/Uncorrected AER error should be decoded according to PCIe
specification: "Correctable/Uncorrectable Error severity Register",
kernel has already followed this specification.

lspci uses abbreviated naming for AER error strings.  Adopt the same naming
convention for the AER printing so they match.

Signed-off-by: lvying <lvying6@huawei.com>
---
 ras-aer-handler.c | 39 ++++++++++++++++++++++++---------------
 1 file changed, 24 insertions(+), 15 deletions(-)
diff mbox series

Patch

diff --git a/ras-aer-handler.c b/ras-aer-handler.c
index 8ddd439..42a7218 100644
--- a/ras-aer-handler.c
+++ b/ras-aer-handler.c
@@ -29,27 +29,36 @@ 
 /* bit field meaning for correctable error */
 static const char *aer_cor_errors[32] = {
 	/* Correctable errors */
-	[0]  = "Receiver Error",
-	[6]  = "Bad TLP",
-	[7]  = "Bad DLLP",
-	[8]  = "RELAY_NUM Rollover",
-	[12] = "Replay Timer Timeout",
-	[13] = "Advisory Non-Fatal",
+	[0]  = "RxErr",
+	[6]  = "BadTLP",
+	[7]  = "BadDLLP",
+	[8]  = "Rollover",
+	[12] = "Timeout",
+	[13] = "NonFatalErr",
+	[14] = "CorrIntErr",
+	[15] = "HeaderOF",
 };
 
 /* bit field meaning for uncorrectable error */
 static const char *aer_uncor_errors[32] = {
 	/* Uncorrectable errors */
-	[4]  = "Data Link Protocol",
-	[12] = "Poisoned TLP",
-	[13] = "Flow Control Protocol",
-	[14] = "Completion Timeout",
-	[15] = "Completer Abort",
-	[16] = "Unexpected Completion",
-	[17] = "Receiver Overflow",
-	[18] = "Malformed TLP",
+	[0] = "Undefined",
+	[4] = "DLP",
+	[5] = "SDES",
+	[12] = "TLP",
+	[13] = "FCP",
+	[14] = "CmpltTO",
+	[15] = "CmpltAbrt",
+	[16] = "UnxCmplt",
+	[17] = "RxOF",
+	[18] = "MalfTLP",
 	[19] = "ECRC",
-	[20] = "Unsupported Request",
+	[20] = "UnsupReq",
+	[21] = "ACSViol",
+	[22] = "UncorrIntErr",
+	[23] = "BlockedTLP",
+	[24] = "AtomicOpBlocked",
+	[25] = "TLPBlockedErr",
 };
 
 #define BUF_LEN	1024