@@ -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
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(-)