From patchwork Tue Oct 24 05:38:51 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Hu X-Patchwork-Id: 1854138 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.ubuntu.com (client-ip=185.125.189.65; helo=lists.ubuntu.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=patchwork.ozlabs.org) Received: from lists.ubuntu.com (lists.ubuntu.com [185.125.189.65]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4SF1881K4Yz23k5 for ; Tue, 24 Oct 2023 16:39:04 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=lists.ubuntu.com) by lists.ubuntu.com with esmtp (Exim 4.86_2) (envelope-from ) id 1qvA83-0007WA-Hb; Tue, 24 Oct 2023 05:38:59 +0000 Received: from smtp-relay-canonical-0.internal ([10.131.114.83] helo=smtp-relay-canonical-0.canonical.com) by lists.ubuntu.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1qvA7z-0007W1-My for fwts-devel@lists.ubuntu.com; Tue, 24 Oct 2023 05:38:55 +0000 Received: from canonical.com (118-163-61-247.hinet-ip.hinet.net [118.163.61.247]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-0.canonical.com (Postfix) with ESMTPSA id E3A8A3F138 for ; Tue, 24 Oct 2023 05:38:54 +0000 (UTC) From: Ivan Hu To: fwts-devel@lists.ubuntu.com Subject: [PATCH] klog.json: Add some missing exmisc kernel messages to klog database Date: Tue, 24 Oct 2023 13:38:51 +0800 Message-Id: <20231024053851.6077-1-ivan.hu@canonical.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" These messages are specific to the acpica exmisc driver. Signed-off-by: Ivan Hu --- data/klog.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/data/klog.json b/data/klog.json index 293997ca..ba563d95 100644 --- a/data/klog.json +++ b/data/klog.json @@ -2745,6 +2745,27 @@ "advice": "The ACPI interpreter failed to concatenate two objects of the same type because one or more of the types was an invalid object type. Expected types are ACPI_TYPE_INTEGER, ACPI_TYPE_STRING, ACPI_TYPE_BUFFER.", "label": "KlogAcpiConcatenateInvalidObjectType" }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "Invalid numeric logical opcode:", + "advice": "An invalid opcode was found while execute a logical Numeric AML opcode. For these Numeric operators, the opcode should be LAnd or LOr.", + "label": "KlogAcpiInvalidOpcode" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "Invalid object type for logical operator:", + "advice": "An invalid object type was found while execute a none numeric AML opcode. For these operators, operands can be any combination of Integer/String/Buffer.", + "label": "KlogAcpiInvalidObjType" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "Invalid comparison opcode:", + "advice": "An invalid comparison opcode was found while comparing both integers, both strings or buffers.", + "label": "KlogAcpiInvalidComparisonOpcode" + }, { "compare_mode": "regex", "log_level": "LOG_LEVEL_HIGH",