From patchwork Tue Nov 20 11:28:03 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 200303 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 374542C0040 for ; Tue, 20 Nov 2012 22:28:13 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1Talzu-0001Gg-UJ; Tue, 20 Nov 2012 11:28:11 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1Talzs-0001Fo-4A for fwts-devel@lists.ubuntu.com; Tue, 20 Nov 2012 11:28:08 +0000 Received: from cpc3-craw6-2-0-cust180.croy.cable.virginmedia.com ([77.100.248.181] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1Talzs-0006Ln-1p for fwts-devel@lists.ubuntu.com; Tue, 20 Nov 2012 11:28:08 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH 7/8] data: klog.json: ACPICA ACPI_ERROR messages, evevent.c Date: Tue, 20 Nov 2012 11:28:03 +0000 Message-Id: <1353410884-4438-8-git-send-email-colin.king@canonical.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1353410884-4438-1-git-send-email-colin.king@canonical.com> References: <1353410884-4438-1-git-send-email-colin.king@canonical.com> X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: fwts-devel-bounces@lists.ubuntu.com Errors-To: fwts-devel-bounces@lists.ubuntu.com From: Colin Ian King ACPICA ACPI_ERROR messages from evevent.c Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Ivan Hu --- data/klog.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/data/klog.json b/data/klog.json index a85d8d2..a029b5e 100644 --- a/data/klog.json +++ b/data/klog.json @@ -77,6 +77,46 @@ "firmware_error_warning_patterns": [ { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI", + "pattern": "Unable to initialize fixed events", + "advice": "The ACPI driver failed to initialize the structure that keeps track of fixed event handlers. The failure occurred when trying to disable one of the 4 fixed events and this causes the ACPI subsystem initialization to fail, which disables ACPI support.", + "label": "KlogAcpiFixedEventInitFailed" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI", + "pattern": "Unable to initialize general purpose events", + "advice": "The ACPI driver failed to initialize the General Purpose Event (GPE) blocks as defined in the ACPI FADT. This in turn causes the ACPI subsystem initialization to fail, which disables ACPI support.", + "label": "KlogAcpiGpeInitFailed" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI", + "pattern": "Unable to install System Control Interrupt handler", + "advice": "The ACPI driver failed to install the System Control (SCI) interrupt handler, which has to be working for ACPI to work correctly. This in turn causes the ACPI subsystem initialization to fail, which disables ACPI support.", + "label": "KlogAcpiSciHandlerInitFailed" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI", + "pattern": "Unable to initialize Global Lock handler", + "advice": "The ACPI driver failed to initialized the Global Lock handler, which is basically a kernel mutex (and should not fail). This in turn causes the ACPI subsystem initialization to fail, which disables ACPI support.", + "label": "KlogAcpiGlobalLockInitFailed" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "No installed handler for fixed event", + "advice": "The ACPI driver failed to dispatch a fixed event because their is no fixed event handler installed for this event. This is an error and the kernel has disabled this event for further interrupts. This could lead to reduced functionality.", + "label": "KlogAcpiNoFixedEventHandler" + }, + { "compare_mode": "regex", "log_level": "LOG_LEVEL_HIGH", "tag": "FWTS_TAG_ACPI",