From patchwork Fri Sep 8 08:26:07 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Hu X-Patchwork-Id: 1831374 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.a=rsa-sha256 header.s=20210705 header.b=BYLhy2Jo; dkim-atps=neutral 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 4Rhq2W3cPbz1yh5 for ; Fri, 8 Sep 2023 18:26:27 +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 1qeWol-0007OK-Sz; Fri, 08 Sep 2023 08:26:19 +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 1qeWoi-0007NU-3h for fwts-devel@lists.ubuntu.com; Fri, 08 Sep 2023 08:26:16 +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-1.canonical.com (Postfix) with ESMTPSA id AFAE33F6CE for ; Fri, 8 Sep 2023 08:26:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1694161574; bh=m4Kil9b1bQAhvh7dACyRSt5FBj6NyiTmPAI5ulpHhnI=; h=From:To:Subject:Date:Message-Id:MIME-Version; b=BYLhy2JoBI6zpOIMMVuxReqZGJ8og21TrnzcN4VTRxr1Tf8cDQLCTOM1DQun6KUzQ D6Our88FaP0Y31tD1rHGvnBZZuAWW3N9LElhgcdJH9B9ItA0JydfNlqoEakoOHC0pH pFVCRBmScZzJLUVmeKx8qqruzNFnjex4I3D84ZziC1Z3C4GsM+MG595VdYH0VGfb3a Ry9mAtANn2hCGlXZwcqPon8XZmK1lR5MLpKk0WPBJaBULgrrDLq9zpTqBER0aRwDNz mI8LudNoxxii+zRv85kE6jrzrqrckWCfMggpXApuub7UZa1bXT3c7ZtUyIHTQ1yS4z kWYi94ar6HlaA== From: Ivan Hu To: fwts-devel@lists.ubuntu.com Subject: [PATCH 3/6] klog.json: Add some missing ACPI NFIT kernel messages to klog database Date: Fri, 8 Sep 2023 16:26:07 +0800 Message-Id: <20230908082610.23734-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 ACPI NFIT 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 5a4e4f97..902a6cff 100644 --- a/data/klog.json +++ b/data/klog.json @@ -673,6 +673,20 @@ "advice": "The ACPI NFIT driver was unable to register a memory region because of an invalid System Physical Address (SPA)", "label": "KlogAcpiNfitInvalidSPA" }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_MEDIUM", + "pattern": "Failed to process ARS records", + "advice": "The ACPI NFIT driver was unable to Address Range Scrub (ARS) records", + "label": "KlogAcpiNfitARSProcessFail" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "pattern": "ARS: range .* ARS failed", + "advice": "The ACPI NFIT driver encounter the Address Range Scrub(ARS) start failed with the System Physical Address", + "label": "KlogAcpiNfitARSRangeFail" + }, { "compare_mode": "string", "log_level": "LOG_LEVEL_HIGH", @@ -680,6 +694,13 @@ "advice": "The ACPI NFIT driver was unable to install a notify handler for an NFIT NVDIMM device, device was marked as not available", "label": "KlogAcpiNfitNVDIMM" }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "Error found in NVDIMM .* flags:", + "advice": "The ACPI NFIT driver encountered a NVDIMM region and its mapping NVDIMM state flags error.", + "label": "KlogAcpiNfitNVDIMMFlagError" + }, { "compare_mode": "string", "log_level": "LOG_LEVEL_MEDIUM",