From patchwork Wed Jun 19 17:09:08 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alessandro Zucchelli X-Patchwork-Id: 13704302 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9CCF7C27C53 for ; Wed, 19 Jun 2024 17:09:43 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.743951.1150953 (Exim 4.92) (envelope-from ) id 1sJyoI-0004p8-6M; Wed, 19 Jun 2024 17:09:26 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 743951.1150953; Wed, 19 Jun 2024 17:09:26 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1sJyoI-0004p1-2z; Wed, 19 Jun 2024 17:09:26 +0000 Received: by outflank-mailman (input) for mailman id 743951; Wed, 19 Jun 2024 17:09:24 +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 1sJyoG-0004ov-UA for xen-devel@lists.xenproject.org; Wed, 19 Jun 2024 17:09:24 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-flk1.inumbo.com (Halon) with ESMTPS id ac499f95-2e5e-11ef-b4bb-af5377834399; Wed, 19 Jun 2024 19:09:22 +0200 (CEST) Received: from delta.bugseng.com.homenet.telecomitalia.it (host-87-17-171-46.retail.telecomitalia.it [87.17.171.46]) by support.bugseng.com (Postfix) with ESMTPSA id B02384EE0738; Wed, 19 Jun 2024 19:09:21 +0200 (CEST) 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: ac499f95-2e5e-11ef-b4bb-af5377834399 From: Alessandro Zucchelli To: xen-devel@lists.xenproject.org Cc: consulting@bugseng.com, Alessandro Zucchelli , Simone Ballarin , Doug Goldstein , Stefano Stabellini , Jan Beulich , Andrew Cooper , =?utf-8?q?Roger_Pau_Monn=C3=A9?= Subject: [PATCH 0/2] automation/eclair_analysis: deviate MISRA C Rule 21.2 Date: Wed, 19 Jun 2024 19:09:08 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 This series aims to address several violations of Rule 21.2 which states the following: A reserved identifier or reserved macro name shall not be declared. The series contains two patches, one changes x86/APIC which used an identifier starting with '__', the second deviates all reserved identifiers with the exception of those starting with "__builtin_" which still remain available. Alessandro Zucchelli (1): automation/eclair_analysis: deviate MISRA C Rule 21.2 Nicola Vetrini (1): x86/APIC: address violation of MISRA C Rule 21.2 automation/eclair_analysis/ECLAIR/deviations.ecl | 11 +++++++++++ xen/arch/x86/apic.c | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-)