From nobody Fri May 17 15:11:09 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1710434144781164.88037368962682; Thu, 14 Mar 2024 09:35:44 -0700 (PDT) Received: from list by lists.xenproject.org with outflank-mailman.693384.1081393 (Exim 4.92) (envelope-from ) id 1rko3K-0003Xm-5S; Thu, 14 Mar 2024 16:35:34 +0000 Received: by outflank-mailman (output) from mailman id 693384.1081393; Thu, 14 Mar 2024 16:35:34 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rko3K-0003Xf-2z; Thu, 14 Mar 2024 16:35:34 +0000 Received: by outflank-mailman (input) for mailman id 693384; Thu, 14 Mar 2024 16:35:33 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rko3J-0003WM-E5 for xen-devel@lists.xenproject.org; Thu, 14 Mar 2024 16:35:33 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-flk1.inumbo.com (Halon) with ESMTPS id df84be04-e220-11ee-a1ee-f123f15fe8a2; Thu, 14 Mar 2024 17:35:31 +0100 (CET) Received: from truciolo.bugseng.com (unknown [37.161.186.27]) by support.bugseng.com (Postfix) with ESMTPSA id EDD644EE0739; Thu, 14 Mar 2024 17:35:29 +0100 (CET) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: df84be04-e220-11ee-a1ee-f123f15fe8a2 From: Federico Serafini To: xen-devel@lists.xenproject.org Cc: consulting@bugseng.com, Federico Serafini , Simone Ballarin , Doug Goldstein , Stefano Stabellini , Andrew Cooper , George Dunlap , Jan Beulich , Julien Grall , Wei Liu Subject: [XEN PATCH] automation/eclair: allow parameter name "unused" Date: Thu, 14 Mar 2024 17:35:21 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1710434146028100001 Content-Type: text/plain; charset="utf-8" Update ECLAIR configuration of MISRA C:2012 Rule 8.3 to deviate violations involving parameter name "unused": it makes explicit the intention of not using the parameter within the function. Signed-off-by: Federico Serafini Reviewed-by: Stefano Stabellini --- automation/eclair_analysis/ECLAIR/deviations.ecl | 4 ++++ docs/misra/deviations.rst | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/automation/eclair_analysis/ECLAIR/deviations.ecl b/automation/= eclair_analysis/ECLAIR/deviations.ecl index 9ac3ee4dfd..7e913050d2 100644 --- a/automation/eclair_analysis/ECLAIR/deviations.ecl +++ b/automation/eclair_analysis/ECLAIR/deviations.ecl @@ -167,6 +167,10 @@ const-qualified." -config=3DMC3R1.R8.3,reports+=3D{deliberate,"any_area(any_loc(file(adopted= _decompress_r8_3)))&&any_area(any_loc(file(^xen/include/xen/decompress\\.h$= )))"} -doc_end =20 +-doc_begin=3D"Parameter name \"unused\" is deliberate and makes explicit t= he intention of not using the parameter within the function." +-config=3DMC3R1.R8.3,reports+=3D{deliberate, "any_area(^.*parameter `unuse= d'.*$)"} +-doc_end + -doc_begin=3D"The following file is imported from Linux: ignore for now." -file_tag+=3D{adopted_time_r8_3,"^xen/arch/x86/time\\.c$"} -config=3DMC3R1.R8.3,reports+=3D{deliberate,"any_area(any_loc(file(adopted= _time_r8_3)))&&(any_area(any_loc(file(^xen/include/xen/time\\.h$)))||any_ar= ea(any_loc(file(^xen/arch/x86/include/asm/setup\\.h$))))"} diff --git a/docs/misra/deviations.rst b/docs/misra/deviations.rst index ce855ddae6..941da4c40b 100644 --- a/docs/misra/deviations.rst +++ b/docs/misra/deviations.rst @@ -157,6 +157,11 @@ Deviations related to MISRA C:2012 Rules: - xen/common/unxz.c - xen/common/unzstd.c =20 + * - R8.3 + - Parameter name "unused" is deliberate and makes explicit the intent= ion + of not using the parameter within the function. + - Tagged as `deliberate` for ECLAIR. + * - R8.4 - The definitions present in the files 'asm-offsets.c' for any archit= ecture are used to generate definitions for asm modules, and are not calle= d by --=20 2.34.1