From patchwork Thu Sep 12 01:34:13 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Hu X-Patchwork-Id: 1984268 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 4X40P73NXHz1y1l for ; Thu, 12 Sep 2024 11:35:07 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=lists.ubuntu.com) by lists.ubuntu.com with esmtp (Exim 4.86_2) (envelope-from ) id 1soYjd-00040Q-Rf; Thu, 12 Sep 2024 01:35:01 +0000 Received: from smtp-relay-canonical-1.internal ([10.131.114.174] helo=smtp-relay-canonical-1.canonical.com) by lists.ubuntu.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1soYjc-0003z4-9B for fwts-devel@lists.ubuntu.com; Thu, 12 Sep 2024 01:35:00 +0000 Received: from canonical.com (unknown [106.104.136.95]) (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-1.canonical.com (Postfix) with ESMTPSA id 51ABB3F9CE for ; Thu, 12 Sep 2024 01:34:59 +0000 (UTC) From: Ivan Hu To: fwts-devel@lists.ubuntu.com Subject: [PATCH] klog.json: Add the missing processor error message to klog database Date: Thu, 12 Sep 2024 09:34:13 +0800 Message-Id: <20240912013413.233034-9-ivan.hu@canonical.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240912013413.233034-1-ivan.hu@canonical.com> References: <20240912013413.233034-1-ivan.hu@canonical.com> 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 ACPI processor driver. Signed-off-by: Ivan Hu --- data/klog.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/data/klog.json b/data/klog.json index 5c7e3b62..03d357ac 100644 --- a/data/klog.json +++ b/data/klog.json @@ -4544,6 +4544,13 @@ "advice": "ACPI failed to evaluate a processor _UID object (as declared in a Device statement). ACPI could not gather information on a CPU which will lead to it not being used.", "label": "KlogAcpiProcessorEvalFailed" }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "Failed to get unique processor _UID", + "advice": "ACPI failed to get a processor unigue processor _UID. This normally occurs because of buggy firmware that implemented duplicate UID for processors.", + "label": "KlogAcpiDuplicateProcessorUID" + }, { "compare_mode": "string", "log_level": "LOG_LEVEL_MEDIUM", @@ -5314,6 +5321,13 @@ "advice": "An attempt to add a processor to the system failed in acpi_processor_add(), the processor driver's .probe failed calling device_attach(). The CPU cannot be added to the system under ACPI control.", "label": "KlogAcpiProcessorNotAttached" }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "ACPI: Failed to claim processor _CST control", + "advice": "An attempt to request _CST control from SMI command base on FADT but fail.", + "label": "KlogAcpiProcessorNotAttached" + }, { "compare_mode": "string", "log_level": "LOG_LEVEL_HIGH",