From mboxrd@z Thu Jan 1 00:00:00 1970 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 02EAFC0015E for ; Thu, 3 Aug 2023 10:23:11 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.576176.902027 (Exim 4.92) (envelope-from ) id 1qRVTz-0004S5-Ra; Thu, 03 Aug 2023 10:23:03 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 576176.902027; Thu, 03 Aug 2023 10:23:03 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1qRVTz-0004Ry-Os; Thu, 03 Aug 2023 10:23:03 +0000 Received: by outflank-mailman (input) for mailman id 576176; Thu, 03 Aug 2023 10:23:02 +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 1qRVTy-0004Rp-Du for xen-devel@lists.xenproject.org; Thu, 03 Aug 2023 10:23:02 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id b9381d91-31e7-11ee-b268-6b7b168915f2; Thu, 03 Aug 2023 12:23:01 +0200 (CEST) Received: from beta.station (net-188-218-251-179.cust.vodafonedsl.it [188.218.251.179]) by support.bugseng.com (Postfix) with ESMTPSA id 97D464EE0737; Thu, 3 Aug 2023 12:22:59 +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: b9381d91-31e7-11ee-b268-6b7b168915f2 From: Simone Ballarin To: xen-devel@lists.xenproject.org Cc: consulting@bugseng.com, Simone Ballarin , Jan Beulich , Andrew Cooper , =?UTF-8?q?Roger=20Pau=20Monn=C3=A9?= , Wei Liu , Stefano Stabellini , Julien Grall , Bertrand Marquis , Volodymyr Babchuk , Paul Durrant , Tamas K Lengyel , Alexandru Isaila , Petre Pircalabu , George Dunlap Subject: [XEN PATCH 00/13] xen: address violations of MISRA C:2012 Rule 7.3 Date: Thu, 3 Aug 2023 12:22:15 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This series aims to address some violations ofMISRA C:2012 Rule 7.3: "The lowercase character 'l' shall not be used in a literal suffix". This patch replaces "l" suffixes with "L", to comply with the rule. If the "u" suffix is used near "L", use the "U" suffix instead, for consistency. Gianluca Luparini (13): AMD/IOMMU: address violations of MISRA C:2012 Rule 7.3 x86/svm: address violations of MISRA C:2012 Rule 7.3 xen/arm: address violations of MISRA C:2012 Rule 7.3 x86/IOMMU: address violations of MISRA C:2012 Rule 7.3 xen/ioreq: address violations of MISRA C:2012 Rule 7.3 xen/mem_access: address violations of MISRA C:2012 Rule 7.3 xen/vpci: address violations of MISRA C:2012 Rule 7.3 xen/hvm: address violations of MISRA C:2012 Rule 7.3 x86/mm: address violations of MISRA C:2012 Rule 7.3 x86/viridian: address violations of MISRA C:2012 Rule 7.3 xen/x86: address violations of MISRA C:2012 Rule 7.3 xen/common: address violations of MISRA C:2012 Rule 7.3 xen: address violations of MISRA C:2012 Rule 7.3 xen/arch/arm/include/asm/processor.h | 6 +++--- xen/arch/arm/vtimer.c | 2 +- xen/arch/x86/cpu-policy.c | 4 ++-- xen/arch/x86/dom0_build.c | 2 +- xen/arch/x86/e820.c | 2 +- xen/arch/x86/hpet.c | 2 +- xen/arch/x86/hvm/emulate.c | 2 +- xen/arch/x86/hvm/hpet.c | 6 +++--- xen/arch/x86/hvm/hvm.c | 6 +++--- xen/arch/x86/hvm/io.c | 2 +- xen/arch/x86/hvm/stdvga.c | 2 +- xen/arch/x86/hvm/svm/svm.c | 4 ++-- xen/arch/x86/hvm/viridian/synic.c | 2 +- xen/arch/x86/hvm/viridian/time.c | 10 +++++----- xen/arch/x86/include/asm/apicdef.h | 4 ++-- xen/arch/x86/include/asm/debugreg.h | 16 ++++++++-------- xen/arch/x86/include/asm/guest_pt.h | 16 ++++++++-------- xen/arch/x86/include/asm/pv/domain.h | 2 +- xen/arch/x86/mm.c | 4 ++-- xen/arch/x86/mm/p2m-pt.c | 6 +++--- xen/arch/x86/mm/p2m.c | 20 ++++++++++---------- xen/arch/x86/mm/physmap.c | 4 ++-- xen/arch/x86/msr.c | 2 +- xen/arch/x86/nmi.c | 2 +- xen/arch/x86/psr.c | 8 ++++---- xen/arch/x86/spec_ctrl.c | 6 +++--- xen/arch/x86/x86_64/mm.c | 4 ++-- xen/arch/x86/xstate.c | 2 +- xen/common/ioreq.c | 2 +- xen/common/mem_access.c | 4 ++-- xen/common/page_alloc.c | 6 +++--- xen/common/rangeset.c | 2 +- xen/common/softirq.c | 8 ++++---- xen/common/vsprintf.c | 2 +- xen/drivers/passthrough/amd/iommu_guest.c | 2 +- xen/drivers/passthrough/amd/iommu_map.c | 2 +- xen/drivers/passthrough/amd/pci_amd_iommu.c | 2 +- xen/drivers/passthrough/x86/iommu.c | 8 ++++---- xen/drivers/vpci/header.c | 2 +- xen/drivers/vpci/msi.c | 2 +- xen/drivers/vpci/msix.c | 10 +++++----- xen/include/xen/bitops.h | 8 ++++---- xen/include/xen/ioreq.h | 2 +- xen/include/xen/tasklet.h | 4 ++-- xen/include/xen/time.h | 4 ++-- xen/lib/x86/cpuid.c | 4 ++-- 46 files changed, 111 insertions(+), 111 deletions(-) -- 2.34.1