From patchwork Mon Dec 17 11:46:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: data: klog.json: move the most generic parse/execition failure message down From: Colin King X-Patchwork-Id: 206841 Message-Id: <1355744792-691-1-git-send-email-colin.king@canonical.com> To: fwts-devel@lists.ubuntu.com Date: Mon, 17 Dec 2012 11:46:32 +0000 From: Colin Ian King The most generic parse/execution failure message should be handled last so that the more specific matches get matched first. Move it down the list. Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Alex Hung --- data/klog.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/data/klog.json b/data/klog.json index 00c44e7..665774b 100644 --- a/data/klog.json +++ b/data/klog.json @@ -2739,14 +2739,6 @@ "label": "KlogAcpiTimeout" }, { - "compare_mode": "string", - "log_level": "LOG_LEVEL_HIGH", - "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", - "pattern": "Method parse/execution failed", - "advice": "The ACPI driver encounted a parse or execution error on some ACPI AML code. This is unexepcted and normally indicates that there is a bug in the compiled AML code. It could be a programming fault or an AML compiler issue. See acpi_ps_parse_aml().", - "label": "KlogAcpiParseExecAmlFailed" - }, - { "compare_mode": "regex", "log_level": "LOG_LEVEL_HIGH", "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", @@ -2835,6 +2827,14 @@ "label": "KlogAcpiMutexNotAcquired" }, { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "Method parse/execution failed", + "advice": "The ACPI driver encounted a parse or execution error on some ACPI AML code. This is unexepcted and normally indicates that there is a bug in the compiled AML code. It could be a programming fault or an AML compiler issue. See acpi_ps_parse_aml().", + "label": "KlogAcpiParseExecAmlFailed" + }, + { "compare_mode": "regex", "log_level": "LOG_LEVEL_HIGH", "tag": "FWTS_TAG_ACPI",