From patchwork Wed Dec 20 11:03:00 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Federico Serafini X-Patchwork-Id: 13499977 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 4469AC3DA6E for ; Wed, 20 Dec 2023 11:03:34 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.657631.1026611 (Exim 4.92) (envelope-from ) id 1rFuMB-0004rT-E5; Wed, 20 Dec 2023 11:03:19 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 657631.1026611; Wed, 20 Dec 2023 11:03:19 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rFuMB-0004rM-BZ; Wed, 20 Dec 2023 11:03:19 +0000 Received: by outflank-mailman (input) for mailman id 657631; Wed, 20 Dec 2023 11:03:18 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rFuMA-0004rG-9J for xen-devel@lists.xenproject.org; Wed, 20 Dec 2023 11:03:18 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id 60db389c-9f27-11ee-98eb-6d05b1d4d9a1; Wed, 20 Dec 2023 12:03:17 +0100 (CET) Received: from Dell.bugseng.com (unknown [37.161.218.228]) by support.bugseng.com (Postfix) with ESMTPSA id EA0924EE0C91; Wed, 20 Dec 2023 12:03:14 +0100 (CET) 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: 60db389c-9f27-11ee-98eb-6d05b1d4d9a1 From: Federico Serafini To: xen-devel@lists.xenproject.org Cc: consulting@bugseng.com, Federico Serafini , Stefano Stabellini , Julien Grall , Bertrand Marquis , Michal Orzel , Volodymyr Babchuk , Tamas K Lengyel , Alexandru Isaila , Petre Pircalabu , Rahul Singh Subject: [XEN PATCH 0/7] xen/arm: address violations of MISRA C:2012 Rule 16.3 Date: Wed, 20 Dec 2023 12:03:00 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 This patch series addresses violations of MISRA C:2012 Rule 16.3 on the Arm code. No fucntional changes are introduced. Federico Serafini (7): xen/arm: gic-v3: address violations of MISRA C:2012 Rule 16.3 xen/arm: traps: address violations of MISRA C:2012 Rule 16.3 xen/arm: guest_walk: address violations of MISRA C:2012 Rule 16.3 xen/arm: mem_access: address violations of MISRA C:2012 Rule 16.3 xen/arm: v{cp,sys}reg: address violations of MISRA C:2012 Rule 16.3 xen/arm: mmu: address a violations of MISRA C:2012 Rule 16.3 xen/arm: smmu-v3: address violations of MISRA C:2012 Rule 16.3 xen/arch/arm/arm64/vsysreg.c | 4 ++-- xen/arch/arm/gic-v3.c | 30 +++++++++++++++++++++++++++ xen/arch/arm/guest_walk.c | 4 ++++ xen/arch/arm/mem_access.c | 12 +++++------ xen/arch/arm/mmu/p2m.c | 1 + xen/arch/arm/traps.c | 18 ++++++++++++---- xen/arch/arm/vcpreg.c | 4 ++-- xen/drivers/passthrough/arm/smmu-v3.c | 2 ++ 8 files changed, 61 insertions(+), 14 deletions(-)