Merge pull request #846 from wenjianhn/uefi-cper
Scorecard supply-chain security / Scorecard analysis (push) Failing after 1m37s
CodeQL / Analyze (go) (push) Failing after 4m6s

Add UEFI Common Platform Error Record (CPER) support
This commit is contained in:
Kubernetes Prow Robot
2025-03-11 22:19:46 -07:00
committed by GitHub
+21
View File
@@ -15,6 +15,11 @@
"type": "XfsShutdown",
"reason": "XfsHasNotShutDown",
"message": "XFS has not shutdown"
},
{
"type": "CperHardwareErrorFatal",
"reason": "CperHardwareHasNoFatalError",
"message": "UEFI CPER has no fatal error"
}
],
"rules": [
@@ -69,6 +74,22 @@
"reason": "MemoryReadError",
"pattern": "CE memory read error .*"
},
{
"type": "temporary",
"reason": "CperHardwareErrorCorrected",
"pattern": ".*\\[Hardware Error\\]: event severity: corrected$"
},
{
"type": "temporary",
"reason": "CperHardwareErrorRecoverable",
"pattern": ".*\\[Hardware Error\\]: event severity: recoverable$"
},
{
"type": "permanent",
"condition": "CperHardwareErrorFatal",
"reason": "CperHardwareErrorFatal",
"pattern": ".*\\[Hardware Error\\]: event severity: fatal$"
},
{
"type": "permanent",
"condition": "KernelDeadlock",