@@ -2451,6 +2451,13 @@
"advice": "The ACPI bus scan failed and so a root bridge hotplug insertion failed. See handle_root_bridge_insertion().",
"label": "KlogAcpiPciRootBridgeAddFailed"
},
+ {
+ "compare_mode": "string",
+ "log_level": "LOG_LEVEL_HIGH",
+ "pattern": "did not return any object",
+ "advice": "An ACPI object find and evaluate has failed, it didn't return any value.",
+ "label": "KlogAcpiNoObjReturn"
+ },
{
"compare_mode": "regex",
"log_level": "LOG_LEVEL_HIGH",
@@ -2458,6 +2465,13 @@
"advice": "An ACPI object find and evaluate has failed, the return object requested does not match the requested type. This is most probably a firmware bug.",
"label": "KlogAcpiIncorrectReturnType"
},
+ {
+ "compare_mode": "regex",
+ "log_level": "LOG_LEVEL_HIGH",
+ "pattern": "Insufficient arguments .* are required",
+ "advice": "An ACPI object evaluate has failed, checking incoming argument count against the method definition.",
+ "label": "KlogAcpiInsufficientArgs"
+ },
{
"compare_mode": "string",
"log_level": "LOG_LEVEL_HIGH",
These messages are specific to the ACPI nsxfeval driver. Signed-off-by: Ivan Hu <ivan.hu@canonical.com> --- data/klog.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+)