@@ -344,6 +344,13 @@
"advice": "The ACPI memory tracking debug has detected an allocation that already exists in the global list of, this indicates a bug in the ACPICA core.",
"label": "KlogAcpiUtTrackDuplicateAllocation",
},
+ {
+ "compare_mode": "string",
+ "log_level": "LOG_LEVEL_HIGH",
+ "pattern": "Could not allocate size",
+ "advice": "The ACPI driver could not allocate memory by function acpi_ut_allocate_zeroed_and_track.",
+ "label": "KlogAcpiUtAllocateMemFail",
+ },
{
"compare_mode": "string",
"log_level": "LOG_LEVEL_HIGH",
@@ -351,6 +358,20 @@
"advice": "The ACPI memory tracking debug has detected an attempt to delete a NULL address, this indicates a bug in the ACPICA core.",
"label": "KlogAcpiUtTrackNullAddrDelete",
},
+ {
+ "compare_mode": "string",
+ "log_level": "LOG_LEVEL_HIGH",
+ "pattern": "Could not free memory",
+ "advice": "The ACPI driver could not free allocated memory, this indicates a bug in the ACPICA core.",
+ "label": "KlogAcpiUtMemFreeFail",
+ },
+ {
+ "compare_mode": "string",
+ "log_level": "LOG_LEVEL_HIGH",
+ "pattern": "Empty allocation list, nothing to free!",
+ "advice": "The ACPI driver could not remove allocated memory, this indicates a bug in the ACPICA core.",
+ "label": "KlogAcpiUtRemoveAllocateMemFail",
+ },
{
"compare_mode": "string",
"log_level": "LOG_LEVEL_HIGH",
These messages are specific to the ACPI uttrack driver. Signed-off-by: Ivan Hu <ivan.hu@canonical.com> --- data/klog.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+)